From b8fb659620b99b4a393922abaa03a1695e2ca64d Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Sat, 25 Jul 2020 15:25:19 +0200 Subject: [PATCH] Project revamp (#64) * Remove update command Will be replaced with haskell.nix * Project revamp using haskell.nix - Only unstable HIE - Only GHC 8.6.5 and 8.8.3 (or more in the future), but on Linux for both glibc 2.27 (NixOS 19.09) and glibc 2.30 (NixOS 20.03/unstable) - Using haskell.nix for the builds. This makes evaluation slower, but makes things simpler overall. - No global installation intended anymore, instead you add HIE to your projects shell.nix file (to be documented in future commits) Co-authored-by: galagora <45048741+galagora@users.noreply.github.com> * Remove old files not needed anymore with the revamp * Add new haskell.nix-generated files * Add haskell.nix template * Add nixpkgs infra template * Build, push and test using GitHub Actions This builds and pushes all necessary configurations using GitHub Actions automatically. Also tests the templates * Update Readme for revamp * Add template documentation * Add warning for unsupported versions * Add haskell.nix + stack template * Minor Readme changes * Remove check-cache script * Don't CI on pushes to haskell.nix * Use same haskell.nix version for stack/cabal + cleanups Co-authored-by: galagora <45048741+galagora@users.noreply.github.com> --- .editorconfig | 3 +- .envrc | 1 - .github/workflows/builds.yaml | 180 + Design.org | 67 - Readme.md | 103 + Readme.org | 134 - all-hies.cabal | 28 - build.nix | 68 + check-cache.sh | 205 - default.nix | 214 +- generated/8.6.5/materialization-id | 3 + .../8.6.5/materialized/.stack-to-nix.cache | 0 generated/8.6.5/materialized/default.nix | 64 + .../8.6.5/materialized/haskell-ide-engine.nix | 358 + .../8.6.5/materialized/hie-plugin-api.nix | 95 + generated/8.6.5/stack-sha256 | 1 + generated/8.8.3/materialization-id | 3 + .../8.8.3/materialized/.stack-to-nix.cache | 0 generated/8.8.3/materialized/default.nix | 42 + .../8.8.3/materialized/haskell-ide-engine.nix | 358 + .../8.8.3/materialized/hie-plugin-api.nix | 95 + generated/8.8.3/stack-sha256 | 1 + generated/stable/ghcBaseLibraries/ghc842 | 1 - generated/stable/ghcBaseLibraries/ghc843 | 1 - generated/stable/ghcBaseLibraries/ghc844 | 1 - generated/stable/ghcBaseLibraries/ghc864 | 1 - generated/stable/ghcBaseLibraries/ghc865 | 1 - generated/stable/ghcBaseLibraries/ghc881 | 1 - generated/stable/ghcBaseLibraries/ghc882 | 1 - .../650a295621b27c4ebe0fa64a63fd25323e64deb3 | 1 - .../91ca88b3e6b4d57640c213e755077b2d93d0a8bd | 1 - .../b5c02d2028dbfe33f05a6134a7190af74d792b74 | 1 - .../d73f16d6767e99675682f822dac3017bf9af1e83 | 1 - .../f77e057cda60a3f96a4010a698ff3be311bf18c6 | 1 - generated/stable/stack2nix/ghc842.nix | 37581 -------------- generated/stable/stack2nix/ghc843.nix | 41220 --------------- generated/stable/stack2nix/ghc844.nix | 41551 --------------- generated/stable/stack2nix/ghc864.nix | 40226 --------------- generated/stable/stack2nix/ghc865.nix | 42529 ---------------- generated/stable/stack2nix/ghc881.nix | 35710 ------------- generated/stable/stack2nix/ghc882.nix | 36869 -------------- generated/stable/stack2nix/revision | 1 - generated/unstable | 1 - nixpkgs.nix | 4 - nixpkgsForGhc/ghc821 | 1 - nixpkgsForGhc/ghc822 | 1 - nixpkgsForGhc/ghc842 | 1 - nixpkgsForGhc/ghc843 | 1 - nixpkgsForGhc/ghc844 | 1 - nixpkgsForGhc/ghc861 | 1 - nixpkgsForGhc/ghc862 | 1 - nixpkgsForGhc/ghc863 | 1 - nixpkgsForGhc/ghc864 | 1 - nixpkgsForGhc/ghc865 | 1 - nixpkgsForGhc/ghc881 | 1 - nixpkgsForGhc/ghc882 | 1 - overlay.nix | 37 + overrides/ghc842.nix | 9 - overrides/ghc843.nix | 3 - overrides/ghc861.nix | 3 - shell.nix | 1 - sources.nix | 35 + src/Cache.hs | 46 - src/Main.hs | 313 - src/Options.hs | 43 - templates/Readme.md | 7 + templates/haskell.nix-cabal/.envrc | 1 + templates/haskell.nix-cabal/.gitignore | 2 + templates/haskell.nix-cabal/Main.hs | 4 + templates/haskell.nix-cabal/Readme.md | 81 + .../haskell.nix-cabal/all-hies-template.cabal | 21 + templates/haskell.nix-cabal/cabal.project | 3 + templates/haskell.nix-cabal/default.nix | 50 + templates/haskell.nix-cabal/shell.nix | 1 + templates/haskell.nix-stack/.envrc | 1 + templates/haskell.nix-stack/.gitignore | 2 + templates/haskell.nix-stack/Main.hs | 4 + templates/haskell.nix-stack/Readme.md | 81 + .../haskell.nix-stack/all-hies-template.cabal | 21 + templates/haskell.nix-stack/cabal.project | 3 + templates/haskell.nix-stack/default.nix | 48 + templates/haskell.nix-stack/shell.nix | 1 + templates/haskell.nix-stack/stack.yaml | 67 + templates/nixpkgs-cabal/.envrc | 1 + templates/nixpkgs-cabal/.gitignore | 2 + templates/nixpkgs-cabal/Main.hs | 4 + templates/nixpkgs-cabal/Readme.md | 80 + .../nixpkgs-cabal/all-hies-template.cabal | 20 + templates/nixpkgs-cabal/default.nix | 52 + templates/nixpkgs-cabal/shell.nix | 1 + update.nix | 31 - 91 files changed, 2017 insertions(+), 276801 deletions(-) delete mode 100644 .envrc create mode 100644 .github/workflows/builds.yaml delete mode 100644 Design.org create mode 100644 Readme.md delete mode 100644 Readme.org delete mode 100644 all-hies.cabal create mode 100644 build.nix delete mode 100755 check-cache.sh create mode 100644 generated/8.6.5/materialization-id create mode 100644 generated/8.6.5/materialized/.stack-to-nix.cache create mode 100644 generated/8.6.5/materialized/default.nix create mode 100644 generated/8.6.5/materialized/haskell-ide-engine.nix create mode 100644 generated/8.6.5/materialized/hie-plugin-api.nix create mode 100644 generated/8.6.5/stack-sha256 create mode 100644 generated/8.8.3/materialization-id create mode 100644 generated/8.8.3/materialized/.stack-to-nix.cache create mode 100644 generated/8.8.3/materialized/default.nix create mode 100644 generated/8.8.3/materialized/haskell-ide-engine.nix create mode 100644 generated/8.8.3/materialized/hie-plugin-api.nix create mode 100644 generated/8.8.3/stack-sha256 delete mode 100644 generated/stable/ghcBaseLibraries/ghc842 delete mode 100644 generated/stable/ghcBaseLibraries/ghc843 delete mode 100644 generated/stable/ghcBaseLibraries/ghc844 delete mode 100644 generated/stable/ghcBaseLibraries/ghc864 delete mode 100644 generated/stable/ghcBaseLibraries/ghc865 delete mode 100644 generated/stable/ghcBaseLibraries/ghc881 delete mode 100644 generated/stable/ghcBaseLibraries/ghc882 delete mode 100644 generated/stable/nixpkgsHashes/650a295621b27c4ebe0fa64a63fd25323e64deb3 delete mode 100644 generated/stable/nixpkgsHashes/91ca88b3e6b4d57640c213e755077b2d93d0a8bd delete mode 100644 generated/stable/nixpkgsHashes/b5c02d2028dbfe33f05a6134a7190af74d792b74 delete mode 100644 generated/stable/nixpkgsHashes/d73f16d6767e99675682f822dac3017bf9af1e83 delete mode 100644 generated/stable/nixpkgsHashes/f77e057cda60a3f96a4010a698ff3be311bf18c6 delete mode 100644 generated/stable/stack2nix/ghc842.nix delete mode 100644 generated/stable/stack2nix/ghc843.nix delete mode 100644 generated/stable/stack2nix/ghc844.nix delete mode 100644 generated/stable/stack2nix/ghc864.nix delete mode 100644 generated/stable/stack2nix/ghc865.nix delete mode 100644 generated/stable/stack2nix/ghc881.nix delete mode 100644 generated/stable/stack2nix/ghc882.nix delete mode 100644 generated/stable/stack2nix/revision delete mode 120000 generated/unstable delete mode 100644 nixpkgs.nix delete mode 100644 nixpkgsForGhc/ghc821 delete mode 100644 nixpkgsForGhc/ghc822 delete mode 100644 nixpkgsForGhc/ghc842 delete mode 100644 nixpkgsForGhc/ghc843 delete mode 100644 nixpkgsForGhc/ghc844 delete mode 100644 nixpkgsForGhc/ghc861 delete mode 100644 nixpkgsForGhc/ghc862 delete mode 100644 nixpkgsForGhc/ghc863 delete mode 100644 nixpkgsForGhc/ghc864 delete mode 100644 nixpkgsForGhc/ghc865 delete mode 100644 nixpkgsForGhc/ghc881 delete mode 100644 nixpkgsForGhc/ghc882 create mode 100644 overlay.nix delete mode 100644 overrides/ghc842.nix delete mode 100644 overrides/ghc843.nix delete mode 100644 overrides/ghc861.nix delete mode 100644 shell.nix create mode 100644 sources.nix delete mode 100644 src/Cache.hs delete mode 100644 src/Main.hs delete mode 100644 src/Options.hs create mode 100644 templates/Readme.md create mode 100644 templates/haskell.nix-cabal/.envrc create mode 100644 templates/haskell.nix-cabal/.gitignore create mode 100644 templates/haskell.nix-cabal/Main.hs create mode 100644 templates/haskell.nix-cabal/Readme.md create mode 100644 templates/haskell.nix-cabal/all-hies-template.cabal create mode 100644 templates/haskell.nix-cabal/cabal.project create mode 100644 templates/haskell.nix-cabal/default.nix create mode 100644 templates/haskell.nix-cabal/shell.nix create mode 100644 templates/haskell.nix-stack/.envrc create mode 100644 templates/haskell.nix-stack/.gitignore create mode 100644 templates/haskell.nix-stack/Main.hs create mode 100644 templates/haskell.nix-stack/Readme.md create mode 100644 templates/haskell.nix-stack/all-hies-template.cabal create mode 100644 templates/haskell.nix-stack/cabal.project create mode 100644 templates/haskell.nix-stack/default.nix create mode 100644 templates/haskell.nix-stack/shell.nix create mode 100644 templates/haskell.nix-stack/stack.yaml create mode 100644 templates/nixpkgs-cabal/.envrc create mode 100644 templates/nixpkgs-cabal/.gitignore create mode 100644 templates/nixpkgs-cabal/Main.hs create mode 100644 templates/nixpkgs-cabal/Readme.md create mode 100644 templates/nixpkgs-cabal/all-hies-template.cabal create mode 100644 templates/nixpkgs-cabal/default.nix create mode 100644 templates/nixpkgs-cabal/shell.nix delete mode 100644 update.nix diff --git a/.editorconfig b/.editorconfig index 9042305..d415404 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,10 +1,9 @@ root = true -[*.{sh,nix,hs}] +[*] indent_style = space indent_size = 2 end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true charset = utf-8 - diff --git a/.envrc b/.envrc deleted file mode 100644 index 4a4726a..0000000 --- a/.envrc +++ /dev/null @@ -1 +0,0 @@ -use_nix diff --git a/.github/workflows/builds.yaml b/.github/workflows/builds.yaml new file mode 100644 index 0000000..43fea6b --- /dev/null +++ b/.github/workflows/builds.yaml @@ -0,0 +1,180 @@ +name: CI +on: + push: + branches: + - master + pull_request: +jobs: + materialize-check: + name: Check materialization files for GHC ${{ matrix.ghc }} + runs-on: ubuntu-latest + strategy: + matrix: + ghc: [ "8.6.5", "8.8.3" ] + glibc: [ "2.30" ] + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v10 + - name: Make sure materializations are up-to-date + run: | + materializationId=$(nix-instantiate --read-write-mode --eval sources.nix -A materializationId | tr -d '"') + if ! diff "$materializationId" "generated/${{ matrix.ghc }}/materialization-id"; then + echo "The materialization files for ${{ matrix.ghc }} are outdated" + echo "Run" + echo " \$(nix-build build.nix -A materialize --argstr ghcVersion ${{ matrix.ghc }} --argstr glibcName glibc-${{ matrix.glibc }})" + echo "to update them" + exit 1 + fi + echo "Materialization files up-to-date" >&2 + + build: + name: HIE Build for ${{ matrix.os }}, GHC ${{ matrix.ghc }}, glibc ${{ matrix.glibc }} + runs-on: ${{ matrix.os }} + needs: materialize-check + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + ghc: [ "8.6.5", "8.8.3" ] + glibc: [ "2.30" ] + include: + # Only linux needs matching glibc versions + - os: ubuntu-latest + ghc: "8.6.5" + glibc: "2.27" + - os: ubuntu-latest + ghc: "8.8.3" + glibc: "2.27" + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v10 + - uses: cachix/cachix-action@09c0620ab018415cbf1e6792e1f415cf892879b5 + with: + name: all-hies + extraPullNames: iohk + signingKey: '${{ secrets.CACHIX_SIGNING_KEY }}' + - name: Instantiate HIE + run: | + nix-instantiate build.nix \ + -A combined \ + --argstr ghcVersion ${{ matrix.ghc }} \ + --argstr glibcName glibc-${{ matrix.glibc }} \ + --add-root $PWD/drv --indirect + - name: Build HIE + run: | + path=$(nix-store --query --outputs drv) + url=$(sed -E <<< "$path" \ + -e 's|-.*|.narinfo|' \ + -e 's|/nix/store|https://all-hies.cachix.org|') + code=$(curl -s -o /dev/null -w "%{http_code}\n" "$url") + case "$code" in + 200) + echo "Derivation already in cache, not building it" + ;; + *) + echo "Derivation not in cache, building it" + # Since we have a lot of derivations to build, do as many of them + # in parallel, but all of them with a single core + nix-store --realise drv --max-jobs auto --cores 1 + ;; + esac + + template_haskell-nix-stack: + name: Haskell.nix stack template for ${{ matrix.os }} + runs-on: ${{ matrix.os }} + needs: build + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + defaults: + run: + working-directory: templates/haskell.nix-stack + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v10 + - uses: cachix/cachix-action@09c0620ab018415cbf1e6792e1f415cf892879b5 + with: + name: all-hies + extraPullNames: iohk + - name: Entering nix-shell + run: | + nix-shell --run "echo Successfully entered nix-shell" + - name: Call HIE + run: | + nix-shell --run "hie 2>&1 | tee /dev/stderr | grep 'Main.hs: OK'" + - name: Search hoogle + run: | + nix-shell --run "hoogle fromMaybe | grep Data.Maybe" + - name: Build and run with cabal + run: | + nix-shell --run "stack run" + - name: Build and run with Nix + run: | + nix-build + ./result/bin/all-hies-template + + template_haskell-nix-cabal: + name: Haskell.nix cabal template for ${{ matrix.os }} + runs-on: ${{ matrix.os }} + needs: build + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + defaults: + run: + working-directory: templates/haskell.nix-cabal + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v10 + - uses: cachix/cachix-action@09c0620ab018415cbf1e6792e1f415cf892879b5 + with: + name: all-hies + extraPullNames: iohk + - name: Entering nix-shell + run: | + nix-shell --run "echo Successfully entered nix-shell" + - name: Call HIE + run: | + nix-shell --run "hie 2>&1 | tee /dev/stderr | grep 'Main.hs: OK'" + - name: Search hoogle + run: | + nix-shell --run "hoogle fromMaybe | grep Data.Maybe" + - name: Build and run with cabal + run: | + nix-shell --run "cabal run" + - name: Build and run with Nix + run: | + nix-build + ./result/bin/all-hies-template + + template_nixpkgs-cabal: + name: Nixpkgs cabal template for ${{ matrix.os }} + runs-on: ${{ matrix.os }} + needs: build + strategy: + matrix: + os: [ ubuntu-latest, macos-latest ] + defaults: + run: + working-directory: templates/nixpkgs-cabal + steps: + - uses: actions/checkout@v2 + - uses: cachix/install-nix-action@v10 + - uses: cachix/cachix-action@09c0620ab018415cbf1e6792e1f415cf892879b5 + with: + name: all-hies + - name: Entering nix-shell + run: | + nix-shell --run "echo Successfully entered nix-shell" + - name: Call HIE + run: | + nix-shell --run "hie 2>&1 | tee /dev/stderr | grep 'Main.hs: OK'" + - name: Search hoogle + run: | + nix-shell --run "hoogle fromMaybe | grep Data.Maybe" + - name: Build and run with cabal + run: | + nix-shell --run "cabal run" + - name: Build and run with Nix + run: | + nix-build + ./result/bin/all-hies-template diff --git a/Design.org b/Design.org deleted file mode 100644 index 0add808..0000000 --- a/Design.org +++ /dev/null @@ -1,67 +0,0 @@ -Assumptions: -- The stack build does not depend on which nixpkgs version it uses, it only needs a matching ghc version - -~/.cache/all-hies/ layout: - -- haskell-ide-engine: HIE git repository -- nixpkgs: nixpkgs git repository -- history-nixpkgs-unstable: nixpkgs-unstable channel history from https://channels.nix.gsc.io/ -- per-ghcMinor: Files for specific minor GHC versions - - : File with the list of base libraries for that ghc version -- per-nixpkgs: Files for specific nixpkgs versions - - ghcVersions: Which GHC versions a nixpkgs version has - - : List of GHC versions nixpkgs revision has - - sha256: The sha256 of the nixpkgs version tarball - - : sha256 -- per-hie: Files for specific hie versions - - : Files for hie version - - .nix: File generated by stack2nix for and its stack file for - -./ (repository) layout: -- generated: Files that can be deleted without worry, they'll be regenerated, if possible from the caches in ~/.cache/all-hies - - stack2nix: Files generated by stack2nix - - revision: HIE revision (tag if possible) for the generated files - - .nix: stack2nix generated expression for HIE's stack file - - nixpkgsHashes - - : File containing the sha256 hash for nixpkgs version . This is to allow the Nix builds to download these versions. - - ghcBaseLibraries: - - : List of base libraries for that ghc version, used by Nix to set all of those to ~null~. Hack around https://github.com/input-output-hk/stack2nix/issues/134 -- nixpkgsForGhc - - : File containing the nixpkgs rev to use for that GHC version. This way we can pin nixpkgs versions and don't need to recompile a lot when we change nixpkgs (because we never change a nixpkgs for a ghc version). This is checked in because generating this isn't deterministic. -- overrides: - - .nix: Haskell overrides for a specific GHC version, in order to make the build succeed. (Note: So far it doesn't seem that HIE version-specific overrides are needed, because of stack2nix). - - -Process: -- Update/initialize hie repo -- Update/initialize nixpkgs repo -- Remove ./generated -- Get latest release (latest tag) and revision -- Write tag to ./generated/stack2nix/revision -- Checking out that hie version -- For each stack file for a ghc version - - Find a suitable nixpkgs revision for that ghc version - - If ./nixpkgsForGhc/ present, use that version - - else - - fetch nixpkgs-unstable history (or use cached version if <15 minutes ago) - - for each channel nixpkgs revision (from newest to oldest) - - Get ghc versions - - If $CACHE/per-nixpkgs/ghcVersions/ exists use that - - Otherwise - - Check out that nixpkgs version - - Run nix evaluation to determine available compilers - - Save result in $CACHE/per-nixpkgs/ghcVersions/ - - If it has the ghc version we need - - Save that revision in ./nixpkgsForGhc/ - - revision found, exit channel history loop - - Otherwise continue - - If no fitting ghc version was found, log error - - Calculate the sha256 for that nixpkgs version and cache it in $CACHE/per-nixpkgs/sha256/ - - Copy to ./generated/nixpkgsHashes - - Generate the base libraries for that version into ./generated/ghcBaseLibraries - - Check out the revision and run a nix built ghc binary to determine the list - - Cache it into $CACHE/per-nixpkgs/per-ghcMinor/$major$minor - - If ./generated/stack2nix/ doesn't exist yet - - Checking out that nixpkgs revision - - Invoke stack2nix to generate $CACHE/per-hie//.nix if it doesn't exist yet - - Copy $CACHE/per-hie//.nix to ./generated/stack2nix/.nix diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..3f63dac --- /dev/null +++ b/Readme.md @@ -0,0 +1,103 @@ +# Haskell IDE Engine for Nix + +This project provides cached Nix builds for [Haskell IDE Engine](https://github.com/haskell/haskell-ide-engine) for GHC 8.6.5 and 8.8.3. + +## Installation + +Installation is done with your projects nix-shell environment. Both [haskell.nix](https://input-output-hk.github.io/haskell.nix/) and the nixpkgs Haskell infrastructure are supported. If you don't have a nix-shell environment for your project yet, I recommend using haskell.nix. + +If you just want to get started, see the [templates](./templates) for fully working example projects. + +### haskell.nix Projects + +In short, to install HIE for your haskell.nix project, apply the all-hies nixpkgs overlay and add `{ hie = "unstable"; }` to the `tools` argument of [`shellFor`](https://input-output-hk.github.io/haskell.nix/reference/library/#shellfor). If you want to use the prebuilt binaries, use the `all-hies` cachix. Read the rest of this section for more details. + +Applying the overlay can be done as follows in a recent haskell.nix version +```nix +let + # Pin all-hies + all-hies = fetchTarball { + # Insert the desired all-hies commit here + url = "https://github.com/infinisil/all-hies/tarball/000000000000000000000000000000000000000"; + # Insert the correct hash after the first evaluation + sha256 = "0000000000000000000000000000000000000000000000000000"; + }; + + # Assuming nixpkgs and haskellNix are defined here + + # Import nixpkgs with both haskell.nix's overlays and the all-hies one + pkgs = import nixpkgs (haskellNix.nixpkgsArgs // { + overlays = haskellNix.nixpkgsArgs.overlays ++ [ + (import all-hies {}).overlay + ]; + }); + + /* ... */ +in /* ... */ +``` + +Adding HIE to the environment is done like this in your `shellFor` call +```nix +shellFor { + packages = p: [ p.my-package ]; + tools = { + hie = "unstable"; + }; +} +``` + +Configuring the `all-hies` cachix can be done with [these instructions](https://all-hies.cachix.org/), or if you have cachix installed already: +```shell +$ cachix use all-hies +``` + +Note that for haskell.nix in general, `cachix use iohk` saves a lot of building time if you use the same nixpkgs as IOHK's CI. + +See the [haskell.nix stack template](./templates/haskell.nix-stack) or [haskell.nix cabal template](./templates/haskell.nix-cabal) for a fully working example including a working stack/cabal version and a hoogle database. + +### nixpkgs Haskell infrastructure + +In short, to install HIE for your project using nixpkgs Haskell infrastructure, apply the all-hies overlay and add the `hie` Haskell package to the `nativeBuildInputs` argument of `shellFor`. If you want to use the prebuilt binaries, use the `all-hies` cachix. Read the rest of this section for more details. + +Applying the overlay can be done as follows +```nix +let + # Pin all-hies + all-hies = fetchTarball { + # Insert the desired all-hies commit here + url = "https://github.com/infinisil/all-hies/tarball/000000000000000000000000000000000000000"; + # Insert the correct hash after the first evaluation + sha256 = "0000000000000000000000000000000000000000000000000000"; + }; + + # Assuming nixpkgs is defined here + + # Import nixpkgs with the all-hies overlay + pkgs = import nixpkgs { + # Pass no config for purity + config = {}; + overlays = [ + (import all-hies {}).overlay + ]; + }; + + /* ... */ +in /* ... */ +``` + +Adding HIE to the environment is done like this in your `shellFor` call +```nix +shellFor { + packages = p: [ p.my-package ]; + nativeBuildInputs = [ + haskellPackages.hie + ]; +} +``` + +Configuring the `all-hies` cachix can be done with [these instructions](https://all-hies.cachix.org/), or if you have cachix installed already: +```shell +$ cachix use all-hies +``` + +See the [nixpkgs infra template](./templates/nixpkgs-cabal) for a fully working example including a working cabal version and a hoogle database. diff --git a/Readme.org b/Readme.org deleted file mode 100644 index 7336b48..0000000 --- a/Readme.org +++ /dev/null @@ -1,134 +0,0 @@ -* Cached Haskell IDE Engine Nix builds for all GHC versions - -This repository provides cached Nix builds for the latest stable [[https://github.com/haskell/haskell-ide-engine][Haskell IDE Engine]] (HIE) for all supported GHC versions. It is intended to be a successor to [[https://github.com/domenkozar/hie-nix][hie-nix]], which only provides a changing subset of versions. This project solves the problem of having mismatched HIE and project GHC versions, which is almost impossible to avoid if you use a globally installed HIE and have many projects. - -For unstable versions see [[#unstable-versions][this section]]. - -** Installation - -*** Cached builds - -If you wish to use prebuilt binaries, available on both Linux and macOS, configure the ~all-hies~ cache with [[https://all-hies.cachix.org/][these instructions]], or if you have cachix installed already: - -#+BEGIN_SRC bash -cachix use all-hies -#+END_SRC - -Note: Due to an issue with cachix you might have to restart the nix daemon for this to take effect, refer to [[https://github.com/cachix/cachix/issues/188][this issue]]. - -After configuring the cache, proceed to the install instructions below. - -*** Building without cached builds - -On Linux and some versions of macOS, building HIE yourself is also possible and is in fact the default if you don't configure cachix as specified above. The build has a lot of dependencies however, so be prepared to wait a while for it to finish. - -The only known macOS version to succeed in building all HIE versions is High Sierra, which was used to build the caches. MacOS Mojave specifically doesn't work for some HIE versions. - -*** Declarative installation (NixOS, home-manager or similar) - -This section describes installation with NixOS, but this is easily adaptable to [[https://github.com/rycee/home-manager][home-manager]] or other declarative installation methods by using the appropriate file and options. E.g. with home-manager, use =~/.config/nixpkgs/home.nix= instead of ~/etc/nixos/configuration.nix~ and assign to ~home.packages~ instead of ~environment.systemPackages~. - -To install stable HIE for a specific set of GHC versions, use the following in your ~/etc/nixos/configuration.nix~. This will install ~hie~ and ~hie-wrapper~ binaries which are both HIE versions that select the correct version out of the given ones for your projects. Note that ~hie~ is just a symlink to ~hie-wrapper~. -#+BEGIN_SRC nix - let - all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {}; - in - { - environment.systemPackages = [ - # Install stable HIE for GHC 8.6.4, 8.6.3 and 8.4.3 - (all-hies.selection { selector = p: { inherit (p) ghc864 ghc863 ghc843; }; }) - ]; - } -#+END_SRC - -To install *all* stable HIE versions for all supported GHC versions use the following. Warning: Requires ~30GB (or <10GB with compression) of space! -#+BEGIN_SRC nix - let - all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {}; - in - { - environment.systemPackages = [ - # Install all stable HIE versions - (all-hies.selection { selector = p: p; }) - ]; - } -#+END_SRC - -*** ~nix-env~ installation - -To install stable HIE for a specific set of GHC versions use the following. This will install ~hie~ and ~hie-wrapper~ binaries which are both HIE versions that select the correct version out of the given ones for your projects. Note that ~hie~ is just a symlink to ~hie-wrapper~. -#+BEGIN_SRC bash - nix-env -iA selection --arg selector 'p: { inherit (p) ghc864 ghc863 ghc843; }' -f https://github.com/infinisil/all-hies/tarball/master -#+END_SRC - -To install *all* stable HIE versions for all supported GHC versions use the following. Warning: Requires ~30GB (or <10GB with compression) of space! -#+BEGIN_SRC bash - nix-env -iA selection --arg selector 'p: p' -f https://github.com/infinisil/all-hies/tarball/master -#+END_SRC - -*** Unstable versions - -Sometimes unstable HIE versions are also provided but *without build caches*, so refer to the section on [[#building-without-cached-builds][building without cached builds]]. If no unstable version is provided the installation described here will be the same as the stable version. - -If you just want to get a HIE version for a GHC that stable doesn't support yet, use the ~unstableFallback~ attribute, which uses stable if it's available for that GHC version, but falls back to unstable if not. For unstable versions only, use the ~unstable~ attribute. Both ~unstable~ and ~unstableFallback~ provide the ~selection~ function just like the standard stable set, so the installation is very similar: - -**** NixOS -#+BEGIN_SRC nix -let - all-hies = import (fetchTarball "https://github.com/infinisil/all-hies/tarball/master") {}; -in { - environment.systemPackages = [ - # Install stable HIE for GHC versions 8.6.4 and 8.6.5 if available and fall back to unstable otherwise - (all-hies.unstableFallback.selection { selector = p: { inherit (p) ghc864 ghc865; }; }) - - # Install unstable HIE for GHC versions 8.4.4 and 8.6.5 - (all-hies.unstable.selection { selector = p: { inherit (p) ghc844 ghc865; }; }) - ]; -} -#+END_SRC - -**** ~nix-env~ - -#+BEGIN_SRC bash - # Install stable HIE for GHC versions 8.6.4 and 8.6.5 if available and fall back to unstable otherwise - nix-env -iA unstableFallback.selection --arg selector 'p: { inherit (p) ghc864 ghc865; }' -f https://github.com/infinisil/all-hies/tarball/master - - # Install unstable HIE for GHC versions 8.4.4 and 8.6.5 - nix-env -iA unstable.selection --arg selector 'p: { inherit (p) ghc844 ghc865; }' -f https://github.com/infinisil/all-hies/tarball/master -#+END_SRC - -** Updating this repository - -This section is only for all-hies developers and not intended for end users. - -To have the updater available, run -#+BEGIN_SRC bash - alias update="$(nix-build --no-out-link update.nix)/bin/update" -#+END_SRC - -Then you can use it as follows to generate the stable/unstable set (or any other set) -#+BEGIN_SRC bash - update --name stable --revision 0.10.0.0 - update --name unstable --revision master - update --name bios --revision hie-bios --hie-repo https://github.com/mpickering/haskell-ide-engine -#+END_SRC - -Then to build stable/unstable package sets on high-end machines with 32GB RAM or more, you can use - -#+BEGIN_SRC bash - nix-build -A versions --max-jobs auto --cores 1 - nix-build -A unstable.versions --max-jobs auto --cores 1 -#+END_SRC - -However if you don't have that much RAM, this leads to a lot of thrashing due to the many different dependencies between GHC versions. Use something like the following to prevent this (note that this uses the ~jq~ command from the ~jq~ package): - -#+BEGIN_SRC bash - nix-instantiate --eval -E 'builtins.attrNames (import ./. {}).versions' --json | jq -r '.[]' \ - | xargs -I{} -P1 nix-build -A versions.{} --max-jobs auto --cores 1 - nix-instantiate --eval -E 'builtins.attrNames (import ./. {}).unstable.versions' --json | jq -r '.[]' \ - | xargs -I{} -P1 nix-build -A unstable.versions.{} --max-jobs auto --cores 1 -#+END_SRC - -Both the ~update~ and ~nix-build~'s take a long time, but both do a lot of intermediate caching and are idempotent, so they can be interrupted and resumed at any time without losing too much progress. If builds fail for some reason, the ~overrides~ directory can be used to add GHC-specific overrides. - - diff --git a/all-hies.cabal b/all-hies.cabal deleted file mode 100644 index 9d70ba2..0000000 --- a/all-hies.cabal +++ /dev/null @@ -1,28 +0,0 @@ -cabal-version: 2.4 -name: all-hies -version: 0.1.0.0 -author: Silvan Mosberger -maintainer: infinisil@icloud.com - -executable update - hs-source-dirs: src - main-is: Main.hs - other-modules: Cache - Options - build-depends: base ^>=4.12.0.0 - , haskeline - , process - , regex-applicative - , directory - , filepath - , stack2nix - , http-client - , http-client-tls - , time - , aeson - , mtl - , bytestring - , Cabal - , temporary - , optparse-applicative - default-language: Haskell2010 diff --git a/build.nix b/build.nix new file mode 100644 index 0000000..d1019d9 --- /dev/null +++ b/build.nix @@ -0,0 +1,68 @@ +{ ghcVersion, glibcName }: +let + sources = import ./sources.nix; + pkgs = sources.glibcSpecificPkgs.${glibcName}; + inherit (pkgs) lib; + + versionList = builtins.match "([0-9]+)\\.([0-9]+)\\.([0-9]+)" ghcVersion; + version = rec { + major = lib.elemAt versionList 0; + minor = lib.elemAt versionList 1; + patch = lib.elemAt versionList 2; + dotVersion = "${major}.${minor}.${patch}"; + tightVersion = "${major}${minor}${patch}"; + }; + + supportedVersions = [ "8.6.5" "8.8.3" ]; + unsupportedWarning = if lib.elem ghcVersion supportedVersions then lib.id else lib.warn "all-hies: GHC version ${ghcVersion} is not supported, no caches are available and the build will probably fail"; + + stackArgs = { + src = sources.hie.src; + stackYaml = "stack-${version.dotVersion}.yaml"; + # TODO: Remove GHC from closure + modules = [{ + reinstallableLibGhc = true; + doHaddock = false; + packages.ghc.flags.ghci = true; + packages.ghci.flags.ghci = true; + packages.haskell-ide-engine.configureFlags = [ "--enable-executable-dynamic" ]; + }]; + }; + + generatedDir = ./generated + "/${version.dotVersion}"; + hashFile = generatedDir + "/stack-sha256"; + materializedDir = generatedDir + "/materialized"; + + materializedStackArgs = stackArgs // lib.optionalAttrs (builtins.pathExists generatedDir) { + stack-sha256 = lib.fileContents hashFile; + materialized = materializedDir; + }; + + combined = + let + haskellSet = pkgs.haskell-nix.stackProject materializedStackArgs; + inherit (haskellSet.haskell-ide-engine.components.exes) hie; + inherit (haskellSet.hie-bios.components.exes) hie-bios; + in (pkgs.buildEnv { + name = "haskell-ide-engine-${version.dotVersion}-${sources.hie.version}"; + paths = [ hie hie-bios ]; + pathsToLink = [ "/bin" ]; + inherit (hie) meta; + }).overrideAttrs (old: { + allowSubstitutes = true; + }); + + materialize = + let + haskellSet = pkgs.haskell-nix.stackProject stackArgs; + in pkgs.writeShellScript "materialize-${version.dotVersion}" '' + set -x + mkdir -p ${toString generatedDir} + nix-hash --base32 --type sha256 ${haskellSet.stack-nix} > ${toString hashFile} + ${pkgs.coreutils}/bin/cp -r --no-preserve=mode -T ${haskellSet.stack-nix} ${toString materializedDir} + cp ${sources.materializationId} ${toString generatedDir}/materialization-id + ''; + +in unsupportedWarning { + inherit combined materialize; +} diff --git a/check-cache.sh b/check-cache.sh deleted file mode 100755 index 15e7b5b..0000000 --- a/check-cache.sh +++ /dev/null @@ -1,205 +0,0 @@ -#!/usr/bin/env bash - -# This script is here for both future reference on how to check that a cache -# serves a path, and to make sure cachix's 10GB limit doesn't mean it deletes -# paths still needed. - -# In addition, you could use these paths here to fetch the derivations directly, -# completely circumventing the slow Nix evaluation, at the cost of -# reproducibility. Only seems useful for one-off testing or so. - -storepaths=( - # 1.1 - ## x86_64-linux - /nix/store/dgs02431fz60zkmkvpx8grbb2i4ahd3c-haskell-ide-engine-ghc842-1.1 - /nix/store/5qvfgjzyxly990l7skzgbf3c8qix8073-haskell-ide-engine-ghc843-1.1 - /nix/store/6hhh5aiyxijz6ym3yck1d04i1lx49rnr-haskell-ide-engine-ghc844-1.1 - /nix/store/nzn6pzq5r58v25y9pb8b9jrqh9p02z43-haskell-ide-engine-ghc864-1.1 - /nix/store/qwrwp6zrmw2slvfqzx5dl4wziq8jcjgh-haskell-ide-engine-ghc865-1.1 - /nix/store/z3ibpz4qhyz62cka5pncv1dff3vv353n-haskell-ide-engine-ghc881-1.1 - /nix/store/n1gibsl3c6jpd46i5016l31ac68m1rq9-haskell-ide-engine-ghc882-1.1 - ## x86_64-darwin - /nix/store/z09kdrng69gx0n6644l3y1173901sdmp-haskell-ide-engine-ghc842-1.1 - /nix/store/5ygzlmn3hzih5ml336d0bhy23ffyczzk-haskell-ide-engine-ghc843-1.1 - /nix/store/rb14ylqqmiy0mhl59pp6cc6vql6ipk3j-haskell-ide-engine-ghc844-1.1 - /nix/store/hayssh03rw586d4clk0xs0w7i3klk2x5-haskell-ide-engine-ghc864-1.1 - /nix/store/d6kmba464kac15yn9qys0s66r9fns7mq-haskell-ide-engine-ghc865-1.1 - /nix/store/ks0vn6a7161qqjfgcv1c3hm0a0dnvfac-haskell-ide-engine-ghc881-1.1 - /nix/store/nrhyw66d132bpfm5lhks0hiw8djbkr5a-haskell-ide-engine-ghc882-1.1 - - # 1.0.0.0 - ## x86_64-linux - /nix/store/sk086bkr8f4yjg0715c8k9lx907r9j5h-haskell-ide-engine-ghc842-1.0.0.0 - /nix/store/shvam04y1xxma6vs3scx8rvxy3nab0jj-haskell-ide-engine-ghc843-1.0.0.0 - /nix/store/sdzx9hbslsdk0z5k21x7259v6mihx07h-haskell-ide-engine-ghc844-1.0.0.0 - /nix/store/jcqafgk3h8h60hv4z3x7kp5fyh2h90vb-haskell-ide-engine-ghc861-1.0.0.0 - /nix/store/ihfvldzicc05g7mdx9y4jix6wxldcyb3-haskell-ide-engine-ghc862-1.0.0.0 - /nix/store/ik2sn2bqgn0wh2k1sgi92ag3dmbshawd-haskell-ide-engine-ghc863-1.0.0.0 - /nix/store/b6hjjms6lzfpnwqiflaqa29pf971ii5q-haskell-ide-engine-ghc864-1.0.0.0 - /nix/store/gbyjamvg0vz00izjl9cddgynpz34g13d-haskell-ide-engine-ghc865-1.0.0.0 - ## x86_64-darwin - /nix/store/hs35i7a8akw92s33535pn7s9ll03h92m-haskell-ide-engine-ghc842-1.0.0.0 - /nix/store/kr44by4jhhmsjgdzzlgvsb1pm4b3pi53-haskell-ide-engine-ghc843-1.0.0.0 - /nix/store/xr80fkvi9a6d1kcz15z9193909d5z45f-haskell-ide-engine-ghc844-1.0.0.0 - /nix/store/0lmy07adcb22gy63cwllrr1hbwxmpz1j-haskell-ide-engine-ghc861-1.0.0.0 - /nix/store/vrj0l16jg5x8l7scphzpw74845ync6b7-haskell-ide-engine-ghc862-1.0.0.0 - /nix/store/l7g6f9facx5k0sdfwiqzaqd9s9y5jqsg-haskell-ide-engine-ghc863-1.0.0.0 - /nix/store/0z54skjwfd5malhf9d3m83ksx6wq5kvb-haskell-ide-engine-ghc864-1.0.0.0 - /nix/store/k8i38lkf56y0zj423g96132b2c2md9dr-haskell-ide-engine-ghc865-1.0.0.0 - - # 0.14.0.0 - ## x86_64-linux - /nix/store/fv5g10aimim5dpiczm2lfihaag02vhxl-haskell-ide-engine-ghc842-0.14.0.0 - /nix/store/jsqg0bzzwwhhvdmqmp7i4w8lgb3m16d4-haskell-ide-engine-ghc843-0.14.0.0 - /nix/store/k6xpscrdj6mljxs0lfc7z53h02d2pssy-haskell-ide-engine-ghc844-0.14.0.0 - /nix/store/ghkyvmv9hii7j0mxrhw65k1rf8714zjv-haskell-ide-engine-ghc861-0.14.0.0 - /nix/store/6jdnw7nmh70qdn68pkxribbqfx3hgb29-haskell-ide-engine-ghc862-0.14.0.0 - /nix/store/yfdwlzwvgz9mw6ahyfi9kzy73bfw28wg-haskell-ide-engine-ghc863-0.14.0.0 - /nix/store/k719sij8skn4r8l128hqg324gpw13bsv-haskell-ide-engine-ghc864-0.14.0.0 - /nix/store/6wsy89l4jnsy4qp4ywsyg572ily295zl-haskell-ide-engine-ghc865-0.14.0.0 - ## x86_64-darwin - /nix/store/96swblwrifddpri0pphq60l3wmw5glx3-haskell-ide-engine-ghc842-0.14.0.0 - /nix/store/vjn9z839m1qgs1hx25w1m19mqarcrga6-haskell-ide-engine-ghc843-0.14.0.0 - /nix/store/1ynzvm8a5ah0yaanjyycxgxsi8ha6fm8-haskell-ide-engine-ghc844-0.14.0.0 - /nix/store/ywiqwi0zk8f90xfngn2fy5v0j8mcg4k7-haskell-ide-engine-ghc861-0.14.0.0 - /nix/store/k5bl1k6sxqzllxaq91y12k7issyx352n-haskell-ide-engine-ghc862-0.14.0.0 - /nix/store/m2r5avlqd8jqwhadgnxh3mx9144c85sc-haskell-ide-engine-ghc863-0.14.0.0 - /nix/store/kx888gg01y3j2r5ydfzqadb0v3mv1vyf-haskell-ide-engine-ghc864-0.14.0.0 - /nix/store/6l9ciqyf5hrw7jrskwvfy60jayklrwdr-haskell-ide-engine-ghc865-0.14.0.0 - - # 0.13.0.0 - ## x86_64-linux - /nix/store/7xcbnma9w0678wjy8mqzmx8vr06ywr1q-haskell-ide-engine-ghc822-0.13.0.0 - /nix/store/qqcjlnl0qcs06vk691nz9mq38kwb1b0m-haskell-ide-engine-ghc842-0.13.0.0 - /nix/store/1bsinl1ipd4xd9a28mm870b585pr695j-haskell-ide-engine-ghc843-0.13.0.0 - /nix/store/nrjf5k71rc7gbm24nzz3pm8dlhi9ffgj-haskell-ide-engine-ghc844-0.13.0.0 - /nix/store/0fmpy958r9zzc9yarhjyq4j9sql4igh3-haskell-ide-engine-ghc861-0.13.0.0 - /nix/store/72iwb479zlf1wir2zhy47w7j6ba24x8a-haskell-ide-engine-ghc862-0.13.0.0 - /nix/store/wimhij1snfmz9bjjblspg6l3zjfbkpn1-haskell-ide-engine-ghc863-0.13.0.0 - /nix/store/b54jxmrzs5y4mir3n5wz5n4xgvz6jzd3-haskell-ide-engine-ghc864-0.13.0.0 - /nix/store/zz008pivvzzkmbwczax59kx9ik1vfcxh-haskell-ide-engine-ghc865-0.13.0.0 - ## x86_64-darwin - /nix/store/dwnjj266g3m2xyxxyjqj97r02bsmy1kw-haskell-ide-engine-ghc822-0.13.0.0 - /nix/store/kpzxvzljbrpk8jk8kjc5am6vkvyp7sfr-haskell-ide-engine-ghc842-0.13.0.0 - /nix/store/nvk48cyynyi482ihfhf6xi7nah3w0skl-haskell-ide-engine-ghc843-0.13.0.0 - /nix/store/n1xy8781mlidx9wdn95sb7mic025n05y-haskell-ide-engine-ghc844-0.13.0.0 - /nix/store/rksnq99m26ydi890jxgi2jh65b5ygvay-haskell-ide-engine-ghc861-0.13.0.0 - /nix/store/y9bp4bpv2bp4m7cfv386c8kcfwx2qxmv-haskell-ide-engine-ghc862-0.13.0.0 - /nix/store/03ixnk46zlvbvgagf7fnmwrra0351a6m-haskell-ide-engine-ghc863-0.13.0.0 - /nix/store/596vx7bif80rkz633mg2zn91k0szrr60-haskell-ide-engine-ghc864-0.13.0.0 - /nix/store/fnx9bhik3vrdxdfzqap9l4aph0a2cljc-haskell-ide-engine-ghc865-0.13.0.0 - - # 0.12.0.0 - ## x86_64-linux - /nix/store/vm2g0gka3wc9m2766s9f8xzrlliby5yi-haskell-ide-engine-ghc822-0.12.0.0 - /nix/store/17ypzfshwxqb638bhxfbk6f6xzanzzsz-haskell-ide-engine-ghc842-0.12.0.0 - /nix/store/6r4jbflxzx31n3bfy25blmy5prg0x1xr-haskell-ide-engine-ghc843-0.12.0.0 - /nix/store/5ma13xjx2pvr97w1fmkz1hjy1pr0vzv7-haskell-ide-engine-ghc844-0.12.0.0 - /nix/store/hqzbnrhagm1m0zkss5jf3sndfzipjk01-haskell-ide-engine-ghc861-0.12.0.0 - /nix/store/6mdd6caab3qlnhbjr3c7jxki4dwkab9q-haskell-ide-engine-ghc862-0.12.0.0 - /nix/store/55izx4ic9jh22pp2h75gsy75fwfnxl5c-haskell-ide-engine-ghc863-0.12.0.0 - /nix/store/df49pvrydr12i8mk4l98vdhfvd0grbak-haskell-ide-engine-ghc864-0.12.0.0 - /nix/store/qfpgpi3mcw8w0m6vdfn77bli5pdw8c1d-haskell-ide-engine-ghc865-0.12.0.0 - ## x86_64-darwin - /nix/store/2srmzjnzy2sjlrcd18mmmbjjlpmdwvjz-haskell-ide-engine-ghc822-0.12.0.0 - /nix/store/58z40kd2wpqcm0i0npjbhy0rmy5x7xx2-haskell-ide-engine-ghc842-0.12.0.0 - /nix/store/znlx4pq3gy4aish8bkm48pdix6a246y1-haskell-ide-engine-ghc843-0.12.0.0 - /nix/store/zp8k0ili5k7amn3rl6rvsxsi6spcyqkc-haskell-ide-engine-ghc844-0.12.0.0 - /nix/store/6kwk290gcvqydq5hlb4z1d79v9p1pzb2-haskell-ide-engine-ghc861-0.12.0.0 - /nix/store/i3jwdmq0wyymsnbp7abwjxmy5kmyjjd5-haskell-ide-engine-ghc862-0.12.0.0 - /nix/store/zhc4kvmcblsssflfiyr9f7p98prs38s4-haskell-ide-engine-ghc863-0.12.0.0 - /nix/store/pshm49bih77bmnmyqhvav90vbbhiqan2-haskell-ide-engine-ghc864-0.12.0.0 - /nix/store/n1dg6asggdi4v0k49pnwvfvzqazxcszc-haskell-ide-engine-ghc865-0.12.0.0 - - # 0.11.0.0 - ## x86_64-linux - /nix/store/bi1c5s6ql98hwbfnyr1hf5vy5g4qkyv9-haskell-ide-engine-ghc822-0.11.0.0 - /nix/store/6yfa5vh4x3nc6a6skmsw311fbdr2sbgs-haskell-ide-engine-ghc842-0.11.0.0 - /nix/store/4q1077xr3pxv218a61vzlk82g6mxaihd-haskell-ide-engine-ghc843-0.11.0.0 - /nix/store/kvb4vqnbdh8gpj3y75ysixzwf165qib3-haskell-ide-engine-ghc844-0.11.0.0 - /nix/store/fkrvvxxsqqyipj3832vfff75pv4ms5bd-haskell-ide-engine-ghc861-0.11.0.0 - /nix/store/nacxmfd764v9g82gc345j1rapn2rhjnz-haskell-ide-engine-ghc862-0.11.0.0 - /nix/store/q1pbpprnsqs1frjnlsjfzjvv4bi08vzj-haskell-ide-engine-ghc863-0.11.0.0 - /nix/store/gw6pp5m05nvg7gshakaj4gcpq1fvg2w0-haskell-ide-engine-ghc864-0.11.0.0 - /nix/store/h7hgxf86zfgh1dxv6jlybzlp96590q9j-haskell-ide-engine-ghc865-0.11.0.0 - # x86_64-darwin - /nix/store/fqscw5v1fpza5wzw4fiw8810vy2581xg-haskell-ide-engine-ghc822-0.11.0.0 - /nix/store/2r41givhaabpsrlf4djsbfb90p7nc63v-haskell-ide-engine-ghc842-0.11.0.0 - /nix/store/fzkwrlvagpxss3b2xnbvmijmzl32xy8g-haskell-ide-engine-ghc843-0.11.0.0 - /nix/store/cs29ppwf6q92lj5pwzz6989mq6g3smpv-haskell-ide-engine-ghc844-0.11.0.0 - /nix/store/zqypv7cdjsm8wip289zg8x2c69df2svr-haskell-ide-engine-ghc861-0.11.0.0 - /nix/store/ph1npnw2301xgi1v8cf660q7fx048w10-haskell-ide-engine-ghc862-0.11.0.0 - /nix/store/zsmrfr9s9h8hkkwkiinpn81khip2zpdp-haskell-ide-engine-ghc863-0.11.0.0 - /nix/store/10zbnxkfzxx5aza2b9yf1pdbj74lj44k-haskell-ide-engine-ghc864-0.11.0.0 - /nix/store/s3mx14v0is47w6s1f59qds3cajzs1z1i-haskell-ide-engine-ghc865-0.11.0.0 - - # 0.10.0.0 - ## x86_64-linux - /nix/store/bqn4lhr3sy7l0js8i48cn8asdxch0fyg-haskell-ide-engine-ghc822-0.10.0.0 - /nix/store/1zk8ak6xbj80xb1cwpfhvgfsqr6qc5nb-haskell-ide-engine-ghc842-0.10.0.0 - /nix/store/xixdvl0zaxwxv7vg5yh5n1c3mfziylmy-haskell-ide-engine-ghc843-0.10.0.0 - /nix/store/2vkknszx8a79zli4r7m1km0g5q839ljy-haskell-ide-engine-ghc844-0.10.0.0 - /nix/store/5byn4lv9vs4sx8wbj4in33i6mrlhp10k-haskell-ide-engine-ghc861-0.10.0.0 - /nix/store/624qszlz61jvmdr1nvmz7kf2akdjrn3d-haskell-ide-engine-ghc862-0.10.0.0 - /nix/store/ix0cl548sg5kv5dw8baq429javdy2hb3-haskell-ide-engine-ghc863-0.10.0.0 - /nix/store/w5xzzmmdm1kdfm195cq4blzv5dl69z6f-haskell-ide-engine-ghc864-0.10.0.0 - /nix/store/aqb38lri5cw7bv1g8bh6md2z5kn3yq4f-haskell-ide-engine-ghc865-0.10.0.0 - ## x86_64-darwin - /nix/store/zg0swixk3v280xr3bxvly9csrf353xc8-haskell-ide-engine-ghc822-0.10.0.0 - /nix/store/rxyizclnkfz7v5wmcffhppkfwbgxs8w2-haskell-ide-engine-ghc842-0.10.0.0 - /nix/store/3hbzcabibrc67zjy6fxipzs9wbs6y164-haskell-ide-engine-ghc843-0.10.0.0 - /nix/store/90z9h7ij4yhqi7bgr3jac4lnx70g6w1j-haskell-ide-engine-ghc844-0.10.0.0 - /nix/store/0035fzz1923ybdq4wq9dqslv4mgxxxlb-haskell-ide-engine-ghc861-0.10.0.0 - /nix/store/r529lppz0hcm0jf2qw5gb788d1piifhf-haskell-ide-engine-ghc862-0.10.0.0 - /nix/store/939ipf6rw9hdq7j8zp31n3m0q97y462z-haskell-ide-engine-ghc863-0.10.0.0 - /nix/store/sd86wdkix55i6zri12rl6inwbpsr1nmy-haskell-ide-engine-ghc864-0.10.0.0 - /nix/store/cjkd4zxwg4p4zf1hps6hna47diddjd2b-haskell-ide-engine-ghc865-0.10.0.0 - - # 0.9.0.0 - ## x86_64-linux - /nix/store/826simd2sxai2ixp79sagig45fcqlbzx-haskell-ide-engine-ghc821-0.9.0.0 - /nix/store/4l7cmyd7yz7f7fh9c7ncxp7a0ibkiyhk-haskell-ide-engine-ghc822-0.9.0.0 - /nix/store/pfs0zmr1gj8m83cj811dxpqi38rngaby-haskell-ide-engine-ghc842-0.9.0.0 - /nix/store/xbg2gz5h5grgksdj11fa5bn4g76pa205-haskell-ide-engine-ghc843-0.9.0.0 - /nix/store/hpip464r63fgbm13gc2rvw4dgy5wx7jq-haskell-ide-engine-ghc844-0.9.0.0 - /nix/store/93gs7s6fvvzjq5s65grm7ajnchc104mq-haskell-ide-engine-ghc861-0.9.0.0 - /nix/store/fm6q1p4qahvpzwpzywhpmgpwdlqmalf5-haskell-ide-engine-ghc862-0.9.0.0 - /nix/store/718j08f3sfrcznmg4jm468wi52ki8da9-haskell-ide-engine-ghc863-0.9.0.0 - /nix/store/ykfwddgjmg8vaf7i83lbfpzmlc6ga0d0-haskell-ide-engine-ghc864-0.9.0.0 - ## x86_64-darwin - /nix/store/zjg7w8drvgajwg45kcwsrcgbfbyggjda-haskell-ide-engine-ghc821-0.9.0.0 - /nix/store/9wds6q9cwl001z4ygdr2hh70y1db30j6-haskell-ide-engine-ghc822-0.9.0.0 - /nix/store/srbrsjasysqvmva9sjzi5msf56jb9jih-haskell-ide-engine-ghc842-0.9.0.0 - /nix/store/ijks8qwcpdnh4g8r09iz1jhlcviavnba-haskell-ide-engine-ghc843-0.9.0.0 - /nix/store/js2qmcbkvc4nbjzj831lh3l8xb2rrlfv-haskell-ide-engine-ghc844-0.9.0.0 - /nix/store/knmzrcwglv38h83awjczfxvr260i0mvz-haskell-ide-engine-ghc861-0.9.0.0 - /nix/store/k0w4r4x6hghm4rniwpc00jv0w6grf44d-haskell-ide-engine-ghc862-0.9.0.0 - /nix/store/h9q4ikqjwj2wzjgbhcxh8qkmlcd764kj-haskell-ide-engine-ghc863-0.9.0.0 - /nix/store/5lwkwpgd9mdbrj2k267kjjslc5jmp2f4-haskell-ide-engine-ghc864-0.9.0.0 -) - -misslog=$(mktemp) - -for path in ${storepaths[*]}; do - url=$(sed -r <<< $path \ - -e 's|-.*|.narinfo|' \ - -e 's|/nix/store|https://all-hies.cachix.org|') - { - code=$(curl -s -o /dev/null -w "%{http_code}\n" "$url") - case "$code" in - 200) - echo "HIT $path" - ;; - *) - echo -e "\e[01;31mMISS($code)\e[0m $path" - echo "" >> $misslog - ;; - esac - } & -done - -wait - -misses=$(wc -l < "$misslog") -rm "$misslog" -exit "$misses" diff --git a/default.nix b/default.nix index 1750370..cdc51d4 100644 --- a/default.nix +++ b/default.nix @@ -1,202 +1,18 @@ -# nixpkgs used only for library functions, not for dependencies -{ pkgs ? import ./nixpkgs.nix -, lib ? pkgs.lib -}: - +{}: let + legacyError = throw '' + all-hies has undergone major changes and now needs to be used on a per-project basis. + See https://github.com/Infinisil/all-hies/blob/master/Readme.md for more info. + The last version that doesn't have these changes is 4b6aab017cdf96a90641dc287437685675d598da. + ''; +in { + overlay = import ./overlay.nix; - # A la lib.composeExtensions, but with any number of extensions - composeMultiple = extensions: - if extensions == [] then self: super: {} - else lib.composeExtensions - (lib.head extensions) - (composeMultiple (lib.tail extensions)); - - # Speeds up Haskell builds - speedierBuilds = self: super: { - mkDerivation = args: super.mkDerivation (args // { - enableLibraryProfiling = false; - }); - }; - - ghcSpecific = buildName: ghcVersion: rec { - - # Reformats the ghc version into the format "8.6.4" - versionString = lib.concatStringsSep "." - (builtins.match "ghc(.)(.)(.)" ghcVersion); - - # The more recent the version, the higher the priority - # But higher priorities are lower on the number scale (WHY?), so we need the - - versionPriority = - lib.toInt (lib.head (builtins.match "ghc(.*)" ghcVersion)); - - # Evaluates to a nixpkgs that has the given ghc version in it - pkgs = let - rev = builtins.readFile (./nixpkgsForGhc + "/${ghcVersion}"); - sha256 = builtins.readFile (./generated + "/${buildName}/nixpkgsHashes/${rev}"); - in import (fetchTarball { - url = "https://github.com/NixOS/nixpkgs/tarball/${rev}"; - inherit sha256; - }) { config = {}; overlays = []; }; - - # Returns a Haskell overlay that sets all ghc base libraries to null - # (minus a select few) - baseLibraryNuller = self: super: let - libs = lib.splitString " " - (builtins.readFile (./generated + "/${buildName}/ghcBaseLibraries/${ghcVersion}")); - libNames = map (lib: (builtins.parseDrvName lib).name) libs; - # It seems that some versions require Cabal and some don't - filtered = lib.filter (name: ! lib.elem name [ "ghc" "Cabal" ]) libNames; - in lib.genAttrs filtered (name: null); - - # Custom overrides for specific ghc versions, declared in ./overrides - customOverrides = - let path = ./overrides + "/${ghcVersion}.nix"; - in if builtins.pathExists path then import path - else self: super: {}; - }; - - - # Build for a specific GHC version - hieBuild = buildName: ghcVersion: let - forGhc = ghcSpecific buildName ghcVersion; - hlib = forGhc.pkgs.haskell.lib; - revision = builtins.readFile (./generated + "/${buildName}/stack2nix/revision"); - - hieOverride = self: super: { - haskell-ide-engine = (hlib.overrideCabal super.haskell-ide-engine (old: { - # Embed the ghc version into the name - pname = "${old.pname}-${ghcVersion}"; - version = revision; - - # Link Haskell libraries dynamically, improves startup time for projects - # using TH by a lot (40x faster in one of my tests), but also Increases - # closure size by about 50% (=~ 1.2GB) per HIE version - # Can be disabled again for GHC versions that have a fix for - # https://gitlab.haskell.org/ghc/ghc/issues/15524 - enableSharedExecutables = true; - isLibrary = false; - doHaddock = false; - })).overrideAttrs (old: { - nativeBuildInputs = old.nativeBuildInputs or [] ++ [ pkgs.makeWrapper ]; - # Make sure hie-x.x.x binary exists - # And make sure hie-wrapper finds this version - postInstall = old.postInstall or "" + '' - ln -s hie $out/bin/hie-${forGhc.versionString} - wrapProgram $out/bin/hie-wrapper \ - --suffix PATH : $out/bin - ''; - - # Assign a priority for allowing multiple versions to be installed at once - meta = old.meta // { - priority = forGhc.versionPriority; - }; - }); - }; - - overrideFun = old: { - overrides = composeMultiple [ - (old.overrides or (self: super: {})) - speedierBuilds - hieOverride - forGhc.baseLibraryNuller - forGhc.customOverrides - ]; - }; - - expr = import (./generated + "/${buildName}/stack2nix/${ghcVersion}.nix") { - pkgs = forGhc.pkgs; - }; - - hpkgs = expr.override overrideFun; - build = hpkgs.haskell-ide-engine // { - inherit (hpkgs) hie-bios; - }; - - in build; - - # A set of all ghc versions for all hie versions, like - # { stable = { ghc864 = ; ... }; unstable = ...; } - # Each of which contain binaries hie and hie-$major.$minor.$patch for their - # GHC version, along with a hie-wrapper binary that knows about this version - allVersions = lib.mapAttrs (buildName: _: - let ghcVersionFiles = lib.filterAttrs (file: _: file != "revision") - (builtins.readDir (./generated + "/${buildName}/stack2nix")); - in lib.mapAttrs' (ghcVersionFile: _: - - let ghcVersion = lib.removeSuffix ".nix" ghcVersionFile; - in lib.nameValuePair ghcVersion (hieBuild buildName ghcVersion) - - ) ghcVersionFiles) (builtins.readDir ./generated); - - # Combine a set of HIE versions (given as { = ; }) - # into a single derivation with the following binaries: - # - hie-*.*.*: The GHC specific HIE versions, such as ghc-8.6.4 - # - hie-wrapper: A HIE version that selects the appropriate version - # automatically out of the given ones - # - hie: Same as hie-wrapper, provided for easy editor integration - combined = versions: pkgs.buildEnv { - name = "haskell-ide-engine-combined"; - paths = lib.attrValues versions ++ [ (lib.last (lib.attrValues versions)).hie-bios ]; - buildInputs = [ pkgs.makeWrapper ]; - pathsToLink = [ "/bin" ]; - extraPrefix = "/libexec"; - postBuild = '' - # Remove hie/hie-wrapper in /libexec/bin because those are both just PATH - # wrapped versions. Move the actual hie-wrapper to $out/bin - rm $out/libexec/bin/{hie,hie-wrapper} - mkdir -p $out/bin - mv $out/libexec/bin/.hie-wrapper-wrapped $out/bin/hie-wrapper - mv $out/libexec/bin/hie-bios $out/bin/hie-bios - - # Now /libexec/bin only contains binaries hie-*.*.*. Link all of them to - # $out/bin such that users installing this directly can access these - # specific versions too in $PATH - for bin in $out/libexec/bin/*; do - ln -s ../libexec/bin/$(basename $bin) $out/bin/$(basename $bin) - done - - # Because we don't want hie-wrapper to fall back to hie binaries later in - # PATH (because if this derivation is installed, a later hie might be - # hie-wrapper itself, leading to infinite process recursion), we provide - # our own hie binary instead, which will only be called if it couldn't - # find any appropriate hie-*.*.* binary, in which case the user needs to - # adjust their all-hies installation to make that one available. - cat > $out/libexec/bin/hie << EOF - #!${pkgs.runtimeShell} - echo "hie-wrapper couldn't find a HIE binary with a matching GHC" \\ - "version in your all-hies installation" >&2 - exit 1 - EOF - chmod +x $out/libexec/bin/hie - - # Wrap hie-wrapper with PATH prefixed with /libexec/bin, such - # that it can find all those binaries. Not --suffix because - # hie-wrapper needs to find our hie binary first and foremost as per - # above comment, also makes it more reproducible. Not --set because hie - # needs to find binaries for cabal/ghc and such. - wrapProgram $out/bin/hie-wrapper \ - --prefix PATH : $out/libexec/bin - - # Make hie-wrapper available as hie as well, in order to minimize the need - # for customizing editors, and to override a potential hie binary from - # another derivation in the same environment. - ln -s hie-wrapper $out/bin/hie - ''; - }; - - # Generates a set with the utility functions from a set of versions - mkSet = versions: { - inherit combined versions; - selection = { selector }: combined (selector versions); - latest = lib.last (lib.attrValues versions); - }; - -in mkSet allVersions.stable -// lib.mapAttrs (_: mkSet) (builtins.removeAttrs allVersions ["stable"]) -// { - bios = throw "all-hies: All versions now have hie-bios support, no need to use the bios attribute anymore"; - - # Stable, but fall back to unstable if stable doesn't have a certain GHC - # version - unstableFallback = mkSet (allVersions.unstable // allVersions.stable); + combined = legacyError; + versions = legacyError; + selection = legacyError; + latest = legacyError; + unstable = legacyError; + bios = legacyError; + unstableFallback = legacyError; } diff --git a/generated/8.6.5/materialization-id b/generated/8.6.5/materialization-id new file mode 100644 index 0000000..b91cb81 --- /dev/null +++ b/generated/8.6.5/materialization-id @@ -0,0 +1,3 @@ +These materialization files were generated with +haskell.nix af5998fe8d6b201d2a9be09993f1b9fae74e0082 +haskell-ide-engine fe630a1e31232013549518909e511924e19af4af diff --git a/generated/8.6.5/materialized/.stack-to-nix.cache b/generated/8.6.5/materialized/.stack-to-nix.cache new file mode 100644 index 0000000..e69de29 diff --git a/generated/8.6.5/materialized/default.nix b/generated/8.6.5/materialized/default.nix new file mode 100644 index 0000000..bfaef3d --- /dev/null +++ b/generated/8.6.5/materialized/default.nix @@ -0,0 +1,64 @@ +{ + extras = hackage: + { + packages = { + "aeson" = (((hackage.aeson)."1.4.6.0").revisions).default; + "aeson-pretty" = (((hackage.aeson-pretty)."0.8.8").revisions).default; + "ansi-terminal" = (((hackage.ansi-terminal)."0.10.2").revisions).default; + "ansi-wl-pprint" = (((hackage.ansi-wl-pprint)."0.6.9").revisions).default; + "base-compat" = (((hackage.base-compat)."0.11.1").revisions).default; + "brittany" = (((hackage.brittany)."0.12.1.1").revisions).default; + "bytestring-trie" = (((hackage.bytestring-trie)."0.2.5.0").revisions).default; + "Cabal" = (((hackage.Cabal)."3.0.2.0").revisions).default; + "cabal-helper" = (((hackage.cabal-helper)."1.1.0.0").revisions).default; + "cabal-plan" = (((hackage.cabal-plan)."0.6.2.0").revisions).default; + "clock" = (((hackage.clock)."0.7.2").revisions).default; + "constrained-dynamic" = (((hackage.constrained-dynamic)."0.1.0.0").revisions).default; + "extra" = (((hackage.extra)."1.6.21").revisions).default; + "floskell" = (((hackage.floskell)."0.10.2").revisions).default; + "ghc-exactprint" = (((hackage.ghc-exactprint)."0.6.2").revisions).default; + "ghc-lib-parser" = (((hackage.ghc-lib-parser)."8.8.2.20200205").revisions).default; + "ghc-lib-parser-ex" = (((hackage.ghc-lib-parser-ex)."8.8.5.3").revisions).default; + "haskell-lsp" = (((hackage.haskell-lsp)."0.20.0.0").revisions).default; + "haskell-lsp-types" = (((hackage.haskell-lsp-types)."0.20.0.0").revisions).default; + "haskell-src-exts" = (((hackage.haskell-src-exts)."1.22.0").revisions).default; + "hie-bios" = (((hackage.hie-bios)."0.5.0").revisions).default; + "hlint" = (((hackage.hlint)."2.2.11").revisions).default; + "hoogle" = (((hackage.hoogle)."5.0.17.15").revisions).default; + "indexed-profunctors" = (((hackage.indexed-profunctors)."0.1").revisions).default; + "lens" = (((hackage.lens)."4.18").revisions).default; + "lsp-test" = (((hackage.lsp-test)."0.10.1.0").revisions).default; + "monad-dijkstra" = (((hackage.monad-dijkstra)."0.1.1.2").revisions).default; + "optics-core" = (((hackage.optics-core)."0.2").revisions).default; + "optparse-applicative" = (((hackage.optparse-applicative)."0.15.1.0").revisions).default; + "ormolu" = (((hackage.ormolu)."0.0.3.1").revisions).default; + "parser-combinators" = (((hackage.parser-combinators)."1.2.1").revisions).default; + "resourcet" = (((hackage.resourcet)."1.2.3").revisions).default; + "semialign" = (((hackage.semialign)."1.1").revisions).default; + "temporary" = (((hackage.temporary)."1.2.1.1").revisions).default; + "topograph" = (((hackage.topograph)."1").revisions).default; + "type-equality" = (((hackage.type-equality)."1").revisions).default; + "unliftio" = (((hackage.unliftio)."0.2.12.1").revisions).default; + "unliftio-core" = (((hackage.unliftio-core)."0.2.0.1").revisions).default; + "haddock-api" = (((hackage.haddock-api)."2.22.0").revisions).r1; + "hsimport" = (((hackage.hsimport)."0.11.0").revisions).r2; + haskell-ide-engine = ./haskell-ide-engine.nix; + hie-plugin-api = ./hie-plugin-api.nix; + }; + }; + resolver = "lts-14.22"; + modules = [ + ({ lib, ... }: + { + packages = { + "haskell-ide-engine" = { + flags = { "pedantic" = lib.mkOverride 900 true; }; + }; + "hie-plugin-api" = { + flags = { "pedantic" = lib.mkOverride 900 true; }; + }; + }; + }) + { packages = {}; } + ]; + } \ No newline at end of file diff --git a/generated/8.6.5/materialized/haskell-ide-engine.nix b/generated/8.6.5/materialized/haskell-ide-engine.nix new file mode 100644 index 0000000..7cb2a66 --- /dev/null +++ b/generated/8.6.5/materialized/haskell-ide-engine.nix @@ -0,0 +1,358 @@ +{ system + , compiler + , flags + , pkgs + , hsPkgs + , pkgconfPkgs + , errorHandler + , config + , ... }: + { + flags = { pedantic = false; }; + package = { + specVersion = "2.0"; + identifier = { name = "haskell-ide-engine"; version = "1.4"; }; + license = "BSD-3-Clause"; + copyright = "2015 - 2019, TBD"; + maintainer = "alan.zimm@gmail.com (for now)"; + author = "Many, TBD when we release"; + homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; + url = ""; + synopsis = "Provide a common engine to power any Haskell IDE"; + description = "Please see README.md"; + buildType = "Simple"; + isLocal = true; + detailLevel = "FullDetails"; + licenseFiles = [ "LICENSE" ]; + dataDir = ""; + dataFiles = []; + extraSrcFiles = []; + extraTmpFiles = []; + extraDocFiles = []; + }; + components = { + "library" = { + depends = [ + (hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal")) + (hsPkgs."Diff" or (errorHandler.buildDepError "Diff")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."apply-refact" or (errorHandler.buildDepError "apply-refact")) + (hsPkgs."async" or (errorHandler.buildDepError "async")) + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."brittany" or (errorHandler.buildDepError "brittany")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal")) + (hsPkgs."cabal-helper" or (errorHandler.buildDepError "cabal-helper")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."floskell" or (errorHandler.buildDepError "floskell")) + (hsPkgs."fold-debounce" or (errorHandler.buildDepError "fold-debounce")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."ghc-exactprint" or (errorHandler.buildDepError "ghc-exactprint")) + (hsPkgs."gitrev" or (errorHandler.buildDepError "gitrev")) + (hsPkgs."haddock-api" or (errorHandler.buildDepError "haddock-api")) + (hsPkgs."haddock-library" or (errorHandler.buildDepError "haddock-library")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."haskell-src-exts" or (errorHandler.buildDepError "haskell-src-exts")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hoogle" or (errorHandler.buildDepError "hoogle")) + (hsPkgs."hsimport" or (errorHandler.buildDepError "hsimport")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."lifted-async" or (errorHandler.buildDepError "lifted-async")) + (hsPkgs."lens" or (errorHandler.buildDepError "lens")) + (hsPkgs."monoid-subclasses" or (errorHandler.buildDepError "monoid-subclasses")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) + (hsPkgs."optparse-simple" or (errorHandler.buildDepError "optparse-simple")) + (hsPkgs."parsec" or (errorHandler.buildDepError "parsec")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."safe" or (errorHandler.buildDepError "safe")) + (hsPkgs."sorted-list" or (errorHandler.buildDepError "sorted-list")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."syb" or (errorHandler.buildDepError "syb")) + (hsPkgs."tagsoup" or (errorHandler.buildDepError "tagsoup")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) + (hsPkgs."unix-time" or (errorHandler.buildDepError "unix-time")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."vector" or (errorHandler.buildDepError "vector")) + (hsPkgs."versions" or (errorHandler.buildDepError "versions")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."bytestring-trie" or (errorHandler.buildDepError "bytestring-trie")) + (hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) + (hsPkgs."hlint" or (errorHandler.buildDepError "hlint")) + ] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).ge "8.6") (hsPkgs."ormolu" or (errorHandler.buildDepError "ormolu")); + buildable = true; + modules = [ + "Paths_haskell_ide_engine" + "Haskell/Ide/Engine/Channel" + "Haskell/Ide/Engine/CodeActions" + "Haskell/Ide/Engine/Completions" + "Haskell/Ide/Engine/Reactor" + "Haskell/Ide/Engine/Options" + "Haskell/Ide/Engine/Plugin/ApplyRefact" + "Haskell/Ide/Engine/Plugin/Brittany" + "Haskell/Ide/Engine/Plugin/Example2" + "Haskell/Ide/Engine/Plugin/Floskell" + "Haskell/Ide/Engine/Plugin/Haddock" + "Haskell/Ide/Engine/Plugin/HfaAlign" + "Haskell/Ide/Engine/Plugin/HsImport" + "Haskell/Ide/Engine/Plugin/Liquid" + "Haskell/Ide/Engine/Plugin/Ormolu" + "Haskell/Ide/Engine/Plugin/Package" + "Haskell/Ide/Engine/Plugin/Package/Compat" + "Haskell/Ide/Engine/Plugin/Pragmas" + "Haskell/Ide/Engine/Plugin/Generic" + "Haskell/Ide/Engine/Plugin/GhcMod" + "Haskell/Ide/Engine/Scheduler" + "Haskell/Ide/Engine/Support/FromHaRe" + "Haskell/Ide/Engine/Support/Hoogle" + "Haskell/Ide/Engine/Support/Fuzzy" + "Haskell/Ide/Engine/Support/HieExtras" + "Haskell/Ide/Engine/Server" + "Haskell/Ide/Engine/Types" + "Haskell/Ide/Engine/Version" + ]; + hsSourceDirs = [ "src" ]; + }; + sublibs = { + "hie-test-utils" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."blaze-markup" or (errorHandler.buildDepError "blaze-markup")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."hspec-core" or (errorHandler.buildDepError "hspec-core")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + ]; + buildable = true; + modules = [ "TestUtils" ]; + hsSourceDirs = [ "test/utils" ]; + }; + }; + exes = { + "hie" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."optparse-simple" or (errorHandler.buildDepError "optparse-simple")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + ]; + buildable = true; + modules = [ "Paths_haskell_ide_engine" "RunTest" ]; + hsSourceDirs = [ "app" ]; + mainPath = [ + "MainHie.hs" + ] ++ (pkgs.lib).optional (flags.pedantic) ""; + }; + "hie-wrapper" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."optparse-simple" or (errorHandler.buildDepError "optparse-simple")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + ]; + buildable = true; + modules = [ "Paths_haskell_ide_engine" ]; + hsSourceDirs = [ "app" ]; + mainPath = [ + "HieWrapper.hs" + ] ++ (pkgs.lib).optional (flags.pedantic) ""; + }; + }; + tests = { + "unit-test" = { + depends = [ + (hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."cabal-helper" or (errorHandler.buildDepError "cabal-helper")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."free" or (errorHandler.buildDepError "free")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hoogle" or (errorHandler.buildDepError "hoogle")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + ]; + build-tools = [ + (hsPkgs.buildPackages.cabal-helper or (pkgs.buildPackages.cabal-helper or (errorHandler.buildToolDepError "cabal-helper"))) + (hsPkgs.buildPackages.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover"))) + ]; + buildable = true; + modules = [ + "ApplyRefactPluginSpec" + "CabalHelperSpec" + "CodeActionsSpec" + "ContextSpec" + "DiffSpec" + "ExtensibleStateSpec" + "GenericPluginSpec" + "GhcModPluginSpec" + "HooglePluginSpec" + "HsImportSpec" + "JsonSpec" + "LiquidSpec" + "OptionsSpec" + "PackagePluginSpec" + "Paths_haskell_ide_engine" + "Spec" + ]; + hsSourceDirs = [ "test/unit" ]; + mainPath = [ "Main.hs" ]; + }; + "dispatcher-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + ]; + build-tools = [ + (hsPkgs.buildPackages.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover"))) + ]; + buildable = true; + hsSourceDirs = [ "test/dispatcher" ]; + mainPath = [ "Main.hs" ]; + }; + "plugin-dispatcher-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + ]; + buildable = true; + hsSourceDirs = [ "test/plugin-dispatcher" ]; + mainPath = [ "Main.hs" ]; + }; + "func-test" = { + depends = [ + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."lsp-test" or (errorHandler.buildDepError "lsp-test")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."lens" or (errorHandler.buildDepError "lens")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + ]; + build-tools = [ + (hsPkgs.buildPackages.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover"))) + (hsPkgs.buildPackages.haskell-ide-engine or (pkgs.buildPackages.haskell-ide-engine or (errorHandler.buildToolDepError "haskell-ide-engine"))) + (hsPkgs.buildPackages.cabal-helper or (pkgs.buildPackages.cabal-helper or (errorHandler.buildToolDepError "cabal-helper"))) + ]; + buildable = true; + modules = [ + "CompletionSpec" + "CommandSpec" + "DeferredSpec" + "DefinitionSpec" + "DiagnosticsSpec" + "FormatSpec" + "FunctionalBadProjectSpec" + "FunctionalCodeActionsSpec" + "FunctionalLiquidSpec" + "FunctionalSpec" + "HieBiosSpec" + "HighlightSpec" + "HoverSpec" + "ProgressSpec" + "ReferencesSpec" + "RenameSpec" + "SymbolsSpec" + "TypeDefinitionSpec" + "Utils" + ]; + hsSourceDirs = [ "test/functional" ]; + mainPath = [ "Main.hs" ]; + }; + "wrapper-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + ]; + buildable = true; + hsSourceDirs = [ "test/wrapper" ]; + mainPath = [ "HieWrapper.hs" ]; + }; + }; + }; + } // rec { + src = (pkgs.lib).mkDefault ./.; + } \ No newline at end of file diff --git a/generated/8.6.5/materialized/hie-plugin-api.nix b/generated/8.6.5/materialized/hie-plugin-api.nix new file mode 100644 index 0000000..3b6b876 --- /dev/null +++ b/generated/8.6.5/materialized/hie-plugin-api.nix @@ -0,0 +1,95 @@ +{ system + , compiler + , flags + , pkgs + , hsPkgs + , pkgconfPkgs + , errorHandler + , config + , ... }: + { + flags = { pedantic = false; }; + package = { + specVersion = "2.0"; + identifier = { name = "hie-plugin-api"; version = "1.4"; }; + license = "BSD-3-Clause"; + copyright = "2015 TBD"; + maintainer = "alan.zimm@gmail.com (for now)"; + author = "Many,TBD when we release"; + homepage = ""; + url = ""; + synopsis = "Haskell IDE API for plugin communication"; + description = "Please see README.md"; + buildType = "Simple"; + isLocal = true; + detailLevel = "FullDetails"; + licenseFiles = [ "LICENSE" ]; + dataDir = ""; + dataFiles = []; + extraSrcFiles = []; + extraTmpFiles = []; + extraDocFiles = []; + }; + components = { + "library" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."Diff" or (errorHandler.buildDepError "Diff")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."bytestring-trie" or (errorHandler.buildDepError "bytestring-trie")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."cryptohash-sha1" or (errorHandler.buildDepError "cryptohash-sha1")) + (hsPkgs."constrained-dynamic" or (errorHandler.buildDepError "constrained-dynamic")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."fingertree" or (errorHandler.buildDepError "fingertree")) + (hsPkgs."free" or (errorHandler.buildDepError "free")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."cabal-helper" or (errorHandler.buildDepError "cabal-helper")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) + (hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core")) + (hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."sorted-list" or (errorHandler.buildDepError "sorted-list")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."syb" or (errorHandler.buildDepError "syb")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + ] ++ (if system.isWindows + then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ] + else [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]); + buildable = true; + modules = [ + "Haskell/Ide/Engine/ArtifactMap" + "Haskell/Ide/Engine/Compat" + "Haskell/Ide/Engine/Cradle" + "Haskell/Ide/Engine/GhcCompat" + "Haskell/Ide/Engine/GhcUtils" + "Haskell/Ide/Engine/Config" + "Haskell/Ide/Engine/Context" + "Haskell/Ide/Engine/Ghc" + "Haskell/Ide/Engine/GhcModuleCache" + "Haskell/Ide/Engine/Logger" + "Haskell/Ide/Engine/ModuleCache" + "Haskell/Ide/Engine/MonadFunctions" + "Haskell/Ide/Engine/MonadTypes" + "Haskell/Ide/Engine/MultiThreadState" + "Haskell/Ide/Engine/PluginApi" + "Haskell/Ide/Engine/PluginUtils" + "Haskell/Ide/Engine/PluginsIdeMonads" + "Haskell/Ide/Engine/TypeMap" + ]; + }; + }; + } // rec { + src = (pkgs.lib).mkDefault ./hie-plugin-api; + } \ No newline at end of file diff --git a/generated/8.6.5/stack-sha256 b/generated/8.6.5/stack-sha256 new file mode 100644 index 0000000..33cf32b --- /dev/null +++ b/generated/8.6.5/stack-sha256 @@ -0,0 +1 @@ +0mvalnps5xnjg5qhr3kgl791fvxy8w1c3cki07kccps2ps9fhmj5 diff --git a/generated/8.8.3/materialization-id b/generated/8.8.3/materialization-id new file mode 100644 index 0000000..b91cb81 --- /dev/null +++ b/generated/8.8.3/materialization-id @@ -0,0 +1,3 @@ +These materialization files were generated with +haskell.nix af5998fe8d6b201d2a9be09993f1b9fae74e0082 +haskell-ide-engine fe630a1e31232013549518909e511924e19af4af diff --git a/generated/8.8.3/materialized/.stack-to-nix.cache b/generated/8.8.3/materialized/.stack-to-nix.cache new file mode 100644 index 0000000..e69de29 diff --git a/generated/8.8.3/materialized/default.nix b/generated/8.8.3/materialized/default.nix new file mode 100644 index 0000000..7702c4a --- /dev/null +++ b/generated/8.8.3/materialized/default.nix @@ -0,0 +1,42 @@ +{ + extras = hackage: + { + packages = { + "apply-refact" = (((hackage.apply-refact)."0.7.0.0").revisions).default; + "Cabal" = (((hackage.Cabal)."3.0.2.0").revisions).default; + "cabal-helper" = (((hackage.cabal-helper)."1.1.0.0").revisions).default; + "clock" = (((hackage.clock)."0.7.2").revisions).default; + "constrained-dynamic" = (((hackage.constrained-dynamic)."0.1.0.0").revisions).default; + "floskell" = (((hackage.floskell)."0.10.2").revisions).default; + "ghc-lib-parser" = (((hackage.ghc-lib-parser)."8.8.2.20200205").revisions).default; + "ghc-lib-parser-ex" = (((hackage.ghc-lib-parser-ex)."8.8.5.3").revisions).default; + "haddock-api" = (((hackage.haddock-api)."2.23.1").revisions).default; + "hoogle" = (((hackage.hoogle)."5.0.17.15").revisions).default; + "hsimport" = (((hackage.hsimport)."0.11.0").revisions).default; + "ilist" = (((hackage.ilist)."0.3.1.0").revisions).default; + "monad-dijkstra" = (((hackage.monad-dijkstra)."0.1.1.2").revisions).default; + "semigroups" = (((hackage.semigroups)."0.18.5").revisions).default; + "temporary" = (((hackage.temporary)."1.2.1.1").revisions).default; + "unliftio-core" = (((hackage.unliftio-core)."0.2.0.1").revisions).default; + "hie-bios" = (((hackage.hie-bios)."0.5.0").revisions).default; + "bytestring-trie" = (((hackage.bytestring-trie)."0.2.5.0").revisions).r1; + haskell-ide-engine = ./haskell-ide-engine.nix; + hie-plugin-api = ./hie-plugin-api.nix; + }; + }; + resolver = "lts-15.10"; + modules = [ + ({ lib, ... }: + { + packages = { + "haskell-ide-engine" = { + flags = { "pedantic" = lib.mkOverride 900 true; }; + }; + "hie-plugin-api" = { + flags = { "pedantic" = lib.mkOverride 900 true; }; + }; + }; + }) + { packages = {}; } + ]; + } \ No newline at end of file diff --git a/generated/8.8.3/materialized/haskell-ide-engine.nix b/generated/8.8.3/materialized/haskell-ide-engine.nix new file mode 100644 index 0000000..7cb2a66 --- /dev/null +++ b/generated/8.8.3/materialized/haskell-ide-engine.nix @@ -0,0 +1,358 @@ +{ system + , compiler + , flags + , pkgs + , hsPkgs + , pkgconfPkgs + , errorHandler + , config + , ... }: + { + flags = { pedantic = false; }; + package = { + specVersion = "2.0"; + identifier = { name = "haskell-ide-engine"; version = "1.4"; }; + license = "BSD-3-Clause"; + copyright = "2015 - 2019, TBD"; + maintainer = "alan.zimm@gmail.com (for now)"; + author = "Many, TBD when we release"; + homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; + url = ""; + synopsis = "Provide a common engine to power any Haskell IDE"; + description = "Please see README.md"; + buildType = "Simple"; + isLocal = true; + detailLevel = "FullDetails"; + licenseFiles = [ "LICENSE" ]; + dataDir = ""; + dataFiles = []; + extraSrcFiles = []; + extraTmpFiles = []; + extraDocFiles = []; + }; + components = { + "library" = { + depends = [ + (hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal")) + (hsPkgs."Diff" or (errorHandler.buildDepError "Diff")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."apply-refact" or (errorHandler.buildDepError "apply-refact")) + (hsPkgs."async" or (errorHandler.buildDepError "async")) + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."brittany" or (errorHandler.buildDepError "brittany")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."Cabal" or (errorHandler.buildDepError "Cabal")) + (hsPkgs."cabal-helper" or (errorHandler.buildDepError "cabal-helper")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."floskell" or (errorHandler.buildDepError "floskell")) + (hsPkgs."fold-debounce" or (errorHandler.buildDepError "fold-debounce")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."ghc-exactprint" or (errorHandler.buildDepError "ghc-exactprint")) + (hsPkgs."gitrev" or (errorHandler.buildDepError "gitrev")) + (hsPkgs."haddock-api" or (errorHandler.buildDepError "haddock-api")) + (hsPkgs."haddock-library" or (errorHandler.buildDepError "haddock-library")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."haskell-src-exts" or (errorHandler.buildDepError "haskell-src-exts")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hoogle" or (errorHandler.buildDepError "hoogle")) + (hsPkgs."hsimport" or (errorHandler.buildDepError "hsimport")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."lifted-async" or (errorHandler.buildDepError "lifted-async")) + (hsPkgs."lens" or (errorHandler.buildDepError "lens")) + (hsPkgs."monoid-subclasses" or (errorHandler.buildDepError "monoid-subclasses")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) + (hsPkgs."optparse-simple" or (errorHandler.buildDepError "optparse-simple")) + (hsPkgs."parsec" or (errorHandler.buildDepError "parsec")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."safe" or (errorHandler.buildDepError "safe")) + (hsPkgs."sorted-list" or (errorHandler.buildDepError "sorted-list")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."syb" or (errorHandler.buildDepError "syb")) + (hsPkgs."tagsoup" or (errorHandler.buildDepError "tagsoup")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) + (hsPkgs."unix-time" or (errorHandler.buildDepError "unix-time")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."vector" or (errorHandler.buildDepError "vector")) + (hsPkgs."versions" or (errorHandler.buildDepError "versions")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."bytestring-trie" or (errorHandler.buildDepError "bytestring-trie")) + (hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) + (hsPkgs."hlint" or (errorHandler.buildDepError "hlint")) + ] ++ (pkgs.lib).optional (compiler.isGhc && (compiler.version).ge "8.6") (hsPkgs."ormolu" or (errorHandler.buildDepError "ormolu")); + buildable = true; + modules = [ + "Paths_haskell_ide_engine" + "Haskell/Ide/Engine/Channel" + "Haskell/Ide/Engine/CodeActions" + "Haskell/Ide/Engine/Completions" + "Haskell/Ide/Engine/Reactor" + "Haskell/Ide/Engine/Options" + "Haskell/Ide/Engine/Plugin/ApplyRefact" + "Haskell/Ide/Engine/Plugin/Brittany" + "Haskell/Ide/Engine/Plugin/Example2" + "Haskell/Ide/Engine/Plugin/Floskell" + "Haskell/Ide/Engine/Plugin/Haddock" + "Haskell/Ide/Engine/Plugin/HfaAlign" + "Haskell/Ide/Engine/Plugin/HsImport" + "Haskell/Ide/Engine/Plugin/Liquid" + "Haskell/Ide/Engine/Plugin/Ormolu" + "Haskell/Ide/Engine/Plugin/Package" + "Haskell/Ide/Engine/Plugin/Package/Compat" + "Haskell/Ide/Engine/Plugin/Pragmas" + "Haskell/Ide/Engine/Plugin/Generic" + "Haskell/Ide/Engine/Plugin/GhcMod" + "Haskell/Ide/Engine/Scheduler" + "Haskell/Ide/Engine/Support/FromHaRe" + "Haskell/Ide/Engine/Support/Hoogle" + "Haskell/Ide/Engine/Support/Fuzzy" + "Haskell/Ide/Engine/Support/HieExtras" + "Haskell/Ide/Engine/Server" + "Haskell/Ide/Engine/Types" + "Haskell/Ide/Engine/Version" + ]; + hsSourceDirs = [ "src" ]; + }; + sublibs = { + "hie-test-utils" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."blaze-markup" or (errorHandler.buildDepError "blaze-markup")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."hspec-core" or (errorHandler.buildDepError "hspec-core")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + ]; + buildable = true; + modules = [ "TestUtils" ]; + hsSourceDirs = [ "test/utils" ]; + }; + }; + exes = { + "hie" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."optparse-simple" or (errorHandler.buildDepError "optparse-simple")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + ]; + buildable = true; + modules = [ "Paths_haskell_ide_engine" "RunTest" ]; + hsSourceDirs = [ "app" ]; + mainPath = [ + "MainHie.hs" + ] ++ (pkgs.lib).optional (flags.pedantic) ""; + }; + "hie-wrapper" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."optparse-simple" or (errorHandler.buildDepError "optparse-simple")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + ]; + buildable = true; + modules = [ "Paths_haskell_ide_engine" ]; + hsSourceDirs = [ "app" ]; + mainPath = [ + "HieWrapper.hs" + ] ++ (pkgs.lib).optional (flags.pedantic) ""; + }; + }; + tests = { + "unit-test" = { + depends = [ + (hsPkgs."QuickCheck" or (errorHandler.buildDepError "QuickCheck")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."cabal-helper" or (errorHandler.buildDepError "cabal-helper")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."free" or (errorHandler.buildDepError "free")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hoogle" or (errorHandler.buildDepError "hoogle")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."optparse-applicative" or (errorHandler.buildDepError "optparse-applicative")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."quickcheck-instances" or (errorHandler.buildDepError "quickcheck-instances")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + ]; + build-tools = [ + (hsPkgs.buildPackages.cabal-helper or (pkgs.buildPackages.cabal-helper or (errorHandler.buildToolDepError "cabal-helper"))) + (hsPkgs.buildPackages.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover"))) + ]; + buildable = true; + modules = [ + "ApplyRefactPluginSpec" + "CabalHelperSpec" + "CodeActionsSpec" + "ContextSpec" + "DiffSpec" + "ExtensibleStateSpec" + "GenericPluginSpec" + "GhcModPluginSpec" + "HooglePluginSpec" + "HsImportSpec" + "JsonSpec" + "LiquidSpec" + "OptionsSpec" + "PackagePluginSpec" + "Paths_haskell_ide_engine" + "Spec" + ]; + hsSourceDirs = [ "test/unit" ]; + mainPath = [ "Main.hs" ]; + }; + "dispatcher-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + ]; + build-tools = [ + (hsPkgs.buildPackages.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover"))) + ]; + buildable = true; + hsSourceDirs = [ "test/dispatcher" ]; + mainPath = [ "Main.hs" ]; + }; + "plugin-dispatcher-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + ]; + buildable = true; + hsSourceDirs = [ "test/plugin-dispatcher" ]; + mainPath = [ "Main.hs" ]; + }; + "func-test" = { + depends = [ + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."lsp-test" or (errorHandler.buildDepError "lsp-test")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."haskell-lsp-types" or (errorHandler.buildDepError "haskell-lsp-types")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hie-test-utils" or (errorHandler.buildDepError "hie-test-utils")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."lens" or (errorHandler.buildDepError "lens")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + ]; + build-tools = [ + (hsPkgs.buildPackages.hspec-discover or (pkgs.buildPackages.hspec-discover or (errorHandler.buildToolDepError "hspec-discover"))) + (hsPkgs.buildPackages.haskell-ide-engine or (pkgs.buildPackages.haskell-ide-engine or (errorHandler.buildToolDepError "haskell-ide-engine"))) + (hsPkgs.buildPackages.cabal-helper or (pkgs.buildPackages.cabal-helper or (errorHandler.buildToolDepError "cabal-helper"))) + ]; + buildable = true; + modules = [ + "CompletionSpec" + "CommandSpec" + "DeferredSpec" + "DefinitionSpec" + "DiagnosticsSpec" + "FormatSpec" + "FunctionalBadProjectSpec" + "FunctionalCodeActionsSpec" + "FunctionalLiquidSpec" + "FunctionalSpec" + "HieBiosSpec" + "HighlightSpec" + "HoverSpec" + "ProgressSpec" + "ReferencesSpec" + "RenameSpec" + "SymbolsSpec" + "TypeDefinitionSpec" + "Utils" + ]; + hsSourceDirs = [ "test/functional" ]; + mainPath = [ "Main.hs" ]; + }; + "wrapper-test" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."hspec" or (errorHandler.buildDepError "hspec")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."haskell-ide-engine" or (errorHandler.buildDepError "haskell-ide-engine")) + (hsPkgs."hie-plugin-api" or (errorHandler.buildDepError "hie-plugin-api")) + ]; + buildable = true; + hsSourceDirs = [ "test/wrapper" ]; + mainPath = [ "HieWrapper.hs" ]; + }; + }; + }; + } // rec { + src = (pkgs.lib).mkDefault ./.; + } \ No newline at end of file diff --git a/generated/8.8.3/materialized/hie-plugin-api.nix b/generated/8.8.3/materialized/hie-plugin-api.nix new file mode 100644 index 0000000..3b6b876 --- /dev/null +++ b/generated/8.8.3/materialized/hie-plugin-api.nix @@ -0,0 +1,95 @@ +{ system + , compiler + , flags + , pkgs + , hsPkgs + , pkgconfPkgs + , errorHandler + , config + , ... }: + { + flags = { pedantic = false; }; + package = { + specVersion = "2.0"; + identifier = { name = "hie-plugin-api"; version = "1.4"; }; + license = "BSD-3-Clause"; + copyright = "2015 TBD"; + maintainer = "alan.zimm@gmail.com (for now)"; + author = "Many,TBD when we release"; + homepage = ""; + url = ""; + synopsis = "Haskell IDE API for plugin communication"; + description = "Please see README.md"; + buildType = "Simple"; + isLocal = true; + detailLevel = "FullDetails"; + licenseFiles = [ "LICENSE" ]; + dataDir = ""; + dataFiles = []; + extraSrcFiles = []; + extraTmpFiles = []; + extraDocFiles = []; + }; + components = { + "library" = { + depends = [ + (hsPkgs."base" or (errorHandler.buildDepError "base")) + (hsPkgs."Diff" or (errorHandler.buildDepError "Diff")) + (hsPkgs."aeson" or (errorHandler.buildDepError "aeson")) + (hsPkgs."bytestring-trie" or (errorHandler.buildDepError "bytestring-trie")) + (hsPkgs."bytestring" or (errorHandler.buildDepError "bytestring")) + (hsPkgs."cryptohash-sha1" or (errorHandler.buildDepError "cryptohash-sha1")) + (hsPkgs."constrained-dynamic" or (errorHandler.buildDepError "constrained-dynamic")) + (hsPkgs."containers" or (errorHandler.buildDepError "containers")) + (hsPkgs."data-default" or (errorHandler.buildDepError "data-default")) + (hsPkgs."directory" or (errorHandler.buildDepError "directory")) + (hsPkgs."filepath" or (errorHandler.buildDepError "filepath")) + (hsPkgs."fingertree" or (errorHandler.buildDepError "fingertree")) + (hsPkgs."free" or (errorHandler.buildDepError "free")) + (hsPkgs."ghc" or (errorHandler.buildDepError "ghc")) + (hsPkgs."hie-bios" or (errorHandler.buildDepError "hie-bios")) + (hsPkgs."cabal-helper" or (errorHandler.buildDepError "cabal-helper")) + (hsPkgs."haskell-lsp" or (errorHandler.buildDepError "haskell-lsp")) + (hsPkgs."hslogger" or (errorHandler.buildDepError "hslogger")) + (hsPkgs."unliftio" or (errorHandler.buildDepError "unliftio")) + (hsPkgs."unliftio-core" or (errorHandler.buildDepError "unliftio-core")) + (hsPkgs."monad-control" or (errorHandler.buildDepError "monad-control")) + (hsPkgs."mtl" or (errorHandler.buildDepError "mtl")) + (hsPkgs."process" or (errorHandler.buildDepError "process")) + (hsPkgs."sorted-list" or (errorHandler.buildDepError "sorted-list")) + (hsPkgs."stm" or (errorHandler.buildDepError "stm")) + (hsPkgs."syb" or (errorHandler.buildDepError "syb")) + (hsPkgs."text" or (errorHandler.buildDepError "text")) + (hsPkgs."transformers" or (errorHandler.buildDepError "transformers")) + (hsPkgs."unordered-containers" or (errorHandler.buildDepError "unordered-containers")) + (hsPkgs."transformers-base" or (errorHandler.buildDepError "transformers-base")) + (hsPkgs."yaml" or (errorHandler.buildDepError "yaml")) + ] ++ (if system.isWindows + then [ (hsPkgs."Win32" or (errorHandler.buildDepError "Win32")) ] + else [ (hsPkgs."unix" or (errorHandler.buildDepError "unix")) ]); + buildable = true; + modules = [ + "Haskell/Ide/Engine/ArtifactMap" + "Haskell/Ide/Engine/Compat" + "Haskell/Ide/Engine/Cradle" + "Haskell/Ide/Engine/GhcCompat" + "Haskell/Ide/Engine/GhcUtils" + "Haskell/Ide/Engine/Config" + "Haskell/Ide/Engine/Context" + "Haskell/Ide/Engine/Ghc" + "Haskell/Ide/Engine/GhcModuleCache" + "Haskell/Ide/Engine/Logger" + "Haskell/Ide/Engine/ModuleCache" + "Haskell/Ide/Engine/MonadFunctions" + "Haskell/Ide/Engine/MonadTypes" + "Haskell/Ide/Engine/MultiThreadState" + "Haskell/Ide/Engine/PluginApi" + "Haskell/Ide/Engine/PluginUtils" + "Haskell/Ide/Engine/PluginsIdeMonads" + "Haskell/Ide/Engine/TypeMap" + ]; + }; + }; + } // rec { + src = (pkgs.lib).mkDefault ./hie-plugin-api; + } \ No newline at end of file diff --git a/generated/8.8.3/stack-sha256 b/generated/8.8.3/stack-sha256 new file mode 100644 index 0000000..4a01e12 --- /dev/null +++ b/generated/8.8.3/stack-sha256 @@ -0,0 +1 @@ +0fd2gzgg626r718l21bmgs689wy0x9b9690mp7sdx99jp1bjpd77 diff --git a/generated/stable/ghcBaseLibraries/ghc842 b/generated/stable/ghcBaseLibraries/ghc842 deleted file mode 100644 index 33a7050..0000000 --- a/generated/stable/ghcBaseLibraries/ghc842 +++ /dev/null @@ -1 +0,0 @@ -Cabal-2.2.0.1 array-0.5.2.0 base-4.11.1.0 binary-0.8.5.1 bytestring-0.10.8.2 containers-0.5.11.0 deepseq-1.4.3.0 directory-1.3.1.5 filepath-1.4.2 ghc-8.4.4 ghc-boot-8.4.4 ghc-boot-th-8.4.4 ghc-compact-0.1.0.0 ghc-prim-0.5.2.0 ghci-8.4.4 haskeline-0.7.4.2 hpc-0.6.0.3 integer-gmp-1.0.2.0 mtl-2.2.2 parsec-3.1.13.0 pretty-1.1.3.6 process-1.6.3.0 rts-1.0 stm-2.4.5.1 template-haskell-2.13.0.0 terminfo-0.4.1.1 text-1.2.3.1 time-1.8.0.2 transformers-0.5.5.0 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/ghcBaseLibraries/ghc843 b/generated/stable/ghcBaseLibraries/ghc843 deleted file mode 100644 index 33a7050..0000000 --- a/generated/stable/ghcBaseLibraries/ghc843 +++ /dev/null @@ -1 +0,0 @@ -Cabal-2.2.0.1 array-0.5.2.0 base-4.11.1.0 binary-0.8.5.1 bytestring-0.10.8.2 containers-0.5.11.0 deepseq-1.4.3.0 directory-1.3.1.5 filepath-1.4.2 ghc-8.4.4 ghc-boot-8.4.4 ghc-boot-th-8.4.4 ghc-compact-0.1.0.0 ghc-prim-0.5.2.0 ghci-8.4.4 haskeline-0.7.4.2 hpc-0.6.0.3 integer-gmp-1.0.2.0 mtl-2.2.2 parsec-3.1.13.0 pretty-1.1.3.6 process-1.6.3.0 rts-1.0 stm-2.4.5.1 template-haskell-2.13.0.0 terminfo-0.4.1.1 text-1.2.3.1 time-1.8.0.2 transformers-0.5.5.0 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/ghcBaseLibraries/ghc844 b/generated/stable/ghcBaseLibraries/ghc844 deleted file mode 100644 index 33a7050..0000000 --- a/generated/stable/ghcBaseLibraries/ghc844 +++ /dev/null @@ -1 +0,0 @@ -Cabal-2.2.0.1 array-0.5.2.0 base-4.11.1.0 binary-0.8.5.1 bytestring-0.10.8.2 containers-0.5.11.0 deepseq-1.4.3.0 directory-1.3.1.5 filepath-1.4.2 ghc-8.4.4 ghc-boot-8.4.4 ghc-boot-th-8.4.4 ghc-compact-0.1.0.0 ghc-prim-0.5.2.0 ghci-8.4.4 haskeline-0.7.4.2 hpc-0.6.0.3 integer-gmp-1.0.2.0 mtl-2.2.2 parsec-3.1.13.0 pretty-1.1.3.6 process-1.6.3.0 rts-1.0 stm-2.4.5.1 template-haskell-2.13.0.0 terminfo-0.4.1.1 text-1.2.3.1 time-1.8.0.2 transformers-0.5.5.0 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/ghcBaseLibraries/ghc864 b/generated/stable/ghcBaseLibraries/ghc864 deleted file mode 100644 index 3628c6a..0000000 --- a/generated/stable/ghcBaseLibraries/ghc864 +++ /dev/null @@ -1 +0,0 @@ -Cabal-2.4.0.1 array-0.5.2.0 base-4.12.0.0 binary-0.8.6.0 bytestring-0.10.8.2 containers-0.6.0.1 deepseq-1.4.4.0 directory-1.3.3.0 filepath-1.4.2.1 ghc-8.6.1 ghc-boot-8.6.1 ghc-boot-th-8.6.1 ghc-compact-0.1.0.0 ghc-heap-8.6.1 ghc-prim-0.5.3 ghci-8.6.1 haskeline-0.7.4.3 hpc-0.6.0.3 integer-gmp-1.0.2.0 libiserv-8.6.1 mtl-2.2.2 parsec-3.1.13.0 pretty-1.1.3.6 process-1.6.3.0 rts-1.0 stm-2.5.0.0 template-haskell-2.14.0.0 terminfo-0.4.1.2 text-1.2.3.1 time-1.8.0.2 transformers-0.5.5.0 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/ghcBaseLibraries/ghc865 b/generated/stable/ghcBaseLibraries/ghc865 deleted file mode 100644 index 3628c6a..0000000 --- a/generated/stable/ghcBaseLibraries/ghc865 +++ /dev/null @@ -1 +0,0 @@ -Cabal-2.4.0.1 array-0.5.2.0 base-4.12.0.0 binary-0.8.6.0 bytestring-0.10.8.2 containers-0.6.0.1 deepseq-1.4.4.0 directory-1.3.3.0 filepath-1.4.2.1 ghc-8.6.1 ghc-boot-8.6.1 ghc-boot-th-8.6.1 ghc-compact-0.1.0.0 ghc-heap-8.6.1 ghc-prim-0.5.3 ghci-8.6.1 haskeline-0.7.4.3 hpc-0.6.0.3 integer-gmp-1.0.2.0 libiserv-8.6.1 mtl-2.2.2 parsec-3.1.13.0 pretty-1.1.3.6 process-1.6.3.0 rts-1.0 stm-2.5.0.0 template-haskell-2.14.0.0 terminfo-0.4.1.2 text-1.2.3.1 time-1.8.0.2 transformers-0.5.5.0 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/ghcBaseLibraries/ghc881 b/generated/stable/ghcBaseLibraries/ghc881 deleted file mode 100644 index c4a5e7e..0000000 --- a/generated/stable/ghcBaseLibraries/ghc881 +++ /dev/null @@ -1 +0,0 @@ -Cabal-3.0.0.0 array-0.5.4.0 base-4.13.0.0 binary-0.8.7.0 bytestring-0.10.9.0 containers-0.6.2.1 deepseq-1.4.4.0 directory-1.3.3.2 filepath-1.4.2.1 ghc-8.8.1 ghc-boot-8.8.1 ghc-boot-th-8.8.1 ghc-compact-0.1.0.0 ghc-heap-8.8.1 ghc-prim-0.5.3 ghci-8.8.1 haskeline-0.7.5.0 hpc-0.6.0.3 integer-gmp-1.0.2.0 libiserv-8.8.1 mtl-2.2.2 parsec-3.1.14.0 pretty-1.1.3.6 process-1.6.5.1 rts-1.0 stm-2.5.0.0 template-haskell-2.15.0.0 terminfo-0.4.1.4 text-1.2.4.0 time-1.9.3 transformers-0.5.6.2 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/ghcBaseLibraries/ghc882 b/generated/stable/ghcBaseLibraries/ghc882 deleted file mode 100644 index c4a5e7e..0000000 --- a/generated/stable/ghcBaseLibraries/ghc882 +++ /dev/null @@ -1 +0,0 @@ -Cabal-3.0.0.0 array-0.5.4.0 base-4.13.0.0 binary-0.8.7.0 bytestring-0.10.9.0 containers-0.6.2.1 deepseq-1.4.4.0 directory-1.3.3.2 filepath-1.4.2.1 ghc-8.8.1 ghc-boot-8.8.1 ghc-boot-th-8.8.1 ghc-compact-0.1.0.0 ghc-heap-8.8.1 ghc-prim-0.5.3 ghci-8.8.1 haskeline-0.7.5.0 hpc-0.6.0.3 integer-gmp-1.0.2.0 libiserv-8.8.1 mtl-2.2.2 parsec-3.1.14.0 pretty-1.1.3.6 process-1.6.5.1 rts-1.0 stm-2.5.0.0 template-haskell-2.15.0.0 terminfo-0.4.1.4 text-1.2.4.0 time-1.9.3 transformers-0.5.6.2 unix-2.7.2.2 xhtml-3000.2.2.1 diff --git a/generated/stable/nixpkgsHashes/650a295621b27c4ebe0fa64a63fd25323e64deb3 b/generated/stable/nixpkgsHashes/650a295621b27c4ebe0fa64a63fd25323e64deb3 deleted file mode 100644 index dea9cc9..0000000 --- a/generated/stable/nixpkgsHashes/650a295621b27c4ebe0fa64a63fd25323e64deb3 +++ /dev/null @@ -1 +0,0 @@ -0rxjkfiq53ibz0rzggvnp341b6kgzgfr9x6q07m2my7ijlirs2da \ No newline at end of file diff --git a/generated/stable/nixpkgsHashes/91ca88b3e6b4d57640c213e755077b2d93d0a8bd b/generated/stable/nixpkgsHashes/91ca88b3e6b4d57640c213e755077b2d93d0a8bd deleted file mode 100644 index 1c26502..0000000 --- a/generated/stable/nixpkgsHashes/91ca88b3e6b4d57640c213e755077b2d93d0a8bd +++ /dev/null @@ -1 +0,0 @@ -195rzph1jfrbccky5m2wvm6d0x0v0zy6iq630wrlbl1dx7jrji37 \ No newline at end of file diff --git a/generated/stable/nixpkgsHashes/b5c02d2028dbfe33f05a6134a7190af74d792b74 b/generated/stable/nixpkgsHashes/b5c02d2028dbfe33f05a6134a7190af74d792b74 deleted file mode 100644 index b9c6510..0000000 --- a/generated/stable/nixpkgsHashes/b5c02d2028dbfe33f05a6134a7190af74d792b74 +++ /dev/null @@ -1 +0,0 @@ -1bs84r8mbxs9bkkbl0vsazwrc77gvfc140kn8rknh4vhqshmjb15 \ No newline at end of file diff --git a/generated/stable/nixpkgsHashes/d73f16d6767e99675682f822dac3017bf9af1e83 b/generated/stable/nixpkgsHashes/d73f16d6767e99675682f822dac3017bf9af1e83 deleted file mode 100644 index 0cf13fb..0000000 --- a/generated/stable/nixpkgsHashes/d73f16d6767e99675682f822dac3017bf9af1e83 +++ /dev/null @@ -1 +0,0 @@ -1b5wix9kr5s3hscpl425si0zw00zzijc9xrcph6l2myh4n5nvcm0 \ No newline at end of file diff --git a/generated/stable/nixpkgsHashes/f77e057cda60a3f96a4010a698ff3be311bf18c6 b/generated/stable/nixpkgsHashes/f77e057cda60a3f96a4010a698ff3be311bf18c6 deleted file mode 100644 index 52345cd..0000000 --- a/generated/stable/nixpkgsHashes/f77e057cda60a3f96a4010a698ff3be311bf18c6 +++ /dev/null @@ -1 +0,0 @@ -0j4m572dz6ak49mf3c0q4aq1z0qzm7qn08amygym27j55gh197zf \ No newline at end of file diff --git a/generated/stable/stack2nix/ghc842.nix b/generated/stable/stack2nix/ghc842.nix deleted file mode 100644 index c31f681..0000000 --- a/generated/stable/stack2nix/ghc842.nix +++ /dev/null @@ -1,37581 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc842 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.2"; - sha256 = "b8364da380f5f1d85d13e427851a153be2809e1838d16393e37566f34b384b87"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BiobaseNewick" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, cereal - , cereal-text, cmdargs, containers, fgl, ForestStructures - , QuickCheck, stdenv, text, text-binary, vector - }: - mkDerivation { - pname = "BiobaseNewick"; - version = "0.0.0.2"; - sha256 = "6432f684a75fd8a2cea59a5359a59f48020ead19119efaed7018ecae726d13bd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/choener/BiobaseNewick"; - description = "Newick file format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "2.2.0.1"; - sha256 = "02b5301304df73cea3c7d544b5026b228141dc3ac1d5b08c9a206f99aa330a7b"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChasingBottoms" = callPackage - ({ mkDerivation, base, containers, mtl, QuickCheck, random, stdenv - , syb - }: - mkDerivation { - pname = "ChasingBottoms"; - version = "1.3.1.4"; - sha256 = "639867018f33a645305ff60f1bf9ecca2efea4ac630d8c8f9fd72d064db79e19"; - libraryHaskellDepends = [ - base containers mtl QuickCheck random syb - ]; - doHaddock = false; - doCheck = false; - description = "For testing partial and infinite values"; - license = stdenv.lib.licenses.mit; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ClustalParser" = callPackage - ({ mkDerivation, base, cmdargs, either-unwrap, parsec, stdenv, text - , vector - }: - mkDerivation { - pname = "ClustalParser"; - version = "1.2.3"; - sha256 = "fed67bdcb9d89d871b02f556e5a294d0ea6fd05576f92621a8797abff4325a72"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec text vector ]; - executableHaskellDepends = [ base cmdargs either-unwrap ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing Clustal tools output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.2"; - sha256 = "613314357579b29e1d3fa8451b51e8b9a1307a2b33b65a3f2b2ef2bece025169"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DRBG" = callPackage - ({ mkDerivation, base, bytestring, cereal, cipher-aes128 - , crypto-api, cryptohash-cryptoapi, entropy, mtl, parallel - , prettyclass, stdenv, tagged - }: - mkDerivation { - pname = "DRBG"; - version = "0.5.5"; - sha256 = "21df3202486cc83c7cc3f867cb139eac9a3f69bd91b5f6b016ae026e03c33bfd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal cipher-aes128 crypto-api - cryptohash-cryptoapi entropy mtl parallel prettyclass tagged - ]; - doHaddock = false; - doCheck = false; - description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.3.4"; - sha256 = "77b7daec5a79ade779706748f11b4d9b8f805e57a68e7406c3b5a1dee16e0c2f"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.12.1.0"; - sha256 = "731493be9cb960c3159458dc24b1a217d6f26e1f46a840bef880accd04d5bd1d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Fin" = callPackage - ({ mkDerivation, base, natural-induction, peano, stdenv }: - mkDerivation { - pname = "Fin"; - version = "0.2.3.0"; - sha256 = "2fd02d1fc6426fb9b50db291d56b19dfc6da85cd3777f0aa64514c15a2b95ab2"; - libraryHaskellDepends = [ base natural-induction peano ]; - doHaddock = false; - doCheck = false; - description = "Finite totally-ordered sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.3"; - sha256 = "b0d06e7c5eb1aa7ffd11a85598df05d034bab3a83130fdf37121f89136e0025c"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ForestStructures" = callPackage - ({ mkDerivation, base, containers, fgl, QuickCheck, stdenv - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "ForestStructures"; - version = "0.0.0.2"; - sha256 = "fe74067fee601844de5c839a115f2bd75d4a1be9f0ee8ec42c0150bcf886693f"; - libraryHaskellDepends = [ - base containers fgl QuickCheck unordered-containers vector - vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/choener/ForestStructures"; - description = "Tree- and forest structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.2.1.0"; - sha256 = "31c022e0ad63f259ff9fa582a235924786e929a95b52efae10a3d29fef7cb6a6"; - revision = "2"; - editedCabalFile = "0xlby7483dv33c13f44kkvmai186g72jhxmcq8749s1hyxi6fqnb"; - libraryHaskellDepends = [ base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.13"; - sha256 = "3d217c0ee5e040992ebc278f5e20911460202a6e13767c8a0ddb01ef4adabac8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.9.2"; - sha256 = "8fc7134e9a930dd53fd168f200bde8ca07905365788f70adc6a1a4c413667ce5"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HCodecs" = callPackage - ({ mkDerivation, array, base, bytestring, QuickCheck, random - , semigroups, stdenv - }: - mkDerivation { - pname = "HCodecs"; - version = "0.5.1"; - sha256 = "a724616b79ac12c2d661dc3f54cfa0e7d530d1ba3eafa1e6c3e7116e035a3143"; - libraryHaskellDepends = [ - array base bytestring QuickCheck random semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; - description = "A library to read, write and manipulate MIDI, WAVE, and SoundFont2 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC" = callPackage - ({ mkDerivation, base, bytestring, containers, convertible, mtl - , old-time, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "HDBC"; - version = "2.4.0.2"; - sha256 = "670757fd674b6caf2f456034bdcb54812af2cdf2a32465d7f4b7f0baa377db5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers convertible mtl old-time text time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdbc/hdbc"; - description = "Haskell Database Connectivity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC-mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, HDBC, mysqlclient - , openssl, stdenv, time, utf8-string, zlib - }: - mkDerivation { - pname = "HDBC-mysql"; - version = "0.7.1.0"; - sha256 = "81c985d4a243c965930fb412b3175ca799ba66985f8b6844014fd600df1da7cf"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring HDBC time utf8-string ]; - librarySystemDepends = [ mysqlclient openssl zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ryantm/hdbc-mysql"; - description = "MySQL driver for HDBC"; - license = "LGPL"; - }) {inherit (pkgs) mysqlclient; inherit (pkgs) openssl; -inherit (pkgs) zlib;}; - "HDBC-session" = callPackage - ({ mkDerivation, base, HDBC, stdenv }: - mkDerivation { - pname = "HDBC-session"; - version = "0.1.1.1"; - sha256 = "255c4e55f888c873bfa6f9af25ccb7fb0eb004f398b86b74ed7878d39c59ce99"; - libraryHaskellDepends = [ base HDBC ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Bracketed connection for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HPDF" = callPackage - ({ mkDerivation, array, base, base64-bytestring, binary, bytestring - , containers, errors, mtl, random, stdenv, vector, zlib - }: - mkDerivation { - pname = "HPDF"; - version = "1.4.10"; - sha256 = "de2bfddd93eeef2129a2378e8dce486d086bec3c48ee2a1bf1a5fb01581607d4"; - revision = "1"; - editedCabalFile = "1djn0a9rk3qrbz31bxj115r65p28fi3wzcrkrnjvzibl3450pq30"; - libraryHaskellDepends = [ - array base base64-bytestring binary bytestring containers errors - mtl random vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.alpheccar.org"; - description = "Generation of PDF documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSet" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, stdenv }: - mkDerivation { - pname = "HSet"; - version = "0.0.1"; - sha256 = "eba93be5a76581585ae33af6babe9c2718fae307d41989cd36a605d9b0e8d16a"; - libraryHaskellDepends = [ base containers hashable hashtables ]; - doHaddock = false; - doCheck = false; - description = "Faux heterogeneous sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.0.3.22"; - sha256 = "8dac8a583c762675f2d64138303618f017d6be95d59e60774ea7cbfc040dab04"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.13.2.4"; - sha256 = "36c5cafd35683c37379a93098dea61e6194aa1b9cfd0cdad4e0f1643f4cf2bf6"; - revision = "2"; - editedCabalFile = "1kaxcx0xqpcxddaapywikg56ip9a172clikhsfvwd287hpyrjqff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.11"; - sha256 = "fad22b39d8027107158407a3af73907dbb66e403d9aa7b9fd778db171c65b645"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaTeX" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, matrix - , parsec, QuickCheck, stdenv, text, transformers, wl-pprint-extras - }: - mkDerivation { - pname = "HaTeX"; - version = "3.19.0.0"; - sha256 = "1fd977a582f44a62dafe32ad72acde8c0c01b0ae0ce5f7d6bbc4d91b68e24749"; - libraryHaskellDepends = [ - base bytestring containers hashable matrix parsec QuickCheck text - transformers wl-pprint-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; - description = "The Haskell LaTeX library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet" = callPackage - ({ mkDerivation, array, base, base64-string, bytestring, cryptohash - , mime-mail, mtl, network, old-time, pretty, stdenv, text - }: - mkDerivation { - pname = "HaskellNet"; - version = "0.5.1"; - sha256 = "3245d31ad76f9f9013a2f6e2285d73ed37376eeb073c100b9a6d19e87f0ca838"; - revision = "1"; - editedCabalFile = "12p3v58jhr54yzsmqgza3rbrp19w2iq5m43g568hcx20n7zwzwjk"; - libraryHaskellDepends = [ - array base base64-string bytestring cryptohash mime-mail mtl - network old-time pretty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/HaskellNet"; - description = "Client support for POP3, SMTP, and IMAP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet-SSL" = callPackage - ({ mkDerivation, base, bytestring, connection, data-default - , HaskellNet, network, stdenv, tls - }: - mkDerivation { - pname = "HaskellNet-SSL"; - version = "0.3.4.0"; - sha256 = "83ae92547fd5d52b5b74402101ec254423abeac0c0725e14a112d6ffc843040f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring connection data-default HaskellNet network tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dpwright/HaskellNet-SSL"; - description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, strict - , template-haskell, terminal-size, text, transformers, uniplate - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "Hoed"; - version = "0.5.1"; - sha256 = "a8f6dc9717e15642f00cd84a8d1030ac6a7c7870f7015e380bd728a843c3f4e7"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MaartenFaddegon/Hoed"; - description = "Lightweight algorithmic debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.13"; - sha256 = "125cd16f3db36ed102fe8748e474eaca69dbc57ee8794e29863c69d0a47fff47"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsOpenSSL-x509-system" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, stdenv, unix }: - mkDerivation { - pname = "HsOpenSSL-x509-system"; - version = "0.1.0.3"; - sha256 = "5bdcb7ae2faba07a374109fea0a1431ae09d080f8574e60ab7a351b46f931f92"; - libraryHaskellDepends = [ base bytestring HsOpenSSL unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/HsOpenSSL-x509-system"; - description = "Use the system's native CA certificate store with HsOpenSSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.0.3"; - sha256 = "4904b71a74b825324e7510147a6fe393940dc32693d54c2f7c2ecf14f130739d"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.0.0"; - sha256 = "8f7d0d81c23a2d2dc7e7333b82824070a53144d40e08741456c8afe078b2111a"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.2.9.5"; - sha256 = "849c6cf4a613f906f7e553a1baefe9c0dc61c13b41a5f5b9605cf80e328cc355"; - revision = "1"; - editedCabalFile = "0s6i5f2cpm29b88zjrs1na699v9kvfsbcvr25z6vyr6bi6mmxdfm"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-blp" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, directory - , filepath, hashable, JuicyPixels, optparse-simple, stdenv - , text-show, unordered-containers, vector - }: - mkDerivation { - pname = "JuicyPixels-blp"; - version = "0.1.0.1"; - sha256 = "2c8e0773e41fb841e90a36fb8c839670d2afebc6b89271f782fc5df250cbcc99"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base binary bytestring hashable JuicyPixels text-show - vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath JuicyPixels optparse-simple - text-show unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/NCrashed/JuicyPixels-blp#readme"; - description = "BLP format decoder/encoder over JuicyPixels library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.3.0"; - sha256 = "c5a03a9747bcd984924d6f7c9b4771188e297df82160e7d667ea8f4f671b0e22"; - revision = "3"; - editedCabalFile = "1xr4vjhzjw3ynibb6693dhcz2jbvbx4yg2bir8w2s98n37gwsxd7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6"; - sha256 = "c1cdec79a5f585a5839eea26a2afe6a37aab5ed2f402a16e7d59fe9a4e925a9a"; - revision = "2"; - editedCabalFile = "1mca2r4gjznqdh4kck5cjkn53isgkhvkf3ri09qsn7nsssvgki0g"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JohnLato/listlike"; - description = "Generic support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.9"; - sha256 = "1d6045b8fdf7b89ed6b495e535613f5091cdfc9cdfe05a862207e76ce205f794"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MissingH" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath - , hslogger, HUnit, mtl, network, old-locale, old-time, parsec - , process, random, regex-compat, stdenv, time, unix - }: - mkDerivation { - pname = "MissingH"; - version = "1.4.0.1"; - sha256 = "283f2afd46625d98b4e29f77edadfa5e6009a227812ee2ece10091ad6a7e9b71"; - revision = "2"; - editedCabalFile = "0dqrzacp2qr5bm9p8jipnadknizn9zr5gyk5fvgf9av36yl4p2rb"; - libraryHaskellDepends = [ - array base containers directory filepath hslogger HUnit mtl network - old-locale old-time parsec process random regex-compat time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/missingh"; - description = "Large utility library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.1"; - sha256 = "abda4a297acf197e664695b839b4fb70f53e240f5420489dc21bcf6103958470"; - revision = "3"; - editedCabalFile = "0fiblwmwk48d1g9j99qrcg1ak904csgfb86y80d1nl2vr782cq6w"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4"; - sha256 = "b9cbd130921da38a693abe3f3dd5e58c883b382d0b70c112e625b64158605629"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Network-NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, convertible - , exceptions, hslogger, monad-loops, monad-peel, mstate, mtl - , network, NineP, regex-posix, stateref, stdenv, transformers - }: - mkDerivation { - pname = "Network-NineP"; - version = "0.4.3"; - sha256 = "8169e46ddfd690b96f25bc9a577568a363a270c2bddbb9fb3e1e7f1959644ec3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers convertible exceptions hslogger - monad-loops monad-peel mstate mtl network NineP regex-posix - stateref transformers - ]; - doHaddock = false; - doCheck = false; - description = "High-level abstraction over 9P protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.4"; - sha256 = "3989f6c4fe437843551004dd011c4308bf63d787ae4fbb8ce71d44b1b0b1f118"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.2.1"; - sha256 = "7acb891b911de8bb6933afeaa7f8c5291cc986da5557c922c0fc1717c5a559bf"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.0.1"; - sha256 = "d889e4040791957157f001d0236c148f531a45007a2215b7e03adbad90baf14b"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, random, stdenv - , template-haskell, tf-random, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.11.3"; - sha256 = "488c5652139da0bac8b3e7d76f11320ded298549e62db530938bfee9ca981876"; - revision = "2"; - editedCabalFile = "12c3jgdfh57b1cxfsm2qjvpjp3w8v2gxyakkhqlvliraidqq93jy"; - libraryHaskellDepends = [ - base containers deepseq random template-haskell tf-random - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.3.0"; - sha256 = "eee76dc7f9dd2d2cdeb014af728ff56f2f5d2908212bd3bb8c5e89f5c6485333"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.3"; - sha256 = "fd0a8770acaf2c594b64aafd15e8288ec5af370d901ac03a933b642deb802279"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SCalendar" = callPackage - ({ mkDerivation, base, containers, stdenv, text, time }: - mkDerivation { - pname = "SCalendar"; - version = "1.1.0"; - sha256 = "4971bf6df45953434088ba50d0e17dcc49a0e4c2dd37ad06385c1f87d87b348d"; - libraryHaskellDepends = [ base containers text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.researchgate.net/publication/311582722_Method_of_Managing_Resources_in_a_Telecommunication_Network_or_a_Computing_System"; - description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SegmentTree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "SegmentTree"; - version = "0.3"; - sha256 = "6188c1b1276d7fa0391098a563df73dd522d20b57dc5321fe3418a9e3ca84fc1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data structure for querying the set (or count) of intervals covering given point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.2"; - sha256 = "f7e620817ce065f06ae163b08461eb3ce3dc0254caf0dcbd00d01836759bf048"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.1.1.0"; - sha256 = "1a89cd2632c2fc384b4c71fdc12894cc1c3902badbf4771497437e4044274e80"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Strafunski-StrategyLib" = callPackage - ({ mkDerivation, base, directory, mtl, stdenv, syb, transformers }: - mkDerivation { - pname = "Strafunski-StrategyLib"; - version = "5.0.1.0"; - sha256 = "a018c7420289a381d2b491a753f685b9d691be07cea99855cc5c8e05d5a9a295"; - revision = "2"; - editedCabalFile = "1g9ksfgcz8fjasn78zq7w1yw9wk87i4gd5i0pf31gnf4l3963yz8"; - libraryHaskellDepends = [ base directory mtl syb transformers ]; - doHaddock = false; - doCheck = false; - description = "Library for strategic programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9"; - sha256 = "10138e863d8c6f860aad1755a6f1a36949cc02d83e5afacf6677fb3999f10db9"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque-tests" = callPackage - ({ mkDerivation, abstract-deque, array, base, containers, HUnit - , random, stdenv, test-framework, test-framework-hunit, time - }: - mkDerivation { - pname = "abstract-deque-tests"; - version = "0.3"; - sha256 = "5f17fb4cc26559f81c777f494622907e8927181175eaa172fb6adbf14b2feba5"; - libraryHaskellDepends = [ - abstract-deque array base containers HUnit random test-framework - test-framework-hunit time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A test-suite for any queue or double-ended queue satisfying an interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "active" = callPackage - ({ mkDerivation, base, lens, linear, semigroupoids, semigroups - , stdenv, vector - }: - mkDerivation { - pname = "active"; - version = "0.2.0.13"; - sha256 = "5d9a141d58bcefbf699ed233a22309ded671c25ed64bcee11a663d00731280fb"; - revision = "9"; - editedCabalFile = "1xq08xn26v3zi3fz1y5lhb1q2xv1d413wdg4pibi98n98nc2ypxz"; - libraryHaskellDepends = [ - base lens linear semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "Abstractions for animation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.5"; - sha256 = "9c5e754b1f0ff83490bcc30f5dfa8504de5a34ab8f7be03ac232882940dc8d60"; - revision = "5"; - editedCabalFile = "0yzyfqhsafzaqzj8wmjrj5ghm6jwbxya3wxc9sjl59j9q20jc4nq"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "aern2-mp" = callPackage - ({ mkDerivation, base, convertible, hmpfr, hspec, integer-gmp - , integer-logarithms, lens, mixed-types-num, QuickCheck, regex-tdfa - , stdenv, template-haskell - }: - mkDerivation { - pname = "aern2-mp"; - version = "0.1.2.0"; - sha256 = "9de6632ad943c044115e713f6c87078f33c37c6bde36ff472a5142a96cf53c8c"; - revision = "1"; - editedCabalFile = "09b92kf60m4v0xn2nm9h8wkg8wr7dc1na5c9mg2lk3kplf60sfvk"; - libraryHaskellDepends = [ - base convertible hmpfr hspec integer-gmp integer-logarithms lens - mixed-types-num QuickCheck regex-tdfa template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Multi-precision floats via MPFR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aern2-real" = callPackage - ({ mkDerivation, aern2-mp, aeson, base, bytestring, containers - , convertible, hspec, lens, mixed-types-num, QuickCheck, random - , stdenv, stm, transformers - }: - mkDerivation { - pname = "aern2-real"; - version = "0.1.1.0"; - sha256 = "25e0428536b401d5a06fd3b169025747663359595b3cfcdb56a042be81d002eb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aern2-mp aeson base bytestring containers convertible hspec lens - mixed-types-num QuickCheck stm transformers - ]; - executableHaskellDepends = [ - aern2-mp base mixed-types-num QuickCheck random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Exact real numbers via Cauchy sequences and MPFR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, contravariant, deepseq, dlist, ghc-prim, hashable - , primitive, scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers contravariant - deepseq dlist ghc-prim hashable primitive scientific tagged - template-haskell text th-abstraction time time-compat - unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.1.0.5"; - sha256 = "cfec563dc6822f035858a7190153d8818c200be565806b43b70f198bf5410577"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.7.1"; - sha256 = "59740dc1e37b08e60abb47f38b87de5b9805611a1b468cd18294d5982a1dcacb"; - revision = "3"; - editedCabalFile = "1smql0v6b9f4pb3jnrm8kspyq2ygvznk1wkhzp0x7bjd7psrnmy9"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.5"; - sha256 = "61d9dd60b6c19dd5aa350b85083ebed3eab8d8611893db1279e55e43d7c7fbcf"; - revision = "1"; - editedCabalFile = "0a29nph4a1ny365nhsxlm73mk6zgaam4sfx6knzqjy8dxp1gkj48"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-extra" = callPackage - ({ mkDerivation, aeson, aeson-compat, attoparsec - , attoparsec-iso8601, base, base-compat-batteries, bytestring - , containers, deepseq, exceptions, hashable, parsec - , recursion-schemes, scientific, stdenv, template-haskell, text - , these, time, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-extra"; - version = "0.4.1.1"; - sha256 = "d48a65d976cbf496c8e5e9c927118ffcc878d6a83adf2fc9cebd418186d6fdf8"; - revision = "4"; - editedCabalFile = "0ja5vr9w22wyknkjyl7w43frdfdfnxphvrai1b18lhinjqcd9bl5"; - libraryHaskellDepends = [ - aeson aeson-compat attoparsec attoparsec-iso8601 base - base-compat-batteries bytestring containers deepseq exceptions - hashable parsec recursion-schemes scientific template-haskell text - these time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-extra#readme"; - description = "Extra goodies for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.2"; - sha256 = "6308ce74043a47289ee183918a362508677e9dd93fbed2b1033dc5132dca0422"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-iproute" = callPackage - ({ mkDerivation, aeson, base, iproute, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "aeson-iproute"; - version = "0.2"; - sha256 = "ee4d53338bfdc4a6ce0039dea24e797a0ff1e22c312b31be2e73ddc0bddf268f"; - libraryHaskellDepends = [ - aeson base iproute text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/aeson-iproute"; - description = "Aeson instances for iproute types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.4"; - sha256 = "b20e23905c395d7b61fce6c5f6343758e3753a2dbee61800d3e15e753ac7c452"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.2"; - sha256 = "6db252c94601efcb1ce395de0084ccf931a3525339ccdca011a740e7b11cc152"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-typescript" = callPackage - ({ mkDerivation, aeson, base, containers, interpolate, mtl, stdenv - , template-haskell, text, th-abstraction, unordered-containers - }: - mkDerivation { - pname = "aeson-typescript"; - version = "0.1.0.6"; - sha256 = "2d9aa1534d2cc86a7f95a5876d7ff28006c34dbead6fb7a03aa86d6f5e310187"; - revision = "1"; - editedCabalFile = "196jhx9vn69cxgxk65qimz3ah37y0caak2w8h55jnw1vsfllsxgv"; - libraryHaskellDepends = [ - aeson base containers interpolate mtl template-haskell text - th-abstraction unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/codedownio/aeson-typescript#readme"; - description = "Generate TypeScript definition files from your ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.0.0"; - sha256 = "52418ed3abfff15e802506e5fb45f56d38eee020cb01af3f0acfe163c470ca68"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.4"; - sha256 = "d58e4d708b14ff332a8a8edad4fa8989cb6a9f518a7c6834e96281ac5f8ff232"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.5.0"; - sha256 = "dd9344c61dffff753f22af7bdd71d1cfd33245d6b32d5f2c2898a2e208cc9c04"; - libraryHaskellDepends = [ base util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebra" = callPackage - ({ mkDerivation, adjunctions, array, base, containers, distributive - , mtl, nats, semigroupoids, semigroups, stdenv, tagged - , transformers, void - }: - mkDerivation { - pname = "algebra"; - version = "4.3.1"; - sha256 = "25982f929b6f9930ad4df7b2c4084da473178a6e1f33ccc556ec96ee6f541224"; - revision = "2"; - editedCabalFile = "1yrqg6p9p7vfzv8gjbcvln5gd221kslg6zvn5d1722wfa06g4g1j"; - libraryHaskellDepends = [ - adjunctions array base containers distributive mtl nats - semigroupoids semigroups tagged transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/algebra/"; - description = "Constructive abstract algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1"; - sha256 = "453d768f7b90aaa0b5fd5462bcd7f8f40a97aa9d0ca7dfc7e61fe69e74934e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alternators" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "alternators"; - version = "0.1.2.0"; - sha256 = "afe401a4a5ccef58a503f31fd9cf0fdc9618333772e9a80fb5a2696b22f422a6"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/alternators#readme"; - description = "Handy functions when using transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , stdenv, text, time, transformers, transformers-base - , transformers-compat, void - }: - mkDerivation { - pname = "amazonka"; - version = "1.6.0"; - sha256 = "3721892c87946c12bbd87ddba38d9e244aa962db190d8897c16a264c4f3fc41c"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-apigateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-apigateway"; - version = "1.6.0"; - sha256 = "56e63ecfbd8358d0d2766e08f8f2b08362bb435c1059a5791964089dbab75ae8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon API Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-application-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-application-autoscaling"; - version = "1.6.0"; - sha256 = "5536a7d1c24cd5907b85bd743df5989d91cb3325602944062c9c640178a61df7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-appstream" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-appstream"; - version = "1.6.0"; - sha256 = "eb90692b932d62c4e7006d661b8022c4dd9f7d4dcc07e5499eceae14b33747df"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon AppStream SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-autoscaling"; - version = "1.6.0"; - sha256 = "1b52132b23ef899937d20cef595d9f8757f85861d142616bcb5ee0ba8ed5f8d3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-budgets" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-budgets"; - version = "1.6.0"; - sha256 = "ccc692856a7f7ddfba573cde6506108a30a59f641748ecc787aece894d7ce4b7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Budgets SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-certificatemanager" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-certificatemanager"; - version = "1.6.0"; - sha256 = "1fdf93c685a1b348a851b793b170a0a2282b06dc65a91c016d4756ea5726aa6a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Certificate Manager SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudformation" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudformation"; - version = "1.6.0"; - sha256 = "15e2c82574906a13d390f68f5a57a83f4bbfc37fb9ce590c9f73e00dcafa8335"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFormation SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudfront" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudfront"; - version = "1.6.0"; - sha256 = "956a60988ff3b9bef042bf523b63c882cd7b2c386483cc3f1d1d8534aad334a2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFront SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudhsm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudhsm"; - version = "1.6.0"; - sha256 = "e4227038a39486e8c390198997571ca1b14ebf5e15fec1146169da7378a41b5f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudHSM SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch"; - version = "1.6.0"; - sha256 = "dd17345576acd8f44fd3af82f07b00fdce0781abbd51ab2df827fa48528c6394"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch-domains"; - version = "1.6.0"; - sha256 = "24f0d36f9aeed5041fd893b8a0d60e5df6f31c8a126cead4652115c6b28f7ca7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch Domain SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudtrail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudtrail"; - version = "1.6.0"; - sha256 = "d9d99df96ac2e46321e0da7d1797f12472ee32011f126d2881a2f19aa7491c24"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudTrail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch"; - version = "1.6.0"; - sha256 = "25c812b364b22d96d082e3598cd75d988cb8e3decdb8e3291a0deb9714dbee51"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-events" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-events"; - version = "1.6.0"; - sha256 = "13fb5e436fc4c534d6e01c47ef23f589c01042f8a9d7efb622e89bd8f5d2ec4d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Events SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-logs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-logs"; - version = "1.6.0"; - sha256 = "80e4e74af0fb29f5ecc04f4d956ba0e9950f7936c858c1ff84461b62ca87ee7d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Logs SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codebuild" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codebuild"; - version = "1.6.0"; - sha256 = "fdbf43578e0aa54c616b2daf8b442b32a8765b62da0c3b7f6b1df95f4e55a0ab"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeBuild SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codecommit" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codecommit"; - version = "1.6.0"; - sha256 = "8a2f2630bfabd3c71fdb811a9bbafefb058ce085ad18c1756a82f59bdd682415"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeCommit SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codedeploy" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codedeploy"; - version = "1.6.0"; - sha256 = "3315b99ab8851acb5ae1251344474e0ec03796e9fd59f1d18278abc7add3c2df"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeDeploy SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codepipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codepipeline"; - version = "1.6.0"; - sha256 = "c46eea221931601ced439454d3a3fe0030acccbb776bf153182010ca8f2ec043"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodePipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-identity" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-identity"; - version = "1.6.0"; - sha256 = "3aac30e210d3fc0f45166b6211c4c61eb7cc4480fb550f106cd6206c8dc9b6d5"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-idp" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-idp"; - version = "1.6.0"; - sha256 = "a98989c8ca10bb938fb4f27803920462fc8f88d7104cebb5106b9e3728e81fff"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity Provider SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-sync" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-sync"; - version = "1.6.0"; - sha256 = "5fde10d8e1f31e676433dfd32d061739d805a076ee58abd9c05d8faba36cf435"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Sync SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-config" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-config"; - version = "1.6.0"; - sha256 = "5cb03ebc049efbccfb48ab926e08f0e9824880bb349129601f724679fe42c9cd"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Config SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite, deepseq - , exceptions, hashable, http-client, http-conduit, http-types, lens - , memory, mtl, resourcet, scientific, semigroups, stdenv, tagged - , text, time, transformers, transformers-compat - , unordered-containers, xml-conduit, xml-types - }: - mkDerivation { - pname = "amazonka-core"; - version = "1.6.0"; - sha256 = "afe1c5b74aadc0222419bd792688fd179e4f5693aeb75b74232f770fff093dc9"; - libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Core data types and functionality for Amazonka libraries"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-datapipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-datapipeline"; - version = "1.6.0"; - sha256 = "1b212dd70864ef1ccc45e3a7deca936e0e1803c97aacefc34fad966fd85f3ae5"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Data Pipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-devicefarm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-devicefarm"; - version = "1.6.0"; - sha256 = "d81b74b8b0c254a487ce464b1d6f0679d774bd42daf32312867e4dd37e35c569"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Device Farm SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-directconnect" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-directconnect"; - version = "1.6.0"; - sha256 = "8d85b9ce865eac817610a3a1db2e28100ff0069b85f41c4359a6aa5978533832"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Direct Connect SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-discovery" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-discovery"; - version = "1.6.0"; - sha256 = "7bc67ad76b1413c2aebe48324d56b2e6f4279db6e7d4951e93bdaa5329199213"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Discovery Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dms"; - version = "1.6.0"; - sha256 = "a75f19dc2a7642840a97a135f24cd9120d3f5a81ad924aad6a46c514fba180f3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Database Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ds"; - version = "1.6.0"; - sha256 = "06fa338938aee62f81f93755cdc7039515dc0c6b32bb7c0bac33d7c92066d389"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Directory Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb"; - version = "1.6.0"; - sha256 = "33f54ee4f898972f1539a00e65a851bb940c8d26058d63ddfcd07fbca57f9a3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb-streams"; - version = "1.6.0"; - sha256 = "b3f832ddf70e95232cb79d71633276aa65c72e51c6c553118b4bc9db3a48e57f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB Streams SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ec2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ec2"; - version = "1.6.0"; - sha256 = "2221c2c4e188aac9f0c9e4bb2e0bce65eb21102e6199c3783c20f3797da955cc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Compute Cloud SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecr"; - version = "1.6.0"; - sha256 = "42088ad4b4d4c01b87267a372fec706f57db4db19b27c06a3c6826ef62ef8450"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Registry SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecs"; - version = "1.6.0"; - sha256 = "309535abe8359475b3430488c84c398ed8d25a05321101c725e4a04d5f4cde3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-efs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-efs"; - version = "1.6.0"; - sha256 = "268456294406d63eb49422027226af8ef15ce08dc2095be9a6657bf9bf41afbb"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic File System SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticache" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticache"; - version = "1.6.0"; - sha256 = "e4a74a2ce2d89534fd738c429dc9a0ee7564ee3539bd93488eba211176763969"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon ElastiCache SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticbeanstalk" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticbeanstalk"; - version = "1.6.0"; - sha256 = "c1dc065763475b705aabf61086546bcd312e6802dbb328775b9777e682b2386a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Beanstalk SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticsearch"; - version = "1.6.0"; - sha256 = "3429fcae1c6fec5ebbc8acf1597532615b39def394d2296d641614c0225f3083"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elasticsearch Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elastictranscoder" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elastictranscoder"; - version = "1.6.0"; - sha256 = "ab12a7c97e09cd1a60e81525e793f5f7b84799f8f9968a2b62bae8b9c9f3c10a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Transcoder SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elb"; - version = "1.6.0"; - sha256 = "59c974009a2c26f7d267ae9736c71893a82ae69c19f344b87b4e3afd19f97e4d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elbv2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elbv2"; - version = "1.6.0"; - sha256 = "2a53d35e29b613ac7261a3202023cb8221607fd8df5f034c572d6aa751c622c9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-emr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-emr"; - version = "1.6.0"; - sha256 = "e9a07458ee61feadeff2e98fc83c1542320d5b97744225304dc1cc568ad9774f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic MapReduce SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-gamelift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-gamelift"; - version = "1.6.0"; - sha256 = "ebcdbd4a43c8d02dc0a0d7302f4b27c8e106a783e910c5cdaa68a7a7ee775ffc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon GameLift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glacier" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glacier"; - version = "1.6.0"; - sha256 = "5307434d1fbddfba54b56ceb5eea2e5dfa3ece05b9353e61a998788af3e0f913"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glacier SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-health" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-health"; - version = "1.6.0"; - sha256 = "c216b18e93e998ff04b00a5fc3ab6df8d36ef95d4b9988587eceb837615ba67b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Health APIs and Notifications SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iam" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iam"; - version = "1.6.0"; - sha256 = "a335813a795c3d28400b95b94f1b14ada3e621e83d07cb9fd9c7e7edb285905d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Identity and Access Management SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-importexport" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-importexport"; - version = "1.6.0"; - sha256 = "0951f2bcd74e24c687ab39a044cfc9334b68fdb3c885d54693c918a1c97dcd04"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-inspector" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-inspector"; - version = "1.6.0"; - sha256 = "bcef005e38e63b742c1d7c63de84f582a447042a19ea611b1b617751f3cce13e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Inspector SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot"; - version = "1.6.0"; - sha256 = "180b2169c97bd021e5f013cc72b64fe701270a7a5000950e20fa6373d38a26d0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot-dataplane" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot-dataplane"; - version = "1.6.0"; - sha256 = "aee63bc0e6eca4cc4f76f7c8aa5e20f97e3f98268160006099014c66f4a88742"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT Data Plane SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis"; - version = "1.6.0"; - sha256 = "549e41d29e46ff6aa485676436cb7cf15d2d37c2d0c62e6358b9b12b92e22f38"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-analytics"; - version = "1.6.0"; - sha256 = "7efb5438596ef4541ebca35e4b87adf3c989bf88032be2d2e617bb14a7f685ee"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-firehose" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-firehose"; - version = "1.6.0"; - sha256 = "120545cdc888c031290b2f8a6745b911ebc6e2e5c077005067683118d197549c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Firehose SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kms"; - version = "1.6.0"; - sha256 = "7aa5333583b494d0a5585f78ead67833a7e72942b264673ee8b91d7be89e8e99"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Key Management Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lambda" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lambda"; - version = "1.6.0"; - sha256 = "649626896a7572979c5628e9406eb9be090106b7468473455e77aa59cec99b06"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lambda SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lightsail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lightsail"; - version = "1.6.0"; - sha256 = "741b4c6aff2f0e08fe9868aa858708a8ab36f95859bc0a9eecfdd9bd2060aceb"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lightsail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-analytics"; - version = "1.6.0"; - sha256 = "4d6c0db0e9c17b5131c6b03cd27bc53fbddb144c3910d46639edfdccbecd5d6a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Commerce Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-metering" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-metering"; - version = "1.6.0"; - sha256 = "672de14acac579673c8c3cf032c3806554355cc84ae1b61882a589af2afb5f77"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Metering SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ml" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ml"; - version = "1.6.0"; - sha256 = "9dc12d7b71a72ea720efe9de60668ab904adddfdfbe9c422f5ebda940a556dfe"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Machine Learning SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks"; - version = "1.6.0"; - sha256 = "9a4372339b8ec556331b0198b5faf74bd8116f0816176aa8626d31f3b372d918"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks-cm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks-cm"; - version = "1.6.0"; - sha256 = "4f9e9b755f70fffd15cea08d0dfef5dc23ee4f822471f8e89f4d9b2f77a748f4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks for Chef Automate SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-pinpoint" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-pinpoint"; - version = "1.6.0"; - sha256 = "b0f8cdaabd9f357d5a687999ce83c7670f43023507ab9b25e94bc717f916b005"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Pinpoint SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-polly" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-polly"; - version = "1.6.0"; - sha256 = "773edcfa2628cb9e616b9f1f5fab461cd6f0e5822dafa43fef4403c54e958ad0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Polly SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rds"; - version = "1.6.0"; - sha256 = "c793613c53773b3ba8c5db1fa342e68c25fcada39f8557c6ed39feb05f1bc24d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Relational Database Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-redshift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-redshift"; - version = "1.6.0"; - sha256 = "426ab96936e8d42ed85b31f076d99304148a6eb0896edbe90c6b1e570a90b329"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Redshift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rekognition" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rekognition"; - version = "1.6.0"; - sha256 = "462e427021e5362747b155ba4f77e4c1d99d794087dca273697fae93aff532a8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Rekognition SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv, text }: - mkDerivation { - pname = "amazonka-route53"; - version = "1.6.0"; - sha256 = "68ef773bd9c44b28cb6166d86e3e499d9d32581915548ba08670f5cb1caa6317"; - libraryHaskellDepends = [ amazonka-core base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-route53-domains"; - version = "1.6.0"; - sha256 = "f75bfe2f5f57c7367412479f3406cabcafa11a1436dd19f9a00ead6932e1a5ea"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 Domains SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-s3" = callPackage - ({ mkDerivation, amazonka-core, base, lens, stdenv, text }: - mkDerivation { - pname = "amazonka-s3"; - version = "1.6.0"; - sha256 = "eca18ebbd0df13a78768d9665827c7624282f76d512b3cf8f0f22a3afd463f47"; - libraryHaskellDepends = [ amazonka-core base lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Storage Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sdb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sdb"; - version = "1.6.0"; - sha256 = "b9c28b21326fdb78a0acee0968188ffb6fb156c7fe0faf688a2ec83d3f5fbdfd"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon SimpleDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-servicecatalog" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-servicecatalog"; - version = "1.6.0"; - sha256 = "11f8df3b1b2b43ec636eb5a428c43c8534eae9d9554071298688005bcb46f264"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Service Catalog SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ses" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ses"; - version = "1.6.0"; - sha256 = "778d32e738faae3fd1a7e12a67dddce063c0480740b95e1a58b5c23dc052bd02"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Email Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-shield" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-shield"; - version = "1.6.0"; - sha256 = "b983a85b2b5a617bc3cbc911bc8d00a3fbf199ddd5dee67bdb3882b23747ebf4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Shield SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sms"; - version = "1.6.0"; - sha256 = "fc4d359d2988d7604780a5eca5b3371d3d3034180e96d2cbc6148559f0cda47f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Server Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-snowball" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-snowball"; - version = "1.6.0"; - sha256 = "534b30fe9205ba1edf8b1c5c4f4f91dccbe124f95a599f5efdf0cc4cd502ee25"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export Snowball SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sns" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sns"; - version = "1.6.0"; - sha256 = "1d16b548031359ed593b14d172e7880847934e76bbedf535d014674414e37573"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Notification Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sqs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sqs"; - version = "1.6.0"; - sha256 = "743838707d28707095700afdf2d875ff34c5fe1d90b214f5a7e48be04c900433"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Queue Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ssm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ssm"; - version = "1.6.0"; - sha256 = "11218249760a2d06cfd5ad2b41bf67233b6178f86e2ab979c199088a5a1c701a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Systems Manager (SSM) SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-stepfunctions" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-stepfunctions"; - version = "1.6.0"; - sha256 = "99ac8e545d28d7d765e180a26572d216f88d1e6ab9a2cd0f0a874992fa89acbf"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Step Functions SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-storagegateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-storagegateway"; - version = "1.6.0"; - sha256 = "6f06376650f03107ebd13a622b77b1983da91c6030927e2d10afb4040b48b43d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Storage Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sts" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sts"; - version = "1.6.0"; - sha256 = "36056b67d6f97a5b137f7ae35f39fb5417c61991333347129ed3e77f79a99a12"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Security Token Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-support" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-support"; - version = "1.6.0"; - sha256 = "7f434aef975f2817d4b9d7aa1c6055d788988e817fdb5c8fae20a787f26853e9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Support SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-swf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-swf"; - version = "1.6.0"; - sha256 = "1f0e437ba9c1511f46c64df16ae4551667fee39ade3c32f251f9e34b2255aa90"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Workflow Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-test" = callPackage - ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, process, resourcet, stdenv, tasty, tasty-hunit - , template-haskell, temporary, text, time, unordered-containers - , yaml - }: - mkDerivation { - pname = "amazonka-test"; - version = "1.6.0"; - sha256 = "46a8b77900370524a487f2ca0490473e23d0155664db2461c5504678d275dd28"; - libraryHaskellDepends = [ - aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types process - resourcet tasty tasty-hunit template-haskell temporary text time - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Common functionality for Amazonka library test-suites"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-waf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-waf"; - version = "1.6.0"; - sha256 = "880b9ec52be2d8fb0f5711d1e5357b0ce566e98b775e3bb7921e8f4295bbb980"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WAF SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-workspaces" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-workspaces"; - version = "1.6.0"; - sha256 = "56cf348d8c519a4db23693e81cccf822975ec5b37e74dda54f9f020415c91c84"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WorkSpaces SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-xray" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-xray"; - version = "1.6.0"; - sha256 = "8f510075361aa600cd7759763f4de55aed07b8a7cce65eb445dfcf9f475590f0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon X-Ray SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.18.1"; - sha256 = "4678e2eb976df97e27cacbc4b1feafeb5a1800a9779b0a36666f04804f43e248"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.8.0.4"; - sha256 = "eb3cb8b0d0ce1c67ae3146c0b73a83e640c6f049d36bd6e859b6b951117e4810"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.8.2"; - sha256 = "a630721bd57678c3bfeb6c703f8249e434cbf85f40daceec4660fb8c6725cb3e"; - revision = "2"; - editedCabalFile = "0xq83bwya8mfijp3dn9zfsqbbkl1wpzfjcmnkw8a06icjh9vg458"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.11"; - sha256 = "6a14c69aca4e55cf27933475f5ae0ffead3a83f69f4233896eb13c41dccd50b1"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.4"; - sha256 = "58ea66abe4dd502d2fc01eecdb0828d5e214704a3c1b33b1f8b33974644c4b26"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.5.0.0"; - sha256 = "1f5fb9b53f5750c5c73e36f93a708189e15f7300cd2fb95da77ba87a215b74af"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.2"; - sha256 = "352d9564ffdb01d3312a1087f8badc544b3478185cbc27d4ca29fc1f18c9f82b"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.1"; - sha256 = "d837f716d9e73d68a53a17321f0433dd9ffe71df24d550aed6a34ec1c2ad2ea2"; - revision = "1"; - editedCabalFile = "1sd3s1ibn5dmgwzlqwshj7im4lmgpfzcv43ax6lpp9bdmxa6lmz9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, containers, exact-pi, ghc-prim - , integer-gmp, integer-logarithms, mtl, random, stdenv, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.7.0.0"; - sha256 = "8b33049122c6194d61467b3685294c2c0029a3e877f481598f4b21b7285e030c"; - revision = "3"; - editedCabalFile = "1s0jm2y0jhfrj7af80csckiizkfq5h0v4zb92mkwh1pkfi763fha"; - configureFlags = [ "-f-llvm" ]; - libraryHaskellDepends = [ - array base containers exact-pi ghc-prim integer-gmp - integer-logarithms mtl random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-list" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "arrow-list"; - version = "0.7"; - sha256 = "33f836f23648aa2cea11533f7a9941127c397eecdca105b2084dded9e039d5d8"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/silkapp/arrow-list"; - description = "List arrows for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.5"; - sha256 = "1e863bfd363f6c3760cc80f2c0d422e17845a9f79fe006030db202ecab5aaf29"; - revision = "1"; - editedCabalFile = "0vsw8rd6fxd87rx3jyh3bb96sjd7ag0mrlylhkcmgaps2ma8sw5b"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.4"; - sha256 = "c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.2"; - sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1-types"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.0"; - sha256 = "86fdc23f0420d46e5cf65cb657c448a61c9398163c312ecb8b4344925ffd47ae"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexander-ignatyev/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.1"; - sha256 = "8f0b86022a1319d3c1c68655790da4b7f98017982e27ec3f3dbfe01029d39027"; - revision = "2"; - editedCabalFile = "130rc6icx3h471qs417lkw9b2pfn27xd009liw58cmdk66zscizp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-conduit" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, conduit-combinators - , lens-simple, mono-traversable, parsers, safe-exceptions, stdenv - , text, time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "atom-conduit"; - version = "0.5.0.1"; - sha256 = "8c88c5c77567753b56163bfa596f50a9cfdde28796e66bb194ca6d9057e831cd"; - libraryHaskellDepends = [ - base blaze-builder conduit conduit-combinators lens-simple - mono-traversable parsers safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287)."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.2"; - sha256 = "67f8872e0c1e634d819a967365eb4ad514e9b2cde967fbc710da7cdc4d17d933"; - revision = "1"; - editedCabalFile = "0gdcd84x2s4jiry0was74rzv9l53an1q6ad8jiaj37fr4fim0wcc"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.5"; - sha256 = "dbc7b4c31c734ad12d8f6c05b5d1384ee57f50ad8ff1a703d560b39e2f0458c5"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.2"; - sha256 = "dd93471eb969172cc4408222a3842d867adda3dd7fb39ad8a4df1b121a67d848"; - revision = "4"; - editedCabalFile = "1vz6jz7cwd80sryabpa99hccamgccjf2l7907wjblbs7dy66a8cb"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.1"; - sha256 = "8da5ca8ae483bbb8dacfae3a888fa9438f55f84f8605e7c769091ee5b6555629"; - libraryHaskellDepends = [ attoparsec base ip ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.0.0"; - sha256 = "aa6c6d87587383e386cb85e7ffcc4a6317aa8dafb8ba9a104ecac365ce2a858a"; - revision = "1"; - editedCabalFile = "06f7pgmmc8456p3hc1y23kz1y127gfczy7s00wz1rls9g2sm2vi4"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.4"; - sha256 = "4e032ccaa65f96edac79556431ade75ad400371d0a5c19aeed6a7adbd3d2f1f3"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, http-conduit, http-types - , network-uri, resourcet, stdenv, tagstream-conduit, text - , transformers, unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.4"; - sha256 = "3fd566dbfdf75d81ad1bebd19facb9f01509ead6e27d9aed802404ecde932fb8"; - revision = "1"; - editedCabalFile = "0ipbmf633c0kmcwwb7d51ac8s4220nfyk5xghhq66mpgna77j2c2"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers http-conduit http-types network-uri resourcet - tagstream-conduit text transformers unordered-containers - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6"; - sha256 = "d26d9f10fd57e06fa2af066df65e578ff3ec7541efc3e6648b29a743b13f8375"; - revision = "1"; - editedCabalFile = "1fxwn8bn6qs8dhxq0q04psq7zp1qvw1b6g3vmsclgyj9p7kr77ms"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.4"; - sha256 = "5e96c151024e8bcaf4eaa932e16995872b2017f46124b967e155744d9580b425"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "avwx" = callPackage - ({ mkDerivation, attoparsec, base, HTTP, lens, optparse-applicative - , parsers, pretty-show, stdenv, text - }: - mkDerivation { - pname = "avwx"; - version = "0.3.0.2"; - sha256 = "b4299cc4e05a4c94f53d06f05b30baac1e15c59663b59afd1dd32417a280fb0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; - executableHaskellDepends = [ - base optparse-applicative pretty-show text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.hcesperer.org/posts/2016-09-20-avwx.html"; - description = "Parse aviation weather reports"; - license = stdenv.lib.licenses.mit; - }) {}; - "barrier" = callPackage - ({ mkDerivation, base, blaze-svg, bytestring, stdenv - , template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "barrier"; - version = "0.1.1"; - sha256 = "6395da01eea1984c7bcc85c624b1b5dfbe0b6b764adeed7b04c9fa4d8de91ed9"; - revision = "1"; - editedCabalFile = "167akvi72l47gcqbq5609m24469pq0xmv0kjbmivnrxs796gh890"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-svg bytestring template-haskell text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/philopon/barrier"; - description = "Shields.io style badge generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.9.3"; - sha256 = "7d602b0f0543fadbd598a090c738e9ce9b07a1896673dc27f1503ae3bea1a210"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.10.1"; - sha256 = "15578bafe45db81f7c7ad33253b2b047dab9b6df4ca7ca57f541d64084f113c9"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.2"; - sha256 = "2a8062385e5d5dee418428a22c72b9391557bc1fe2f93bd643f7754b36b9eb01"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.2.1"; - sha256 = "07f30ca0f620ce67dbd07f82793fe2de69492b6df7445c5676ec7e5288139ab8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.2.4"; - sha256 = "a2f841430fec32edba778b74bde83bf0170ada7c5e2e59d7187c8f06d92dcca9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.1"; - sha256 = "ab25abf4b00a2f52b270bc3ed43f1d59f16c8eec9d7dffb14df1e9265b233b50"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, QuickCheck, stdenv - , text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1"; - sha256 = "74019bd11f8012ae5ccc88c206bc5a8024f7605130099aabbac012073160e440"; - revision = "4"; - editedCabalFile = "0yfhy4a9n67l9w3amqrzzy79q47yyj6qbv5i5lqym5z7ygwmlzn6"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.7"; - sha256 = "b501b9b378f35b80c60321031dbbf9ed7af46c66353f072e00f00abdd2244f70"; - revision = "1"; - editedCabalFile = "005r4w6bks8fpxq1idn42ixb1fs1cjjfl4d5qh0zfskil1cqwaj4"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "beam-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist, free - , ghc-prim, hashable, microlens, mtl, network-uri, stdenv, tagged - , text, time, vector-sized - }: - mkDerivation { - pname = "beam-core"; - version = "0.7.2.1"; - sha256 = "5c8e94dab94248189a53e89d515e696c882ffabb91b777c7b1e59d3cf2d5356d"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist free ghc-prim hashable - microlens mtl network-uri tagged text time vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "http://travis.athougies.net/projects/beam.html"; - description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-migrate" = callPackage - ({ mkDerivation, aeson, base, beam-core, bytestring, containers - , deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable - , haskell-src-exts, mtl, parallel, pqueue, pretty, scientific - , stdenv, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "beam-migrate"; - version = "0.3.2.0"; - sha256 = "0ee6121f57f67e60db32543be95085220ea1c6256784e878e5b40b75d911d5a8"; - libraryHaskellDepends = [ - aeson base beam-core bytestring containers deepseq dependent-map - dependent-sum free ghc-prim hashable haskell-src-exts mtl parallel - pqueue pretty scientific text time unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://travis.athougies.net/projects/beam.html"; - description = "SQL DDL support and migrations support library for Beam"; - license = stdenv.lib.licenses.mit; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.9"; - sha256 = "3c43d5b28abd7d07617ce5bf44756e8922db2dfbb39d7b123427b20eb8a9a830"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bencode" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, parsec - , stdenv - }: - mkDerivation { - pname = "bencode"; - version = "0.6.0.0"; - sha256 = "3b8efdfecee9bc486d9bcdbb633b7128ca235360f102478a7e0f8c895281f68a"; - revision = "1"; - editedCabalFile = "0nvph7frmrra9k57v01saxgnhf1ma3m8qzwj1i53pswssfnj41mv"; - libraryHaskellDepends = [ - base binary bytestring containers parsec - ]; - doHaddock = false; - doCheck = false; - description = "Parser and printer for bencoded data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.6"; - sha256 = "ccb2afe613b76786a6ac355515bc6bbf27459952c2692e33ea730f9901b3daca"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.3.3"; - sha256 = "73829355c7bcbd3eedba22a382a04a3ab641702b00828790ec082ec2db3a8ad1"; - libraryHaskellDepends = [ base containers exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-bits" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "binary-bits"; - version = "0.5"; - sha256 = "16534a018a4754d8d1eab051711c23fb741f41a0d141b289001c52824b5be794"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Bit parsing/writing on top of binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3"; - sha256 = "43f9bd47b679b552b295132680a8cd0ade6489fc33d5d98aed1f5c948320cccd"; - revision = "1"; - editedCabalFile = "0y08nw3y5jgrw5waa25b75iwsibnd1m9rbpqrvz5j4xq6baqw6kx"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, aeson, base, binary, case-insensitive, hashable - , scientific, stdenv, tagged, text, text-binary, time - , unordered-containers, vector, vector-binary-instances - }: - mkDerivation { - pname = "binary-orphans"; - version = "0.1.8.0"; - sha256 = "f17557ccd98931df2bea038f25e7f835f38019ea7d53bd763f71fe64f931c0cc"; - revision = "5"; - editedCabalFile = "1dny1jvwwcyrbzhqvymmn6n7ib48bpy0nasbrcrdrpzjypkmg500"; - libraryHaskellDepends = [ - aeson base binary case-insensitive hashable scientific tagged text - text-binary time unordered-containers vector - vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-orphans#readme"; - description = "Orphan instances for binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.3.0"; - sha256 = "bc6195493b950efcbeb9ef54dfe47a6badf894dff934cf02a4b170331c1b217a"; - revision = "1"; - editedCabalFile = "09ag18yr1m26fl3w7ab1d5q5j201ygbw7qsbsy41bwd6iq87rq15"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, generics-sop, hashable, scientific, SHA - , stdenv, tagged, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.1.5"; - sha256 = "d4b733a9013069f19249acad76e7f73fb41303c44dcbd2229de8d534558605e8"; - revision = "1"; - editedCabalFile = "0vddb305g3455f0rh0xs6c9i2vllnf83y0pbp53wjwb3l575bqyp"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - generics-sop hashable scientific SHA tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.2.1.1"; - sha256 = "6b24c66b20ebfd8ff2e4ac32e3b435889bba0a32477598ba69fc7adc9608160e"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bit-stream" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bit-stream"; - version = "0.1.0.2"; - sha256 = "811f2e7d4a827440bc21557e48c5310fe91e1b17f337ec35208546e1c5639bf4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bit-stream#readme"; - description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitcoin-api" = callPackage - ({ mkDerivation, aeson, base, base58string, binary, bitcoin-block - , bitcoin-script, bitcoin-tx, bitcoin-types, bytestring, hexstring - , lens, lens-aeson, stdenv, text, unordered-containers, wreq - }: - mkDerivation { - pname = "bitcoin-api"; - version = "0.12.1"; - sha256 = "c978de1519b24c5c04ff518ad1209f74f91df31d65e23592dc639219df6b3e30"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base58string binary bitcoin-block bitcoin-script - bitcoin-tx bitcoin-types bytestring hexstring lens lens-aeson text - unordered-containers wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides access to the RPC API of Bitcoin Core"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-api-extra" = callPackage - ({ mkDerivation, base, binary, bitcoin-api, bitcoin-block - , bitcoin-tx, bytestring, conduit, lens, stdenv, stm, stm-chans - , stm-conduit, text, transformers - }: - mkDerivation { - pname = "bitcoin-api-extra"; - version = "0.9.1"; - sha256 = "c423c6007d0f830dd2bbc0e1bc9219980e6fb2bde684890e265e1bfce4bdd7fc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-api bitcoin-block bitcoin-tx bytestring conduit - lens stm stm-chans stm-conduit text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Higher level constructs on top of the bitcoin-api package"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-block" = callPackage - ({ mkDerivation, base, binary, bitcoin-tx, bitcoin-types - , bytestring, cryptohash, hexstring, largeword, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-block"; - version = "0.13.1"; - sha256 = "d7f57c0fe71045dab85d223dc15d64db3a15cc7fd8446bfe4ebd98cd9d417d5a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-tx bitcoin-types bytestring cryptohash - hexstring largeword lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin blocks"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-script" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-script"; - version = "0.11.1"; - sha256 = "398c1d86e918731b5b2026351bb3b0b90b20606517e7c21e42f05d6c6e197b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Compilation, manipulation and decompilation of Bitcoin scripts"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-tx" = callPackage - ({ mkDerivation, base, binary, bitcoin-script, bitcoin-types - , bytestring, cryptohash, hexstring, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-tx"; - version = "0.13.1"; - sha256 = "3bb88265353066c394e96a56b2dc555fa13d37ca7f820978b793196c6829cc00"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-script bitcoin-types bytestring cryptohash - hexstring lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-types" = callPackage - ({ mkDerivation, base, base58string, binary, bytestring, hexstring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-types"; - version = "0.9.2"; - sha256 = "b72f9448508b64706d5f443748dc9b8abde8e749959187ce3d8356cde0d6c40b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base58string binary bytestring hexstring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides consistent low-level types used commonly among Bitcoin implementations"; - license = stdenv.lib.licenses.mit; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.1"; - sha256 = "657e557bb913b53fb3b3fc7eda820cf3c85a5b89692d242275d3e8e8d9479c93"; - revision = "5"; - editedCabalFile = "012qycmsfz5l6y82d3zgjmp1k3pgvhlpjdk6rwlpc1wlfbpdqiaw"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.2"; - sha256 = "d87e139198bb7bb67fade975f80569d73ce5d49ed6f02b5dba1c39e1e40625b5"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.0"; - sha256 = "14e9eded3d5f535dbb1ce6debe4edd2d227765af31cc58e072b78824cd9f9b06"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, scientific, split, stdenv, text, time - }: - mkDerivation { - pname = "bitx-bitcoin"; - version = "0.12.0.0"; - sha256 = "31f2398bbb0deff80361fdabb108c1552ae097b15a44c6ca6674977ae735c871"; - libraryHaskellDepends = [ - aeson base bytestring deepseq exceptions http-client - http-client-tls http-types microlens microlens-th network - QuickCheck scientific split text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tebello-thejane/bitx.hs"; - description = "A Haskell library for working with the BitX bitcoin exchange"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.2.0"; - sha256 = "07d910e3f5c6e98f5a6b9d53dbe5f52506c3859b513bc7493b52552a28382cfc"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blas-carray" = callPackage - ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi - , stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "blas-carray"; - version = "0.0.1.1"; - sha256 = "bdad1b777d36e46a63bec022190bd009d2782018d7a447f41e3c2db772635f46"; - libraryHaskellDepends = [ - base blas-ffi carray netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-carray/"; - description = "Auto-generated interface to Fortran BLAS via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.0.1.1"; - sha256 = "ee0d88ad15d127e08dd273264befe2259bb64646156adb9e830aa8692dc3f036"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blas-hs" = callPackage - ({ mkDerivation, base, blas, stdenv, storable-complex }: - mkDerivation { - pname = "blas-hs"; - version = "0.1.1.0"; - sha256 = "80e06b0927982b391d239f8656ed437cd29665969d1a078ea4e42a2bf196b086"; - libraryHaskellDepends = [ base storable-complex ]; - librarySystemDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Rufflewind/blas-hs"; - description = "Low-level Haskell bindings to Blas"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.0.1"; - sha256 = "aeceaab3fbccbf7f01a241819e6c16c0a1cf19dccecb795c5de5407bc8660a64"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.1"; - sha256 = "90ab7cbc29df9fbe24e208ade58ca9828e3074f1163618f1faaf4da8f0600146"; - revision = "1"; - editedCabalFile = "10qlilvw3gflkqkxckqn19ashgx5zygm567smrcfl0b2n79y5h85"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "bno055-haskell" = callPackage - ({ mkDerivation, base, bytestring, cereal, h2c, mtl, resourcet - , stdenv - }: - mkDerivation { - pname = "bno055-haskell"; - version = "0.1.0"; - sha256 = "7adc29f94755047b4214115c23b63041e9d3970d2648f53dcd38b84725059ad8"; - libraryHaskellDepends = [ - base bytestring cereal h2c mtl resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/bno055-haskell"; - description = "Library for communication with the Bosch BNO055 orientation sensor"; - license = stdenv.lib.licenses.mit; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, constraints, fin - , generics-sop, stdenv, streams, tagged, transformers - , transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1"; - sha256 = "73d60829c3a789f3d377d56ce7844aaaea6b517bcea43e06579ab785181b4664"; - revision = "2"; - editedCabalFile = "1jxaby4cagbhii194x9x0j75ms1v5bm14sx7d19zz3844mh9qyci"; - libraryHaskellDepends = [ - adjunctions base base-compat constraints fin generics-sop streams - tagged transformers transformers-compat vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brick" = callPackage - ({ mkDerivation, base, config-ini, containers, contravariant - , data-clist, deepseq, dlist, microlens, microlens-mtl - , microlens-th, stdenv, stm, template-haskell, text, text-zipper - , transformers, vector, vty, word-wrap - }: - mkDerivation { - pname = "brick"; - version = "0.37.1"; - sha256 = "1e1b33bf80f91451918541d5e0bde22a0e6a6a00b73e34576e60a8c39d8a3713"; - revision = "1"; - editedCabalFile = "1745x40w7px756042r07rs8pmlyrhss05pf5axlwv3yr1j06j3ib"; - configureFlags = [ "-fdemos" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base config-ini containers contravariant data-clist deepseq dlist - microlens microlens-mtl microlens-th stm template-haskell text - text-zipper transformers vector vty word-wrap - ]; - executableHaskellDepends = [ - base microlens microlens-th text text-zipper vector vty word-wrap - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/brick/"; - description = "A declarative terminal user interface library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "broadcast-chan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "broadcast-chan"; - version = "0.1.1"; - sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2"; - revision = "1"; - editedCabalFile = "03bmddz9bryh3viskh2nldj4hbzl5b9xkkx2pml73vq9bn2aq5s4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/broadcast-chan"; - description = "Broadcast channel type that avoids 0 reader space leaks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.2"; - sha256 = "28cb750979763c815fbf69a6dc510f837b7ccbe262adf0a28ad270966737d5f4"; - libraryHaskellDepends = [ base bytestring bytestring-builder ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bson" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash - , data-binary-ieee754, mtl, network, stdenv, text, time - }: - mkDerivation { - pname = "bson"; - version = "0.3.2.6"; - sha256 = "738dc3615aafa1dd553f51a67373af2f27db90e75266ed6cdee5cecb7f6fce80"; - revision = "2"; - editedCabalFile = "153i8mx7xwjiq8j58swhbyky4gm33zz4pxmp1szaknxfv963xy7y"; - libraryHaskellDepends = [ - base binary bytestring cryptohash data-binary-ieee754 mtl network - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mongodb-haskell/bson"; - description = "BSON documents are JSON-like objects with a standard binary encoding"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bson-lens" = callPackage - ({ mkDerivation, base, bson, lens, stdenv, text }: - mkDerivation { - pname = "bson-lens"; - version = "0.1.1"; - sha256 = "d73bb417def2d8cb1efebfc22482a859e119bcc4005dd10106c82dff5ceeb160"; - libraryHaskellDepends = [ base bson lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/bson-lens"; - description = "BSON lenses"; - license = stdenv.lib.licenses.mit; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.1.2.3"; - sha256 = "7efc0b5c65623dcf60910baf896aec7da7ac2df4231f03a3072c78fb5b2fb88d"; - revision = "1"; - editedCabalFile = "1py88k9sjmx9x41l0wmp19a52ng9fdf66rmd0n9404gxxbqd5jxv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.5"; - sha256 = "ac329b7b1a81a40ab6d32b3519f396f652d7511ffdcac8e7a680c08cd53fe421"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.1.1"; - sha256 = "1f1ca26d2f0657f1762a60d623e065132d57aabe84ef494255c7918a1ed690d2"; - revision = "4"; - editedCabalFile = "1barqg8sn15c3npb551pl7kgbr9iqlf2bf4y86lcaa1cwkr4swym"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp - , mono-traversable, primitive, QuickCheck, stdenv - }: - mkDerivation { - pname = "bv-little"; - version = "0.1.1"; - sha256 = "68e6d6d1ed6922e92e471e93ecb5c643f28f2e9c761f9c1a3697e9527c696b94"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp mono-traversable primitive - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest - , cereal, containers, hashable, mtl, scientific, stdenv, text, time - , transformers, transformers-compat, unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.15.4"; - sha256 = "35efd80d978a52dc70b5aa75e96ecbf2d0852d03e3a5c61087efa24a711c3d88"; - revision = "1"; - editedCabalFile = "1ijk1d47rr4kyi3hl03v1xpb08k87wjr07d8i6gj5glhzfmmwp9k"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytestring cereal containers hashable mtl scientific - text time transformers transformers-compat unordered-containers - void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.1.0"; - sha256 = "6d7404773621efb88b256ff88912a7dbcebc7fb86d27868ef58478249892dbc2"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5"; - sha256 = "cf192d9951a42cf76f35c4b6dcc8d04868c5df3e279b7b29079ebcd076f8f3ce"; - revision = "1"; - editedCabalFile = "1awawh4km8z2bc7klzwnn5jsrv57v81cblqfmmwh68hf7jmkra5s"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.1"; - sha256 = "ae03a5b2e24068870dfcff6c6dc8d6d243aaebdb7c66746d499e7cf6cfd16bd5"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib" = callPackage - ({ mkDerivation, base, bytestring, bzip2, stdenv }: - mkDerivation { - pname = "bzlib"; - version = "0.5.0.5"; - sha256 = "9ee7d0ac7461b330820af928c13c6668bf4fe3601f171c42432a85c33718017e"; - revision = "1"; - editedCabalFile = "1d4ra5prh2q9h8inpwvrsmkmg1ndisdj47jv06iijpj6xdp5bapl"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the bzip2 format"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.1"; - sha256 = "43d811549f7fb0710e4895ad54f78418271579f7e27d75e3c3470b74b285a239"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.3"; - sha256 = "80cc6db945ee7c0328043b4e69213b2a1cb0806fb35c8362f9dea4a2c312f1cc"; - revision = "1"; - editedCabalFile = "1pgqq1ll141lkjgzi6n9ykvkf3600ggdw7h69gxj2pqwa1bi8yq3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.6"; - sha256 = "decaaa5a73eaabaf3c4f8c644bd7f6e3f428b6244e935c0cf105f75f9b24ed2d"; - revision = "2"; - editedCabalFile = "1kbiwqm4fxrsdpcqijdq98h8wzmxydcvxd03f1z8dliqzyqsbd60"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-install" = callPackage - ({ mkDerivation, array, async, base, base16-bytestring, binary - , bytestring, Cabal, containers, cryptohash-sha256, deepseq - , directory, echo, edit-distance, filepath, hackage-security - , hashable, HTTP, mtl, network, network-uri, pretty, process - , random, resolv, stdenv, stm, tar, time, unix, zlib - }: - mkDerivation { - pname = "cabal-install"; - version = "2.2.0.0"; - sha256 = "c856a2dd93c5a7b909597c066b9f9ca27fbda1a502b3f96077b7918c0f64a3d9"; - revision = "1"; - editedCabalFile = "0f1svlhh4cpj3p5fs9bcjpv15qp291lnvlaxxcw7aib8a1gn3wim"; - configureFlags = [ "-flib" ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath process ]; - libraryHaskellDepends = [ - array async base base16-bytestring binary bytestring Cabal - containers cryptohash-sha256 deepseq directory echo edit-distance - filepath hackage-security hashable HTTP mtl network network-uri - pretty process random resolv stm tar time unix zlib - ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir $out/etc - mv bash-completion $out/etc/bash_completion.d - ''; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base-compat - , base-orphans, base16-bytestring, bytestring, containers - , directory, filepath, mtl, optparse-applicative, parsec, stdenv - , text, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.5.0.0"; - sha256 = "18c6cc4d79ef73f932f8cc410a5f8c99cff6538aa7f21ca8b76443e93825caed"; - revision = "1"; - editedCabalFile = "0nnh6qq36cpfwzqrv1i1cn93n6n32nbl6ddp0y22jmmxnx9xsrvp"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat base-orphans base16-bytestring bytestring - containers directory filepath text vector - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat bytestring containers directory mtl - optparse-applicative parsec text vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = "GPL-2.0-or-later AND BSD-3-Clause"; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, process, stdenv, time - , unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "0.12.3"; - sha256 = "cffd76c4699f2f576148090159902307168f8cd766c32c1f1c8b4c3470482d5a"; - configureFlags = [ "-f-old-locale" ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal - , containers, deepseq, directory, distribution-nixpkgs, filepath - , hackage-db, hopenssl, hpack, language-nix, lens, monad-par - , monad-par-extras, mtl, optparse-applicative, pretty, process - , split, stdenv, text, time, transformers, yaml - }: - mkDerivation { - pname = "cabal2nix"; - version = "2.9.2"; - sha256 = "5be063910cc0fc3c2a184785038dcf89874f3e6012ec0ce6c113c5df853a8cf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db hopenssl hpack - language-nix lens optparse-applicative pretty process split text - time transformers yaml - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory - distribution-nixpkgs filepath hopenssl language-nix lens monad-par - monad-par-extras mtl optparse-applicative pretty - ]; - doHaddock = false; - doCheck = false; - preCheck = '' - export PATH="$PWD/dist/build/cabal2nix:$PATH" - export HOME="$TMPDIR/home" - ''; - homepage = "https://github.com/nixos/cabal2nix#readme"; - description = "Convert Cabal files into Nix build instructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.1.1"; - sha256 = "ad063835309823388883324a42d951f15c5da9b4e324bfe3de97751f4fdca9ba"; - revision = "2"; - editedCabalFile = "0fip9d1hdjkb7pzz668qb9b9m90r9xifjhx7zbhax4wr3723lfxg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.1.0"; - sha256 = "14756f8383e991affe6120d299ba23c4f53753519700f8a771cfcec9782b78ff"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cairo" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo - , gtk2hs-buildtools, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cairo"; - version = "0.13.5.0"; - sha256 = "420acd81e0b5578ad188bcdd38463135293c233221abb741cc4004d4c8a6bef3"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring mtl text utf8-string - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Cairo library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) cairo;}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0"; - sha256 = "a33e62c5bdbbece82491b6b795510496467df9993c715c819a7aad7707ee7963"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.1.0"; - sha256 = "f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "capataz" = callPackage - ({ mkDerivation, async, base, bytestring, pretty-show - , prettyprinter, rio, stdenv, teardown, time, uuid - }: - mkDerivation { - pname = "capataz"; - version = "0.2.0.0"; - sha256 = "a4dfc60ccd24bb3102127cb0226f23abfc12b7263fe45e74747cf674d736022c"; - libraryHaskellDepends = [ - async base bytestring pretty-show prettyprinter rio teardown time - uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-capataz#readme"; - description = "OTP-like supervision trees in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.0.11"; - sha256 = "a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.0"; - sha256 = "8e8a3631ef5823ae53dfeb7497ad4856c6758e3e380ff164f6a261f41685f6d7"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.1.0"; - sha256 = "762c8aaea2cdad61f52bad1b9f1f3b32764b4b6da03371aba6e5017f69614277"; - revision = "3"; - editedCabalFile = "0q9hwcn5jr5vs52n246qw8iw9jmc1d3dla071hhc0hdpck4igq6m"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-records" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, foldl - , stdenv, template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "cassava-records"; - version = "0.1.0.4"; - sha256 = "11f832c11125bd7a73b57941284d9aeb7f1e7572004da7e37311b34d3366af8d"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava foldl template-haskell text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/cassava-records#readme"; - description = "Auto-generation of records data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, stdenv }: - mkDerivation { - pname = "category"; - version = "0.2.0.1"; - sha256 = "07d0b37638ec5c46d96874c9318ca385ea489ae0538c62e9c559b6f56809ab6c"; - libraryHaskellDepends = [ alg base ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.5.0"; - sha256 = "0b97320ffbfa6df2e5679022215dbd0fe6e3b5ae8428c2ff4310d9e1acf16822"; - revision = "1"; - editedCabalFile = "1nyasxp7gx0siqsq8rwc4vza6p4ddwpfck9xfnzr7a1pn2hxvzxq"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-time" = callPackage - ({ mkDerivation, base, cereal, stdenv, time }: - mkDerivation { - pname = "cereal-time"; - version = "0.1.0.0"; - sha256 = "bec6d5103ec45bee242825da4cf695f574f101bb1d48778bf7823175dfa43cb2"; - libraryHaskellDepends = [ base cereal time ]; - doHaddock = false; - doCheck = false; - description = "Serialize instances for types from `time` package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.3"; - sha256 = "f9e988023fd53fc60b00fbb5546f9e75045ab1dc83e21aa0c56288c681072232"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chatwork" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, connection - , data-default-class, http-api-data, http-client, http-client-tls - , http-types, req, stdenv, text - }: - mkDerivation { - pname = "chatwork"; - version = "0.1.3.3"; - sha256 = "35b4e94eccf8a46c2a0c24cfdb75294c1aaf2495c3ddd056046b8db3c43f5495"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/chatwork#readme"; - description = "The ChatWork API in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "cheapskate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , data-default, deepseq, mtl, stdenv, syb, text, uniplate - , xss-sanitize - }: - mkDerivation { - pname = "cheapskate"; - version = "0.1.1"; - sha256 = "621041bf50cb9d94bf6a4eb90a038e0b0a6cb9794802f985fe126a73e08938c2"; - revision = "1"; - editedCabalFile = "1zrbp211ciia8j1br6krbxbqsj69kmx0rgkbvbpxdklmbgpfam3b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html containers data-default deepseq mtl syb text - uniplate xss-sanitize - ]; - executableHaskellDepends = [ base blaze-html bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/cheapskate"; - description = "Experimental markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-highlight" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate - , stdenv, text - }: - mkDerivation { - pname = "cheapskate-highlight"; - version = "0.1.0.0"; - sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; - revision = "1"; - editedCabalFile = "1c8kxqdqf0j962xjdrrjfcbjsl0c1kax31rjykymv7w16d6hmlj4"; - libraryHaskellDepends = [ - base blaze-html cheapskate highlighting-kate text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-highlight"; - description = "Code highlighting for cheapskate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-lucid" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, lucid, stdenv }: - mkDerivation { - pname = "cheapskate-lucid"; - version = "0.1.0.0"; - sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; - revision = "1"; - editedCabalFile = "197nx95xw21i7zyvgzcgnr36ab6vrk17c66iz8ndwz61vp1jf6hc"; - libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-lucid"; - description = "Use cheapskate with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "check-email" = callPackage - ({ mkDerivation, base, bytestring, email-validate, resolv, stdenv - }: - mkDerivation { - pname = "check-email"; - version = "1.0.2"; - sha256 = "1c2615fadba09a5d7aa5c68648d12218a595efb759842fb4f524cf380afa9327"; - libraryHaskellDepends = [ base bytestring email-validate ]; - librarySystemDepends = [ resolv ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qoelet/check-email#readme"; - description = "Confirm whether an email is valid and probably existant"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) resolv;}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.4.10"; - sha256 = "89f739106f528998cc83bc25ab1b3e483cd2ffb21ca120fcb8b2e5c43306711e"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-aes128" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cereal, crypto-api - , process, stdenv, tagged - }: - mkDerivation { - pname = "cipher-aes128"; - version = "0.7.0.3"; - sha256 = "6f27bea8bcd1987072fc75b6b423ae9c691574324b6a328ec1e2866f84412e3a"; - revision = "1"; - editedCabalFile = "1c3lr80vcdrajlvks9ny9s8m2n2kc9jw14nh65668dfikp0pqc61"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/cipher-aes128"; - description = "AES and common modes using AES-NI when available"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-blowfish" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-blowfish"; - version = "0.0.3"; - sha256 = "8f41170a851dba6d0b6f07298af3213baca09ab2a8aaf2adb733631feb3b6641"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Blowfish cipher"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "circle-packing" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "circle-packing"; - version = "0.1.0.6"; - sha256 = "64ee44a90da3e5fe20d5b78bfe6eba93102a6b52c65f8a7b99af7799798ee81b"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Simple heuristic for packing discs of varying radii in a circle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.3"; - sha256 = "7e962a9f34e5b0c66fe858f4c6a322d22586bc7a8ac602a317697d2d9b6228ba"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "clang-compilation-database" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text }: - mkDerivation { - pname = "clang-compilation-database"; - version = "0.1.0.1"; - sha256 = "114601a1769471e4fc2e8d100c5546e95fa803b9e56dcd342dab9829d0dc1ca8"; - libraryHaskellDepends = [ aeson base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lambdageek/clang-compilation-database"; - description = "JSON Compilation Database Format encoding and decoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "clash-ghc" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib - , clash-prelude, concurrent-supply, containers, deepseq, directory - , filepath, ghc, ghc-boot, ghc-prim, ghc-typelits-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable - , haskeline, integer-gmp, lens, mtl, process, reflection, stdenv - , text, time, transformers, unbound-generics, uniplate, unix - , unordered-containers - }: - mkDerivation { - pname = "clash-ghc"; - version = "0.99.1"; - sha256 = "55cb41ac47cb269951340f2d4a9e7e78687be4417565f838d98672a23e967379"; - revision = "1"; - editedCabalFile = "1j11iplvng6m882c013fr0jzni1sqmvcw28k5p9icl3dgad990kf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bifunctors bytestring clash-lib clash-prelude - concurrent-supply containers deepseq directory filepath ghc - ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat - ghc-typelits-natnormalise ghci hashable haskeline integer-gmp lens - mtl process reflection text time transformers unbound-generics - uniplate unix unordered-containers - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "clash-lib" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , bytestring, clash-prelude, concurrent-supply, containers - , data-binary-ieee754, deepseq, directory, errors, fgl, filepath - , ghc, hashable, integer-gmp, lens, mtl, parsers, prettyprinter - , process, reducers, stdenv, template-haskell, text, time - , transformers, trifecta, unbound-generics, unordered-containers - }: - mkDerivation { - pname = "clash-lib"; - version = "0.99.1"; - sha256 = "c53b06e59d572dcdd47968b01e1b4dc4681e999753386bc560bff22e47dc2ecb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base bytestring clash-prelude - concurrent-supply containers data-binary-ieee754 deepseq directory - errors fgl filepath ghc hashable integer-gmp lens mtl parsers - prettyprinter process reducers template-haskell text time - transformers trifecta unbound-generics unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware - As a Library"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "clash-prelude" = callPackage - ({ mkDerivation, array, base, bifunctors, constraints - , data-binary-ieee754, data-default, deepseq, ghc-prim - , ghc-typelits-extra, ghc-typelits-knownnat - , ghc-typelits-natnormalise, half, integer-gmp, lens, QuickCheck - , reflection, singletons, stdenv, template-haskell, transformers - , vector - }: - mkDerivation { - pname = "clash-prelude"; - version = "0.99.1"; - sha256 = "cd0dc4a00d8f9694d2bec782d4a5810c24dd4edf35709a9ea1f027acc4d1de0f"; - libraryHaskellDepends = [ - array base bifunctors constraints data-binary-ieee754 data-default - deepseq ghc-prim ghc-typelits-extra ghc-typelits-knownnat - ghc-typelits-natnormalise half integer-gmp lens QuickCheck - reflection singletons template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware - Prelude library"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.4.0"; - sha256 = "2b3b255676ab0fdeb39aebafa3543535ddd684d00c645b643e50cb9e2d25f9e0"; - revision = "1"; - editedCabalFile = "1gf615lz0bfsn09vrjgj63d8zcpsmz1cgvdv8px3h0b4jrwdij6v"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.4.0"; - sha256 = "39ef2567a3542ebf91f6ebc103cc4afb64c2a4ec051c7ce578b577ef9931c424"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.4.0"; - sha256 = "0cd2a88f42c3541ba4bce6801c8b8d9c331e1c49a6288bf16f764676a34b9e28"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.1"; - sha256 = "844e9101cc1835eb12bac50e289d00f19c24eeee12bcdebae1b633edffa328a3"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "closed" = callPackage - ({ mkDerivation, aeson, base, cassava, deepseq, hashable - , persistent, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "closed"; - version = "0.2.0"; - sha256 = "7a301c6c543ae60354b737c56c2259dfc9e01ddf9eee452e4469c6262c53c21c"; - revision = "1"; - editedCabalFile = "0n4g5in0lzy0gs04jj4y0kb3ndychp6nd92pqcsy80bqlllqv2a9"; - libraryHaskellDepends = [ - aeson base cassava deepseq hashable persistent QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/closed#readme"; - description = "Integers bounded by a closed interval"; - license = stdenv.lib.licenses.mit; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.0.1"; - sha256 = "5306ea1368b922d595159f237877f5b76fb9744e082f8c286c4546dc1a6f0e96"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.0"; - sha256 = "fd4b303d206eaf242c779bb65c42256e42220c8497a6bcf3bc59589b9396c495"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.1.3"; - sha256 = "731cb392e4edfd18d0dae709904791610588e6770934e5112cbdd5e6f3d271ba"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-builder" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "code-builder"; - version = "0.1.3"; - sha256 = "559e47a44cec85a8e95df92e5d2693cacc9761503c30be3b83eaebd95360a4ab"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simple system for generating code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.1.3"; - sha256 = "e65c86600e06d85f2e2c2a9df4b3d68e2dbd3adb2df9e922a4cd744966762191"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec" = callPackage - ({ mkDerivation, aeson, base, binary, binary-bits, bytestring, mtl - , profunctors, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "codec"; - version = "0.2.1"; - sha256 = "ffc261b58108c3d90c0b0b68461857d1148208d1a9645916e63241aaa3c25b28"; - libraryHaskellDepends = [ - aeson base binary binary-bits bytestring mtl profunctors - template-haskell text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chpatrick/codec"; - description = "Simple bidirectional serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.1.1"; - sha256 = "58261ff041f4f95dfc2d200996f8277327e03676570a86b9a19193d888d2cdb4"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "codo-notation" = callPackage - ({ mkDerivation, base, comonad, haskell-src-meta, parsec, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "codo-notation"; - version = "0.5.2"; - sha256 = "78eb57004541ed29eb4c54196b91ac2dd1028a3315f51cd4dc00debfc0938eaf"; - libraryHaskellDepends = [ - base comonad haskell-src-meta parsec template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - description = "A notation for comonads, analogous to the do-notation for monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.1"; - sha256 = "0bf5f8d9632dec436a6744d584003d09b15169e600e9e5c2636e2c3f4d4f2e58"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.4"; - sha256 = "0f439f00b322ce3d551f28a4dd1520aa2c91d699de4cdc6d485b9b04be0dc5eb"; - revision = "1"; - editedCabalFile = "1awhbn3pk4zgzpnbbhb10rbxzbb4fz5gywa5h3xl589dclv912ls"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1"; - sha256 = "096e6dacd9f99c7ce63e95b991df33b74645f71f7df2dd90627843d96324b4a8"; - revision = "1"; - editedCabalFile = "1bqcg04w48dqk4n1n36j9ykajrmwqdd4qpcjjjfhzvm83z5ypsh7"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3"; - sha256 = "b9d67c0f19e34c27fe759c149939c37d655a170482760389de07cca9cb534387"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv }: - mkDerivation { - pname = "commutative"; - version = "0.0.1.4"; - sha256 = "0de746012c73543b5dcf649434046e36d5e158e0967e8e2ae122e85d5457c9cf"; - libraryHaskellDepends = [ base random semigroups ]; - doHaddock = false; - doCheck = false; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , contravariant, distributive, semigroups, stdenv, tagged - , transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.3"; - sha256 = "a7f4584d634051123c547f0d10f88eaf23d99229dbd01dfdcd98cddd41e54df6"; - revision = "3"; - editedCabalFile = "062482gwrjc9njqsb239p391bk0s8j39a5xqv5k7rl9ijaxxlfmv"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers contravariant distributive semigroups tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.7.2"; - sha256 = "c7f9bf47a586720deda33b82ddc633d3507c8bc199eb5555c80931f6c323cae2"; - revision = "2"; - editedCabalFile = "1f5hfmzi2bk7xldxgmcd85gyi4dqm7q18cgmwmzpyz7f67p7awhz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "componentm" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, pretty-show - , prettyprinter, rio, stdenv, teardown - }: - mkDerivation { - pname = "componentm"; - version = "0.0.0.2"; - sha256 = "efe23d927d3ad2aee5052ef379f7a472f60e1b0749195e9b46bbf0d8c756b6a7"; - libraryHaskellDepends = [ - base containers deepseq exceptions pretty-show prettyprinter rio - teardown - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-componentm#readme"; - description = "Monad for allocation and cleanup of application resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "componentm-devel" = callPackage - ({ mkDerivation, base, componentm, foreign-store, rio, stdenv - , teardown - }: - mkDerivation { - pname = "componentm-devel"; - version = "0.0.0.2"; - sha256 = "2dd7303c9b26d748baf1a0893b19072ef2a2817c8c77639e3c844e559cd85b0a"; - libraryHaskellDepends = [ - base componentm foreign-store rio teardown - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-componentm#readme"; - description = "Easy REPL driven development using ComponentM"; - license = stdenv.lib.licenses.mit; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-prelude" = callPackage - ({ mkDerivation, base, cpphs, stdenv }: - mkDerivation { - pname = "composition-prelude"; - version = "1.4.0.5"; - sha256 = "5a2d44ddfa1e7bf23a5f21b307318efb85e94c8dc8e3105afaad884d3a3d9f2d"; - libraryHaskellDepends = [ base ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vmchale/composition-prelude#readme"; - description = "Higher-order function combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compressed" = callPackage - ({ mkDerivation, base, comonad, containers, fingertree, hashable - , keys, pointed, reducers, semigroupoids, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "compressed"; - version = "3.11"; - sha256 = "d77bbf2f445d32f138dfde9e860e68db5de8ae04c52ffda23941ddf7bdabdd3d"; - revision = "1"; - editedCabalFile = "0h3kfr2kdn74vk0mam5mwk6phclrcm79khd8yz2pp8j9zv1v8q3r"; - libraryHaskellDepends = [ - base comonad containers fingertree hashable keys pointed reducers - semigroupoids semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/compressed/"; - description = "Compressed containers and reducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.5.0.0"; - sha256 = "101bb481868d1b6332480d27b8b0170663dd5b0825052db51edea5a8e1940730"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.5"; - sha256 = "98c096228664d591eb2c352080955a202e883cdab8452efae3cae407e30fa5c3"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1"; - sha256 = "60793c8eeff1fa0fe03910951d1925f3c66aec61ead64bf3f98dd6110a05b8e7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-supply" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "concurrent-supply"; - version = "0.1.8"; - sha256 = "ccf827dcd221298ae93fad6021c63a06707456de0671706b44f1f2fed867f21f"; - revision = "1"; - editedCabalFile = "1yzrr68k81w3jmrarx3y6z7ymzaaxwab509pp6kkd2fjia3g8wwk"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/concurrent-supply/"; - description = "A fast concurrent unique identifier supply with a pure API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.0.2"; - sha256 = "c0f099d242504e65a78e1cbb54c18afad45fe2c9297d1d918ce28ae7dc4a1e5b"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, containers, deepseq - , exceptions, lzma-conduit, monad-control, mtl, pqueue, resourcet - , stdenv, stm, stm-conduit, streaming-commons, transformers - , unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.8.1"; - sha256 = "cda5a50fa746c63001e39a8210d945015412c1c335078249e06eadd00616fd1d"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra containers deepseq exceptions lzma-conduit - monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-connection" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "conduit-connection"; - version = "0.1.0.4"; - sha256 = "5e784117f3698dc653b286fbb53d530068d0cdadbe130ec02abf42e3f2c821fc"; - libraryHaskellDepends = [ - base bytestring conduit connection resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-connection"; - description = "Conduit source and sink for Network.Connection."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.0"; - sha256 = "2c41c925fc53d9ba2e640c7cdca72c492b28c0d45f1a82e94baef8dfa65922ae"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-iconv" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv }: - mkDerivation { - pname = "conduit-iconv"; - version = "0.1.1.3"; - sha256 = "1c71304782e4599a2987321028b50356c4982b45d9096d954e0b7c0b7ad3acb6"; - libraryHaskellDepends = [ base bytestring conduit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-iconv"; - description = "Conduit for character encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-throttle" = callPackage - ({ mkDerivation, async, base, conduit, conduit-combinators - , conduit-extra, monad-control, resourcet, stdenv, stm, stm-chans - , throttle-io-stream, unliftio, unliftio-core - }: - mkDerivation { - pname = "conduit-throttle"; - version = "0.3.1.0"; - sha256 = "8dd6d616f5ddce25668bb34069bfdcdfe2a866c8d708b725a9b2e450a95aa329"; - libraryHaskellDepends = [ - async base conduit conduit-combinators conduit-extra monad-control - resourcet stm stm-chans throttle-io-stream unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/conduit-throttle#readme"; - description = "Throttle Conduit Producers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "config-ini" = callPackage - ({ mkDerivation, base, containers, megaparsec, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "config-ini"; - version = "0.2.2.0"; - sha256 = "364d67b876abf867d97eaacac630e920521ff96478fe9869a41983893ce140a0"; - libraryHaskellDepends = [ - base containers megaparsec text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aisamanra/config-ini"; - description = "A library for simple INI-based configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configuration-tools" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base-unicode-symbols, base64-bytestring, bytestring, Cabal - , case-insensitive, connection, data-default, deepseq, directory - , dlist, enclosed-exceptions, filepath, http-client - , http-client-tls, http-types, monad-control, mtl, network-uri - , optparse-applicative, process, profunctors, semigroups, stdenv - , text, tls, transformers, unordered-containers, x509, x509-system - , x509-validation, yaml - }: - mkDerivation { - pname = "configuration-tools"; - version = "0.3.1"; - sha256 = "e0df7e71b084c1bd831cd9887584f06e016e359291dc4f71b72d2027f7f86e47"; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base-unicode-symbols - base64-bytestring bytestring Cabal case-insensitive connection - data-default deepseq directory dlist enclosed-exceptions filepath - http-client http-client-tls http-types monad-control mtl - network-uri optparse-applicative process profunctors semigroups - text tls transformers unordered-containers x509 x509-system - x509-validation yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alephcloud/hs-configuration-tools"; - description = "Tools for specifying and parsing configurations"; - license = stdenv.lib.licenses.mit; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, basement, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "1"; - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv }: - mkDerivation { - pname = "constraint"; - version = "0.1.1.1"; - sha256 = "22800d629e3255c7e37d9265ac70b9a4ec4bee2d5f4cc19948e8d28b911ddf47"; - libraryHaskellDepends = [ base category ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "constraints"; - version = "0.10"; - sha256 = "c224b82e53c21791083c83fed2f2c938bd715a63c8efa90a5abcc3d8859126c6"; - revision = "1"; - editedCabalFile = "0n0bq4aiflnd3g88kz36z45bzndmln12lx2rid5qxzc0k4kqly8k"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "consul-haskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , connection, either, exceptions, http-client, http-client-tls - , http-types, lifted-async, lifted-base, monad-control, network - , retry, stdenv, stm, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "consul-haskell"; - version = "0.4.2"; - sha256 = "b10812b70dfbce7037f9f23eda71fa2fa6fc97ed309bd63c00f226522d30d80a"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring connection either - exceptions http-client http-client-tls http-types lifted-async - lifted-base monad-control network retry stm text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/consul-haskell"; - description = "A consul client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "containers-unicode-symbols" = callPackage - ({ mkDerivation, base, base-unicode-symbols, containers, stdenv }: - mkDerivation { - pname = "containers-unicode-symbols"; - version = "0.3.1.1"; - sha256 = "4655f286a2d116cb5f2b89f472df54df739bf904ac8e932b2fd34d3f713e9b31"; - libraryHaskellDepends = [ base base-unicode-symbols containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "contravariant"; - version = "1.4.1"; - sha256 = "c93d3d619fa378f3fdf92c53bb8b04b8f47963b88aba7cfa54b57656189ad0ed"; - revision = "1"; - editedCabalFile = "0qj5nymccrb9p0cd6hffsy90jidjng14g9yv95z8v6h4q84sbzvx"; - libraryHaskellDepends = [ - base StateVar transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, base-prelude, contravariant, semigroups - , stdenv, template-haskell, tuple-th - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.4"; - sha256 = "36a9239d5a84bc6a418a3aa1a0df145d76ece24d00b76deb817b92441913e63d"; - revision = "1"; - editedCabalFile = "1h2955ahga6i4fn7k8v66l03v77p6fhsac6ck8gpabkc08ij60wp"; - libraryHaskellDepends = [ - base base-prelude contravariant semigroups template-haskell - tuple-th - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, prelude-extras, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.1"; - sha256 = "fea9173d3c29729a8e0789d654bf3b16928e0b740465bd8798ac2cfeec492286"; - revision = "2"; - editedCabalFile = "07ygqmvl0k9ap868djgz4nlvgzllaf6qmdd397kf5imbbq849zz1"; - libraryHaskellDepends = [ base prelude-extras transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.1"; - sha256 = "383b98ecf5db5add42f318672af9eb1c8b9d99ec42d48c240e209a93b5cf1186"; - revision = "1"; - editedCabalFile = "029v5j0mnlzzn6my7jgw26gdm5fbs2h7y395zk1q7r5bfar00q58"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.4"; - sha256 = "3245ed04ae933cf7becede816d1f76043b851472700abf558ae90b28414cc0e3"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "courier" = callPackage - ({ mkDerivation, async, base, bytestring, cereal, containers - , hslogger, network, stdenv, stm, text, uuid - }: - mkDerivation { - pname = "courier"; - version = "0.1.1.5"; - sha256 = "ac9e674ff33de347b173da2892859b3807a408b341d10d6101d2a7d07ac334d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring cereal containers hslogger network stm text - uuid - ]; - executableHaskellDepends = [ base cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/hargettp/courier"; - description = "A message-passing library for simplifying network applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "cql" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, Decimal - , iproute, network, stdenv, template-haskell, text, time - , transformers, uuid, vector - }: - mkDerivation { - pname = "cql"; - version = "4.0.1"; - sha256 = "89294c6a6ed2c6f8c6037ee2ca4236d3606bf9019a39df9e39b7ad8dcd573808"; - libraryHaskellDepends = [ - base bytestring cereal containers Decimal iproute network - template-haskell text time transformers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql/"; - description = "Cassandra CQL binary protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cql-io" = callPackage - ({ mkDerivation, async, auto-update, base, bytestring, containers - , cql, cryptohash, data-default-class, exceptions, hashable - , HsOpenSSL, iproute, lens, monad-control, mtl, mwc-random, network - , retry, semigroups, stdenv, stm, text, time, tinylog, transformers - , transformers-base, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "cql-io"; - version = "1.0.0"; - sha256 = "bd5278f337e3105259c4c2279af6ee1bb6331701dac401b7b594cc4c082c3272"; - libraryHaskellDepends = [ - async auto-update base bytestring containers cql cryptohash - data-default-class exceptions hashable HsOpenSSL iproute lens - monad-control mtl mwc-random network retry semigroups stm text time - tinylog transformers transformers-base unordered-containers uuid - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql-io/"; - description = "Cassandra CQL client"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, bytestring, cassava, code-page, containers, deepseq - , directory, exceptions, filepath, Glob, js-flot, js-jquery - , microstache, mtl, mwc-random, optparse-applicative, parsec - , semigroups, statistics, stdenv, text, time, transformers - , transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.4.1.0"; - sha256 = "c49306676aa7927c3ca3c1807b081d1e86771eb8da99c8391f9c4dacb24a826c"; - revision = "1"; - editedCabalFile = "0jg7mk9y9br5aqi29vrrrq28mnyknyg96zmr8rrlxw0rf68l892a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary bytestring - cassava code-page containers deepseq directory exceptions filepath - Glob js-flot js-jquery microstache mtl mwc-random - optparse-applicative parsec semigroups statistics text time - transformers transformers-compat vector vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.1"; - sha256 = "8c1af53bde729026809b722468f6b36c4f96cb532f26a390f32f1c91fb8b3251"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api-tests" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, directory - , filepath, HUnit, QuickCheck, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-api-tests"; - version = "0.3"; - sha256 = "f44aecdd4ceb9da9f38330e84d9c17745a82b0611085ebb34442d2dce4207270"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api directory filepath HUnit - QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/crypto-api/wiki"; - description = "A test framework and KATs for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-tests" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , HUnit, mtl, QuickCheck, securemem, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-cipher-tests"; - version = "0.0.11"; - sha256 = "dfb670b73d4091b8683634d0d4d5a40576d573ad160650d5e518244ced8b98a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types HUnit mtl QuickCheck - securemem test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, base, containers, MissingH, mtl, split, stdenv }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.0.2.12"; - sha256 = "2bb942397a3ca2a099e8c4b59a3810a0fe3a4d255c077e8e0db8e8764fb6b83c"; - libraryHaskellDepends = [ base containers MissingH mtl split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocipher" = callPackage - ({ mkDerivation, base, cipher-aes, cipher-blowfish, cipher-camellia - , cipher-des, cipher-rc4, crypto-cipher-types, stdenv - }: - mkDerivation { - pname = "cryptocipher"; - version = "0.6.2"; - sha256 = "34b9e62dee36c4019dd0c0e86576295d0bd1bb573eeb24686ec635a09550e346"; - libraryHaskellDepends = [ - base cipher-aes cipher-blowfish cipher-camellia cipher-des - cipher-rc4 crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Symmetrical block and stream ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocompare" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , exceptions, http-conduit, MissingH, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "cryptocompare"; - version = "0.1.1"; - sha256 = "d12e0f6fd133e538852e5700b0a31d81c6885dc8b1e9e88d1b331dcec38316b3"; - libraryHaskellDepends = [ - aeson base bytestring containers directory exceptions http-conduit - MissingH text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/cryptocompare"; - description = "Haskell wrapper for the cryptocompare API"; - license = stdenv.lib.licenses.mit; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.25"; - sha256 = "89be1a18af8730a7bfe4d718d7d5f6ce858e9df93a411566d15bf992db5a3c8c"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csg" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, gloss - , gloss-raster, QuickCheck, simple-vec3, stdenv, strict - , system-filepath, transformers, turtle - }: - mkDerivation { - pname = "csg"; - version = "0.1.0.2"; - sha256 = "95e5101cb96f1fc9bd03d5e20f1281247d29b4b1e40e2fd8149d894811a398a6"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/csg#readme"; - description = "Analytical CSG (Constructive Solid Geometry) library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-syntax" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scientific, stdenv - , text - }: - mkDerivation { - pname = "css-syntax"; - version = "0.0.7"; - sha256 = "23fc1d47e94620eee586001c56c4e0c1ba17f5dab9c496245c7cff7ab9cd6064"; - libraryHaskellDepends = [ - attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "This package implments a parser for the CSS syntax"; - license = stdenv.lib.licenses.mit; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.5"; - sha256 = "c5c9825782d97c4059b2261dddd6471fdb270ddac0ff97d6d02d4f0d44b62758"; - revision = "1"; - editedCabalFile = "0dii4z0cl1ylvay1n5z90d6rbvnk9k30q81i6izhgxbgdawwhh33"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , exceptions, megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "1.0.1"; - sha256 = "214a58e87a849c8311eb652ca215b4f5789d724e7499324544b3a01187577f8f"; - revision = "3"; - editedCabalFile = "14kgk1digf1vbsr7v5jvj8gajkx0rkn3zjl4m8csqhxalkaxa2zl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class exceptions megaparsec - mtl QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "curl-runnings" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring - , case-insensitive, cmdargs, directory, hspec, hspec-expectations - , http-conduit, http-types, megaparsec, stdenv, text - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "curl-runnings"; - version = "0.6.0"; - sha256 = "44204017b483d96659948011a3abe78f05afa5b63cd561bcaa36ea5f21efac19"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring case-insensitive directory hspec - hspec-expectations http-conduit http-types megaparsec text - unordered-containers vector yaml - ]; - executableHaskellDepends = [ base cmdargs text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/curl-runnings#readme"; - description = "A framework for declaratively writing curl based API tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.1.1.1"; - sha256 = "d58e021d319917d70ea5e7069daef67788f4c2081c095d44c511fd392e3f0bf0"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.0"; - sha256 = "17b89163347298f78b6e9537b38d621286dff39bd105116a7e852774ccf92f68"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.2.7"; - sha256 = "3465227ad5f81059a885d354e2f3c108d550287580e6939e18350fa65e78c2ed"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-template" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, template-haskell - , utility-ht - }: - mkDerivation { - pname = "data-accessor-template"; - version = "0.2.1.15"; - sha256 = "802b7f55ef02773b44d42c19175f52b5ef1b122df0e91ad0ef9a8add4d33ba6f"; - libraryHaskellDepends = [ - base data-accessor template-haskell utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-clist" = callPackage - ({ mkDerivation, base, deepseq, QuickCheck, stdenv }: - mkDerivation { - pname = "data-clist"; - version = "0.1.2.1"; - sha256 = "9a1882e286e2f5428517375e129dc3c6fb12114f360cd4a767e7a699d67c8416"; - libraryHaskellDepends = [ base deepseq QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sw17ch/data-clist"; - description = "Simple functional ring type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.1.0.0"; - sha256 = "2e020d6f288da93da13cf6b9d76f8357294d8a66f07d79cf563c4c77a33c8a94"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse-lens" = callPackage - ({ mkDerivation, base, data-diverse, data-has, lens, profunctors - , stdenv, tagged - }: - mkDerivation { - pname = "data-diverse-lens"; - version = "4.1.0.0"; - sha256 = "7015087585b944c9244b4e959e444090cfb641c529beb61da11dfc6d33edf5cf"; - libraryHaskellDepends = [ - base data-diverse data-has lens profunctors tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse-lens#readme"; - description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.2"; - sha256 = "6b677600221de86eaee21dd2d4c23c04320370c594a56f7bb3477ef4e4b69120"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-msgpack" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , data-msgpack-types, groom, stdenv, text - }: - mkDerivation { - pname = "data-msgpack"; - version = "0.0.11"; - sha256 = "2904fc96617dc7885d0ebdac75149ed969f223af8a18628f72927da3832eb885"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 data-msgpack-types text - ]; - executableHaskellDepends = [ base bytestring groom ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack-types" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , QuickCheck, stdenv, text, unordered-containers, vector, void - }: - mkDerivation { - pname = "data-msgpack-types"; - version = "0.0.1"; - sha256 = "529f139f089643a240c6e139b76c4ca1f18bce24dd352615584ebf041e94a898"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable QuickCheck text - unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.1.1"; - sha256 = "a4dabee83c7419199791d0ebf7870f926b1ca834a361ecfeb3c134f7fa64f268"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4"; - sha256 = "e793156aa2262ca294183a9d045f37e6ff2070825b40d2ffe5a8d64e0b455ec6"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.2"; - sha256 = "44c530b081a486c50d668004637814223d1f1890716d39f7b692c83644d29830"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.1"; - sha256 = "cec8c278e1033695ce97e2d7bf5db2b1b45a764976e59d06c67a6fe4fc5401fe"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, dlist, http-client, http-client-tls, http-types, lens - , lifted-base, monad-control, network, old-locale, stdenv, text - , time, transformers-base, unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.2.0"; - sha256 = "450fb6fba21d9739c8269f167ecf084d966e2248084386ab5c04b2748b4b6944"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring dlist http-client - http-client-tls http-types lens lifted-base monad-control network - old-locale text time transformers-base unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "datasets" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cassava - , directory, file-embed, filepath, hashable, microlens, stdenv - , stringsearch, text, time, vector, wreq - }: - mkDerivation { - pname = "datasets"; - version = "0.2.5"; - sha256 = "9a9139130936102bbfa60324e1ed7f9fd5b9a68db096917f589e8bb07999fdba"; - revision = "1"; - editedCabalFile = "1q96bxn8cjzr3pnygxz1s7bjk40l9kkxji9w4hxjbl3qh1m2i1sw"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cassava directory file-embed - filepath hashable microlens stringsearch text time vector wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/datasets"; - description = "Classical data sets for statistics and machine learning"; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dawg-ord" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, transformers - , vector - }: - mkDerivation { - pname = "dawg-ord"; - version = "0.5.1.0"; - sha256 = "d9129acfb71ce41b6994d2c72a040319fc85af408226122d3958d5617e8922e9"; - libraryHaskellDepends = [ - base containers mtl transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/dawg-ord"; - description = "Directed acyclic word graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dbcleaner" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv, text }: - mkDerivation { - pname = "dbcleaner"; - version = "0.1.3"; - sha256 = "0817b0e1698d8d48ac58d631f51dc6e34663f4e97af7bac3fd03e31349830f35"; - libraryHaskellDepends = [ base postgresql-simple text ]; - doHaddock = false; - doCheck = false; - description = "Clean database tables automatically around hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , filepath, lens, libxml-sax, network, parsec, random, split - , stdenv, template-haskell, text, th-lift, transformers, unix - , vector, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.0.1"; - sha256 = "a325b5c6958a343b30fd378d54ac01f9db889a4d7cadb14b2103da7ef4e7e8f5"; - revision = "2"; - editedCabalFile = "0fskpis9ryzj4bkzjh9h2hdw2lwr38qjh74drazfq25w5ba2zj3j"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq filepath lens libxml-sax - network parsec random split template-haskell text th-lift - transformers unix vector xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.1.1"; - sha256 = "d3e6a924367ddd7087f00ac448afb3f12cb5a70392194f1bcd15a33b81766537"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, template-haskell - , text, uniplate, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "debug"; - version = "0.1.1"; - sha256 = "330f44c6341833c5e0cccf08fa7674dd54f14a843a2b5703e25ce08ffed49248"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/debug"; - description = "Simple trace-based debugger"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "1.6.0.0"; - sha256 = "4e69e46616cd7b63067b9d32122a09282f2491f60b1269b6a1feb162955d3480"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum, stdenv }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.4.0"; - sha256 = "5db396bdb5d156434af920c074316c3b84b4d39ba8e1cd349c7bb6679cb28246"; - revision = "1"; - editedCabalFile = "0a5f35d1sgfq1cl1r5bgb5pwfjniiycxiif4ycxglaizp8g5rlr1"; - libraryHaskellDepends = [ base containers dependent-sum ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "dependent-sum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dependent-sum"; - version = "0.4"; - sha256 = "a8deecb4153a1878173f8d0a18de0378ab068bc15e5035b9e4cb478e8e4e1a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-sum"; - description = "Dependent sum type"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dependent-sum-template" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv, template-haskell - , th-extras - }: - mkDerivation { - pname = "dependent-sum-template"; - version = "0.0.0.6"; - sha256 = "994cb4891949cad1b9ca268052377c58c174f77a469cae44742ac83727be91ad"; - libraryHaskellDepends = [ - base dependent-sum template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "/dev/null"; - description = "Template Haskell code to generate instances of classes in dependent-sum package"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "deque"; - version = "0.2.1"; - sha256 = "019d197e306724f1a09ad53ab9309cee1cfbbf5456f2956d3ab52a59fe523264"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queue"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.4.2"; - sha256 = "7f3f4e1aca70c07a00a8885eaaf4153a60cf334c0f0f446bc9a083a64b8e976f"; - revision = "1"; - editedCabalFile = "191v1i34ws4wyr19lsxzx57axbfysq2w1586jg7d2lmnnxfx0j16"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.1"; - sha256 = "c7ece54493b5c3888af938a4496fc1d395b4804ae70f824157518ff25ea9b978"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "df1" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, stdenv - , text, time - }: - mkDerivation { - pname = "df1"; - version = "0.1.1"; - sha256 = "362409d7f47f69f9afc746b87c2380bc6d1536c1e9d1b8b77963b83504722fe3"; - libraryHaskellDepends = [ - attoparsec base bytestring containers text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Type, render and parse the df1 hierarchical structured log format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, case-insensitive - , containers, contravariant, cryptonite, directory, exceptions - , filepath, formatting, haskeline, http-client, http-client-tls - , insert-ordered-containers, lens-family-core, megaparsec, memory - , mtl, optparse-applicative, parsers, prettyprinter - , prettyprinter-ansi-terminal, repline, scientific, stdenv, text - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "dhall"; - version = "1.14.0"; - sha256 = "f415842889ca4811f5279714446bad35583829de3c6de04e0d7d3e92f310a836"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring case-insensitive containers - contravariant cryptonite directory exceptions filepath formatting - http-client http-client-tls insert-ordered-containers - lens-family-core megaparsec memory parsers prettyprinter - prettyprinter-ansi-terminal scientific text transformers - unordered-containers vector - ]; - executableHaskellDepends = [ - ansi-terminal base haskeline megaparsec mtl optparse-applicative - prettyprinter prettyprinter-ansi-terminal repline text - ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall, formatting - , insert-ordered-containers, neat-interpolation, optparse-generic - , shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.13"; - sha256 = "f144b369652d01b883baf6ebafdbec3788f79863300411c80b0b4f33b89ec911"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall formatting - insert-ordered-containers neat-interpolation shell-escape text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall - , insert-ordered-containers, optparse-applicative, stdenv, text - , unordered-containers, yaml - }: - mkDerivation { - pname = "dhall-json"; - version = "1.2.0"; - sha256 = "bfb5dc1b423d5f4d637d1c7ee04a5ce34ecc9aceb9fda5b00cb246ed1ff3484f"; - revision = "1"; - editedCabalFile = "0qzzn1872nc7kn72zi2p3pa8csbpqrd99kf3h0238a98lczf7cs8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base dhall insert-ordered-containers optparse-applicative - text unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall optparse-applicative text - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-text" = callPackage - ({ mkDerivation, base, dhall, optparse-generic, stdenv, text }: - mkDerivation { - pname = "dhall-text"; - version = "1.0.10"; - sha256 = "58fa118ade28aae982f724b2f1743a07eb652003220ed0c0a4e5e12bea609d1d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base dhall optparse-generic text ]; - doHaddock = false; - doCheck = false; - description = "Template text using Dhall"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di" = callPackage - ({ mkDerivation, base, df1, di-core, di-df1, di-handle, di-monad - , exceptions, stdenv - }: - mkDerivation { - pname = "di"; - version = "1.0.1"; - sha256 = "2913ed3a7b8db8d9160a6aec510a35e5f8199c962c0e115f84c0c88d8236ec40"; - libraryHaskellDepends = [ - base df1 di-core di-df1 di-handle di-monad exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging using di, mtl and df1"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, exceptions, stdenv, stm, time }: - mkDerivation { - pname = "di-core"; - version = "1.0"; - sha256 = "d2e872efbc661be995c220d7f3cf839438b045e86848e0ecaf0a61c1c27e8f6a"; - libraryHaskellDepends = [ base containers exceptions stm time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-df1" = callPackage - ({ mkDerivation, base, df1, di-core, di-handle, di-monad, stdenv - , stm - }: - mkDerivation { - pname = "di-df1"; - version = "1.0.2"; - sha256 = "d0518d17165c6f9baa60772526f263b11128a17edd1f214c91f0e42aad11b3c6"; - libraryHaskellDepends = [ - base df1 di-core di-handle di-monad stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Write logs in the df1 format using the di logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-handle" = callPackage - ({ mkDerivation, base, bytestring, di-core, exceptions, stdenv - , unix - }: - mkDerivation { - pname = "di-handle"; - version = "1.0"; - sha256 = "cd081f53824a173b30550ae9dbea744a2e7ac8931092d1f1b246b9bd5bb092ec"; - libraryHaskellDepends = [ - base bytestring di-core exceptions unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "IO support for file handles in di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.0.2"; - sha256 = "b84d79e180778720b6aa31bf5e7f72db809378f92c97c391828639c876164ee8"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-cairo" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, colour, containers - , data-default-class, diagrams-core, diagrams-lib, filepath - , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango - , split, statestack, stdenv, transformers, unix, vector - }: - mkDerivation { - pname = "diagrams-cairo"; - version = "1.4.1"; - sha256 = "df64fd41f4c8eb37e2edcc458c4d49c574d22cf7ca2ef7ceb5de4a79f6436658"; - revision = "1"; - editedCabalFile = "0irrv1mf7lz3n4dy5pz9y6kw00v1rly47g2g6hi95nj6a6hib3z0"; - libraryHaskellDepends = [ - array base bytestring cairo colour containers data-default-class - diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl - optparse-applicative pango split statestack transformers unix - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Cairo backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-contrib" = callPackage - ({ mkDerivation, base, circle-packing, colour, containers - , cubicbezier, data-default, data-default-class, diagrams-core - , diagrams-lib, diagrams-solve, force-layout, hashable, lens - , linear, mfsolve, MonadRandom, monoid-extras, mtl, mtl-compat - , parsec, random, semigroups, split, stdenv, text - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.3"; - sha256 = "65fba87bb7752b1053fb3ab8e4ae30d5920208ff48441c4d8969cdbe73402007"; - revision = "3"; - editedCabalFile = "0mm1mmagx6q8g6dxk1cagqka38z6393ihp0lvf6095prlvidasqs"; - libraryHaskellDepends = [ - base circle-packing colour containers cubicbezier data-default - data-default-class diagrams-core diagrams-lib diagrams-solve - force-layout hashable lens linear mfsolve MonadRandom monoid-extras - mtl mtl-compat parsec random semigroups split text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Collection of user contributions to diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-core" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive - , dual-tree, lens, linear, monoid-extras, mtl, profunctors - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "diagrams-core"; - version = "1.4.1"; - sha256 = "94d5d119c6cfbcd5b7ccbba5533e91d6296993ae4840aad607db2f8c3699397e"; - revision = "2"; - editedCabalFile = "1q5h4gsin9p6cx0nypjyp6a1rmpr76n4dvw8hscack4gp9a8pjvl"; - libraryHaskellDepends = [ - adjunctions base containers distributive dual-tree lens linear - monoid-extras mtl profunctors semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Core libraries for diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-lib" = callPackage - ({ mkDerivation, active, adjunctions, array, base, bytestring - , cereal, colour, containers, data-default-class, diagrams-core - , diagrams-solve, directory, distributive, dual-tree, exceptions - , filepath, fingertree, fsnotify, hashable, intervals, JuicyPixels - , lens, linear, monoid-extras, mtl, optparse-applicative, process - , profunctors, semigroups, stdenv, tagged, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.2.2"; - sha256 = "470bbb94e942c173afae9837723dc151b627cc15e81aebfa22c88622a60bd6e5"; - revision = "4"; - editedCabalFile = "00v4kzh9mw552bjk1j7chj9bavq9yg7j6gzb5jximd5yy3byvzj2"; - libraryHaskellDepends = [ - active adjunctions array base bytestring cereal colour containers - data-default-class diagrams-core diagrams-solve directory - distributive dual-tree exceptions filepath fingertree fsnotify - hashable intervals JuicyPixels lens linear monoid-extras mtl - optparse-applicative process profunctors semigroups tagged text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity - , hashable, JuicyPixels, lens, mtl, optparse-applicative - , Rasterific, stdenv - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.1"; - sha256 = "30c66148a7411f23067930a090431a91e5251043e5acf8ff644fa6635fad977e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels - lens mtl optparse-applicative Rasterific - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Rasterific backend for diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-solve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "diagrams-solve"; - version = "0.1.1"; - sha256 = "a41f5f410b10f162b1e5c07bd4ca3305544870ff1314ae4f5824c83a31644f9d"; - revision = "5"; - editedCabalFile = "1yl8cs05fzqcz49p601am1ij66m9pa70yamhfxgcvya2pf8nimlf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Pure Haskell solver routines used by diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-svg" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, colour - , containers, diagrams-core, diagrams-lib, filepath, hashable - , JuicyPixels, lens, monoid-extras, mtl, optparse-applicative - , semigroups, split, stdenv, svg-builder, text - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.2"; - sha256 = "5455b68d92826a5405d51490976870cc0fa5b8b56aef0a8f56982b5f48efded2"; - revision = "2"; - editedCabalFile = "15sn85xaachw4cj56w61bjcwrbf4qmnkfl8mbgdapxi5k0y4f2qv"; - libraryHaskellDepends = [ - base base64-bytestring bytestring colour containers diagrams-core - diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl - optparse-applicative semigroups split svg-builder text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "SVG backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dimensional" = callPackage - ({ mkDerivation, base, deepseq, exact-pi, ieee754, numtype-dk - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "dimensional"; - version = "1.1"; - sha256 = "3a25889c1c67966a2739a9c1ccd040278c89e10823a1b2463fbf571b74075e16"; - revision = "2"; - editedCabalFile = "0922kd3svn96c1qg2lx3ya0xlrbll51csc18cnma0f8j899r4xgn"; - libraryHaskellDepends = [ - base deepseq exact-pi ieee754 numtype-dk semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/dimensional/"; - description = "Statically checked physical dimensions, using Type Families and Data Kinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "direct-sqlite" = callPackage - ({ mkDerivation, base, bytestring, semigroups, stdenv, text }: - mkDerivation { - pname = "direct-sqlite"; - version = "2.3.23"; - sha256 = "1fdb6f6ea34ac978e72f61a845786e4b4b945014ccc64ddb07ddcafa1254937b"; - libraryHaskellDepends = [ base bytestring semigroups text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/IreneKnapp/direct-sqlite"; - description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "discrimination" = callPackage - ({ mkDerivation, array, base, containers, contravariant, deepseq - , ghc-prim, hashable, primitive, profunctors, promises, semigroups - , stdenv, transformers, transformers-compat, vector, void - }: - mkDerivation { - pname = "discrimination"; - version = "0.3"; - sha256 = "d6d4b285783e66446a8f798b3a440b1020bdc681285b05794d3ec84d96dc4ca3"; - revision = "1"; - editedCabalFile = "1p39vcdmv9k9wxlkh49w1dr1isvn2hvhjjbs95qwljpxca74i23g"; - libraryHaskellDepends = [ - array base containers contravariant deepseq ghc-prim hashable - primitive profunctors promises semigroups transformers - transformers-compat vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/discrimination/"; - description = "Fast generic linear-time sorting, joins and container construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, base, binary, bytestring, constraints, stdenv, syb - , template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.0"; - sha256 = "d56abae0390d30ca6adf9a2e84e770aa92e5b147e547d245fa3a56506dad5ee4"; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-static" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , rank1dynamic, stdenv - }: - mkDerivation { - pname = "distributed-static"; - version = "0.3.8"; - sha256 = "954bf65722b662794990c81ba31a7fdbccd9d233af9212896443aa5ab9d4ffc2"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq rank1dynamic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compositional, type-safe, polymorphic static values and closures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.1.1"; - sha256 = "55eb858a98995f4f2b2eec5fcbc44ba1901284e915ef5e18609e253a5a662499"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs#readme"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "distributive"; - version = "0.5.3"; - sha256 = "9173805b9c941bda1f37e5aeb68ae30f57a12df9b17bd2aa86db3b7d5236a678"; - revision = "6"; - editedCabalFile = "06bd38rf31yrvvy989r44pm0id3dsxwcp6nxg7wk6ccj3n2b8rzk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans tagged transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.4"; - sha256 = "acf1867b80cdd618b8d904e89eea33be60d3c4c3aeb80d61f29229a301cc397a"; - revision = "1"; - editedCabalFile = "1kdp02vmjpdk241cbn9szv138248zv70m939ig5dv23403cd7y72"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "docker" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , conduit-combinators, conduit-extra, containers - , data-default-class, directory, exceptions, filemanip, filepath - , http-client, http-conduit, http-types, monad-control, mtl - , network, resourcet, scientific, stdenv, tar, temporary, text - , time, tls, transformers, transformers-base, unliftio-core - , unordered-containers, uuid, vector, x509, x509-store, x509-system - , zlib - }: - mkDerivation { - pname = "docker"; - version = "0.5.1.1"; - sha256 = "8a1c09da751d0e0d4baa57a1eef5d2e499df18d4bcf775c95dcf3ab2859a9a26"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit conduit-combinators - conduit-extra containers data-default-class directory exceptions - filemanip filepath http-client http-conduit http-types - monad-control mtl network resourcet scientific tar temporary text - time tls transformers transformers-base unliftio-core - unordered-containers uuid vector x509 x509-store x509-system zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/denibertovic/docker-hs"; - description = "An API client for docker written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.1.0.1"; - sha256 = "294ac0b6c0546da15bf5453d6006979aeb6f6b36f0566be75767f5021de00025"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A simple DSL for describing and generating Dockerfile containers in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "docopt" = callPackage - ({ mkDerivation, base, containers, parsec, stdenv, template-haskell - , th-lift - }: - mkDerivation { - pname = "docopt"; - version = "0.7.0.5"; - sha256 = "15790808a4896bbf0748c1c0f3ab63c07aea4621d95b93a39886813f829d05ee"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers parsec template-haskell th-lift - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/docopt/docopt.hs"; - description = "A command-line interface parser that will make you smile"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, parsec, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.2.2.1"; - sha256 = "6b0cfb565fc7fa90d71ac56b83aedecf670678e6f1441278877fbf399e9bccbf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers parsec - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.15.0"; - sha256 = "f1ae62f740fbf287e067283cebdc3cd9eef447e8e52865efebeb67c418a2818d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, doctest, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.2.0.2"; - sha256 = "b477668037144711e47f51ef01b823a5fa01424a869bffcde501138ad44e347a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base doctest ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dom-parser" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, mtl - , scientific, semigroups, stdenv, text, transformers, xml-conduit - , xml-lens - }: - mkDerivation { - pname = "dom-parser"; - version = "3.1.0"; - sha256 = "d7e15cae0b27d708389160517b1616343da1911baf95f2c97e213732a0262ac3"; - libraryHaskellDepends = [ - base case-insensitive containers lens mtl scientific semigroups - text transformers xml-conduit xml-lens - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/dom-parser"; - description = "Simple monadic DOM parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, directory, exceptions - , megaparsec, optparse-applicative, process, stdenv, text - , transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.5.2.5"; - sha256 = "a197bf60643fc4dea5acd71b03b71cb89e8df91d55cc400b2ada5e79b4b6f4e1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat directory exceptions megaparsec process text - transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "download" = callPackage - ({ mkDerivation, base, bytestring, feed, stdenv, tagsoup, xml }: - mkDerivation { - pname = "download"; - version = "0.3.2.6"; - sha256 = "a06d401a2ca58b6ee494ce462c753939ef0a2d11b4d475ae40848884fb44eef2"; - libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/download"; - description = "High-level file download based on URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drawille" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "drawille"; - version = "0.1.2.0"; - sha256 = "b8188ee87a06c168974c9655188450eb86c331c556decb31cf084efa846237df"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-drawille#readme"; - description = "A port of asciimoo's drawille to haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "drifter" = callPackage - ({ mkDerivation, base, containers, fgl, stdenv, text }: - mkDerivation { - pname = "drifter"; - version = "0.2.3"; - sha256 = "df539d47e47a6064997619079cde28cc0ae039cbda1915cec447380736d92638"; - libraryHaskellDepends = [ base containers fgl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/drifter"; - description = "Simple schema management for arbitrary databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "drifter-postgresql" = callPackage - ({ mkDerivation, base, containers, drifter, mtl, postgresql-simple - , stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "drifter-postgresql"; - version = "0.2.1"; - sha256 = "93320177ec9aab96799623ccc274f5b069500587f002f5f415c24159dd6eed5c"; - libraryHaskellDepends = [ - base containers drifter mtl postgresql-simple time transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/drifter-postgresql"; - description = "PostgreSQL support for the drifter schema migration tool"; - license = stdenv.lib.licenses.mit; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.4"; - sha256 = "fee4dff51d372ae9fd7ceaa0b885b1dfdf396ebddbc56076a529ecdf95589b2f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual-tree" = callPackage - ({ mkDerivation, base, monoid-extras, newtype-generics, semigroups - , stdenv - }: - mkDerivation { - pname = "dual-tree"; - version = "0.2.2"; - sha256 = "7412d70cf239da98b5a21df1cbbeab7319fd23d757427d4f5ce71b907dbaa9eb"; - revision = "3"; - editedCabalFile = "00gwdgzy80p9c5r4wafm1fiqnh2hy1xjsbl86h1qkk7xg33g2ssi"; - libraryHaskellDepends = [ - base monoid-extras newtype-generics semigroups - ]; - doHaddock = false; - doCheck = false; - description = "Rose trees with cached and accumulating monoidal annotations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.4.0.0"; - sha256 = "d6f48393ed9ed584eafe2393c848b78288fca1db5c504ed4749f9f0efe82b817"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easytest" = callPackage - ({ mkDerivation, async, base, call-stack, containers, mtl, random - , stdenv, stm, text, transformers - }: - mkDerivation { - pname = "easytest"; - version = "0.2"; - sha256 = "0b486487a566f838cf448b46cc7215230f020fb4756bd362dfb5a66f6ee1a9e9"; - revision = "1"; - editedCabalFile = "1kgijad57iyhn6w096zr3n2gi1g7y3dc4qxy6v14dq96xjjym5ga"; - libraryHaskellDepends = [ - async base call-stack containers mtl random stm text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelburget/easytest"; - description = "Simple, expressive testing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "either"; - version = "5"; - sha256 = "75cee27641a34f80e6c71f82469a76c7f51d23a522e792e2733269ebf7cbf420"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-unwrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-unwrap"; - version = "1.1"; - sha256 = "ccabd6f87118abc8dcba481b316c76b8195ac9e8a8f3ddb478de5eb64e2d2e3c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gcross/either-unwrap"; - description = "Functions for probing and unwrapping values inside of Either"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, network, snap-core, snap-server, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "ekg"; - version = "0.4.0.15"; - sha256 = "482ae3be495cfe4f03332ad1c79ce8b5ad4f9c8eec824980c664808ae32c6dcc"; - revision = "6"; - editedCabalFile = "012y235n8k7hhx651l01xf88vgr2wskapbsn83w18ls1h1njqnzk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath network snap-core - snap-server text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-core" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-core"; - version = "0.1.1.4"; - sha256 = "66d89acca05c1c91dc57a9c4b3f62d25ccd0c04bb2bfd46d5947f9b8cd8ee937"; - revision = "3"; - editedCabalFile = "1s3545x9w01rrwzchb4f91ck0n6dc7gf0zwkryqx1b2c95ni5qa8"; - libraryHaskellDepends = [ - base containers ghc-prim text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-core"; - description = "Tracking of system metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-json" = callPackage - ({ mkDerivation, aeson, base, ekg-core, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-json"; - version = "0.1.0.6"; - sha256 = "1e6a80aa0a28bbf41c9c6364cbb5731160d14fa54145f27a82d0b3467a04dd47"; - revision = "4"; - editedCabalFile = "16sn4nbqm0rxkf0swi6r2jn6z9x92qmcg9xlx258d98kqb5fkwjg"; - libraryHaskellDepends = [ - aeson base ekg-core text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-json"; - description = "JSON encoding of ekg metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-statsd" = callPackage - ({ mkDerivation, base, bytestring, ekg-core, network, stdenv, text - , time, unordered-containers - }: - mkDerivation { - pname = "ekg-statsd"; - version = "0.2.3.0"; - sha256 = "aeead4a98b467a5fcdbd0646db583843ec14a8985f1a1fbf45cf5c0d969f8a16"; - revision = "1"; - editedCabalFile = "1k4sndkjg1prvzhiii9gcgkx8zfkk9c4nf548x0hrbmj1laj8d62"; - libraryHaskellDepends = [ - base bytestring ekg-core network text time unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-statsd"; - description = "Push metrics to statsd"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-wai" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, http-types, network, stdenv, text, time, transformers - , unordered-containers, wai, wai-app-static, warp - }: - mkDerivation { - pname = "ekg-wai"; - version = "0.1.0.3"; - sha256 = "bfd35917b663da0c1354339dd30837eee6ddf0d42cf57442fd916a42c977a2e9"; - revision = "2"; - editedCabalFile = "17kca2wzlcv8nxyq096fv57jfklhz4ibnvf5nqqdszczb03j3dnn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath http-types network - text time transformers unordered-containers wai wai-app-static warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/ekg-wai"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.4.1"; - sha256 = "3becae7b9634055dd02c3908d800dd12b3335b524299e033215a38cfe51b1d00"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-export" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , formatting, mtl, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "elm-export"; - version = "0.6.0.1"; - sha256 = "bf9862015918c72b54b421efcd9d858969dcd94ef0a3d0cb92d9bc0c4363f9d5"; - libraryHaskellDepends = [ - base bytestring containers directory formatting mtl text time - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/krisajenkins/elm-export"; - description = "A library to generate Elm types from Haskell source"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.5"; - sha256 = "7b4ff4e89eccc073df2f51e9d20d507ba1a6d4f5746130c712844c7cf8674e4c"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.2"; - sha256 = "7b9beab82d219c0dd879dfdef70fb74a4a7595b4dbd0baf7adb12cdbbe8189f1"; - revision = "1"; - editedCabalFile = "0rjm8g2bm9a7qzklkp0rh5az4qh8nsl0hl119gjik671knygkdj0"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.1"; - sha256 = "8efd7084237dcda2a444a6c7be0e4b298e5084b20514df4657da5044c22b1faa"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.5.2.2"; - sha256 = "792fdbdf387de02580accb3ad49a6f5191b24eb2283ef141355eacfd328cce74"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalt/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.4.1"; - sha256 = "5f9d115f7f2b2d4dba290f9d62cd7e9f52f6f6f8235ac5ed9bbf6e982a51d054"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "1.5.0.0"; - sha256 = "cdc099b3ae0c61007d07642c8e4811d29dfe3977b49595e21e03a1e29f741fbf"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "error-util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "error-util"; - version = "0.0.1.2"; - sha256 = "df1916a2de007697b7b1a9f83eacab4588d8dc472fd0f21395dce83b085e4e06"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/error-util"; - description = "Set of utils and operators for error handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.1"; - sha256 = "b0ac78b09e0d5b856e91bfc59a2d91aef487807a2bbd1f562575e235df459ef6"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.2"; - sha256 = "aecf2d0c0dc413b52b2eadf4f75de76f72367db699086222787f65f0b93224e7"; - revision = "2"; - editedCabalFile = "12xzn4qdlpm88qjika50jay72y7mfzz4gvjvzps4zypgz6x7jk44"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, hashable, rio, stdenv, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.0.1"; - sha256 = "fa1baea74682d4b023b457f594462a07a73fb2efdc1c000b4abaeb6d021aec6e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base hashable rio text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, transformers - }: - mkDerivation { - pname = "event"; - version = "0.1.4"; - sha256 = "6791d1402b4d77a11407ab592f65cb61ee60c5a80b99751c5d775afcc9d1824a"; - libraryHaskellDepends = [ - base containers semigroups transformers - ]; - doHaddock = false; - doCheck = false; - description = "Monoidal, monadic and first-class events"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-memory" = callPackage - ({ mkDerivation, base, containers, eventful-core, mtl, safe, stdenv - , stm - }: - mkDerivation { - pname = "eventful-memory"; - version = "0.2.0"; - sha256 = "6a7c3e0a12e3c4e572927929020ad92075933e5d3c66ea61ff615a3ac217adb9"; - libraryHaskellDepends = [ - base containers eventful-core mtl safe stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "In-memory implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sql-common" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core, mtl - , persistent, persistent-template, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sql-common"; - version = "0.2.0"; - sha256 = "a46ea18cbbb5bd04b3a6846273e8161b7e4208660d0abf5a401192b07636aebc"; - revision = "1"; - editedCabalFile = "1w2qq0p4304zsjkwmqx79azpq5v0ajz5grg740vwkca8qvdvdq91"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core mtl persistent - persistent-template text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common library for SQL event stores"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core - , eventful-sql-common, mtl, persistent, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sqlite"; - version = "0.2.0"; - sha256 = "c0bbea0ebd1f0a4891a74b190f499caf85ac026f49b9401fc76f181b0041dfef"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core eventful-sql-common mtl - persistent text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "SQLite implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.8"; - sha256 = "32a822b109ab6e9f62fe23d76bd5af593c20ba0e589005d3985ccda00dd4475e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, semigroups, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.4.1.3"; - sha256 = "4e9e87c653aa619b92e0f7c8e7d737cdc2610f0804bf619b47786165be972ce4"; - revision = "1"; - editedCabalFile = "17db16zmnkvpf48g5xi5ddwg07xn0gd7sz12832dkai08imb9p5a"; - libraryHaskellDepends = [ base numtype-dk semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-hierarchy" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "exception-hierarchy"; - version = "0.1.0.1"; - sha256 = "a9424dc79f08bc98bf49353550101495c9a72ad67ba7c302388f64eed03760fe"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "yet"; - description = "Exception type hierarchy with TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.7"; - sha256 = "925b61eb3d19148a521e79f8b4c8ac097f6e0dea6a09cc2f533279f3abf1f2ef"; - revision = "1"; - editedCabalFile = "0sahi93f75acvmqagkjc1lcwx31crja6z9hyww9abj85x45pqa6f"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptional" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "exceptional"; - version = "0.3.0.0"; - sha256 = "da866ed28ea14d245cc065271f4ddd6da0a91b83e8d83daddcd1ef0623e99f06"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/"; - description = "Essentially the Maybe type with error messages"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.0"; - sha256 = "1edd912e5ea5cbda37941b06738597d35214dc247d332b1bfffc82adadfa49d7"; - revision = "2"; - editedCabalFile = "0aiihbjfrlmxzw9q8idvr6mihhs7kbx9s3w1vj8x3pz27p0ncq7g"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-hash" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cryptohash, directory - , executable-path, file-embed, filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "executable-hash"; - version = "0.2.0.4"; - sha256 = "34eaf5662d90d3b7841f66b322ac5bc54900b0e3cb06792852b08b3c05a42ba4"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base bytestring Cabal cryptohash directory file-embed filepath - template-haskell - ]; - libraryHaskellDepends = [ - base bytestring cryptohash directory executable-path file-embed - template-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/executable-hash"; - description = "Provides the SHA1 hash of the program executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.1.6.0"; - sha256 = "e63ad90fcd292a9a31bd42b94408930c7cdf06700c9879453e61423a89a75be3"; - revision = "1"; - editedCabalFile = "1zbsjlj6wavz9ysfzjqb4ng7688crlfvsbyj4li84khc1jp71xj3"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.9.2"; - sha256 = "60f6029777f80ec958e28cef19a15723242987a01f09f6bfef252f24207649f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible" = callPackage - ({ mkDerivation, aeson, base, bytestring, cassava, comonad - , constraints, deepseq, ghc-prim, hashable, monad-skeleton, mtl - , prettyprinter, primitive, profunctors, QuickCheck, semigroups - , StateVar, stdenv, tagged, template-haskell, text, th-lift - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "extensible"; - version = "0.4.9"; - sha256 = "b752ea6f45ff57e2994e12af911c92977b54246756c5181e376e09fd28f93e86"; - libraryHaskellDepends = [ - aeson base bytestring cassava comonad constraints deepseq ghc-prim - hashable monad-skeleton mtl prettyprinter primitive profunctors - QuickCheck semigroups StateVar tagged template-haskell text th-lift - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/extensible"; - description = "Extensible, efficient, optics-friendly data types and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.3.1"; - sha256 = "c4aea5df7abd2d267e012e8e4fde00eb0e7fc3aa18670ff196c433ad5a1de0c3"; - libraryHaskellDepends = [ - base leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "2.4.11"; - sha256 = "bbe5deab58f435754dbe938cf0ddf26fc21f317c35fb3431d4bdb96809dea2a9"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , base64-bytestring, bytestring, cereal, conduit, conduit-extra - , crypto-api, cryptohash, cryptohash-cryptoapi, data-default - , http-client, http-conduit, http-types, monad-logger, old-locale - , resourcet, stdenv, text, time, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "1.2.1"; - sha256 = "a9d670a763e2ccf3e457e6b310769d5d8977cb1c00a78c8825861999da055d15"; - libraryHaskellDepends = [ - aeson attoparsec base base16-bytestring base64-bytestring - bytestring cereal conduit conduit-extra crypto-api cryptohash - cryptohash-cryptoapi data-default http-client http-conduit - http-types monad-logger old-locale resourcet text time transformers - transformers-base unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fclabels" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "fclabels"; - version = "2.0.3.3"; - sha256 = "9a9472a46dc23b5acc0545d345ecd708f7b003f72ab212e2d12125b902b9c2e0"; - revision = "4"; - editedCabalFile = "09pn1q4gjlhw956asmhzva1rhrafmn69xmd1sc80fh3c8vjd3icz"; - libraryHaskellDepends = [ base mtl template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sebastiaanvisser/fclabels"; - description = "First class accessor labels implemented as lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-haskell-tools" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, time - , unix - }: - mkDerivation { - pname = "fedora-haskell-tools"; - version = "0.5.1"; - sha256 = "b9a9119aace941ff5860c02462bf340c6f3cce29f7bdcb42af98dedfa9888394"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base directory filepath process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fedora-haskell/fedora-haskell-tools"; - description = "Building and managing tools for Fedora Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.0.0.0"; - sha256 = "9359a12d3da138ba50fecfc31eed7f92438a6417e9fc3aa17b95a014fa792f17"; - revision = "4"; - editedCabalFile = "0baavcavm3ywykcr9cm07aqr7sna98jba2n68lyn3kany8ri214d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.6.0.0"; - sha256 = "94722e1eb3dca66069e26a2d4b072c558bc896816ee016fc99521f3e16b9ccc4"; - revision = "1"; - editedCabalFile = "17r5p1c6srgyzpdkqkjcl9k3ax9c82lvps1kqjhxpdzypsnzns70"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11"; - sha256 = "eea5d00973808e440f346972b7477c8d8c2194a7036cc532eafeffc5189fcd50"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-modules" = callPackage - ({ mkDerivation, async, base, directory, filepath, haskell-src-exts - , MissingH, regex-compat, regex-pcre, stdenv - }: - mkDerivation { - pname = "file-modules"; - version = "0.1.2.4"; - sha256 = "ffea2dbd51f77ed76f8559d8519674a1210611a35e2dbea72dfb41d7d5f0f235"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - executableHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/stack-run-auto"; - description = "Takes a Haskell source-code file and outputs its modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.3.2"; - sha256 = "82e4aff8b774c5256514bdb897cfd2d239986f20ebd0970f87198e244694b7b5"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.2"; - sha256 = "0ff1dcb13ec619f72496035e2a1298ef9dc6a814ba304d882cd9b145eae3203d"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filter-logger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base - , bytestring, data-default, fast-logger, http-types, scotty - , semigroups, stdenv, time, wai, wai-extra, wai-logger - }: - mkDerivation { - pname = "filter-logger"; - version = "0.6.0.0"; - sha256 = "7884124056950a7f7ff393ebb7d1622695f9b66f898c60aeb8bc991c73642f21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring data-default - fast-logger http-types semigroups time wai wai-extra wai-logger - ]; - executableHaskellDepends = [ aeson base bytestring scotty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/filter-logger#readme"; - description = "Filterable request logging wai middleware. Change how data is logged and when."; - license = stdenv.lib.licenses.mit; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.1.0"; - sha256 = "d6a53889a7d114a7ea411026b994c9f73ebfeffe68ea338ce2abf9dc977e363c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "fin"; - version = "0.0.1"; - sha256 = "34d28a951f2899f1d27bfb75d53818204d6d7e5aeaaef1a326c50ae915361a57"; - revision = "1"; - editedCabalFile = "056d22f1j1xv5ka2qr7a3z5ad5w1im76qdf77v6dqdi4vaz52vd1"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "find-clumpiness" = callPackage - ({ mkDerivation, aeson, base, BiobaseNewick, bytestring, clumpiness - , containers, hierarchical-clustering, listsafe, mtl - , optparse-applicative, stdenv, text, text-show, tree-fun - , unordered-containers, vector - }: - mkDerivation { - pname = "find-clumpiness"; - version = "0.2.3.1"; - sha256 = "089e55641eedd12ab16ae5e81cbd2c6c0375801c01fc17fb2ce23354a0ec2c2a"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GregorySchwartz/find-clumpiness#readme"; - description = "Find the clumpiness of labels in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.1"; - sha256 = "9778dc162963c376f02239183e782673729d01a2e1e1dbf81924d80bf6f74ea4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.3.0"; - sha256 = "db733336de7ba5a2650f33f0b6a82dfe6699124f673b4506ffedaa4b6513489d"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.2.1.1"; - sha256 = "24a9e1e251998c9d06037bb771d9eab2980a91132de59a19d0166a1c51e715e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, tfp, utility-ht }: - mkDerivation { - pname = "fixed-length"; - version = "0.2"; - sha256 = "3171f2d443171a8e92733b3935805c7d5b54eae1f39f9fd729a766f887a6389b"; - libraryHaskellDepends = [ base non-empty tfp utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.1.0.0"; - sha256 = "1ed0bef94b0fead859ad2aea0b73bf1bd3686a6c1faafc75e321fbd9c3ae94c5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , directory, exceptions, filepath, FLAC, mtl, stdenv, text - , transformers, vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.1.2"; - sha256 = "5692b3dfc561cbeed25b1cf9280705f58eadd8c400aa2e6a725fd5562042ac29"; - revision = "5"; - editedCabalFile = "0rwwq8qrxd497rd5m0kidz4v69frj72ds7a6zrdqigj5f5471rhd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class directory exceptions - filepath mtl text transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.1"; - sha256 = "3c1cf80c48521370ce6351d4b544c14891442bfe47c65e5bf436fe58f6fec1ce"; - revision = "1"; - editedCabalFile = "02vdh61nzig0yrv6ja6fjlgfcznj5k4iqh3i5f9g5p078ycqb17w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flat-mcmc" = callPackage - ({ mkDerivation, base, formatting, mcmc-types, monad-par - , monad-par-extras, mwc-probability, pipes, primitive, stdenv, text - , transformers, vector - }: - mkDerivation { - pname = "flat-mcmc"; - version = "1.5.0"; - sha256 = "87cea9deac6e2d32d9984741ba222ccb2fb0d5f8c58e843684476bfe7632f1fd"; - revision = "1"; - editedCabalFile = "1pjkyvs4c6yx6jva08zw2b1qfhhv9q71sy806f5lddjsknnym2fn"; - libraryHaskellDepends = [ - base formatting mcmc-types monad-par monad-par-extras - mwc-probability pipes primitive text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/flat-mcmc"; - description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "flay" = callPackage - ({ mkDerivation, base, constraints, stdenv, transformers }: - mkDerivation { - pname = "flay"; - version = "0.4"; - sha256 = "01ff3e642eab48807e4369fd8c1336e22d7abdcf4374cd1322b1fe259c9413ef"; - libraryHaskellDepends = [ base constraints transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/flay"; - description = "Work generically on your datatype without knowing its shape nor its contents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.2"; - sha256 = "8fc4b55d04e7f216740a01acd2f38293e3bd9409a9495e6042a162580c420609"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "focus"; - version = "0.1.5.2"; - sha256 = "c2988d48c2bc6861a00be4e02161df96abcbf6c80e801676cee39b7628715cb7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.7"; - sha256 = "ff7ec4537a04beaae6926387f49dbfd98b6b6e5344e9d435503be7f2aca1c68f"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.1"; - sha256 = "5f98432d8d0a193ec1287c438fe53f8bd1ec4d5446aa64914f2f353f44e8500b"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroups, stdenv, text, transformers, unordered-containers - , vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.0"; - sha256 = "a5a4a65892d18026a4bc561e0d4854acbc954436ea329b284e6f14447d197d9b"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroups text transformers - unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.4"; - sha256 = "5c6e6f7c9c852cbe3d5372f93ed99f82400d15ae99ecf8e9e005481647734572"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "force-layout" = callPackage - ({ mkDerivation, base, containers, data-default-class, lens, linear - , stdenv - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "f7729855b1b14e0b255325faaca9f4834004e02bd21def6a865d2c55c734259d"; - revision = "5"; - editedCabalFile = "14d494pa7hcxmq9cvy039y5x7da6j4p5jp8kw0kmrlb9q8h6rh18"; - libraryHaskellDepends = [ - base containers data-default-class lens linear - ]; - doHaddock = false; - doCheck = false; - description = "Simple force-directed layout"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.0"; - sha256 = "b7dc7270e0a294cdaf40e99f067928411d82ed50af4dad51a6088830d539c325"; - revision = "2"; - editedCabalFile = "1yc9gv1rjbl4lsxscp5idfpn7jp27c38j6gm9v7isxgyaih0j4v4"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.4"; - sha256 = "9d038dc3d41081a95f4519102bfc4033a5ed077cf75e4a39a3e19860d7b796e5"; - revision = "1"; - editedCabalFile = "1lwld0qsccgwvr09i8hkfyxbbky4dq8ny9n3xr9dsglykvdy5vhp"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.20"; - sha256 = "ba6ae63a9ce0846bf942af2c3ace56600f051c61e83a0b55dd625de23a78e42d"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, bifunctors, comonad, containers - , distributive, exceptions, mtl, profunctors, semigroupoids - , semigroups, stdenv, template-haskell, transformers - , transformers-base, transformers-compat - }: - mkDerivation { - pname = "free"; - version = "5.0.2"; - sha256 = "ef05eb1c8e69742a4f962c573ef362e44ad48772940f1ef69fe39f0f77b2a396"; - revision = "1"; - editedCabalFile = "036js4y08jpqy5g067wpvzmq2lljnx51xclm5jhrvaq2s9fhhlvd"; - libraryHaskellDepends = [ - base bifunctors comonad containers distributive exceptions mtl - profunctors semigroupoids semigroups template-haskell transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.1.0.0"; - sha256 = "2198cdb1f6206b192bed553757cfc145485ee86be7261878bf44bc0e84b1bb01"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friday" = callPackage - ({ mkDerivation, base, containers, convertible, deepseq, primitive - , ratio-int, stdenv, transformers, vector - }: - mkDerivation { - pname = "friday"; - version = "0.2.3.1"; - sha256 = "0827492c1a6116baa5c4866539a4cfa0f6d81bf31f6573616bf5ac4484199613"; - revision = "1"; - editedCabalFile = "0n1f4plvrmad6gm8dbsi6g5ghahdwwy2fhgippmnp1ixb65x7d58"; - libraryHaskellDepends = [ - base containers convertible deepseq primitive ratio-int - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RaphaelJ/friday"; - description = "A functional image processing library for Haskell"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frisby" = callPackage - ({ mkDerivation, array, base, containers, mtl, semigroups, stdenv - }: - mkDerivation { - pname = "frisby"; - version = "0.2.2"; - sha256 = "c1b318dbf54d56e1012955cc47a1633af5fd77facc128c725353718c0663b6d5"; - libraryHaskellDepends = [ array base containers mtl semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://repetae.net/computer/frisby/"; - description = "Linear time composable parser for PEG grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "from-sum"; - version = "0.2.1.0"; - sha256 = "a1ed8a433b98df8a70be2f9199abae3e5ed7fb4c2f2b3fb1268b6b588f326667"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Canonical fromMaybeM and fromEitherM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, stdenv, text, time, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.2.1.2"; - sha256 = "d7cb2fcbb60b1acdb217ecd560ccab98438560cf51310bd7d239ecf2f4f4048d"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify text - time unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.0"; - sha256 = "c300f80b995714a598126e0c1ff82fe08e2acfaa6bb7f61b004eaa063d5ab40e"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, base-unicode-symbols, data-default, lens - , stdenv, text, text-metrics, unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.1.0.6"; - sha256 = "731ae813678de30bbccac03760f7bb0baed5cc8d91ed21e871b1f8d7aafe61a3"; - libraryHaskellDepends = [ - base base-unicode-symbols data-default lens text text-metrics - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.1"; - sha256 = "2d78584a8fdca851c60a13c79bbb8528e174ec84d6631679e76445f765590110"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gc" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "gc"; - version = "0.0.2"; - sha256 = "39cc5ac887319aeb184ee0d6ddb5b5a34e3f3d38c3fdf3ecc60bdf31a53dc30c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/gc/"; - description = "Poor Richard's Memory Manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; 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, stdenv - , text, time, unordered-containers, uuid, vector, websockets, wreq - , wuss - }: - mkDerivation { - pname = "gdax"; - version = "0.6.0.0"; - sha256 = "deb8efce5e4deb5b45c0d66d23eac65224c3d560d7ac67da6d3616cd5a916721"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/gdax"; - description = "API Wrapping for Coinbase's GDAX exchange"; - license = stdenv.lib.licenses.mit; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, generic-deriving, mtl - , stdenv, tagged, text, unordered-containers, vector - }: - mkDerivation { - pname = "generic-aeson"; - version = "0.2.0.9"; - sha256 = "34c13f91ffa72a1f6d7f43b84fdd19b20db547045eb6164a4119f9a95dcd84cb"; - revision = "4"; - editedCabalFile = "0m2m2wfv9nhq8m7xl1nrmj4wy3yip3s31b4448za58ryrwkdgjzd"; - libraryHaskellDepends = [ - aeson attoparsec base generic-deriving mtl tagged text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Derivation of Aeson instances using GHC generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.13.1"; - sha256 = "e9b53a40eae58e18ee281858a1ba400f14128d5779858272b01c10d64aa09abe"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged }: - mkDerivation { - pname = "generic-lens"; - version = "1.0.0.1"; - sha256 = "08a1fa26ee3f784b9fa4a107995aec119fe254a27252335eba5d39fc9ef50349"; - libraryHaskellDepends = [ base profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.1.0.2"; - sha256 = "e188cec239d67aa8fb563400874987453854d8adefeb82cd6188ffc8c8cf547f"; - revision = "1"; - editedCabalFile = "1qhjsxaadvnh41qrlnzp2wxrbxxsbsz9np4mhwq5vck07kqws5bk"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-xmlpickler" = callPackage - ({ mkDerivation, base, generic-deriving, hxt, stdenv, text }: - mkDerivation { - pname = "generic-xmlpickler"; - version = "0.1.0.5"; - sha256 = "d51760f5650051eebe561f2b18670657e8398014fa2a623c0e0169bfeca336af"; - revision = "8"; - editedCabalFile = "1hpcglml4b5yv192syxazminr5v7qjrgqwb2wk0cf7f0sjpm5d0q"; - libraryHaskellDepends = [ base generic-deriving hxt text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/generic-xmlpickler"; - description = "Generic generation of HXT XmlPickler instances using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-eot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generics-eot"; - version = "0.4"; - sha256 = "5abedc86df738c8ff7a8c6ca9ee97605406a1b6fadd4924fa93f7aacd2fece9b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://generics-eot.readthedocs.io/"; - description = "A library for generic programming that aims to be easy to understand"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.3.2.0"; - sha256 = "3060ecd09ccbd27ecf825bb89af0af9cfcadd16f747ce5964c501682a2301b99"; - revision = "3"; - editedCabalFile = "0lw5n8npdrdd1h7j000flaig4z30b8pig4q52sj34zhwccjkdzq2"; - libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.1.2.1"; - sha256 = "4e49d4cc580d45e25e0abdeee12b1191ae75937af1c7ca03333979584a8a525c"; - revision = "6"; - editedCabalFile = "0j4j3kk2nsl5n5gp0vrzqdc5y9ly31b4nvhq0bpgcpzibvik7ssw"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.5.0.3"; - sha256 = "d33a9031d196ca8a89c1b5aba5ad0c8e918efab1f1bc61c36bfb1df44ad3c175"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.2.0.1"; - sha256 = "a8ab6ded387ec689276b6c3116f5f558fb752b06ce9734f5bde5aa22ab2ed731"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.2.0.1"; - sha256 = "946d59509b68feb9db43512b59eb50dfdaf8e4e4e4f41701c45a72e17554dd53"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.4.0.1"; - sha256 = "8e271ea586b64266d44202c6931d5e8235160d572f8afa1a81357221f40918ad"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.6.0.3"; - sha256 = "c3c0b8d3e7c99cc9e7757dfb9a82ba4ef2bb0aaf59c5cc0e175aef18b817b9a4"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.2.0.1"; - sha256 = "b06a22fabc54bb7c6a48691dbd6138f51d435166bd6d3ae9cdfdee02240fc860"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.1"; - sha256 = "a0ef31605b560f6271017909dfb5063ca8a2451b13a217d19e5ddaf3014404b2"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.1"; - sha256 = "f62abf35ceb5657fd05af7a7561176be16092a06df13ac0c66c63dee5a40ada2"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.1"; - sha256 = "f5b161fce6e98b5f92d4837267d300693f2a980b56d1759a6444d88042c28fd2"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.1"; - sha256 = "1d65d8d48cf9d7600b2ac52a743720f11cc91cf1565650953777eb49adf85b8d"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.2.0.2"; - sha256 = "3797b98153c23eec98f5cd4688b4eed38aad6e1f4a67d659137f11559a895de7"; - libraryHaskellDepends = [ - base genvalidity hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.0.1"; - sha256 = "f67d54a949756d64f04c14b62a65d16dbe0b0f0656fee2f0a7332e06eb65b9f3"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.5.0.1"; - sha256 = "dc771cad6913bf643bffb27e6573d2a1f1b6499509fd5a509aeba5fa8f71af15"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.0.2"; - sha256 = "4136d4d9f6915312cefa1a04a996ed665b80e9346ff6361475eae688b5f60c2c"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.2.0.3"; - sha256 = "ada97e40d4a68fcfa7fe90b431ba9684bdc34fa7c7c566dc06f528b375bc0965"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.1"; - sha256 = "4669c260692897c2b1b0fa4eb92d0464355c32e0ebf9ab449fe94780128451eb"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.2.0.1"; - sha256 = "f6b838f0bf9b27f35481cf4e1ee10e6ffe695e427d50304d3c9a2bf6ad7336f6"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geodetics" = callPackage - ({ mkDerivation, array, base, dimensional, stdenv }: - mkDerivation { - pname = "geodetics"; - version = "0.0.5"; - sha256 = "58318a2bb51ee69d251b5b599335e579e84d64791e351c61b61237b8886deeba"; - revision = "2"; - editedCabalFile = "1yjlj8mz1xp651f286qqrxlxrbayj86r0jfp86lc7kirjx67zx7g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ array base dimensional ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/geodetics"; - description = "Terrestrial coordinate systems and geodetic calculations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.2"; - sha256 = "e604aa25d7843a175ec8803e2d60eb6c959fbb4cc7fb0d8321f315ff8671600c"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc-lib-parser, stdenv, uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc-lib-parser uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-parser" = callPackage - ({ mkDerivation, base, cpphs, ghc, happy, stdenv }: - mkDerivation { - pname = "ghc-parser"; - version = "0.2.0.2"; - sha256 = "bb74cc64ff8fd3d10447075d5982c7c684210762faa15226415d0ed7da756084"; - libraryHaskellDepends = [ base ghc ]; - libraryToolDepends = [ cpphs happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gibiansky/IHaskell"; - description = "Haskell source parser from GHC"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.9"; - sha256 = "afa68fb86123004c37c1dc354286af2d87a9dcfb12ddcb80e8bd0cd55bc87945"; - revision = "4"; - editedCabalFile = "1fp0jyvi6prqsv0dxn010c7q4mmiwlcy1xk6ppd4d539adxxy67d"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.2"; - sha256 = "2ee3a57f27d8dff0bfa9be88625aa4c2509193bb7bba0e37b25f3c73eebf3766"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-syntax-highlighter" = callPackage - ({ mkDerivation, base, ghc, stdenv, text }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.2.0"; - sha256 = "cf335c2d5c789dd6dac948edba4cef89b3b8595b5150c21ee735c82b97868dbd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ghc text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; - description = "Syntax highlighter for Haskell using lexer of GHC itself"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.3"; - sha256 = "30acfd21d590809c16d990512fc8fcb98361ec540a76438233bd8aa23e82374c"; - revision = "2"; - editedCabalFile = "1hrbvixm25x1dx1ljy9x7f63kcan4ffz885xj6qsl8l070wj96s1"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.2.5"; - sha256 = "9abcc82433f9e0e2bcc66b970d3aac952abd012baba7e9a506cc679e92b35f71"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-knownnat - ghc-typelits-natnormalise integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.5"; - sha256 = "00c4d9038eff968cde00d320e4852db8c59b13a032b3e94d108379bbde3f3d56"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.6.1"; - sha256 = "fdb0d48724ec2979f6cf510d08f01edc0267e0bd68ca560da2748f5659a7fc77"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.7"; - sha256 = "0f4bda82d39bc62b7a8906439a3dd281b7859cba1efd45ae0dbc7039b7089db5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.1"; - sha256 = "dcd9f5288d7624c8a2a5bf8440d9de6ab8400707d366180b13cc3f472280a513"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gi-atk" = callPackage - ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-atk"; - version = "2.0.15"; - sha256 = "89753b4517e77ea956dcfd1294b4b98032c6e50df912e28c9a796d2b825fbfee"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ atk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Atk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) atk;}; - "gi-cairo" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-cairo"; - version = "1.0.17"; - sha256 = "5dbda70a038a93cb07130597407de9cde1436603beca3f2a0a6b43953c55a7ab"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Cairo bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo;}; - "gi-gdk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo - , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gdk"; - version = "3.0.16"; - sha256 = "7eb0aa493d268cd040c7ff70ad09d7bf7787e0e7619617ba220b88eafe68e34a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gdk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf - , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gdkpixbuf"; - version = "2.0.16"; - sha256 = "fdbb5f12ecd3a419a345919913e659f90000b38b973ce79fb6e9ba05f5d4166f"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GdkPixbuf bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; - "gi-gio" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, glib, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gio"; - version = "2.0.18"; - sha256 = "13ebcd9c5d804de97db1f0ce7de520a73ba2eed950cbf5be84950fe33a8ef440"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gio bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-glib"; - version = "2.0.16"; - sha256 = "1cbb6289dcd628ed6044c75daff3237ac5c87ef793c03ecf78df3380bf2e140e"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GLib bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gobject" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gobject"; - version = "2.0.16"; - sha256 = "c57844d5b9566834ece584bfbbdff1c3ef2de5aa67c711c406fe92d4b927f6ad"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GObject bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gtk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.23"; - sha256 = "93e8211564ebd62e580ac8ce6c224c8e1f489965cd31cc2f6c193675d0443152"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gtk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gtk-hs" = callPackage - ({ mkDerivation, base, base-compat, containers, gi-gdk - , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk-hs"; - version = "0.3.6.1"; - sha256 = "9cb25b6585f20ab8593fd3ca544c0193d1c86d1e1bd8d8d43ae412f2c78b4161"; - libraryHaskellDepends = [ - base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject - gi-gtk haskell-gi-base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/gi-gtk-hs"; - description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "gi-gtksource" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtksource"; - version = "3.0.16"; - sha256 = "97b91b9f48b9e0c65a3936beb6e814ac5a55ab20aefbd9a167313982bd5da53a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtksourceview3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GtkSource bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtksourceview3;}; - "gi-javascriptcore" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi - , haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers, webkitgtk - }: - mkDerivation { - pname = "gi-javascriptcore"; - version = "4.0.15"; - sha256 = "03ea9ef17c74bbb57d2b6260a8f46b6e91b22de20788c53de823e9a8e32cbf1d"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ webkitgtk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "JavaScriptCore bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) webkitgtk;}; - "gi-pango" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, pango, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-pango"; - version = "1.0.16"; - sha256 = "a7bcc68413d7f7479e9b746eacf08b0c29a93b7c8af17005d96607ce090e78f4"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo pango ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Pango bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; - "giphy-api" = callPackage - ({ mkDerivation, aeson, base, containers, http-api-data - , http-client, http-client-tls, microlens, microlens-th, mtl - , network-uri, servant, servant-client, stdenv, text, transformers - }: - mkDerivation { - pname = "giphy-api"; - version = "0.6.0.1"; - sha256 = "8ddfb5005bc26553850366c527c0a1a93e6b1efaf4334f195a4f5ab647408604"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "git-vogue" = callPackage - ({ mkDerivation, base, bifunctors, containers, cpphs, Diff - , directory, filepath, formatting, haskell-src-exts, hlint - , hscolour, optparse-applicative, process, split, stdenv, strict - , stylish-haskell, temporary, text, transformers, unix - }: - mkDerivation { - pname = "git-vogue"; - version = "0.3.0.2"; - sha256 = "b41669f86776dd8fc56bec61f96f14b1fa0fc6720eaf3ed0559db97b4020705c"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/christian-marie/git-vogue"; - description = "A framework for pre-commit checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, base-compat - , base16-bytestring, binary, binary-orphans, byteable, bytestring - , containers, cryptohash, deepseq, deepseq-generics, exceptions - , hashable, http-client, http-client-tls, http-link-header - , http-types, iso8601-time, mtl, network-uri, semigroups, stdenv - , text, time, tls, transformers, transformers-compat - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "github"; - version = "0.19"; - sha256 = "f0ea9b57cd21645bba40e37e5e7c83ad78469cc3e32526b15e9a4bb2b3b84394"; - revision = "3"; - editedCabalFile = "0s3zmkzgfbh1mc0492i7rjiawxkzg0im8z2p10niv5ff58m87yri"; - libraryHaskellDepends = [ - aeson aeson-compat base base-compat base16-bytestring binary - binary-orphans byteable bytestring containers cryptohash deepseq - deepseq-generics exceptions hashable http-client http-client-tls - http-link-header http-types iso8601-time mtl network-uri semigroups - text time tls transformers transformers-compat unordered-containers - vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/github"; - description = "Access to the GitHub API, v3"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "github-webhooks" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, deepseq, deepseq-generics, memory, stdenv, text, time - , vector - }: - mkDerivation { - pname = "github-webhooks"; - version = "0.10.0"; - sha256 = "084a8aa9cc71f89a47a0c8cdb1d0f9eac79fb7d4360ed224efd8443f0c7271df"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite deepseq - deepseq-generics memory text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/onrock-eng/github-webhooks#readme"; - description = "Aeson instances for GitHub Webhook payloads"; - license = stdenv.lib.licenses.mit; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , fixed, half, hxt, libGL, stdenv, transformers - }: - mkDerivation { - pname = "gl"; - version = "0.8.0"; - sha256 = "aa4d2838157c86da920bda651458a4266fccc7c291ea93a69558ab02540e1439"; - revision = "3"; - editedCabalFile = "0q8d4237ds78y4p35xl2arlmmpgs2ag7krw9chby6q9dcs00zxrl"; - setupHaskellDepends = [ - base Cabal containers directory filepath hxt transformers - ]; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "0.3.5"; - sha256 = "e993ccc448eda5e86a680c1cd2a99df3b54f7461aaa190d3183ffd5ed9c57558"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glaze" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "glaze"; - version = "0.3.0.1"; - sha256 = "bbb184408bcf24e8c4f89a960cf7a69ab0c51e98bf84c5fa9901aae1702e22a1"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glaze#readme"; - description = "Framework for rendering things with metadata/headers and values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glazier" = callPackage - ({ mkDerivation, base, lens, mmorph, mtl, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "glazier"; - version = "0.11.0.1"; - sha256 = "1151031c7943140b19fc3b319f6e1c648cc75fa0fd619f17d64dfe7857b60b46"; - libraryHaskellDepends = [ - base lens mmorph mtl semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glazier#readme"; - description = "Composable widgets framework with enhanced with transformers and lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glazier-pipes" = callPackage - ({ mkDerivation, base, glazier, mmorph, pipes, stdenv, stm - , stm-extras, transformers - }: - mkDerivation { - pname = "glazier-pipes"; - version = "0.1.5.1"; - sha256 = "9d1d044a4d8641a0da09d6447298530a8a785bb3e29c0177a0b682f9bbf4d1ac"; - libraryHaskellDepends = [ - base glazier mmorph pipes stm stm-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glazier-pipes#readme"; - description = "A threaded rendering framework using glaizer and pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , gtk2hs-buildtools, stdenv, text, utf8-string - }: - mkDerivation { - pname = "glib"; - version = "0.13.6.0"; - sha256 = "4e71062c6a458440294d820e21449aa4666deed2ea233ef5915da7c1d4aee8eb"; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - base bytestring containers text utf8-string - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the GLIB library for Gtk2Hs"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gloss" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim - , gloss-rendering, GLUT, OpenGL, stdenv - }: - mkDerivation { - pname = "gloss"; - version = "1.12.0.0"; - sha256 = "6906d8ad72f094f16c27f19a4836e770cdae08dd90537239b067d5ddebdeac4b"; - libraryHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Painless 2D vector graphics, animations and simulations"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-raster" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, gloss-rendering - , repa, stdenv - }: - mkDerivation { - pname = "gloss-raster"; - version = "1.12.0.0"; - sha256 = "c89f496a397f168f020ad69742da21a7c54265e0b5144f3224d7912a15c34191"; - libraryHaskellDepends = [ - base containers ghc-prim gloss gloss-rendering repa - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Parallel rendering of raster images"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-rendering" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL - , stdenv - }: - mkDerivation { - pname = "gloss-rendering"; - version = "1.12.0.0"; - sha256 = "60d90b9729b8f6c8715d621aec8a9ded3f8f95bcb0877391d39a8e303de5c4bc"; - libraryHaskellDepends = [ - base bmp bytestring containers GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - description = "Gloss picture data types and rendering functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "gnuplot" = callPackage - ({ mkDerivation, array, base, containers, data-accessor - , data-accessor-transformers, deepseq, filepath, process - , semigroups, stdenv, temporary, time, transformers, utility-ht - }: - mkDerivation { - pname = "gnuplot"; - version = "0.5.5.2"; - sha256 = "b69a2c3173f6c495937b8e73d9c7f265f8cd89f6cd376a5cfdf2f91198bd97d6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers data-accessor data-accessor-transformers - deepseq filepath process semigroups temporary time transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Gnuplot"; - description = "2D and 3D plots using gnuplot"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "goggles" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary - , bytestring, containers, cryptonite, exceptions, filepath - , http-client, http-client-tls, http-types, memory, mtl, pem, req - , scientific, stdenv, stm, text, time, transformers, unix-time - , x509, x509-store - }: - mkDerivation { - pname = "goggles"; - version = "0.3.2"; - sha256 = "a64d25c6506b172ec6f3b8a55f7934c23ccedc66c1acfb62432063dff743e93c"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring binary bytestring - containers cryptonite exceptions filepath http-client - http-client-tls http-types memory mtl pem req scientific stm text - time transformers unix-time x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/goggles"; - description = "Extensible interface to Web APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-oauth2-jwt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, HsOpenSSL - , RSA, stdenv, text, unix-time - }: - mkDerivation { - pname = "google-oauth2-jwt"; - version = "0.3.0"; - sha256 = "72fd0f2fa82b734bc099c108ab0f168b1faaf6fb855d4dfb1df6348167ab27d6"; - libraryHaskellDepends = [ - base base64-bytestring bytestring HsOpenSSL RSA text unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/google-oauth2-jwt"; - description = "Get a signed JWT for Google Service Accounts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.5.1"; - sha256 = "8361853fca2d2251bd233e18393053dd391d21ca6f210b2bc861b0e0f4c2e113"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "graylog" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, network - , random, scientific, stdenv, text, time, vector - }: - mkDerivation { - pname = "graylog"; - version = "0.1.0.1"; - sha256 = "2d8173e61da8d02c39cb95e6ccea8a167c792f682a496aed5fe4edfd0e6a0082"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring network random scientific text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/haskell-graylog"; - description = "Support for graylog output"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gtk2hs-buildtools" = callPackage - ({ mkDerivation, alex, array, base, Cabal, containers, directory - , filepath, happy, hashtables, pretty, process, random, stdenv - }: - mkDerivation { - pname = "gtk2hs-buildtools"; - version = "0.13.4.0"; - sha256 = "0f3e6ba90839efd43efe8cecbddb6478a55e2ce7788c57a0add4df477dede679"; - revision = "1"; - editedCabalFile = "0nbghg11y4nvxjxrvdm4a7fzj8z12fr12hkj4b7p27imlryg3m10"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base Cabal containers directory filepath hashtables pretty - process random - ]; - libraryToolDepends = [ alex happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Tools to build the Gtk2Hs suite of User Interface libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "h2c" = callPackage - ({ mkDerivation, base, bytestring, mtl, resourcet, stdenv }: - mkDerivation { - pname = "h2c"; - version = "1.0.0"; - sha256 = "4be2c9d54084175777624770640850aba33d7e4a31e2dc8096c122f737965499"; - libraryHaskellDepends = [ base bytestring mtl resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/h2c"; - description = "Bindings to Linux I2C with support for repeated-start transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hOpenPGP" = callPackage - ({ mkDerivation, aeson, asn1-encoding, attoparsec, base - , base16-bytestring, base64-bytestring, bifunctors, binary - , binary-conduit, bytestring, bzlib, conduit, conduit-extra - , containers, crypto-cipher-types, cryptonite, errors, hashable - , incremental-parser, ixset-typed, lens, memory, monad-loops - , nettle, network-uri, newtype, openpgp-asciiarmor, prettyprinter - , resourcet, semigroups, split, stdenv, text, time - , time-locale-compat, transformers, unliftio-core - , unordered-containers, zlib - }: - mkDerivation { - pname = "hOpenPGP"; - version = "2.7"; - sha256 = "efb7b7b7cb125eb9150108cd67a2386a37234887ddfc377792e26ba38b768a68"; - libraryHaskellDepends = [ - aeson asn1-encoding attoparsec base base16-bytestring - base64-bytestring bifunctors binary binary-conduit bytestring bzlib - conduit conduit-extra containers crypto-cipher-types cryptonite - errors hashable incremental-parser ixset-typed lens memory - monad-loops nettle network-uri newtype openpgp-asciiarmor - prettyprinter resourcet semigroups split text time - time-locale-compat transformers unliftio-core unordered-containers - zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "native Haskell implementation of OpenPGP (RFC4880)"; - license = stdenv.lib.licenses.mit; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.0.1"; - sha256 = "f0aac1af6d8d29b7fc2ffd43efaf5a7a5b00f2ead8dacff180bc3714c591ef8d"; - revision = "2"; - editedCabalFile = "0qscq4d3xwvjhqi1fiky7g12iwbkwn9qrypwzg9lx4p3c5xlwlvn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory filepath tar time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access Hackage's package database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-security" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, Cabal, containers, cryptohash-sha256, directory - , ed25519, filepath, ghc-prim, mtl, network, network-uri, parsec - , pretty, stdenv, tar, template-haskell, time, transformers, zlib - }: - mkDerivation { - pname = "hackage-security"; - version = "0.5.3.0"; - sha256 = "db986e17e9265aa9e40901690815b890b97d53159eb24d0a6cafaa7c18577c21"; - revision = "6"; - editedCabalFile = "1xs2nkzlvkdz8g27yzfxbjdbdadfmgiydnlpn5dm77cg18r495ay"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring Cabal - containers cryptohash-sha256 directory ed25519 filepath ghc-prim - mtl network network-uri parsec pretty tar template-haskell time - transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hackage-security"; - description = "Hackage security library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers - , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths - , haddock-library, stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.20.0"; - sha256 = "f2bc3495fbab581bc03e1a2050c7a0ce849ac97cb19506f5167d49d9d000c609"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring Cabal containers deepseq directory filepath - ghc ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.6.0"; - sha256 = "609f096e7b7d2690fc2302d6a77f6a0e0fefb64ae64e90d90e754dc37f10e740"; - libraryHaskellDepends = [ - base bytestring containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hakyll" = callPackage - ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring - , containers, cryptohash, data-default, deepseq, directory - , file-embed, filepath, fsnotify, http-conduit, http-types - , lrucache, mtl, network-uri, optparse-applicative, pandoc - , pandoc-citeproc, parsec, process, random, regex-tdfa, resourcet - , scientific, stdenv, tagsoup, text, time, time-locale-compat - , unordered-containers, vector, wai, wai-app-static, warp, yaml - }: - mkDerivation { - pname = "hakyll"; - version = "4.12.3.0"; - sha256 = "a472dc12e18415c0d8bab788334d753233789f2fd58a8f70de57172814639fb1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-html blaze-markup bytestring containers - cryptohash data-default deepseq directory file-embed filepath - fsnotify http-conduit http-types lrucache mtl network-uri - optparse-applicative pandoc pandoc-citeproc parsec process random - regex-tdfa resourcet scientific tagsoup text time - time-locale-compat unordered-containers vector wai wai-app-static - warp yaml - ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/hakyll"; - description = "A static website compiler library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamilton" = callPackage - ({ mkDerivation, ad, ansi-wl-pprint, base, containers - , finite-typelits, ghc-typelits-knownnat, hmatrix, hmatrix-gsl - , hmatrix-vector-sized, optparse-applicative, stdenv - , typelits-witnesses, vector, vector-sized, vty - }: - mkDerivation { - pname = "hamilton"; - version = "0.1.0.3"; - sha256 = "3c7623217c8e49cabc6620835e53609e7b7339f39a1523da2467076252addb1b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hamilton#readme"; - description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "handwriting" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, lens, lens-aeson, random, split, stdenv, text - , transformers, wreq - }: - mkDerivation { - pname = "handwriting"; - version = "0.1.0.3"; - sha256 = "7e1b406d19b2f39b34910462dce214c7ca91bb9d78bf9fafb9f906dd44d5beaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers lens lens-aeson split text - transformers wreq - ]; - executableHaskellDepends = [ - base bytestring directory filepath random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ismailmustafa/handwriting-haskell#readme"; - description = "API Client for the handwriting.io API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hapistrano" = callPackage - ({ mkDerivation, aeson, async, base, filepath, formatting, gitrev - , mtl, optparse-applicative, path, path-io, process, stdenv, stm - , time, transformers, yaml - }: - mkDerivation { - pname = "hapistrano"; - version = "0.3.5.6"; - sha256 = "4cf079fa4fd616e41ccfaac7830f196a64df97f504d7ef2c6c9f8f0d53193b6e"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base filepath formatting gitrev mtl path process time transformers - ]; - executableHaskellDepends = [ - aeson async base formatting gitrev optparse-applicative path - path-io stm yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hapistrano"; - description = "A deployment library for Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "happstack-server" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring - , containers, directory, exceptions, extensible-exceptions - , filepath, hslogger, html, monad-control, mtl, network - , network-uri, old-locale, parsec, process, semigroups, sendfile - , stdenv, syb, system-filepath, template-haskell, text, threads - , time, time-compat, transformers, transformers-base - , transformers-compat, unix, utf8-string, xhtml, zlib - }: - mkDerivation { - pname = "happstack-server"; - version = "7.5.1"; - sha256 = "32877ec758149dd3ffbd2a03f3fecd3a69bcac8f6c499e3a08e43bee1c9f8ea1"; - revision = "1"; - editedCabalFile = "1zs5p642k6qib3l2h6ps1r7vwk0n4cy91cvxxfzpdzhwv5nk20bf"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html bytestring containers directory - exceptions extensible-exceptions filepath hslogger html - monad-control mtl network network-uri old-locale parsec process - semigroups sendfile syb system-filepath template-haskell text - threads time time-compat transformers transformers-base - transformers-compat unix utf8-string xhtml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://happstack.com"; - description = "Web related tools and services"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, Cabal, containers, directory - , filepath, mtl, stdenv - }: - mkDerivation { - pname = "happy"; - version = "1.19.9"; - sha256 = "3e81a3e813acca3aae52721c412cde18b7b7c71ecbacfaeaa5c2f4b35abf1d8d"; - revision = "3"; - editedCabalFile = "0kwlh964nyqvfbm02np8vpc28gbhsby0r65jhz1918rm0wip9izq"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hasbolt" = callPackage - ({ mkDerivation, base, binary, bytestring, connection, containers - , data-binary-ieee754, data-default, hex, network, stdenv, text - , transformers - }: - mkDerivation { - pname = "hasbolt"; - version = "0.1.3.0"; - sha256 = "fd6fc49f57e8c03087103f733c130739a046398b5118b078aad2def31059665d"; - revision = "4"; - editedCabalFile = "02x9q7m7gpk6wdbfyx8h3w28c46zcirgv9jffbjv07rqgki25x8f"; - libraryHaskellDepends = [ - base binary bytestring connection containers data-binary-ieee754 - data-default hex network text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmactep/hasbolt#readme"; - description = "Haskell driver for Neo4j 3+ (BOLT protocol)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.2.7.0"; - sha256 = "ecb5efc0586023f5a0dc861100621c1dbb4cbb2f0516829a16ebac39f0432abf"; - revision = "1"; - editedCabalFile = "197063dpl0wn67dp7a06yc2hxp81n24ykk7klbjx0fndm5n87dh3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.1"; - sha256 = "8fd1c7c77c267eae6af01f1d9ca427754fb092cfffc8041cd50764a9144b3cbe"; - revision = "1"; - editedCabalFile = "1yyqnqn85mlw03f2bpvwa1w9gigswk9n30i918myqyxwr595l7rr"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.4.2"; - sha256 = "5543ec8cd932396360a5c707bf0958b39bb99a559fb4fd80ed366a953c6cb0eb"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.21.2"; - sha256 = "f1611245eaf982d0c6dd5d68856e0cb0880ffe32e5d8dd288c36d884e4fb623c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - executableHaskellDepends = [ - base containers directory filepath haskell-gi-base pretty-show text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.21.1"; - sha256 = "667cf211eb6ce1e3e84fc2126670847228b4cb4211dd7d7f4ae627ef6f15295d"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, parsec, process, safe, sorted-list, stdenv, stm - , syb, tagsoup, text, transformers, unix-time, unliftio - , unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple parsec process safe sorted-list stm syb tagsoup - text transformers unix-time unliftio unordered-containers vector - versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.0.1"; - sha256 = "d7d42ab3c4bc2f0232ede8b005fb9de57f862ee4c1c83aa61e1022346fc84366"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-spacegoo" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , mtl, pretty, pretty-show, stdenv, text, vector, vector-space - }: - mkDerivation { - pname = "haskell-spacegoo"; - version = "0.2.0.1"; - sha256 = "1eb3faa9a7f6a5870337eeb0bb3ad915f58987dfe4643fe95c91cbb2738ddd3c"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra mtl pretty pretty-show - text vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Client API for Rocket Scissor Spacegoo"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.0"; - sha256 = "b4b4941e8883da32c3f2b93f3ecdd5cff82ff9304cb91e89850b19095c908dbc"; - revision = "1"; - editedCabalFile = "1pnrvh9wzdkhvkkky4rlq1imycl9k76x9rvgq7cmfp8rf1iwqi5q"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.0.2"; - sha256 = "4b7b143b94fcf147b96bb34822c2feeae29daadd3a22796ee36cadd5ca262c8b"; - revision = "1"; - editedCabalFile = "07xxp2r8amd420bzl7xlyfydhyrcrvaxq24ydnx7y2sz4v2nlzsz"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , exceptions, filepath, focus, haskey-btree, list-t, lz4, mtl - , semigroups, stdenv, stm, stm-containers, transformers, unix - , xxhash-ffi - }: - mkDerivation { - pname = "haskey"; - version = "0.3.0.2"; - sha256 = "901c08a8155d8e394a868fe5a4b7318912afda8f91349f870c4384c5ab9944e8"; - libraryHaskellDepends = [ - base binary bytestring containers directory exceptions filepath - focus haskey-btree list-t lz4 mtl semigroups stm stm-containers - transformers unix xxhash-ffi - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey"; - description = "A transactional, ACID compliant, embeddable key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.0"; - sha256 = "90387d9a8e2afb22f9a4ace4b8f3b1a2045b955c1283c70a614abeff2294465a"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-mtl" = callPackage - ({ mkDerivation, base, exceptions, haskey, haskey-btree - , monad-control, mtl, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "haskey-mtl"; - version = "0.3.1.0"; - sha256 = "1ffb00a2901dc19edeeb18299dd1a52a49ca8c25bc04e87555c1bcec90b79294"; - libraryHaskellDepends = [ - base exceptions haskey haskey-btree monad-control mtl transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey"; - description = "A monad transformer supporting Haskey transactions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , data-default-class, dlist, hashable, hashtables, loch-th, mtl - , placeholders, postgresql-binary, postgresql-libpq, profunctors - , semigroups, stdenv, text, text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.3.0.1"; - sha256 = "0ebd09826b03ea93434818fe8617ddedbaa40a109d51c849deb98309104f671f"; - revision = "1"; - editedCabalFile = "1f9257j4b9afhm7nkmakzf4wg0abxm5yca120hy7v2sp75nsdg5h"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras data-default-class dlist - hashable hashtables loch-th mtl placeholders postgresql-binary - postgresql-libpq profunctors semigroups text text-builder - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver and a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.3"; - sha256 = "63b4c3da21434bac9a98521cdcfda7815bcebb8829feb889f4050fffd7f06334"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5"; - sha256 = "3a33cdfc9ae253f193afb824c9488051103b4c71316b6db39d51dce27c825d2f"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, base-prelude, bytestring - , bytestring-tree-builder, contravariant, contravariant-extras - , hasql, mtl, stdenv, transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "0.7"; - sha256 = "decb3c5b08f710413ee65861c30766c53dc79d05f388fab6f8e1105e4d907fcf"; - libraryHaskellDepends = [ - base base-prelude bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "A composable abstraction over the retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "haxl" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, exceptions, filepath, ghc-prim, hashable, pretty, stdenv - , stm, text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haxl"; - version = "2.0.0.0"; - sha256 = "beaeb51caba2ea6f634fad0303271624233b8d9bd253a3030801854d3d0c6a89"; - revision = "1"; - editedCabalFile = "1p5i3ysgszjd3bw0000jb7i1nhjszwdw638qlyk4nrl1xf9wkdnn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq exceptions filepath - ghc-prim hashable pretty stm text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebook/Haxl"; - description = "A Haskell library for efficient, concurrent, and concise data access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hbeanstalk" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, network, stdenv - }: - mkDerivation { - pname = "hbeanstalk"; - version = "0.2.4"; - sha256 = "feaf97fd18fedb3e5abf337e61c98a03108d917d9f87f885c8d02b6b838aac8f"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/scsibug/hbeanstalk/"; - description = "Client for the beanstalkd workqueue service"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.5"; - sha256 = "d250cb0c066ec45aa9b8e9e0df094677f9e7788b01eaf51ab5bc9bbd52fe029f"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/greydot/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6"; - sha256 = "181c3cd7f2be698f903dc9649e5ec9311245ad2b9fed91b61f05d0dd7b7dddb2"; - revision = "3"; - editedCabalFile = "0k6wsm1hwn3vaxdvw8p7cidxg7p8zply2ig4w4qrbpyjhl6dj9x9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.1"; - sha256 = "c7997ee86df43d5d734df63c5e091543bb7fd75a93d530c1857067e27a8b7932"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, exceptions - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, th-lift, time, transformers, transformers-base, unix - , wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "0.5.3"; - sha256 = "a4739630d3dec1762e69b371e11d1caaa5e6a50aa13abe41dd0e34b3a7dd68ef"; - revision = "1"; - editedCabalFile = "0hhzkl88xk9j62897y11f4xx84qdh0mdap55iw30cl4zwlgp10ir"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory exceptions lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text th-lift time transformers transformers-base - unix wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Hedgehog will eat all your bugs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.1.0"; - sha256 = "c3569cd8316770115871acf334587350e887b046e35abc0d52a90dd0e6d719f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedis" = callPackage - ({ mkDerivation, async, base, bytestring, bytestring-lexing - , deepseq, errors, HTTP, mtl, network, network-uri, resource-pool - , scanner, stdenv, stm, text, time, tls, unordered-containers - , vector - }: - mkDerivation { - pname = "hedis"; - version = "0.10.2"; - sha256 = "1c99bd415a3bdc241a8a3ea6397b6fff10ed3b099de79e46ffe435ad89aa7615"; - revision = "1"; - editedCabalFile = "0rc2f2gkhvdsm2bai1agl68xaqx84fa2bdkxdg5grhbp770lrs0p"; - libraryHaskellDepends = [ - async base bytestring bytestring-lexing deepseq errors HTTP mtl - network network-uri resource-pool scanner stm text time tls - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/informatikr/hedis"; - description = "Client library for the Redis datastore: supports full command set, pipelining"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "herms" = callPackage - ({ mkDerivation, ansi-terminal, base, brick, directory, microlens - , microlens-th, mtl, optparse-applicative, semigroups, split - , stdenv, vty - }: - mkDerivation { - pname = "herms"; - version = "1.9.0.0"; - sha256 = "2a7e2dfe9bf9aba42c82d07938a9eefb0ba6c76d72b9ff91a798248173b16e4c"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - ansi-terminal base brick directory microlens microlens-th mtl - optparse-applicative semigroups split vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JackKiefer/herms"; - description = "A command-line manager for delicious kitchen recipes"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.2"; - sha256 = "50b829508715ba246f095accd1b49f7c5f67380948d349df355bac39f4155923"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hex"; - version = "0.1.2"; - sha256 = "12ee1243edd80570a486521565fb0c9b5e39374f21a12f050636e71d55ec61ec"; - revision = "1"; - editedCabalFile = "0khmrdni6njr4wxgz15yz77l8ar4qm2jj6v0lvfnwqdms4s6i80y"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Convert strings into hexadecimal and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.3"; - sha256 = "c4edcc6087df13ad9d9c30de9c1e8be527add3835cb94d59c32b1c5dce861cd2"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.4"; - sha256 = "fc40ea58320f9f1459a8da6463419bb15930d2e6d8273d5592cde509d4c96a75"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hidden-char" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hidden-char"; - version = "0.1.0.2"; - sha256 = "ea909372a7cc06cda7ee8e9c1a6a5c16be19fef256ad4bd2c0b39e61d940f498"; - revision = "3"; - editedCabalFile = "0f6qghr4i3ar993pjlswdd2rl671lrnxj8740i2yhn89z410vzsa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/hidden-char#readme"; - description = "Provides cross-platform getHiddenChar function"; - license = stdenv.lib.licenses.mit; - }) {}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hierarchical-clustering" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "hierarchical-clustering"; - version = "0.4.6"; - sha256 = "75f17f09b9c38d51a208edee10da2f4706ee784b5cdfe8efc31f7f86bbcdccb1"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hierarchy" = callPackage - ({ mkDerivation, base, exceptions, free, mmorph, monad-control, mtl - , stdenv, transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "hierarchy"; - version = "1.0.2"; - sha256 = "25f90eff98036266e279d5730297e24bdfe27b3151cf155d29415cf7d07b1318"; - libraryHaskellDepends = [ - base exceptions free mmorph monad-control mtl transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/hierarchy#readme"; - description = "Predicated traversal of generated trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.1"; - sha256 = "44fc8de63416b7878e67d8c93f0ae25e3cba4a7fad2149bb5eac34d2b8d2f95c"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.3.10"; - sha256 = "af2b7d5733ab52ca38f0d9aed1ec37304f1d6964caa0fb556b8215858c1d5d9d"; - revision = "1"; - editedCabalFile = "07z0n5rvki3w0kjr190bwv7sq8p3myspv8999ilz9rlsqf5a0324"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "histogram-fill" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv, vector - }: - mkDerivation { - pname = "histogram-fill"; - version = "0.9.0.0"; - sha256 = "a6d078059b6b839e6785443f28e224b20a0b3a72a17354028dbc68e031b34402"; - revision = "1"; - editedCabalFile = "0l2s51hjk3fn670k5q56fz4wh8h3fwickkxhxgwnaycr9jjmi1dd"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shimuuar/histogram-fill/"; - description = "Library for histograms creation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , language-javascript, optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.2"; - sha256 = "bec153d2396962c63998eb12d0a2c7c9f7df6f774cb00e41b6cdb1f5a4905484"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers language-javascript text - ]; - executableHaskellDepends = [ - base blaze-builder bytestring containers language-javascript - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat, bytestring - , cmdargs, containers, csv, data-default, Decimal, Diff, directory - , file-embed, filepath, hashable, haskeline, here, hledger-lib - , HUnit, lucid, megaparsec, mtl, mtl-compat, old-time, parsec - , pretty-show, process, regex-tdfa, safe, shakespeare, split - , stdenv, tabular, temporary, terminfo, text, time, transformers - , unordered-containers, utf8-string, utility-ht, wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.9.1"; - sha256 = "630116f8b9f6edeb968e863600c9501628a805dd1319a5168ab54341c3fc598d"; - revision = "1"; - editedCabalFile = "0qmvkw2zbcpjmkf71janpdpdha45yi29f9kv54rxqbckkh1ziych"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat bytestring cmdargs containers csv - data-default Decimal Diff directory file-embed filepath hashable - haskeline here hledger-lib HUnit lucid megaparsec mtl mtl-compat - old-time pretty-show process regex-tdfa safe shakespeare split - tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat bytestring cmdargs containers csv - data-default Decimal directory file-embed filepath haskeline here - hledger-lib HUnit mtl mtl-compat old-time parsec pretty-show - process regex-tdfa safe shakespeare split tabular temporary - terminfo text time unordered-containers utf8-string utility-ht - wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , Decimal, docopt, either, hledger, hledger-lib, microlens - , microlens-platform, safe, servant-server, servant-swagger, stdenv - , swagger2, text, transformers, wai, wai-extra, warp - }: - mkDerivation { - pname = "hledger-api"; - version = "1.9.1"; - sha256 = "48cac8ba8b213820afba38fe32fb4ed75b65cb3f8b9a14bed1b95986fb452fcf"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web API server for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.2"; - sha256 = "78b588a37cb4d46d93b864ad8e104d954eaa118b47327457a7bef364da109381"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat - , blaze-markup, bytestring, cmdargs, containers, csv, data-default - , Decimal, deepseq, directory, extra, filepath, hashtables, HUnit - , megaparsec, mtl, mtl-compat, old-time, parsec, pretty-show - , regex-tdfa, safe, split, stdenv, tabular, text, time - , transformers, uglymemo, utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.9.1"; - sha256 = "5f155ca26949e444ac68d80ef30a4792695db10bed80eb32641b597c17e9af7b"; - revision = "2"; - editedCabalFile = "09kkc9m67yj3388f93czgkir0d52jkvksp4179ws2xlymvyb5m7l"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat blaze-markup bytestring - cmdargs containers csv data-default Decimal deepseq directory extra - filepath hashtables HUnit megaparsec mtl mtl-compat old-time parsec - pretty-show regex-tdfa safe split tabular text time transformers - uglymemo utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-ui" = callPackage - ({ mkDerivation, ansi-terminal, async, base, base-compat, brick - , cmdargs, containers, data-default, directory, filepath, fsnotify - , hledger, hledger-lib, HUnit, megaparsec, microlens - , microlens-platform, pretty-show, process, safe, split, stdenv - , text, text-zipper, time, transformers, vector, vty - }: - mkDerivation { - pname = "hledger-ui"; - version = "1.9.1"; - sha256 = "6087120e2aa4644aca175c3a42484a121aefe2cd76b5840d7879a0a2244d59a1"; - revision = "1"; - editedCabalFile = "0dy5vrm969cqp4mz31524z8w1m3lznrr17kgn204rgq91j7zzwx2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal async base base-compat brick cmdargs containers - data-default directory filepath fsnotify hledger hledger-lib HUnit - megaparsec microlens microlens-platform pretty-show process safe - split text text-zipper time transformers vector vty - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Curses-style user interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, base, base-compat, blaze-html, blaze-markup - , bytestring, clientsession, cmdargs, conduit-extra, data-default - , directory, filepath, hjsmin, hledger, hledger-lib, http-client - , http-conduit, HUnit, json, megaparsec, mtl, parsec, safe - , shakespeare, stdenv, template-haskell, text, time, transformers - , wai, wai-extra, wai-handler-launch, warp, yaml, yesod, yesod-core - , yesod-form, yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.9.2"; - sha256 = "635f07a3987d502e351414dbc24dbc986019773e7408f7f8e564e65df41ea32c"; - revision = "1"; - editedCabalFile = "1njgbfl71iif3f7z3kkyqgab98md93a56mpl6laq0kw4azgdsajy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat blaze-html blaze-markup bytestring clientsession - cmdargs conduit-extra data-default directory filepath hjsmin - hledger hledger-lib http-client http-conduit HUnit json megaparsec - mtl parsec safe shakespeare template-haskell text time transformers - wai wai-extra wai-handler-launch warp yaml yesod yesod-core - yesod-form yesod-static - ]; - executableHaskellDepends = [ - base base-compat blaze-html blaze-markup bytestring clientsession - cmdargs conduit-extra data-default directory filepath hjsmin - hledger hledger-lib http-client http-conduit HUnit json megaparsec - mtl parsec safe shakespeare template-haskell text time transformers - wai wai-extra wai-handler-launch warp yaml yesod yesod-core - yesod-form yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlibsass" = callPackage - ({ mkDerivation, base, Cabal, directory, libsass, stdenv }: - mkDerivation { - pname = "hlibsass"; - version = "0.1.7.0"; - sha256 = "62a75c444d8771303c6712e6fd3b3b5fd988773ec61ff06b4ed7e9d92c1c9f6d"; - configureFlags = [ "-fexternalLibsass" ]; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ libsass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hlibsass"; - description = "Low-level bindings to Libsass"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsass;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern - ghc-lib-parser ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.19.0.0"; - sha256 = "52eb2e42edc5839bfd9d2dec6c4fb29997eca737537a06df7b2d09bf6c324d82"; - revision = "1"; - editedCabalFile = "0krx0ds5mcj28y6zpg0r50lljn8681wi4c5lqcdz2c71nhixfq8h"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.7"; - sha256 = "4a0f8b6ea1caefebd30f1e726c94f238d96c0f873bdeb5d920367e8aca7c54bf"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.1"; - sha256 = "729b81f4b434e0132e13508e02e688a9af182390120c0ba2144702b11f9fecf8"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Alexander-Ignatyev/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-special" = callPackage - ({ mkDerivation, base, hmatrix, hmatrix-gsl, stdenv }: - mkDerivation { - pname = "hmatrix-special"; - version = "0.19.0.0"; - sha256 = "1f1f8c7f1700cea53132daecc53ca1a9733d4beac91ae1dcd2a2a03c83c9dcd7"; - libraryHaskellDepends = [ base hmatrix hmatrix-gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Interface to GSL special functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.1.0"; - sha256 = "8b4edc591aa301ee2c4d2f5894ad690db8d88c9d48754f6d13c30d3eacc03b1d"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoopl" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hoopl"; - version = "3.10.2.2"; - sha256 = "097b1316d5f1c8ffe71133223209eb2b095fe13f43dc01d1fe43fd8a545a2b97"; - revision = "2"; - editedCabalFile = "0j6pz4jzhvviyrhhn1j22ikmjvzrg60nzvq26lbpkcb6y4q6rlyx"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hoopl"; - description = "A library to support dataflow analysis and optimization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, openssl - , stdenv - }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.1"; - sha256 = "7031aac15f132057f8013f819774081cd8fc4a14fb076bc3dffb478d66d0abdf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.11"; - sha256 = "18a6bb303fc055275cca45aaffc17b6a04b2e9d7509aa5aa5bb9d9239f4e4f51"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.8.0.2"; - sha256 = "2fd19796845be73b605ee8830704a6f1f23a80f43731cd36a216fb2b3bb179c8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/hp2pretty"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hpack" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal - , containers, cryptonite, deepseq, directory, filepath, Glob - , http-client, http-client-tls, http-types, pretty, scientific - , stdenv, text, transformers, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hpack"; - version = "0.28.2"; - sha256 = "b9601332bbac2f042947be1f7478ed0c72367e4caa211b779a75dc26cd8180a3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types pretty scientific text transformers unordered-containers - vector yaml - ]; - executableHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types pretty scientific text transformers unordered-containers - vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/hpack#readme"; - description = "An alternative format for Haskell packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "hpqtypes" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , data-default-class, directory, exceptions, filepath, lifted-base - , monad-control, mtl, postgresql, resource-pool, semigroups, stdenv - , text, text-show, time, transformers, transformers-base, vector - }: - mkDerivation { - pname = "hpqtypes"; - version = "1.5.2.0"; - sha256 = "fc0da2a7119e1da3bc77a05d99c1c654ff6103f267e58fa745a66aeabdca183e"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - aeson base bytestring containers data-default-class exceptions - lifted-base monad-control mtl resource-pool semigroups text - text-show time transformers transformers-base vector - ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/hpqtypes"; - description = "Haskell bindings to libpqtypes"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "hquantlib" = callPackage - ({ mkDerivation, base, containers, hmatrix, hmatrix-gsl - , hmatrix-special, mersenne-random-pure64, parallel, random - , statistics, stdenv, time, vector, vector-algorithms - }: - mkDerivation { - pname = "hquantlib"; - version = "0.0.4.0"; - sha256 = "b7b2b9ce5e8113dd2d54a1dfce34b661620bd5e0dd43516604395276d7c44474"; - revision = "2"; - editedCabalFile = "1wx32kkv1as3rras5b1y3v77abx0sqsam6ssa5s7vm83pncx38y4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers hmatrix hmatrix-gsl hmatrix-special - mersenne-random-pure64 parallel random statistics time vector - vector-algorithms - ]; - executableHaskellDepends = [ - base containers mersenne-random-pure64 parallel time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/paulrzcz/hquantlib.git"; - description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; - license = "LGPL"; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, ruby - , scientific, stdenv, stm, text, unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.5.1"; - sha256 = "969b829f28d369a3a99960e3890427470459425b3434576e54f8fd3ca13fef3f"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.2.0.1"; - sha256 = "4b668090049bf67f107b8bcd39a4664c00b78ff596de9ccb63720af49ed4a630"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.2.0"; - sha256 = "a7f1f058915b3554cbb0d99b475c853023f33d5dcd5b3bc280b9420841a4104a"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsass" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, filepath - , hlibsass, monad-loops, stdenv, transformers - }: - mkDerivation { - pname = "hsass"; - version = "0.7.0"; - sha256 = "73758e87ba43096c0b3eb9ed7029f30d3a4d602dbe68c97760f89e5165901a57"; - libraryHaskellDepends = [ - base bytestring data-default-class filepath hlibsass monad-loops - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hsass"; - description = "Integrating Sass into Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.7.1"; - sha256 = "4fcd00e85cde989652ab5c6b179610c9514180a00cd7b161ea33ebfec3b8a044"; - revision = "1"; - editedCabalFile = "0w4hrmj7ph5dgarl82xpa0g77ncjdqk0wc9wp771pry98xxihzl8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, mtl, old-time, parsec, stdenv }: - mkDerivation { - pname = "hsemail"; - version = "2"; - sha256 = "f5f08a879444abd1f9a8a3e620d7fc83bc632ae3ba9b545bebdf58d5f4bfa8d9"; - libraryHaskellDepends = [ base mtl old-time parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the RFC2822 Internet Message format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsexif" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, iconv - , stdenv, text, time - }: - mkDerivation { - pname = "hsexif"; - version = "0.6.1.5"; - sha256 = "2f12ea1060adb46c9afb74d32b82989b3883968403e21ff125f5cf9da869b06e"; - revision = "1"; - editedCabalFile = "1q5ppjq8b08ljccg5680h1kklr288wfz52vnmgpcf9hqjm3icgvb"; - libraryHaskellDepends = [ - base binary bytestring containers iconv text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/hsexif"; - description = "EXIF handling library in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hsinstall"; - version = "1.6"; - sha256 = "061090c68bdcdad5efef879c4fc0e4c67c26d34221c333fe4c9880216635c811"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, network - , network-bsd, old-locale, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.3.1.0"; - sha256 = "7f2364f6c0b9c5b85a257267a335816126ef2471c817a42797a5d3c57acaca5b"; - libraryHaskellDepends = [ - base bytestring containers deepseq network network-bsd old-locale - time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/hslogger/wiki"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "0.9.5.2"; - sha256 = "0e4d26f8a76cbfb219851f33d31417c4a3c8f193123367a0749f047103d8bbe5"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - description = "A Lua language interpreter embedding in Haskell"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "0.3.0.1"; - sha256 = "5c90d514239f8764ebeb6697dc35fe0c6133244c3bdf684c236d9ea7161a9440"; - revision = "1"; - editedCabalFile = "02p97fsn7g6n0l5i9k0mrffqhw2a3y74vi0zaynsl224r4vwqsbp"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.1.2.1"; - sha256 = "aeb384f9743b76360f3779e44065fe297fb60f27519933f203b75bd8c2ba8e2d"; - revision = "1"; - editedCabalFile = "0vajlsd7y6pwa08635q0cx8z5c1c55bk7fvavw7g2vmyvxqjzx6n"; - libraryHaskellDepends = [ base hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-test"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, hspec-discover - , hspec-expectations, HUnit, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "hspec"; - version = "2.5.1"; - sha256 = "d47b588214dd9c2691a1dc65b27c90d7a505d06391cb616e9b3be77b464237c2"; - libraryHaskellDepends = [ - base call-stack hspec-core hspec-discover hspec-expectations HUnit - QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.0"; - sha256 = "dba7348e75572f7cd79f3f0719ab39973431927f9bb5bec1445e2f8e5b4fa78c"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.5.1"; - sha256 = "e88e45fe851c976b4703a9c1e481c0e451abbcdcba7e40c9d26020e87b2edc79"; - revision = "2"; - editedCabalFile = "0wzrmy8ji6p1jghb358jz2jnnn7jjyi5jg41r169f99cifqhvr02"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.5.1"; - sha256 = "3c187d35b400b1e22ba9f98d76c94dad8368e2a915ba087509316dd7252a7228"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.4"; - sha256 = "1bbfd524330be3cb0b27945556d01f48e3005e042ee475cdf6e441ba21b51b0a"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "1.0.0"; - sha256 = "14961ae19fde7104f5099624195d0f21b4759e5e635e79d9e63f9f2affca4eb5"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, async, base, call-stack - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.4.6"; - sha256 = "2b31671bfbfe5df0604516278bb1051db42b1e55dfe474ecd446a6630398bb62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array async base call-stack deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array async base call-stack deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-pg-transact" = callPackage - ({ mkDerivation, base, bytestring, hspec, pg-transact - , postgresql-simple, resource-pool, stdenv, text, tmp-postgres - }: - mkDerivation { - pname = "hspec-pg-transact"; - version = "0.1.0.2"; - sha256 = "a5ec2a978a730500f03c15d16eff7e207a4135ebc63afe4cbca7392ad5f01c0c"; - libraryHaskellDepends = [ - base bytestring hspec pg-transact postgresql-simple resource-pool - text tmp-postgres - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact-hspec#readme"; - description = "Helpers for creating database tests with hspec and pg-transact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.9.0"; - sha256 = "c8fe9ed0a1b77d6ad09b3d9c34e4dc65a2e5f1f0bbc6f7b8e2106d3d7556dfba"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai-json" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, bytestring - , case-insensitive, hspec-wai, stdenv, template-haskell - }: - mkDerivation { - pname = "hspec-wai-json"; - version = "0.9.0"; - sha256 = "a1c5401fa7fc7ffc46950274702a0ef30045568c2d2f5bc528cd6bf26ae28085"; - libraryHaskellDepends = [ - aeson aeson-qq base bytestring case-insensitive hspec-wai - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Testing JSON APIs with hspec-wai"; - license = stdenv.lib.licenses.mit; - }) {}; - "hstatsd" = callPackage - ({ mkDerivation, base, bytestring, mtl, network, stdenv, text }: - mkDerivation { - pname = "hstatsd"; - version = "0.1"; - sha256 = "446779594257c0fa02d5271c997ee0c22f74f7636d89e34394ad87e5bd285824"; - libraryHaskellDepends = [ base bytestring mtl network text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/hstatsd"; - description = "Quick and dirty statsd interface"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hsx-jmacro" = callPackage - ({ mkDerivation, base, hsp, jmacro, mtl, stdenv, text - , wl-pprint-text - }: - mkDerivation { - pname = "hsx-jmacro"; - version = "7.3.8"; - sha256 = "97c7efa3f8acc5159d697e080fb9ed7abddfca64e4f03d67cb66583fd7114495"; - libraryHaskellDepends = [ - base hsp jmacro mtl text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/"; - description = "hsp+jmacro support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.1"; - sha256 = "86de0d8820a6cb7fe166e046ae00c1bbe37d27885cd3aa701deaca8fdf646016"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsyslog-udp" = callPackage - ({ mkDerivation, base, bytestring, hsyslog, network, stdenv, text - , time, unix - }: - mkDerivation { - pname = "hsyslog-udp"; - version = "0.2.2"; - sha256 = "a4c1240ee0ef72a65e3c67332809f8077ef3c7afb7e02170ba562b2e876528bb"; - libraryHaskellDepends = [ - base bytestring hsyslog network text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ThoughtLeadr/hsyslog-udp"; - description = "Log to syslog over a network via UDP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, containers, resourcet - , stdenv, tagstream-conduit, text, transformers, xml-conduit - , xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.0"; - sha256 = "78bf09e175079bdd0f0dd363b3a4b2d32d095cc09413ca9d8069bc527809ee96"; - libraryHaskellDepends = [ - base bytestring conduit containers resourcet tagstream-conduit text - transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-email-validate" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "html-email-validate"; - version = "0.2.0.0"; - sha256 = "3d2a3ec75b638cec71df57512473052d485dc118aec4662d5a8dae5e95aa6daf"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - description = "Validating an email address against HTML standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.2"; - sha256 = "161a0c9193b4c1279e41b2ce1203ee821e8d6ee2cf755b9f070d68602ed5cee7"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, bytestring - , Cabal, cabal-doctest, containers, hashable, http-types, stdenv - , text, time, time-locale-compat, unordered-containers - , uri-bytestring, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.3.8.1"; - sha256 = "6eeaba4b29a00407cb20b865825b17b8d884c26b09c5bbe7b6e673b4522106b3"; - revision = "1"; - editedCabalFile = "1843bapm2rdkl4941rycryircpqpp7mbal7vgmlikf11f8ws7y7x"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base bytestring containers hashable - http-types text time time-locale-compat unordered-containers - uri-bytestring uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.5.12.1"; - sha256 = "4b5116324d217f0498d258d37135a52f3e69103d3a951b0999618b263c9bd63e"; - revision = "3"; - editedCabalFile = "0z56glp004nsfgh14nq1zyb9cm2p63scmpxkrgcmpjg23pcwbg83"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-openssl" = callPackage - ({ mkDerivation, base, HsOpenSSL, http-client, network, stdenv }: - mkDerivation { - pname = "http-client-openssl"; - version = "0.2.1.1"; - sha256 = "24ee231322d25ea17ad9503c9460f5b9c20e3ff11320e3abcac6b13e4e157a9c"; - libraryHaskellDepends = [ base HsOpenSSL http-client network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the OpenSSL library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-client, http-client-tls, http-types, mtl, resourcet, stdenv - , transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.1"; - sha256 = "8251c3f0ab2a42b998bda4aaf2805e8c3325f0084462502661ce964f671f7859"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.7"; - sha256 = "cef9dc7e0fb512bd0c665b208b0687c1d939dc0a3d1f8fc513f7636c88d1ffc2"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3"; - sha256 = "59bd2db4e7d14b6f7ce86848af5e38b4bd2e9963e9ffe5068c7b1a710dbdd7fe"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.7.1.2"; - sha256 = "fe93d57a5bfcaf3acf6a0b6f643c179afb69a91f81057f149c5e89e54dcb7b07"; - revision = "2"; - editedCabalFile = "0in3xw1hqdz0s8pqvkfqw5qr186cd1yr4zxc5rnr0q95asi8s0rh"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-streams" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, Cabal, case-insensitive, directory - , HsOpenSSL, http-common, io-streams, mtl, network, network-uri - , openssl-streams, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "http-streams"; - version = "0.8.6.1"; - sha256 = "b8d71f2753ac7cda35b4f03ec64e4b3c7cc4ec5c2435b5e5237fe863cb687da3"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - case-insensitive directory HsOpenSSL http-common io-streams mtl - network network-uri openssl-streams text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/http-streams/"; - description = "An HTTP client using io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.1"; - sha256 = "3fa7715428f375b6aa4998ef17822871d7bfe1b55ebd9329efbacd4dad9969f3"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, bytestring-builder - , case-insensitive, containers, psqueues, stdenv, stm - }: - mkDerivation { - pname = "http2"; - version = "1.6.3"; - sha256 = "61620eca0f57875a6a9bd24f9cc04c301b5c3c668bf98f85e9989aad5d069c43"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring bytestring-builder case-insensitive - containers psqueues stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library including frames, priority queues and HPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.0.3"; - sha256 = "93f3a91a2994588728ae757dcca5104e18a570b3591773aa7f03c524c97599da"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "1.2.0.1"; - sha256 = "c9436582747e14bac56b519054c392281c84fe1fb6d56ce54ad36112ec7213ea"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, hw-bits, hw-excess, hw-prim - , hw-rankselect-base, stdenv, storable-tuple, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.2.0.1"; - sha256 = "99d164e1f5b1fc50bfdcc887b1ef5f6cdfc42f702b847d06f31db5dd04b5e8cd"; - libraryHaskellDepends = [ - base hw-bits hw-excess hw-prim hw-rankselect-base storable-tuple - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bytestring, hw-int, hw-prim, hw-string-parse - , safe, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.0.2"; - sha256 = "38621e0166bac49c1f68f85122c3fbfcadc6a3c447dd7f48ff1020151ad10ae8"; - revision = "1"; - editedCabalFile = "1gvv5ryx1lrgb3hk362fkqz98rggdxfmjp7fy0id7mqvdz6lk2av"; - libraryHaskellDepends = [ - base bytestring hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.3"; - sha256 = "6a20170fff38bb940121ecc922aa4cdb979b7869cfab6a0b18f00476eda3dca5"; - revision = "1"; - editedCabalFile = "0zr1r7px2qgpf5fgq18l6ziy2xaz773qbxc87cp84x0vpwas0yg7"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.5"; - sha256 = "5ceaec01c446c5a507e889f514201e4739ea6f1cc22a4c68894bb023257bd931"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, storable-record, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.0.0"; - sha256 = "f17a4b6098f5b0337d00d77025bbcbf2c0736576bcb36eeeec1aff3b00b561a9"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe storable-record vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.0"; - sha256 = "3801897b6df087db04b7dd990fcbe6ca2791235b224dfb3b1d91074fd94ce028"; - revision = "1"; - editedCabalFile = "06dv0zbxzvayymf2syi3dqcm6q8x9c91yl35z1dgkz36lddqbidh"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, vector }: - mkDerivation { - pname = "hw-hedgehog"; - version = "0.1.0.1"; - sha256 = "26177ea0748f5d85e70e1759ea6a88af15e5bfdbf0a174a80e7f28607addcf3a"; - revision = "1"; - editedCabalFile = "0a5qlh5dwsnv14ngimbsvpgxx4hf0c0wdi5yfv7afwj9h2afdpfz"; - libraryHaskellDepends = [ base hedgehog vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/githubuser/hw-hedgehog#readme"; - description = "Extra hedgehog functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - , transformers - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.5"; - sha256 = "d3d17aadf474e82bb2d90c2d48cadf18724cbeab08e010bdf250591ce9c5f64f"; - revision = "4"; - editedCabalFile = "1sr5cf1s86mp6nlw1vgj565zsrxmwa134g5003p1834vynyh98zq"; - libraryHaskellDepends = [ - base call-stack hedgehog hspec HUnit transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.3"; - sha256 = "8336a5111638d3298266c9a1458233a09798bfa6d558219d4fe3bdd35d8d4a3f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-ip"; - version = "0.1.0.0"; - sha256 = "3664d0fbbb1fd734b9b3a8d39b1115390ddc1a8a5e48b4ae5d5960d3ba7980bf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, conduit, containers, criterion, dlist - , hw-balancedparens, hw-bits, hw-conduit, hw-diagnostics, hw-mquery - , hw-parser, hw-prim, hw-rankselect, hw-rankselect-base, mmap - , mono-traversable, resourcet, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "0.6.0.0"; - sha256 = "bb8e20e8a035279ee398c6d9162cda3f965d4f96e39c1d363be2456b1feb41d9"; - revision = "2"; - editedCabalFile = "0ygq95nx4sb70l5kfxlsj6rf2b3ry84ixby567n0jk1g0zks3z7s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring conduit containers - dlist hw-balancedparens hw-bits hw-conduit hw-mquery hw-parser - hw-prim hw-rankselect hw-rankselect-base mmap mono-traversable - resourcet text vector word8 - ]; - executableHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring conduit containers - criterion dlist hw-balancedparens hw-bits hw-conduit hw-diagnostics - hw-mquery hw-parser hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable resourcet text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, stdenv }: - mkDerivation { - pname = "hw-mquery"; - version = "0.1.0.1"; - sha256 = "724aa5b0490b57a89fb71b7042a3770f7978a4c975aa3d1b671576b0e83e113d"; - revision = "1"; - editedCabalFile = "0rxp6sqiskbrh30r7fqq2h2nbby9njdm9kj387njrb2xwyvd04m7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-wl-pprint base dlist ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim - , mono-traversable, stdenv, text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.0.0.3"; - sha256 = "dd8417c76ef5da89df2842b42767d825815ec3594c8e80e28e96570d8046c6f2"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim mono-traversable text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, mmap, stdenv, vector }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.0"; - sha256 = "dd22d1bb6e78dddf023538f8a9b327706dd570d1641642ad8d42886e8bc14e5d"; - revision = "1"; - editedCabalFile = "0ff5ms3h8gnjnpx5n9d0jy42lmdxv1sc85rgjikhkwpsi1i8j321"; - libraryHaskellDepends = [ base bytestring mmap vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, hw-balancedparens - , hw-bits, hw-prim, hw-rankselect-base, mmap, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.10.0.3"; - sha256 = "aa1d079f56064c649bc820219b55ae16d723faed663283ab73760db4f2f514cb"; - revision = "1"; - editedCabalFile = "1rkni89h3sq02y03phb2bgx4yrx4gly9mzan6r4ziph0qayf09wf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-balancedparens hw-bits hw-prim hw-rankselect-base - vector - ]; - executableHaskellDepends = [ - base directory hw-bits hw-prim hw-rankselect-base mmap vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, hw-bits, hw-int, hw-prim - , hw-string-parse, safe, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.2.0"; - sha256 = "7ad80a78f10fafb12851ba01825e9b1b4577be839cda54b840e43953368e654d"; - libraryHaskellDepends = [ - base bits-extra hw-bits hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-xml" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, cereal, conduit, containers, deepseq, ghc-prim - , hw-balancedparens, hw-bits, hw-conduit, hw-parser, hw-prim - , hw-rankselect, hw-rankselect-base, lens, mtl, resourcet, stdenv - , transformers, vector, word8 - }: - mkDerivation { - pname = "hw-xml"; - version = "0.1.0.3"; - sha256 = "27a9a8212331c8c91d4a66baf8f0785c4ce90c087c02359bd16dfaeabc627e97"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring cereal conduit - containers deepseq ghc-prim hw-balancedparens hw-bits hw-conduit - hw-parser hw-prim hw-rankselect hw-rankselect-base lens mtl - resourcet transformers vector word8 - ]; - executableHaskellDepends = [ - base bytestring hw-balancedparens hw-bits hw-prim hw-rankselect - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-xml#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hworker" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hedis, stdenv - , text, time, uuid - }: - mkDerivation { - pname = "hworker"; - version = "0.1.0.1"; - sha256 = "34cbcc4db8f190ab0dc02a072adcf1fc75b7beab7e545982872bf265a1223f1d"; - revision = "1"; - editedCabalFile = "0w2bpvfr68n2qipvr8gc5096dain3g2536m4n9kqx1fahf12mwy5"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hedis text time uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dbp/hworker"; - description = "A reliable at-least-once job queue built on top of redis"; - license = stdenv.lib.licenses.isc; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.16"; - sha256 = "0d55e35cc718891d0987b7c8e6c43499efa727c68bc92e88e8b99461dff403e3"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.2.0.1"; - sha256 = "e46614d6bf0390b2a6a1aeeb0771e6d366944da40fb21c12c2f8a94d1f47b4d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-pickle-utils" = callPackage - ({ mkDerivation, base, hxt, mtl, stdenv }: - mkDerivation { - pname = "hxt-pickle-utils"; - version = "0.1.0.3"; - sha256 = "9ddba19f27d9d8c155012da4dd9598fb318cab862da10f14ee4bc3eb5321a9c5"; - revision = "3"; - editedCabalFile = "0d5fg718y7xzw76ip33q0w1liqk70q9074qkd198mjnijxjcrkf3"; - libraryHaskellDepends = [ base hxt mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/silkapp/hxt-pickle-utils"; - description = "Utility functions for using HXT picklers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, safecopy, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.2"; - sha256 = "f5b83cfcc2c9d1e40e04bbc9724428b2655c3b54b26beef714c98dabee5f1048"; - revision = "1"; - editedCabalFile = "1zh47rrwih6933hhq9vd0ly5s42w0bn196znkg9l8q6r6drl7xsf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection safecopy - semigroupoids semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.7.1"; - sha256 = "a25c5073f42896ccf81ff5936f3a42f290730f61da7f225b126ad22ff601b1c0"; - revision = "5"; - editedCabalFile = "00wsp69aqi5i906liqa4sfs0p2yclhr1ihz8y1700b3ymb70lzql"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal - , cmdargs, containers, directory, filepath, ghc, ghc-boot - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint - , http-client, http-client-tls, ipython-kernel, mtl, parsec - , process, random, shelly, split, stdenv, stm, strict, system-argv0 - , text, transformers, unix, unordered-containers, utf8-string, uuid - , vector - }: - mkDerivation { - pname = "ihaskell"; - version = "0.9.0.3"; - sha256 = "9720c1037f0bf79f36b2aaa960e8afd30d9672b8b5d7b5b75e4f24cf0fa38b8d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cereal cmdargs containers - directory filepath ghc ghc-boot ghc-parser ghc-paths haskeline - haskell-src-exts hlint http-client http-client-tls ipython-kernel - mtl parsec process random shelly split stm strict system-argv0 text - transformers unix unordered-containers utf8-string uuid vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory ghc ipython-kernel - process strict text transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A Haskell backend kernel for the IPython project"; - license = stdenv.lib.licenses.mit; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.2"; - sha256 = "98477e742e5f131c8ceae4f2ca451bee3de7135340005252d107fc791edaf932"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "imprint" = callPackage - ({ mkDerivation, base, binary, bytestring, constraints, stdenv }: - mkDerivation { - pname = "imprint"; - version = "0.0.1.0"; - sha256 = "9b90827c27a7766a060f50989c6a7fb63f3bd91b6cd3ebf0669b1baf8cffa638"; - revision = "1"; - editedCabalFile = "13418pfcsanj7cl651v4qqbypgjkrpld2gs560kpw3k2lj6w4wa0"; - libraryHaskellDepends = [ base binary bytestring constraints ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/imprint"; - description = "Serialization of arbitrary Haskell expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv, template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.3"; - sha256 = "208f1f3bdc717f5f953cb7c9935c84d6a6291b7cd5ed8a22fa8567184be33d29"; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, stdenv }: - mkDerivation { - pname = "incremental-parser"; - version = "0.3.1.1"; - sha256 = "7f87bf760af2d12967d8ffdabc8fa6f94a03a63c49e5520e2c046eb54e42f5dc"; - revision = "1"; - editedCabalFile = "0g6haprqb1w06bazjj107frraxc6bbj8i98im16k66wlx7c9f99i"; - libraryHaskellDepends = [ base monoid-subclasses ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indentation-core" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "indentation-core"; - version = "0.0.0.1"; - sha256 = "21b78035e8933dddc15a8e90244c89daebea3043957b10a3f37a6775879dda8c"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators core library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indentation-parsec" = callPackage - ({ mkDerivation, base, indentation-core, mtl, parsec, stdenv }: - mkDerivation { - pname = "indentation-parsec"; - version = "0.0.0.1"; - sha256 = "9716e5f757891a8ae07f9e67dd18952c151da66160a9ffed3c4fd013118b478b"; - libraryHaskellDepends = [ base indentation-core mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators for Parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.4.0.1"; - sha256 = "14cfec09c5f54b47c9905b897cd29acdb5f7975ae3512aea938e846cecaf687f"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.0.0"; - sha256 = "edd78fba8e7fd4957c8d35eb34b07d4138036ca5202b511d002025b0492f1258"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.3"; - sha256 = "bda19185f3948a8988a53b1d6b7dc8f6676033c988c1d0d3c2e615fd6e920d09"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.6.0.2"; - sha256 = "684cea04e323d5f2e21a3c26f18e0a95702d9c5a45b5c1f18d8733a23767b438"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.3.6"; - sha256 = "fcbbe3745a125e80dd6d0b4fe9b3a590507cf73dfaa62e115b20a46f0fd53cd9"; - revision = "1"; - editedCabalFile = "0gfikdal67aws20i5r4wg4r0lgn844glykcn3nnmbmyvwsks049l"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.6.1.0"; - sha256 = "d0d8c1510d0d858fb8d939f99a37ec1d2f4eb15ec848ab71fcad9ea8b1ce6e6d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "inline-c-cpp" = callPackage - ({ mkDerivation, base, inline-c, safe-exceptions, stdenv - , template-haskell - }: - mkDerivation { - pname = "inline-c-cpp"; - version = "0.2.2.1"; - sha256 = "91e9382df4eee6a6ed6aef1123b95d1e38dbd44cc23594398489f73a6f7567e6"; - libraryHaskellDepends = [ - base inline-c safe-exceptions template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Lets you embed C++ code into Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "inliterate" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, containers - , haskell-src-exts, lucid, lucid-extras, plotlyhs, stdenv, text - , time - }: - mkDerivation { - pname = "inliterate"; - version = "0.1.0"; - sha256 = "2d96cc64e3b923003668c88fd73c30d5da09a2c9e2fb6af62912f54478d1e39f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html cheapskate containers haskell-src-exts lucid - lucid-extras plotlyhs text time - ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/inliterate"; - description = "Interactive literate programming"; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.1.0"; - sha256 = "d71d126bf455898492e1d2ba18b2ad04453f8b0e4daff3926a67f0560a712298"; - revision = "9"; - editedCabalFile = "02d4zqyb9dbahkpcbpgxylrc5xxc0zbw1awj5w0jyrql2g2b6a5f"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens semigroupoids semigroups text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.2.0.1"; - sha256 = "1f699bf8e95ab90d36725a8a090ad052dbb051cce379fd45a664f561e66ea194"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.2.1"; - sha256 = "32ad4a482a60ec957d1af1268952e2a6b382b67438c14f74f6c2aef2e49b48f2"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolatedstring-perl6" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "interpolatedstring-perl6"; - version = "1.0.0"; - sha256 = "65e0b2ad2d7482755570637212417b84d1db3bcc3cd1aa348b6b37f57911a1d3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for Perl6-style multi-line interpolated strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.0.2"; - sha256 = "18839b5b8a55bc7844c3d9839eaace933bad160a1879151b403df46eba0450e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.8.1"; - sha256 = "9ce3bf9d31b9ab2296fccc25031fd52e1c3e4abeca5d3bb452a725b586eb7e03"; - revision = "4"; - editedCabalFile = "1qx3q0v13l1zaln9zdk8chxpxhshbz5x0vqm0qda7d1kpv7h6a7r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intro" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , dlist, extra, hashable, mtl, safe, stdenv, text, transformers - , unordered-containers, writer-cps-mtl - }: - mkDerivation { - pname = "intro"; - version = "0.3.1.0"; - sha256 = "da5e5e2c1a44d935271ad97b921e97be121f85a923152b5d0a756261ba357492"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq dlist extra hashable mtl - safe text transformers unordered-containers writer-cps-mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/intro#readme"; - description = "\"Fixed Prelude\" - Mostly total and safe, provides Text and Monad transformers"; - license = stdenv.lib.licenses.mit; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.3"; - sha256 = "d73e5def38da9fdd85def073857aa5f4b1d3b0c2df05c43d58a677cca02d440c"; - revision = "1"; - editedCabalFile = "0sjy375npw6lqcckhyicizzv91v8jh3ca5yjkygiaj22bw5k8c74"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-choice" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "io-choice"; - version = "0.0.6"; - sha256 = "612b281110d18615000704f24fdb54a3b4401f7a39dcfe358433d7b4c22e1cef"; - libraryHaskellDepends = [ - base lifted-base monad-control template-haskell transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Choice for IO and lifted IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.0.1"; - sha256 = "5dcb3717933197a84f31be74abf545126b3d25eb0e0d64f722c480d3c46b2c8b"; - revision = "2"; - editedCabalFile = "1mcab95d6hm098myh9gp7sh10srigjphgvm8s9pfs7jg5hzghy14"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams-haproxy" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, io-streams, network - , stdenv, transformers - }: - mkDerivation { - pname = "io-streams-haproxy"; - version = "1.0.0.2"; - sha256 = "77814f8258b5c32707a13e0d30ab2e144e7ad073aee821d6def65554024ed086"; - revision = "4"; - editedCabalFile = "06c51a057n5bc9xfbp2m4jz5ds4z1xvmsx5mppch6qfwbz7x5i9l"; - libraryHaskellDepends = [ - attoparsec base bytestring io-streams network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "HAProxy protocol 1.5 support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable - , primitive, semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "ip"; - version = "1.2.1"; - sha256 = "99aa5eee3f45e474097ba3a021d76dc98aa9a22ea4a62f20e30015d01ba18c08"; - revision = "1"; - editedCabalFile = "1zy8l09i95z5s0cfzq2fhn2r805mgxfc82d6nl5aamg5jmfcyzz1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hashable primitive semigroups text - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "0.5.3"; - sha256 = "1ff90994e691785a6eb4bc080d71556761f0ef6f91f0a3a1452c58a8b06e03c6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to generate IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.5"; - sha256 = "ed638e0b0a098ee4a0f5c5fe48b2a803939c0be4a3612b2d86e16fa447b581ef"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, containers - , directory, filepath, mtl, process, SHA, stdenv, temporary, text - , transformers, unordered-containers, uuid, zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.9.0.2"; - sha256 = "5923468f359c50c2e9313cf1aadc1d0ba09b571a621129ff672f8e337d158206"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal containers directory filepath mtl - process SHA temporary text transformers unordered-containers uuid - zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.0.3"; - sha256 = "bee3aa29121bdd0c094427c4207cad702e78222c492bd13a05fa1e3a693882d3"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.1"; - sha256 = "b0a8f935eb3b4613e74efce7a913592f72835194b8977271f35eb09c578b3b52"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-dcc" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, io-streams - , iproute, irc-ctcp, mtl, network, path, safe-exceptions, stdenv - , transformers, utf8-string - }: - mkDerivation { - pname = "irc-dcc"; - version = "2.0.1"; - sha256 = "6408a28733743d3463664677c5e3ad72e46c168799dad458988067039f25d2df"; - revision = "8"; - editedCabalFile = "1ya1bl8pdzbs3gxkq7hsyvkaajf8prrdhr1lx5hm9pi1nqsi879z"; - libraryHaskellDepends = [ - attoparsec base binary bytestring io-streams iproute irc-ctcp mtl - network path safe-exceptions transformers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JanGe/irc-dcc"; - description = "A DCC message parsing and helper library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.4"; - sha256 = "761d737ea0841ee8fd3660cfe20041e9458be8ab424de8b3b661bb249b930126"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ixset-typed" = callPackage - ({ mkDerivation, base, containers, deepseq, safecopy, stdenv, syb - , template-haskell - }: - mkDerivation { - pname = "ixset-typed"; - version = "0.4"; - sha256 = "4aa500595aabda4a9a9099f4b801549853d4ba1936b25e5a64e692ebe53e5276"; - revision = "1"; - editedCabalFile = "1ldf6bkm085idwp8a8ppxvyawii4gbhyw1pwrcyi3n8jpjh8hqcq"; - libraryHaskellDepends = [ - base containers deepseq safecopy syb template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Efficient relational queries on Haskell sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.3"; - sha256 = "8cbc488ebfdb359d55f89b2ace9ea233c3875b359bee300f6171233ca6b51fd8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.3"; - sha256 = "6bac08ad1a1ff7452a2963272f96f5de0a3df200fb3219dde6ee93e4963dd01c"; - revision = "3"; - editedCabalFile = "0f4gqssh2ayl089zzl8m5rwa66x430dg1q5hfwcfd56r6xr6wi1l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal#readme"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , haskell-src-exts, haskell-src-meta, mtl, parseargs, parsec - , regex-posix, safe, stdenv, syb, template-haskell, text - , unordered-containers, vector, wl-pprint-text - }: - mkDerivation { - pname = "jmacro"; - version = "0.6.15"; - sha256 = "fae43fec6f4ba9ebc1fbd5605fc1b65b1c80bb0869bcfcd80d417e6d82cb6cac"; - revision = "2"; - editedCabalFile = "0r16y3sk22vgrciaadrdzjd768mnh08s019ffgk5jma782nz9v7d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers haskell-src-exts haskell-src-meta - mtl parsec regex-posix safe syb template-haskell text - unordered-containers vector wl-pprint-text - ]; - executableHaskellDepends = [ - aeson base bytestring containers haskell-src-exts haskell-src-meta - mtl parseargs parsec regex-posix safe syb template-haskell text - unordered-containers vector wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuotation library for programmatic generation of Javascript code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring - , containers, contravariant, jmacro, mtl, scientific, split, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "jmacro-rpc"; - version = "0.3.3"; - sha256 = "ee912cdc6970ae6e71874e460eb40206f107371c2764f53777624a483cda1e3f"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-html bytestring containers - contravariant jmacro mtl scientific split text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/gershomb/jmacro"; - description = "JSON-RPC clients and servers using JMacro, and evented client-server Reactive Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro-rpc-snap" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, jmacro - , jmacro-rpc, mtl, snap-core, stdenv - }: - mkDerivation { - pname = "jmacro-rpc-snap"; - version = "0.3"; - sha256 = "48aea4a4ba90532ca105b6b274060a47a1c509b8346e0db1b61365c2a9e8dfeb"; - libraryHaskellDepends = [ - aeson base bytestring containers jmacro jmacro-rpc mtl snap-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/gershomb/jmacro-rpc"; - description = "Snap backend for jmacro-rpc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jose" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, concise, containers, cryptonite, lens, memory - , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances - , safe, semigroups, stdenv, template-haskell, text, time - , unordered-containers, vector, x509 - }: - mkDerivation { - pname = "jose"; - version = "0.7.0.0"; - sha256 = "8cd90a1a205c2dd7d8ab5e37caf4889192820128f01f9164aaefc7a91d963914"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups template-haskell - text time unordered-containers vector x509 - ]; - executableHaskellDepends = [ aeson base bytestring lens mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-jose"; - description = "Javascript Object Signing and Encryption and JSON Web Token library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.7.8"; - sha256 = "d3e1693e28d2de4914011a4f573070b02a71c8e40c142c9ab8b00c8629c5f32b"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , pretty, stdenv, syb, text - }: - mkDerivation { - pname = "json"; - version = "0.9.2"; - sha256 = "e6bb16fa791cc3833ae7b459b7e7885c1c2b11b0d294b7e095287c54fa73738e"; - revision = "2"; - editedCabalFile = "093nsqc6nybrmh01kz92xambk7wv3k3m4s3qq076js8kjrmmp4qx"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec pretty syb text - ]; - doHaddock = false; - doCheck = false; - description = "Support for serialising Haskell to and from JSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-autotype" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, filepath - , GenericPretty, hashable, lens, mtl, optparse-applicative, pretty - , process, scientific, stdenv, text, uniplate, unordered-containers - , vector, yaml - }: - mkDerivation { - pname = "json-autotype"; - version = "1.1.2"; - sha256 = "32a92bb9fc45338196cdcf3924cbf2a928140a2c28ee6a1b9cf372437c79c7bd"; - revision = "1"; - editedCabalFile = "0qc69s8wcsfy8h8mbz2iyxi02gwissb93wn5gapwisinhm44ldpd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers filepath GenericPretty hashable lens mtl - pretty process scientific text uniplate unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers filepath GenericPretty hashable - lens mtl optparse-applicative pretty process scientific text - uniplate unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Automatic type declaration for JSON input data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.1"; - sha256 = "0693e5a47ec159cc14a43e5a7d9a37fe3386f8014028f30fd6e927cc6398a09b"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.4"; - sha256 = "741e68586714f163cc044634c718a3b940ffac3271c9e6beaaa96257585f2b7e"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-schema" = callPackage - ({ mkDerivation, aeson, base, containers, generic-aeson - , generic-deriving, mtl, scientific, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "json-schema"; - version = "0.7.4.1"; - sha256 = "560d6a17d6eab734f43d329e51967e3ed62f8df2a6fea4a92d06359fe77d7c96"; - revision = "16"; - editedCabalFile = "0mn7aj3rr4vpg99kcpvgq1qvdl28dx9yld2b9pb79wdva9x69c2h"; - libraryHaskellDepends = [ - aeson base containers generic-aeson generic-deriving mtl scientific - text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Types and type classes for defining JSON schemas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "jwt" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cryptonite - , data-default, http-types, memory, network-uri, scientific - , semigroups, stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "jwt"; - version = "0.7.2"; - sha256 = "17967413d21399596a236bc8169d9e030bb85e2b1c349c6e470543767cc20a31"; - revision = "1"; - editedCabalFile = "1q8h94yslw6k6zcjbwx94pnji8dcr2w5n1wzgzfb8hb78w2qr1dm"; - libraryHaskellDepends = [ - aeson base bytestring containers cryptonite data-default http-types - memory network-uri scientific semigroups text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; - description = "JSON Web Token (JWT) decoding and encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, fail, free, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.1"; - sha256 = "193f8e58f267663d5da8e38045b000d0983ac08b84808de42af1a44963f63205"; - revision = "1"; - editedCabalFile = "1xaam291gxmsbibi2ai4l6c36iwkpmfy6vik1916j6jp326pa3z9"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive fail free mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.0"; - sha256 = "d945ded925216b8f260c62c2fce593631d772bffa1f203550a6b9750ca3a81f1"; - revision = "2"; - editedCabalFile = "1bcc3kh6kndmkqi3vaxp27mg1qb7xbg1h8pgjc1kk1iawnhl930j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12"; - sha256 = "d4bfa78ff9df50224f1722925ae148279377193d04277a7dad224a47b34d5e55"; - revision = "3"; - editedCabalFile = "164z97ck2svam9c5gc05jklw8ai5nna7dknwwsp9nvw7wcw1dmln"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kleene" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, lattices - , MemoTrie, QuickCheck, range-set-list, regex-applicative, stdenv - , step-function, text, transformers - }: - mkDerivation { - pname = "kleene"; - version = "0"; - sha256 = "c652aecfb2a42fec6b7cc0135fe95764a27fe099c6934071ef5fa55075cd0b02"; - revision = "1"; - editedCabalFile = "1izdmr7a2d7qssnj732m2qc02inm3hrc882x9nyvz68648pvwwsx"; - libraryHaskellDepends = [ - base base-compat-batteries containers lattices MemoTrie QuickCheck - range-set-list regex-applicative step-function text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/kleene"; - description = "Kleene algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "kraken" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, mtl, stdenv - }: - mkDerivation { - pname = "kraken"; - version = "0.1.0"; - sha256 = "335ce7cb85f7d3ed71eb067ad9642d13d2ca1d62ce8670596c8b69aacc27828a"; - revision = "2"; - editedCabalFile = "141qx2fb3dimv20qsl2q1bagwcn9i0r72z2ha1w7191m557in319"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls mtl - ]; - doHaddock = false; - doCheck = false; - description = "Kraken.io API client"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, directory - , exceptions, filepath, mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.1.1"; - sha256 = "b36009a35c02f7f18b4ba91d9ead7e5b47aef4eb5c0d014d4d60dd0bddfd6548"; - revision = "4"; - editedCabalFile = "0r364limqm570a8xd82wwpcvmcx2j7nfndg5kad022vz2v5n0smz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class directory exceptions filepath - text transformers wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.7.2"; - sha256 = "63ad22ddd8e51747c8d64239029cf4afd3e7d4060c9b9478145479f5d4d549e5"; - revision = "3"; - editedCabalFile = "1pwg998xfwlch2ga8v1fnkkgnj9kjy28b3qlg0pwdfqgzfk85p29"; - libraryHaskellDepends = [ - array base bytestring containers directory filepath pretty process - syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2"; - sha256 = "eb319b4d1154f88f4d0f8817c85efad34c14d774c47d4c9193c89c9064cb8695"; - revision = "1"; - editedCabalFile = "099w1lln1vm000sf06wrmq6gya5sx2w4flrlwqz2c8wwvv8c9j9h"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-docker" = callPackage - ({ mkDerivation, base, bytestring, free, mtl, parsec, pretty, split - , stdenv, template-haskell, text, th-lift, time - }: - mkDerivation { - pname = "language-docker"; - version = "5.0.1"; - sha256 = "7bfa0bb3782f1870e6aa6152388b0132e1d98123593686b81f970c9e9e585378"; - revision = "1"; - editedCabalFile = "0n9aahffx70n0i7f32337hqgh26g5b1gwddgrhs01cbkqsbsnknb"; - libraryHaskellDepends = [ - base bytestring free mtl parsec pretty split template-haskell text - th-lift time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hadolint/language-docker#readme"; - description = "Dockerfile parser, pretty-printer and embedded DSL"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.6.0.11"; - sha256 = "d4756e9bc9a180cb93701e964a3157a03d4db4c7cb5a7b6b196067e587cc6143"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, base-compat, Cabal, deepseq, lens, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.1.0.1"; - sha256 = "f0147300724ac39ce388cd6cd717ac3ccc6ed1884ffaafebb18d0f3021e01acf"; - revision = "1"; - editedCabalFile = "1zv12p4ralrks0517zs52rzmzmsxxkcxkqz7zijfgcsvh6bsmafi"; - libraryHaskellDepends = [ - base base-compat Cabal deepseq lens pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and useful functions to represent and manipulate the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-carray" = callPackage - ({ mkDerivation, base, carray, lapack-ffi, netlib-carray - , netlib-ffi, stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "lapack-carray"; - version = "0.0.2"; - sha256 = "ca3a3d99016b7428b3781142ca2ab96eb2ad3318257a3dedaa41f8c2e0aa24b7"; - libraryHaskellDepends = [ - base carray lapack-ffi netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-carray/"; - description = "Auto-generated interface to Fortran LAPACK via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.0.1"; - sha256 = "7c9c500a04bd4c56b6d86f59498867a012b7c647c39538e4945a9c0a0d83ad31"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "large-hashable" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytes, bytestring - , containers, scientific, stdenv, strict, template-haskell, text - , time, transformers, unordered-containers, utf8-light, vector - , void - }: - mkDerivation { - pname = "large-hashable"; - version = "0.1.0.4"; - sha256 = "e9c3345d9fa0161f1b809f2c57e00b4c687ebd48ea42623fe480cc85339a628e"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytes bytestring containers scientific - strict template-haskell text time transformers unordered-containers - utf8-light vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/large-hashable"; - description = "Efficiently hash (large) Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.3"; - sha256 = "b742ff5c83f6019469e55d2f3559d8efbc7ce62607e5de76485a7cb314e636d2"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , semigroupoids, stdenv, tagged, universe-base - , universe-reverse-instances, unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "1.7.1"; - sha256 = "7d5450aec9cd1124c8d0e0d50c042319821a773aa52d694cb0e0abaf1a129b2d"; - revision = "2"; - editedCabalFile = "0ngxvs48hqdr5353fbblcrq5hqrwr89xl39akxg8rkridkr3hq96"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable semigroupoids tagged - universe-base universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.7.0"; - sha256 = "6e5c30ca628077921adb7195a68b01e7d9b00901b046124a7793af3c2077e6d7"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Cholesterol-free property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat, type-equality - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.18.1"; - sha256 = "3107a3d5165a9762269d7c9e39205d2c4c2aaebc1900ff44a0066c31a492bdd2"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat type-equality - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.3"; - sha256 = "06848a6c7f217c3dd3228633bedc9a73b2cce139c1a6dff61af0994d410a98e0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.0.2"; - sha256 = "4311f035caa39db3a70915a165bcbfb55ad22376085d95a9b4f57c58994702cc"; - revision = "6"; - editedCabalFile = "1pg5v8fnlqw1krgi3d2a03a0zkjjdv5yp5f5z6q4mlb5jldz99a8"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "1.2.2"; - sha256 = "dda24de579550daa56c49d2d4fbe59deac18e5fbcbbe6a9b0196ba0a1b27433b"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "1.2.2"; - sha256 = "95fe891b61f2d2a7c9ff86f56e40866534a947f87ccf2fcaa5e727ccdfca4628"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.1"; - sha256 = "fa37572374dc69fc859c023864654704d490160b579a51434ae22208cbe93703"; - revision = "1"; - editedCabalFile = "190jxqskd61irc97zb95h08zlkszlhpik4zmb7y4vk7x06zz00m6"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-labels" = callPackage - ({ mkDerivation, base, ghc-prim, profunctors, stdenv, tagged }: - mkDerivation { - pname = "lens-labels"; - version = "0.2.0.1"; - sha256 = "929fea0fe771702780d309e4b2915327cde062a51219df5561bc18dac1c5c0da"; - revision = "1"; - editedCabalFile = "0iyh7msip83dzj9gj5f18zchvjinhx40dmdb52vza0x1763qkilv"; - libraryHaskellDepends = [ base ghc-prim profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Integration of lenses with OverloadedLabels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.0"; - sha256 = "4954b3ae395661e916c536bfe837c42a1cd8223ea81ffd86b1fdd9b6abfc5142"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-simple" = callPackage - ({ mkDerivation, base, lens-family, lens-family-core - , lens-family-th, mtl, stdenv, transformers - }: - mkDerivation { - pname = "lens-simple"; - version = "0.1.0.9"; - sha256 = "613d99b8074197f8a026a641a9940dd188e0d81e808169f420981a9ca15b832a"; - libraryHaskellDepends = [ - base lens-family lens-family-core lens-family-th mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michaelt/lens-simple"; - description = "simplified import of elementary lens-family combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lentil" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, csv, directory, filemanip - , filepath, natural-sort, optparse-applicative, parsec, pipes - , regex-tdfa, semigroups, stdenv, terminal-progress-bar, text - , transformers - }: - mkDerivation { - pname = "lentil"; - version = "1.0.11.3"; - sha256 = "43044f010cc4a9f76a6f2ac7b2b9c079a3aadec30b6eb848ba5383cd9a77694d"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-wl-pprint base csv directory filemanip filepath natural-sort - optparse-applicative parsec pipes regex-tdfa semigroups - terminal-progress-bar text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.ariis.it/static/articles/lentil/page.html"; - description = "frugal issue tracker"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.3.0.0"; - sha256 = "632232db41f7c49359f37ed541bbbbe99f74d45c1cf583d1081b83af426a439d"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale, stdenv - , text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.0.8"; - sha256 = "582b0a405e39148d3a5046e8ad00c9e217688e60c70393eb36cd651e1991ed4e"; - revision = "1"; - editedCabalFile = "0fyb5wzazhkych0glklcdy2c4nzsk7vy6ijawr4r6qdxmdg01spy"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "libxml-sax" = callPackage - ({ mkDerivation, base, bytestring, libxml2, stdenv, text, xml-types - }: - mkDerivation { - pname = "libxml-sax"; - version = "0.7.5"; - sha256 = "99141784cc0d6c5749f0df618b2d46922391eede09f4f9ccfc36fb58a9c16d51"; - libraryHaskellDepends = [ base bytestring text xml-types ]; - librarySystemDepends = [ libxml2 ]; - libraryPkgconfigDepends = [ libxml2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-libxml/"; - description = "Bindings for the libXML2 SAX interface"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libxml2;}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.0"; - sha256 = "6a034047f45c2f5d3acb8a5b0852075bd4b4f7d6a222a992f45afac152b55f5f"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.2"; - sha256 = "0e9fbd17cd3e1af6ef1e994e7c14cfd42896e56499864e707f72246b6e2b604e"; - revision = "3"; - editedCabalFile = "0ackkmjfqxyxhy9w03zlqvmi68la9yv4jf0sc8qdhyr5y30ac68s"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.2"; - sha256 = "8ed740437f5ca16aa4d7508626cfa3da14f3305f292b0976a8a2072642c9e380"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "line" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptohash-sha256, http-conduit, http-types, scotty, stdenv, text - , time, transformers, wai - }: - mkDerivation { - pname = "line"; - version = "4.0.1"; - sha256 = "a1dfab5dcd078747920fc61a024eb096a554f465d57c8bc642c155150f41667c"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptohash-sha256 - http-conduit http-types scotty text time transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/utatti/line"; - description = "Haskell SDK for the LINE API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.7"; - sha256 = "4b88b6268d327220a296b6790c82db8ebab52973735af0a9de1c734cdc07cab6"; - revision = "6"; - editedCabalFile = "12ksfxwi0dc6laadswfp9ri9z7lnqf9qxh8vawmj2xnz8n1n73vx"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linked-list-with-iterator" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "linked-list-with-iterator"; - version = "0.1.1.0"; - sha256 = "c6ae37cc9d123afcb92f28fef9c5dae6d3713489bdf7f73ac9af420bb3f11b89"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/CindyLinz/Haskell-linked-list-with-iterator#readme"; - description = "A pure linked list which is mutable through iterators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.2.0"; - sha256 = "585c69130dfcc499cfba00385ae7facc8ab9f2c26bdf746a6e25fc96d3b5f67b"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Create new or enter an existing linux namespaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.1"; - sha256 = "c3438dde9d22e882ccdad091eb9c6f95706e9d564a57d5f845e991e706436773"; - revision = "1"; - editedCabalFile = "0jv0wxxr6rpw9mi3n6jbjqlk403wzycyafrc26vcwkdjaw63ckxb"; - libraryHaskellDepends = [ - base mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , containers, exceptions, llvm-config, llvm-hs-pure, mtl, stdenv - , template-haskell, transformers, utf8-string - }: - mkDerivation { - pname = "llvm-hs"; - version = "6.2.0"; - sha256 = "33ef7688fd55c26bcda84549c19981c00e7be78ce3aed88c8635606d9506f6e8"; - revision = "1"; - editedCabalFile = "0cyzkz3rjx2jywfr0dyxy3mbx6mxp0x0pr7k9drwdhrrvbag97ab"; - setupHaskellDepends = [ base Cabal containers ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers exceptions llvm-hs-pure - mtl template-haskell transformers utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "General purpose LLVM bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "llvm-hs-pretty" = callPackage - ({ mkDerivation, array, base, bytestring, llvm-hs-pure, stdenv - , text, wl-pprint-text - }: - mkDerivation { - pname = "llvm-hs-pretty"; - version = "0.4.0.0"; - sha256 = "78624c9cb357108dbad7ea40e6ce9916c581837f1b9c5536ada283e6bb4769ac"; - libraryHaskellDepends = [ - array base bytestring llvm-hs-pure text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/llvm-hs/llvm-hs-pretty"; - description = "A pretty printer for LLVM IR"; - license = stdenv.lib.licenses.mit; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "6.2.0"; - sha256 = "1b3ea0cac3728def7da7da9d349210cc048fde0fd372048bf7f7515913861ce3"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.0.1"; - sha256 = "cbe747e854d7ef3626487114d5cc4a93cbb303ed1df353ab5d8eaceba83873f6"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "locators" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptohash, stdenv - }: - mkDerivation { - pname = "locators"; - version = "0.2.4.4"; - sha256 = "2d6d0940206e285a086ea66c7b5f8b3a082fa629a8d335323dbbf78547e09aa5"; - libraryHaskellDepends = [ base bytestring containers cryptohash ]; - doHaddock = false; - doCheck = false; - description = "Human exchangable identifiers and locators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.7.4.0"; - sha256 = "4067eba80db49eb4509c10770959d0350f9eb9df5e0bde2fbf9024f106dc3f1b"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.12"; - sha256 = "7191cba40b9b348c54171f2b86caabb75a30e52b6d7e4c57321bf5dcdf1f367e"; - revision = "4"; - editedCabalFile = "1z7p87dl1rj0v2gnfwfa7zmgaxccd093hvjkijc56whyg4b4az4y"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-postgres" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , bytestring, deepseq, hpqtypes, http-client, lifted-base, log-base - , mtl, semigroups, split, stdenv, text, text-show, time - , unordered-containers, vector - }: - mkDerivation { - pname = "log-postgres"; - version = "0.7.0.2"; - sha256 = "51c60374838cbd89d027cde9cdf2d8982b4f4152befe76899085520922e5639b"; - revision = "3"; - editedCabalFile = "1m16y1g9vaan5vcm9krqfppwc0zisi005d0ckqbwga3vyyw58lwl"; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring bytestring deepseq - hpqtypes http-client lifted-base log-base mtl semigroups split text - text-show time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (PostgreSQL back end)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logger-thread" = callPackage - ({ mkDerivation, base, fast-logger, protolude, safe-exceptions - , stdenv, stm, text, time - }: - mkDerivation { - pname = "logger-thread"; - version = "0.1.0.2"; - sha256 = "ac0a54001a69cff6f975209c4d9d399fb58ef59bb0ad6ac742c5ffedeac04a2a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base fast-logger protolude safe-exceptions stm text time - ]; - executableHaskellDepends = [ base protolude stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joe9/logger-thread#readme"; - description = "Run FastLogger in a thread and direct all queued messages to it"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.0"; - sha256 = "366b9ce49a63b2bc40b442050bc6a8c3bc682b89855ff777e41df44fdcd04c09"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.6.0.2"; - sha256 = "1182b68e8d00279460c7fb9b8284bf129805c07754c678b2a8de5a6d768e161e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dolio/"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "lrucache" = callPackage - ({ mkDerivation, base, containers, contravariant, stdenv }: - mkDerivation { - pname = "lrucache"; - version = "1.2.0.0"; - sha256 = "5f17a9e026e198152d13830a0eae0df21be437c238a3f157f7c188fe27a37616"; - libraryHaskellDepends = [ base containers contravariant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chowells79/lrucache"; - description = "a simple, pure LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.10"; - sha256 = "c0e7dfae8337694082e3f34573c144d2672dc8c8e16175614079cd9d2d434390"; - revision = "1"; - editedCabalFile = "0n94x2havrvks85z8azsa4pvz33amhb444cias3kfxmkyvypn5ah"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.1.0.1"; - sha256 = "5cc5e269c313cba6871b70d48825e6b63ae49db91d507b7f9dccc10bf12dcb73"; - revision = "1"; - editedCabalFile = "030mj3yddbia6dkbl8d6mssi42l3z8gs79z50r78gwiif6mh5dny"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid"; - license = stdenv.lib.licenses.mit; - }) {}; - "lxd-client-config" = callPackage - ({ mkDerivation, aeson, base, containers, directory, filepath - , stdenv, text, yaml - }: - mkDerivation { - pname = "lxd-client-config"; - version = "0.1.0.1"; - sha256 = "903852c99bebc0af3cc3a26734056003f9097ada08eb1f361abce097a120afcf"; - libraryHaskellDepends = [ - aeson base containers directory filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-lxd-client-config#readme"; - description = "Read the configuration file of the standard LXD client"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "lz4" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "lz4"; - version = "0.2.3.1"; - sha256 = "98cc62bea1a359201f9e39a7db2457272f996ede25d97a2dbee3a07aa80693f1"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mwotton/lz4hs"; - description = "LZ4 compression for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.6.3"; - sha256 = "3fd2e863a9a2ea2e3ef123668082757e48a5ec25e9659f4e02a3f56e44bdbecf"; - revision = "11"; - editedCabalFile = "0m7m3b1ckv4lcscid9a4i1c8i43dwbkk1w097h1k92gkylcasjbi"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, machines, stdenv }: - mkDerivation { - pname = "machines-binary"; - version = "0.3.0.3"; - sha256 = "60ff456d658ea1a427f32ee5ae1c726e2e7703942bd33edf28b457d753c20652"; - libraryHaskellDepends = [ base binary bytestring machines ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-binary"; - description = "Binary utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-directory" = callPackage - ({ mkDerivation, base, directory, filepath, machines, machines-io - , stdenv, transformers - }: - mkDerivation { - pname = "machines-directory"; - version = "0.2.1.0"; - sha256 = "849c07db6ff6cfd88348d228a7a3f8ccb16e99568230ee0d20faa5670474deb4"; - libraryHaskellDepends = [ - base directory filepath machines machines-io transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-directory"; - description = "Directory (system) utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-io" = callPackage - ({ mkDerivation, base, bytestring, chunked-data, machines, stdenv - , transformers - }: - mkDerivation { - pname = "machines-io"; - version = "0.2.0.13"; - sha256 = "4d579d5e9e94fafcfca91322734263498999d2e2af45c40ff0d1db78f4a8f5d4"; - libraryHaskellDepends = [ - base bytestring chunked-data machines transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-io"; - description = "IO utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.1.0.0"; - sha256 = "ac09d9c0ac602252d7baef90ef87933b66469f18522e014c475bbe365daa4f69"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7"; - sha256 = "11777bd365251813c512a3e17e0303b30f2a86411a12118751858cbb20dbeaf7"; - revision = "1"; - editedCabalFile = "1apyqnbcsbjfkqc1d6mk74pxl12130r6ijwhj555gddls9g0qdf3"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.6"; - sha256 = "f1a70a23c0866b75d609b2c818b426712d7a2b4256f43a3d5da517e853e279cd"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mapquest-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, goggles, mtl - , req, stdenv, text - }: - mkDerivation { - pname = "mapquest-api"; - version = "0.3.1"; - sha256 = "43339221b91816e8f793a98a4d281285e8e9de8788f13bb30ec345ef855a7b85"; - libraryHaskellDepends = [ - aeson base bytestring exceptions goggles mtl req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mapquest-api"; - description = "Bindings to the MapQuest API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.1"; - sha256 = "e1f72d8829bdc86f52aba9f31f107847dc29b240cca9de7dd5efc2ba01673b58"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "marvin-interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "marvin-interpolate"; - version = "1.1.2"; - sha256 = "d640c3bc2f70e17d1fb23c914a3d19b11f72568fda5d5c52e52c1de2e940eccf"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://marvin.readthedocs.io/en/latest/interpolation.html"; - description = "Compile time string interpolation a la Scala and CoffeeScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, data-default-class, deepseq, ghc-prim - , primitive, stdenv, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.1.6.1"; - sha256 = "5eec071c368573e0093ba507fdcc5219aaa127b09affd403d9725cb8a8fad3c5"; - revision = "1"; - editedCabalFile = "0vmkqkblb0yym3lzj023d4bqgfhksjld8dwjymq526yjh4h5vyyp"; - libraryHaskellDepends = [ - base data-default-class deepseq ghc-prim primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq, directory - , filepath, JuicyPixels, massiv, netpbm, process, stdenv, vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.3.0"; - sha256 = "fd239261ed273320ad2bb324b1defeffc54e33e13b4907ab6848c409387f5622"; - libraryHaskellDepends = [ - base bytestring data-default deepseq directory filepath JuicyPixels - massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector - , vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.2.1.0"; - sha256 = "f71b5598de453546396a3f5f7f6ce877fffcc996639b7569d8628cae97da65eb"; - libraryHaskellDepends = [ - base deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Special functions and Chebyshev polynomials"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.4.5"; - sha256 = "2d396f130d675eabaa435caba122fe2b2c1d2dfc5343471131b7392e479b7397"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.0.8"; - sha256 = "5e41aa81abdfd6062dc4607ea7c684b9ac09a286d2ebf76829504acf09260a77"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox-utility" = callPackage - ({ mkDerivation, base, bytestring, hsemail, non-empty, old-time - , parsec, spreadsheet, stdenv, utility-ht - }: - mkDerivation { - pname = "mbox-utility"; - version = "0.0.1"; - sha256 = "e5e009f83c95b20d85c4b39d233b2f32ee15eae08d54edbaa7928848ae15e9f8"; - revision = "1"; - editedCabalFile = "0lhka293xbgsjs7sb3yrck6q7vw4dfdhpmpalc7s9az1mj4l4mjz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring hsemail non-empty old-time parsec spreadsheet - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "List contents of an mbox file containing e-mails"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbtiles" = callPackage - ({ mkDerivation, base, bytestring, directory, monad-control, mtl - , resource-pool, sqlite-simple, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "mbtiles"; - version = "0.6.0.0"; - sha256 = "b8a82f0a1c551a59961449587f031f679dd2f5f082ce45b6f7d88d81f99ad62f"; - libraryHaskellDepends = [ - base bytestring directory monad-control mtl resource-pool - sqlite-simple text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/mbtiles#readme"; - description = "Haskell MBTiles client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "med-module" = callPackage - ({ mkDerivation, base, bytestring, stdenv, storable-endian - , transformers, utility-ht - }: - mkDerivation { - pname = "med-module"; - version = "0.1.1"; - sha256 = "f78974fba8f8d17267297b268b84cf7434f51f5d2ad106a461f225f1d873eee3"; - revision = "1"; - editedCabalFile = "05fbglb1f260p2h5x16i3ybkh1r0bks0054jzasam9gv33yv1amw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring storable-endian transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Parse song module files from Amiga MED and OctaMED"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mega-sdist" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , http-conduit, optparse-simple, rio, stdenv, tar-conduit, yaml - }: - mkDerivation { - pname = "mega-sdist"; - version = "0.3.2"; - sha256 = "61953a86b8993246d82adbda8e55495e76e72f212f7464097e00871d5f306017"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring conduit conduit-extra http-conduit optparse-simple - rio tar-conduit yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mega-sdist#readme"; - description = "Handles uploading to Hackage from mega repos"; - license = stdenv.lib.licenses.mit; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "6.5.0"; - sha256 = "bebdef43c6b857b8c494de79bcd2399ef712c403ee1353e5481db98b8f7f2f8a"; - revision = "5"; - editedCabalFile = "1gxw58ccng85xk44z3vpw28y3msay9b0848xz435m5hyydqm82si"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, foundation - , ghc-prim, stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.14.16"; - sha256 = "7bb0834ab28ce1248f3be09df211d49d20d703cdcda3ed16cde99356e2d72b0f"; - revision = "1"; - editedCabalFile = "10j8737fm287ii0nm4hqnhf87apls3xjczkzdw9qqkb4a2dybsbx"; - libraryHaskellDepends = [ - base basement bytestring deepseq foundation ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.1"; - sha256 = "f9e398ec0256b065de94f9412de6d164bd6fc425ad64d407d513db232602bb40"; - revision = "2"; - editedCabalFile = "093c8afmcrnbfliz1ykpyc4w40dli2wig0qi0xcwg8445idwp2kg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "messagepack" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , stdenv - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.4"; - sha256 = "939590c05d5b0831b3b4796f2e1a070e290982c92b2009f2aa1ef5f4b05b5d7c"; - revision = "2"; - editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rodrigosetti/messagepack"; - description = "Serialize instance for Message Pack Object"; - license = stdenv.lib.licenses.mit; - }) {}; - "messagepack-rpc" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, messagepack - , network-simple, stdenv - }: - mkDerivation { - pname = "messagepack-rpc"; - version = "0.5.1"; - sha256 = "aa7960644668284e6add36e5c305af2c6d3ebf0a9a2c3fcd62529554a049a0bc"; - revision = "1"; - editedCabalFile = "05p6naaxswmsc3w7k67ydzzwyn60ymp0jbrc0f66p2sajvlnviax"; - libraryHaskellDepends = [ - base bytestring cereal containers messagepack network-simple - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/rodrigosetti/messagepack-rpc"; - description = "Message Pack RPC over TCP"; - license = stdenv.lib.licenses.mit; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microformats2-parser" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base - , base-compat, blaze-html, blaze-markup, bytestring, containers - , data-default, either, errors, html-conduit, lens-aeson, network - , network-uri, options, pcre-heavy, safe, scotty, stdenv, tagsoup - , text, time, transformers, unordered-containers, vector, wai-cli - , wai-extra, xml-lens, xss-sanitize - }: - mkDerivation { - pname = "microformats2-parser"; - version = "1.0.1.7"; - sha256 = "def0a462fcfaa344629ee05ced7a93593bad2749148873b4f4c63e3f0c6758f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base base-compat blaze-markup bytestring - containers data-default either errors html-conduit lens-aeson - network-uri pcre-heavy safe tagsoup text time transformers - unordered-containers vector xml-lens xss-sanitize - ]; - executableHaskellDepends = [ - aeson aeson-pretty base base-compat blaze-html blaze-markup - data-default network network-uri options scotty text wai-cli - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/microformats2-parser"; - description = "A Microformats 2 parser"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.9.1"; - sha256 = "a1401c6f92c142bafea4cf58a1d99cc34af285df808b97f5b64af4bb81fb5648"; - revision = "1"; - editedCabalFile = "0k76wf341lx1w5ays2bar2vd6f9dv9h7wjcnaxps00a6w3c4qpmp"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0"; - sha256 = "f2f28288bfc190127423a452514d35f7b66f9d5625cf6653bb34cb020aa450c5"; - revision = "2"; - editedCabalFile = "1ri98vr3bbx0l9b4vpmcwhf8fm5lgj92kw4g0v3jx6xajwwc5dc8"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, contravariant, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.1"; - sha256 = "4983f19d37168a7cb862f76a22e8a43156df89c3c58b8206e2c84b2262c7f595"; - libraryHaskellDepends = [ base contravariant microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.9"; - sha256 = "aa3af55477443a05516d70676926e5b83403c319ed387d22e094bea393cabc71"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.1.11.1"; - sha256 = "d3e74f46a72aad12b71d8549a98fbc023fb364766f17d75742fb32fee70bdf50"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.3.10"; - sha256 = "9b7fe59900ee35af9b070d154e9505b9f5c1953a95437c588f00cbe45e8596b4"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "Feature-complete microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.3.2"; - sha256 = "9d900d03e7f704208031b310584ec3e4796fe1133e46205418826847723ce273"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "microspec"; - version = "0.1.0.0"; - sha256 = "e1e4156574d81786e1c8d04ba22e7283001ef3eada3104a99e9c31a45656d343"; - revision = "1"; - editedCabalFile = "0cnfj3v6fzck57bgrsnmgz8a9azvz04pm3hv17fg12xzchmp07cq"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "milena" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, digest, lens - , lifted-base, monad-control, mtl, murmur-hash, network, random - , resource-pool, semigroups, stdenv, transformers, zlib - }: - mkDerivation { - pname = "milena"; - version = "0.5.2.2"; - sha256 = "21da8cd70415a1ea46a463f715c228cd222785829caed39a3f065f9e4e164f35"; - libraryHaskellDepends = [ - base bytestring cereal containers digest lens lifted-base - monad-control mtl murmur-hash network random resource-pool - semigroups transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adamflott/milena.git#readme"; - description = "A Kafka client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.4.14"; - sha256 = "9632c3d54c9741fece0a3ea705d965485a1299ebe5798d2aa7cca2c8e4baaa3e"; - revision = "1"; - editedCabalFile = "14zadyz63gjpf58h6v36w3jwwpxpg86czw19r4211wprqfclvr92"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.7"; - sha256 = "83164a24963a7ef37543349df095155b30116c208e602a159a5cd3722f66e9b9"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.1.6.1"; - sha256 = "94677b454b86a47d1b04ef1462873708976546bbb7a3bcc4f3ffe222d98bb844"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, ghc-prim, minimorph - , stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.4.7.0"; - sha256 = "adc9ac6a2160e87a8a4c4b88087d478ee74dded59d0cf6205a105dc0f778dc82"; - libraryHaskellDepends = [ - base binary containers ghc-prim minimorph text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miso" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , http-types, lucid, network-uri, servant, servant-lucid, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "miso"; - version = "0.20.0.0"; - sha256 = "521cc0e85307880594e4b3f2d59aecb00601f34cf469c971ad3cd7624092275b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data http-types lucid - network-uri servant servant-lucid text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmjio/miso"; - description = "A tasty Haskell front-end framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, convertible, hspec, hspec-smallcheck - , QuickCheck, smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.3.1.4"; - sha256 = "c4ffffea5a5eae0a1fafde3187be1bdf9cd0d166bee0bd502b1aa6cd898dc100"; - libraryHaskellDepends = [ - base convertible hspec hspec-smallcheck QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.0"; - sha256 = "1855b916d696e78106028fef375d66512a5335738c4963127c3a45bb174f587a"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexander-ignatyev/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers - , data-default-class, deepseq, dlist, email-validate, foldl - , hashable, html-entity-map, lucid, megaparsec, microlens - , microlens-th, modern-uri, mtl, parser-combinators, stdenv, text - , text-metrics, unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.5.6"; - sha256 = "fc036385fd4cea07a490df00d8fe443cc6656a6d090d537d4d5e860564ef1234"; - revision = "7"; - editedCabalFile = "0nmbj8bkkzy7aclmhw92vcqk94ncdvyycaf2kpvdhf056hw0q85i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers data-default-class deepseq - dlist email-validate foldl hashable html-entity-map lucid - megaparsec microlens microlens-th modern-uri mtl parser-combinators - text text-metrics unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, gitrev, lucid - , megaparsec, mmark, mmark-ext, optparse-applicative, stache - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mmark-cli"; - version = "0.0.3.0"; - sha256 = "37d3e98d15ccc036db5e2ec1b8b1e84a20c303ba1821a44ec441e835c43c6159"; - revision = "2"; - editedCabalFile = "0i3gvfgm4bfbdyflhhaf4gdr7cbkw51i330f25rgha9k3s4v59w3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson base bytestring directory gitrev lucid megaparsec mmark - mmark-ext optparse-applicative stache text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-cli"; - description = "Command line interface to MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-ext" = callPackage - ({ mkDerivation, base, foldl, ghc-syntax-highlighter, lucid - , microlens, mmark, modern-uri, skylighting, stdenv, text - }: - mkDerivation { - pname = "mmark-ext"; - version = "0.2.1.0"; - sha256 = "1a02396a80708c60b3aecb668c16a3d0cb890bbfcc4fbf722c9742b75ce23fcd"; - revision = "2"; - editedCabalFile = "0xcjkzaah0npyw87mdsymq4bjwdf988fqmylzgr4kihks1a8d4xs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base foldl ghc-syntax-highlighter lucid microlens mmark modern-uri - skylighting text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-ext"; - description = "Commonly useful extensions for the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.2"; - sha256 = "c90afd7996c94be2b9a5796a7b94918d198c53b0c1d7a3eaf2982293560c5fbe"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.2.1.0"; - sha256 = "e65aca7e994b3a470584da17571878084e90120507b8deab9a9b021d529f981a"; - revision = "5"; - editedCabalFile = "089smjciwx6iav6wqpxhwdzlm0d1jdmgcgjv0r2c4vqrwdd1wb4h"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "moesocks" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring - , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens - , lens-aeson, mtl, network, optparse-applicative, random, stdenv - , stm, strict, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "moesocks"; - version = "1.0.0.44"; - sha256 = "bf35a237dffeaebc82237439fe457d0c423d235a48a69f02c9e616297540e1c8"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfjinjing/moesocks"; - description = "A functional firewall killer"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.28.5"; - sha256 = "225ed7cd2d0d375c0207d5d3b9faa12b339ca7dd51ca92f96d3eaf2d360027f1"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.10"; - sha256 = "a3ac2d043a13d9e9296692dc729a299361b04757690894cac1b6904510a0d975"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-logger-syslog" = callPackage - ({ mkDerivation, base, bytestring, fast-logger, hsyslog - , monad-logger, stdenv, text, transformers - }: - mkDerivation { - pname = "monad-logger-syslog"; - version = "0.1.4.0"; - sha256 = "052c3e13e235e7fb31caecc117e3ab4629e85bbfd3b35ec03f74d732acbc9ccb"; - libraryHaskellDepends = [ - base bytestring fast-logger hsyslog monad-logger text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-logger-syslog"; - description = "syslog output for monad-logger"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, mtl, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.4.1"; - sha256 = "4c00c4aff00c85bfcce0a9a7d96a2a7d08f1efe64b3326e67e47499d5168f11d"; - libraryHaskellDepends = [ - array base containers mtl primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.4.8"; - sha256 = "f84cdf51908a1c41c3f672be9520a8fdc028ea39d90a25ecfe5a3b223cfeb951"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-recorder" = callPackage - ({ mkDerivation, base, exceptions, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-recorder"; - version = "0.1.1"; - sha256 = "0863eb37dae0a9dc996a73dd7743d0c9fc22b9713d4be4d7c7e49e4e073ca215"; - libraryHaskellDepends = [ - base exceptions monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/monad-recorder"; - description = "Record and replay the results of monadic actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mongoDB" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , binary, bson, bytestring, conduit, conduit-extra, containers - , cryptohash, data-default-class, hashtables, lifted-base - , monad-control, mtl, network, nonce, parsec, pureMD5, random - , random-shuffle, resourcet, stdenv, stm, tagged, text, time, tls - , transformers, transformers-base - }: - mkDerivation { - pname = "mongoDB"; - version = "2.4.0.0"; - sha256 = "fdb80241825c70d795a1e552b25afc916e58d7755ec31feaf7ab7afdd5aee719"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring binary bson - bytestring conduit conduit-extra containers cryptohash - data-default-class hashtables lifted-base monad-control mtl network - nonce parsec pureMD5 random random-shuffle resourcet stm tagged - text time tls transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mongodb-haskell/mongodb"; - description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.8.1"; - sha256 = "991290797bd77ce2f2e23dd5dea32fb159c6cb9310615f64a0703ea4c6373935"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "monoid-extras" = callPackage - ({ mkDerivation, base, groups, semigroupoids, semigroups, stdenv }: - mkDerivation { - pname = "monoid-extras"; - version = "0.5"; - sha256 = "c6571ab25a24e4300d507beeb8e534c20b3e530c6bd19c82694f1d6d5d0d4d9c"; - revision = "4"; - editedCabalFile = "0f2lww0qjk3sspj199b88j1zg9nn0cmm0mmsf6j7dd30cdqam76p"; - libraryHaskellDepends = [ base groups semigroupoids semigroups ]; - doHaddock = false; - doCheck = false; - description = "Various extra monoid-related definitions and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "0.4.6"; - sha256 = "15c1aade7351bea9db03e047b063d3f68507e31bebff8e49fc9797a5d4be51e7"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoidal-containers" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "monoidal-containers"; - version = "0.3.1.0"; - sha256 = "44c325aa5a46a624688eefca1a0a3cc818e932a3805ed7749d0693c2c8c5f785"; - libraryHaskellDepends = [ - base containers deepseq hashable lens newtype semigroups - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bgamari/monoidal-containers"; - description = "Containers with monoidal accumulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "morte" = callPackage - ({ mkDerivation, alex, array, base, binary, code-page, containers - , deepseq, Earley, formatting, http-client, http-client-tls - , microlens, microlens-mtl, optparse-applicative, pipes, stdenv - , system-fileio, system-filepath, text, transformers - }: - mkDerivation { - pname = "morte"; - version = "1.6.19"; - sha256 = "f036d20c8dd5f985b649934d6a5b9b1785615776ece21495847164386c9313d7"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary containers deepseq Earley formatting http-client - http-client-tls microlens microlens-mtl pipes system-fileio - system-filepath text transformers - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - base code-page formatting optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "A bare-bones calculus of constructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mstate" = callPackage - ({ mkDerivation, base, monad-peel, mtl, stdenv, stm }: - mkDerivation { - pname = "mstate"; - version = "0.2.7"; - sha256 = "4508e3e7cc2dec5a0e75ba7dd085c73fdd4f886ac6d1a74cf071816795bb2c17"; - revision = "1"; - editedCabalFile = "0fj78xvvivsci437yh1raz021jh20xaz57f7ri6sxpsch3ghjy8b"; - libraryHaskellDepends = [ base monad-peel mtl stm ]; - doHaddock = false; - doCheck = false; - description = "MState: A consistent State monad for concurrent applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.1.3"; - sha256 = "6458ca53593a31ebce1d94ef8dd4f6a06d050dd7ed32335f6cc6b6e5d3456894"; - revision = "4"; - editedCabalFile = "1mfrx8cpx0502sjv0bmlfkl0h46c4krldg8m89k4fj6iawwg2ab5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multipart" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv }: - mkDerivation { - pname = "multipart"; - version = "0.1.2"; - sha256 = "e543fb307beb14fc366171d7767a6a18244bacf78db295d8d161c5c03d94043c"; - revision = "1"; - editedCabalFile = "11ah835kva8z6fnssjs48dv4s0fq57bh01zf3byhm6wx6cnx1spw"; - libraryHaskellDepends = [ base bytestring parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/silkapp/multipart"; - description = "HTTP multipart split out of the cgi package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.0"; - sha256 = "013fb518a342cca9650859f21016077693f7b594d70df569548b7de9074a5d69"; - revision = "3"; - editedCabalFile = "0gi4l3765jgsvhr6jj2q1l7v6188kg2xw4zwcaarq3hcg1ncaakw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.0"; - sha256 = "018863e578e971e393edc65dd7e0ed92a0e37fc152a47bb379fd8abd59537be0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.0.3"; - sha256 = "7e999b53c367d03ddae1ba5ac175f1067c2339346fc376c2a14bfc2a57c9f6a1"; - libraryHaskellDepends = [ base mwc-random primitive transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability-transition" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, hspec, logging-effect - , mtl, mwc-probability, primitive, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability-transition"; - version = "0.4"; - sha256 = "3e44b6f3f3b2a739776484e7d4ab98ab1d5c7e50bcba53a40d2f0ac96003e768"; - libraryHaskellDepends = [ - base exceptions ghc-prim hspec logging-effect mtl mwc-probability - primitive QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mwc-probability-transition"; - description = "A Markov stochastic transition operator with logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.13.6.0"; - sha256 = "065f334fc13c057eb03ef0b6aa3665ff193609d9bfcad8068bdd260801f44716"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.5"; - sha256 = "49b367d07f6d93fd4cbd08390f83bbf8e40c66156a1d2b0f570b68921e6f3075"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-haskell" = callPackage - ({ mkDerivation, base, binary, binary-ieee754, binary-parsers - , blaze-textual, bytestring, bytestring-lexing, cryptonite - , io-streams, memory, monad-loops, network, scientific, stdenv - , tcp-streams, text, time, tls, vector, wire-streams, word24 - }: - mkDerivation { - pname = "mysql-haskell"; - version = "0.8.3.0"; - sha256 = "e9aef28ccccc0801a1db1c936945a226961334ec11d85905ae58a09a42507aac"; - revision = "1"; - editedCabalFile = "1kpfmrwwdaxjqwbsc6m9imlcfi2vvkz62pin5nrvm1fk17isy69v"; - libraryHaskellDepends = [ - base binary binary-ieee754 binary-parsers blaze-textual bytestring - bytestring-lexing cryptonite io-streams memory monad-loops network - scientific tcp-streams text time tls vector wire-streams word24 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "pure haskell MySQL driver"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-nem" = callPackage - ({ mkDerivation, base, bytestring, io-streams, mysql-haskell - , scientific, stdenv, text, time - }: - mkDerivation { - pname = "mysql-haskell-nem"; - version = "0.1.0.0"; - sha256 = "7a0868b76edc96a7aff7860f96436b9040f6cb9319dd67f68bfd700948721f0d"; - libraryHaskellDepends = [ - base bytestring io-streams mysql-haskell scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lorenzo/mysql-haskell-nem#readme"; - description = "Adds a interface like mysql-simple to mysql-haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-openssl" = callPackage - ({ mkDerivation, base, binary, HsOpenSSL, mysql-haskell, stdenv - , tcp-streams, tcp-streams-openssl, wire-streams - }: - mkDerivation { - pname = "mysql-haskell-openssl"; - version = "0.8.3.0"; - sha256 = "44345ef9b5d98b1fca5089533990b8f4ba67afde7995282c323dacfb44dba55e"; - libraryHaskellDepends = [ - base binary HsOpenSSL mysql-haskell tcp-streams tcp-streams-openssl - wire-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "TLS support for mysql-haskell package using openssl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "named" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "named"; - version = "0.1.0.0"; - sha256 = "e7fa5c63906a3e8db05ead8c64a962045016ef8d450ab0f8579861080b024658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Named parameters (keyword arguments) for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.2.0.4"; - sha256 = "58bf4d2e807115f4911d0ae43500732e85ce726de1129dd6e384b6891b1ed20e"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, parsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.1"; - sha256 = "5530e43ca4de09b972d173e522f9dc96265f3afe0df695a25f0141be816fa014"; - libraryHaskellDepends = [ - base base-prelude parsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-carray" = callPackage - ({ mkDerivation, base, carray, netlib-ffi, stdenv, transformers }: - mkDerivation { - pname = "netlib-carray"; - version = "0.0.1.1"; - sha256 = "9bc702f6d09240400b99d0769aaa0fe6bf32f83b312d33a6e2dd7b75a173beef"; - libraryHaskellDepends = [ base carray netlib-ffi transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-carray/"; - description = "Helper modules for CArray wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, stdenv, storable-complex, transformers }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1"; - sha256 = "505ca55093efdbd71b8b8cbeaa52ce2cbdd5477dc6c35b163e52748772517c32"; - libraryHaskellDepends = [ base storable-complex transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.2"; - sha256 = "846a04bca94be31c779888febc390c64cfba93e40f3a7a2f80ff6a6e44fcc2d7"; - revision = "1"; - editedCabalFile = "1vhwjv5c5gxn9l9982da54nzczbmj8rl09xn8ac7rix0zmmyvl50"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.2.0"; - sha256 = "220184713b802c53ee26783b891a3bbee6c6b2571f798bd6def2496a504e9bde"; - revision = "1"; - editedCabalFile = "0i97vxqklirvns1zv8cd70vyijmf45ll8zzbyq9c9dgfz6arxyiv"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "network"; - version = "3.1.1.1"; - sha256 = "d7ef590173fff2ab522fbc167f3fafb867e4ecfca279eb3ef0d137b51f142c9a"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-anonymous-i2p" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions, mtl - , network, network-attoparsec, network-simple, stdenv, text - , transformers, uuid - }: - mkDerivation { - pname = "network-anonymous-i2p"; - version = "0.10.0"; - sha256 = "cff5796c36c1ebbb969e5433538eb3f3979acef9825a7bfb683ed002023fff2c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions mtl network - network-attoparsec network-simple text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; - description = "Haskell API for I2P anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-anonymous-tor" = callPackage - ({ mkDerivation, attoparsec, base, base32string, bytestring - , exceptions, hexstring, network, network-attoparsec - , network-simple, socks, splice, stdenv, text, transformers - }: - mkDerivation { - pname = "network-anonymous-tor"; - version = "0.11.0"; - sha256 = "41aee5b34aaaec6fa47a56cca61fafec22097bda25d13d5baef6b7924e127549"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Haskell API for Tor anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, enclosed-exceptions - , exceptions, lifted-base, monad-control, mtl, network, stdenv - , transformers - }: - mkDerivation { - pname = "network-attoparsec"; - version = "0.12.2"; - sha256 = "9790a9bad286ab1474dadbece3e4b2e1dd068d4ede3847cb73bcd66386bf08f0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring enclosed-exceptions exceptions - lifted-base monad-control mtl network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-attoparsec"; - description = "Utility functions for running a parser against a socket"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-bsd" = callPackage - ({ mkDerivation, base, deepseq, network, stdenv }: - mkDerivation { - pname = "network-bsd"; - version = "2.8.1.0"; - sha256 = "d94961ca15c42c798d19cde540ec12b25cc43435fb95e682399d6c1a02022d4e"; - revision = "3"; - editedCabalFile = "1hc3jdbmpq2wxh82xfx452v2m2l97jbdaqqbmj5nz4lljxa2696r"; - libraryHaskellDepends = [ base deepseq network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-bsd"; - description = "POSIX network database () API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.0"; - sha256 = "746d245ae0719d8b8e560d1f9c2929656d3e1fbe86a040bad896317c35d24985"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-house" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "network-house"; - version = "0.1.0.2"; - sha256 = "071fbc22fc516175e78235d9e29ccefd8eec7c3caa2e6de74dddf62cdbffab43"; - libraryHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/network-house"; - description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.2"; - sha256 = "ee259d236312aafc4bd08dfeff2ebe4b4f930b2f5879764e1a6d5675c5105efe"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-multicast" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "network-multicast"; - version = "0.2.0"; - sha256 = "0f3b50abc3a401c20cc6a0ec51a49d2a48e5b467d9fbd63b7cf803165fe975f2"; - revision = "2"; - editedCabalFile = "1hha4vvyrx29d2lwwjl0bfpbaj00k85bd4w83s4hvawqbxqvvhkw"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - description = "Simple multicast library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "network-simple" = callPackage - ({ mkDerivation, base, bytestring, exceptions, network, stdenv - , transformers - }: - mkDerivation { - pname = "network-simple"; - version = "0.4.1"; - sha256 = "72be3a16779fffeb71436f421c7de4b83a78523362c4787a807c3174d7db9b1d"; - revision = "1"; - editedCabalFile = "05d2g7s11smr66k4jxy7sqamm1rgzrf37yrpmjwjrmbg6zfk0z2g"; - libraryHaskellDepends = [ - base bytestring exceptions network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple"; - description = "Simple network sockets usage patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-simple-tls" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , network, network-simple, stdenv, tls, transformers, x509 - , x509-store, x509-system, x509-validation - }: - mkDerivation { - pname = "network-simple-tls"; - version = "0.3"; - sha256 = "bc2dffc45af7771721f13c4ffe739fbef3b2050f9d3ebb6abd47ad15f7c94587"; - libraryHaskellDepends = [ - base bytestring data-default exceptions network network-simple tls - transformers x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple-tls"; - description = "Simple interface to TLS secured network sockets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.2"; - sha256 = "e795672b43d67ac7bfade72173548ae6bf8208c1890e22aba7809098558f9054"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-inmemory" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , network-transport, stdenv, stm - }: - mkDerivation { - pname = "network-transport-inmemory"; - version = "0.5.2"; - sha256 = "8245d795330157d90ad9de599854d119c6d8938a45ab8c4ec89f3160b2e9ef4e"; - revision = "1"; - editedCabalFile = "1cls49jpl0hs6pviyn1ga8nhsdgsvqg163sprif0pb21xz848d9k"; - libraryHaskellDepends = [ - base bytestring containers data-accessor network-transport stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "In-memory instantiation of Network.Transport"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-tests" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, mtl - , network-transport, random, stdenv - }: - mkDerivation { - pname = "network-transport-tests"; - version = "0.2.4.2"; - sha256 = "cb24c4bf7eed5a381eb21a3efadf8752050845e5d4426a1d2e00f128ea27cbc7"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers mtl network-transport - random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Unit tests for Network.Transport implementations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2"; - sha256 = "b714033abd9a8b0903bcef0d36d0913de2a5003c852f43f97fa688717289e459"; - revision = "1"; - editedCabalFile = "0rbhpa1krcmvv4hsy3h5h8l4vqjk9wckddcz34rfcq0m7zlmsrfz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.3"; - sha256 = "f295f001a86bdbcf759d6b91b9e7ae27cd431ccf41d9b9d34ee1c926b88efe45"; - revision = "1"; - editedCabalFile = "1glnwq1lw7780qgahqvh1qfx6k2ciwmbhc2wcc78v3aa3s954c8v"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "next-ref" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "next-ref"; - version = "0.1.0.2"; - sha256 = "a586f15c17d5d53dd647411d02660dcbfd293f38a75f030d6892a76a2c24789f"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "A concurrency primitive for a slow consumer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3"; - sha256 = "77906c1d4c94738e8b34d9aa28c6a3981edb82df7ee82f2f43aeb57b20bd5be0"; - revision = "2"; - editedCabalFile = "0i771z65ajgzi0ll4j5pivyxb7y6dng6kqa5rmqvi197f0ykn0i3"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.2"; - sha256 = "d9a3604c0c140197731895af56413edbf1cf6866f9c0636ece9d8314366dd1e1"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.2"; - sha256 = "b9985b8d62569c192d89b20965eed2b98186a67148b667202823c6389b8f15ca"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3"; - sha256 = "b8f8f9a660e598055898c1d6c981885c629882ae028fec90f91955bade19892d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numhask"; - version = "0.2.2.0"; - sha256 = "edc1d8b315e942bdabcf47a23dbf65751dad37d9076d7f6d3732473c40650a44"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "numeric classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-prelude" = callPackage - ({ mkDerivation, base, numhask, protolude, QuickCheck, stdenv - , tasty, tasty-quickcheck - }: - mkDerivation { - pname = "numhask-prelude"; - version = "0.0.5.1"; - sha256 = "72af69bbd992fafe070bb9e10c6c28846eb90468d70104d6edab3f0ba0d3f12e"; - libraryHaskellDepends = [ - base numhask protolude QuickCheck tasty tasty-quickcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "A numeric prelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-range" = callPackage - ({ mkDerivation, adjunctions, base, distributive, numhask-prelude - , protolude, QuickCheck, semigroupoids, stdenv - }: - mkDerivation { - pname = "numhask-range"; - version = "0.2.2.1"; - sha256 = "aecbded4c26fe9fdbe0e64d286d3ce2addd8046dfb8ff8d614edfcacb4045ead"; - libraryHaskellDepends = [ - adjunctions base distributive numhask-prelude protolude QuickCheck - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask-range#readme"; - description = "Numbers that are range representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.1"; - sha256 = "29dbb9bf7693989f94605804de31b1a4dacf53ab566ce0346445288eae95d017"; - revision = "1"; - editedCabalFile = "0n37j80fljalw7n528gwfmcqs53p9sss156i2rsvjx3ax1igaf55"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nvim-hs" = callPackage - ({ mkDerivation, base, bytestring, cereal, cereal-conduit, conduit - , containers, data-default, deepseq, directory, dyre, filepath - , foreign-store, hslogger, megaparsec, messagepack, mtl, network - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal - , process, resourcet, setenv, stdenv, stm, streaming-commons - , template-haskell, text, time, time-locale-compat, transformers - , transformers-base, unliftio, unliftio-core, utf8-string, void - }: - mkDerivation { - pname = "nvim-hs"; - version = "1.0.0.1"; - sha256 = "fc86c2c905dd3378500b8a3b38357bd8b3d15f83394cece3d0b679d8bfcd7816"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cereal cereal-conduit conduit containers - data-default deepseq directory dyre filepath foreign-store hslogger - megaparsec messagepack mtl network optparse-applicative - prettyprinter prettyprinter-ansi-terminal process resourcet setenv - stm streaming-commons template-haskell text time time-locale-compat - transformers transformers-base unliftio unliftio-core utf8-string - void - ]; - executableHaskellDepends = [ base data-default ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "nvim-hs-contrib" = callPackage - ({ mkDerivation, base, bytestring, data-default, directory - , filepath, messagepack, mtl, nvim-hs, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text, time, utf8-string - , yaml - }: - mkDerivation { - pname = "nvim-hs-contrib"; - version = "1.0.0.0"; - sha256 = "bd342ebd086b2825e74908ebe93621d7d06cd6b06f0bb2fdf98c44351f7a1394"; - libraryHaskellDepends = [ - base bytestring data-default directory filepath messagepack mtl - nvim-hs prettyprinter prettyprinter-ansi-terminal text time - utf8-string yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs-contrib"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "o-clock" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "o-clock"; - version = "0.1.1"; - sha256 = "00e486fb523c0bad188078ec22d144383247b810ea6272eceef819a413d6b3a9"; - revision = "1"; - editedCabalFile = "0kz12fqd8xc47avjq2d50yrxzvbyd13x64396aldw2hw8qg9gkr8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/o-clock"; - description = "Type-safe time library"; - license = stdenv.lib.licenses.mit; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "objective" = callPackage - ({ mkDerivation, base, containers, exceptions, free, hashable - , monad-skeleton, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat, unordered-containers, void - , witherable - }: - mkDerivation { - pname = "objective"; - version = "1.1.2"; - sha256 = "2fcf283ede3f447f2e65ed9c434bb8facef873ba534aa0de29eb5ffefcc86644"; - revision = "1"; - editedCabalFile = "039j3xac9ish0yk4w04bmip6g9p6ndfd9ngh46ya125ms4nhmyj4"; - libraryHaskellDepends = [ - base containers exceptions free hashable monad-skeleton mtl - profunctors template-haskell transformers transformers-compat - unordered-containers void witherable - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/objective"; - description = "Composable objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, semigroups, stdenv, text, time - , transformers, unixODBC, unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.0.5"; - sha256 = "363f8083948f38eee98963142cce66d75f9098320541e185b92df6951a146519"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting semigroups text - time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis" = callPackage - ({ mkDerivation, base, HTTP, network, network-uri, stdenv }: - mkDerivation { - pname = "oeis"; - version = "0.3.9"; - sha256 = "8a692c0b898f5d89e607f9593697a24827981a1cfee53045c192084015061b8e"; - revision = "1"; - editedCabalFile = "0rb6l3qblay8aiwaznp35gj7vwmhm87y57wvf3babwrh91s88jaj"; - libraryHaskellDepends = [ base HTTP network network-uri ]; - doHaddock = false; - doCheck = false; - description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.2.0"; - sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "om-elm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , http-types, safe, safe-exceptions, stdenv, template-haskell, text - , unix, wai - }: - mkDerivation { - pname = "om-elm"; - version = "1.0.0.3"; - sha256 = "af10f05a0eed4e17829211f06e79b7c4884dbd5c2736674e9e7680bbe426c744"; - libraryHaskellDepends = [ - base bytestring Cabal containers directory http-types safe - safe-exceptions template-haskell text unix wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/owensmurray/om-elm"; - description = "Haskell utilities for building embedded Elm programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.2"; - sha256 = "753ec628a1fac1f308a4b0e75adee768f962815485e1832a8052ee9af61848a8"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-witness" = callPackage - ({ mkDerivation, base, constraints, hashable, random, stdenv - , template-haskell, transformers, witness - }: - mkDerivation { - pname = "open-witness"; - version = "0.4.0.1"; - sha256 = "0770500d6eeb301fc92d30bec2ccef55b05beb0200125fcbddb6b50836034111"; - libraryHaskellDepends = [ - base constraints hashable random template-haskell transformers - witness - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/open-witness"; - description = "open witnesses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.1"; - sha256 = "6de3f2d859f72ad3654dbe24ef89aa98967a55a3fd98e0c090b93a04e4938538"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pavolzetor/openexr-write#readme"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.1"; - sha256 = "b92f3f5316f18c9e30a95cd59888658384ddd20b628e4cd5fbb647177f52f607"; - revision = "1"; - editedCabalFile = "0j4qra3i7g607axj07d7f0ycj07d889nyw2s04m5wc98blbm5k4j"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.isc; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.0.0"; - sha256 = "3459b6ce70fb8fc8bdf9d9f6ed0476724cb8a11b673fc60422edac2376620127"; - revision = "1"; - editedCabalFile = "02zb9m7d6fsjbqgwbjnkrpgqc93zm34bvzgasw903hhdkskshrp6"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "openssl-streams" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, io-streams, network - , stdenv - }: - mkDerivation { - pname = "openssl-streams"; - version = "1.2.1.3"; - sha256 = "dc7170e835cf71a132903e2a6ccc976bd2984f9241ea2e4e99a9ece74f868f5f"; - revision = "2"; - editedCabalFile = "1004kgdryflpkp19dv4ikilhcn0xbfc5dsp6v3ib34580pcfj7wy"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL io-streams network - ]; - doHaddock = false; - doCheck = false; - description = "OpenSSL network support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "opml-conduit" = callPackage - ({ mkDerivation, base, case-insensitive, conduit - , conduit-combinators, containers, lens-simple, mono-traversable - , monoid-subclasses, safe-exceptions, semigroups, stdenv, text - , time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "opml-conduit"; - version = "0.6.0.4"; - sha256 = "480b557690aab79e3761ad7f1ba1d44873c3d395d2b27f2d133372a01c535d1d"; - revision = "1"; - editedCabalFile = "160sazqsrmm2755642c5y5i38miiglqb66cy5k0hy4k2jkdmjfbi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base case-insensitive conduit conduit-combinators containers - lens-simple mono-traversable monoid-subclasses safe-exceptions - semigroups text time timerep uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/opml-conduit"; - description = "Streaming parser/renderer for the OPML 2.0 format."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.14.2.0"; - sha256 = "e1341e9831c7b10332d1b29cfa966a80d46b476bb52d99d50bdb53eb770d7f30"; - revision = "1"; - editedCabalFile = "0a7hwyvz3grdapmyshab21xsy6171mbs3206cndngclwv3gpajiy"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.0"; - sha256 = "80929958606e4a73672b570ba1a23493fbf46268666d14ab5af53623301c398f"; - revision = "3"; - editedCabalFile = "0vszcjmxywblx5z9yvrz8c6yc104jgr1nv0sbv58ansd3rkjlzfn"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, gitrev, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.0"; - sha256 = "838d795faa3de3b426b83df11834bead33d02d7fe89df30300ca05c72e714cbc"; - libraryHaskellDepends = [ - base gitrev optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.3.0"; - sha256 = "0a52898f6d7e48e2202bdfd9f9a6fd620cee7dc7253e43006b5d82cb43523d0a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "packdeps" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , filepath, optparse-applicative, process, semigroups, split - , stdenv, tar, text, time - }: - mkDerivation { - pname = "packdeps"; - version = "0.4.5"; - sha256 = "17de7170a104434ba1c686a0a279cc43a3841fae89f75636e0e7f8a27bb7da1e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal containers directory filepath split tar text - time - ]; - executableHaskellDepends = [ - base Cabal containers optparse-applicative process semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://packdeps.haskellers.com/"; - description = "Check your cabal packages for lagging dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , binary, blaze-html, blaze-markup, bytestring, Cabal - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doctemplates, exceptions, filepath, Glob - , haddock-library, hslua, hslua-module-text, HTTP, http-client - , http-client-tls, http-types, JuicyPixels, mtl, network - , network-uri, pandoc-types, parsec, process, random, safe - , scientific, SHA, skylighting, split, stdenv, syb, tagsoup - , temporary, texmath, text, time, unix, unordered-containers - , vector, xml, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.2.1"; - sha256 = "fe037f5fbb62fb27e7b1dbddfbd0aa45ea6e9fcdaff1f2203f7484c245b211b7"; - revision = "2"; - editedCabalFile = "05i037qlzh7akshv0ph7lk565x3sl91x227ls9jh71m2hhslyslf"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring binary blaze-html - blaze-markup bytestring case-insensitive cmark-gfm containers - data-default deepseq directory doctemplates exceptions filepath - Glob haddock-library hslua hslua-module-text HTTP http-client - http-client-tls http-types JuicyPixels mtl network network-uri - pandoc-types parsec process random safe scientific SHA skylighting - split syb tagsoup temporary texmath text time unix - unordered-containers vector xml yaml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share - mv $data/*/*/man $out/share/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-citeproc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , Cabal, containers, data-default, directory, filepath, hs-bibutils - , mtl, old-locale, pandoc, pandoc-types, parsec, rfc5051, setenv - , split, stdenv, syb, tagsoup, text, time, unordered-containers - , vector, xml-conduit, yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.14.3.1"; - sha256 = "42c0b2c8365441bf884daa6202e6ed01b42181cf255406c88b3b31cd27cb467a"; - revision = "1"; - editedCabalFile = "1lqz432ij7yp6l412vcfk400nmxzbix6qckgmir46k1jm4glyqwk"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base bytestring containers data-default directory filepath - hs-bibutils mtl 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 pandoc - pandoc-types syb text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.17.4.2"; - sha256 = "57e15e0a8c74f1acc96259d24eb77a6febbc182a1fd8092af8c431e7a3263eca"; - revision = "1"; - editedCabalFile = "0izgzjfl7l4fb6xd5iqcy5zca4m1vzvr5xqgccw45vkm8q3arqnf"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://johnmacfarlane.net/pandoc"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pango" = callPackage - ({ mkDerivation, array, base, Cabal, cairo, containers, directory - , filepath, glib, gtk2hs-buildtools, mtl, pango, pretty, process - , stdenv, text - }: - mkDerivation { - pname = "pango"; - version = "0.13.5.0"; - sha256 = "bf59b9273134e5d1c9c648a253e5a766cd1ef51afc2216175bce21a15b6d49e8"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal filepath gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base cairo containers directory glib mtl pretty process text - ]; - libraryPkgconfigDepends = [ pango ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Pango text rendering engine"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) pango;}; - "papillon" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, monads-tf - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "papillon"; - version = "0.1.0.6"; - sha256 = "2b5a614c8792ab3e36fae53f5303a9e62b78b896da1752d65b8ebf7b98ea1ac8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring monads-tf template-haskell transformers - ]; - executableHaskellDepends = [ - base directory filepath monads-tf template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; - description = "packrat parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "parallel"; - version = "3.2.1.1"; - sha256 = "323bb9bc9e36fb9bfb08e68a772411302b1599bfffbc6de20fa3437ce1473c17"; - revision = "1"; - editedCabalFile = "12sgigg7r4nmyhbfn1p09ajf4s576yca31b7daj5zpp1mxgb5x7i"; - libraryHaskellDepends = [ array base containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.8"; - sha256 = "7b789204c15d0c478db3d133f349a6970b5509fc6af655faedc03c7426dcf7d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Full-featured command-line argument parsing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.13.0"; - sha256 = "7861ae437a6177ee7c08899432fd8c062e7c110361da48a9f9e88263fd4d80f1"; - revision = "2"; - editedCabalFile = "032sizm03m2vdqshkv4sdviyka05gqf8gs6r4hqf9did177i0qnm"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.1"; - sha256 = "03162e40cde50253529fa452165b681d5064d03ad07992800702156adfb6254d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.8"; - sha256 = "5aba0afdd53f3bd39b145ca858b696ba0a36d099c694742fb6a5d38900806bc8"; - libraryHaskellDepends = [ - attoparsec base base-orphans charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-order" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "partial-order"; - version = "0.1.2.1"; - sha256 = "e37dc77f4b8852b1c96fe9b8b06db41aa00d06c5ce7f0c1c5bea15ea462ac397"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/haskell-partial-order"; - description = "Provides typeclass suitable for types admitting a partial order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell - }: - mkDerivation { - pname = "path"; - version = "0.6.1"; - sha256 = "4b8bd85a13395b4240c639b9cf804371854d5dac69158f661068bd3089a25e59"; - revision = "2"; - editedCabalFile = "05pgmg0w1mfwcmx9ad4p09xqxld8njhgwmgq38v7pr58czvmd6ks"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.3.3"; - sha256 = "2aec05914a7569f221cf73e25070fea5fad8125a9a93845e8d614a1c291e35bd"; - revision = "3"; - editedCabalFile = "1h9hsibbflkxpjl2fqamqiv3x3gasf51apnmklrs9l9x8r32hzcc"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcf-font" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector, zlib - }: - mkDerivation { - pname = "pcf-font"; - version = "0.2.2.0"; - sha256 = "8a67d04240a7668e669414d1b4f531d290c79a63198e0ecf02cb0339bff098ef"; - libraryHaskellDepends = [ - base binary bytestring containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font"; - description = "PCF font parsing and rendering library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcf-font-embed" = callPackage - ({ mkDerivation, base, bytestring, pcf-font, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "pcf-font-embed"; - version = "0.1.2.0"; - sha256 = "c55d51ee6f959c9c05bb9d9adac3aad1cd87b2bba3cca7d3667d67f1a230fd51"; - libraryHaskellDepends = [ - base bytestring pcf-font template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font-embed"; - description = "Template Haskell for embedding text rendered using PCF fonts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, entropy, primitive, random - , stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.5"; - sha256 = "de43ff8805f9e0ffd4cd6b4f2fed8c9cfa9ab45c0fd42374636ac7a5567840a4"; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.0.4"; - sha256 = "02c97e39263d18fd26aa63d52c88c4bfbb5c3f66ab40564552e7f11d5d889e75"; - libraryHaskellDepends = [ base bytestring ]; - libraryPkgconfigDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perf" = callPackage - ({ mkDerivation, base, containers, deepseq, foldl, rdtsc, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "perf"; - version = "0.4.0.1"; - sha256 = "26adf45babc3f8b631e078de675a01af00109392fbf25abeb220be41e4e7a2aa"; - libraryHaskellDepends = [ - base containers deepseq foldl rdtsc text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/perf#readme"; - description = "Low-level run time measurement"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.3"; - sha256 = "c690daea6de51d738d500245643c9d7578111949e37608bcafca8555d2905989"; - revision = "1"; - editedCabalFile = "1nnvkj83iy10yqf24j2zl21krva5q4yhszdb8g79c8gsmymi9xvp"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-types-HDBC-pg" = callPackage - ({ mkDerivation, base, bytestring, convertible, dlist, HDBC - , persistable-record, relational-query, relational-query-HDBC - , stdenv, text-postgresql - }: - mkDerivation { - pname = "persistable-types-HDBC-pg"; - version = "0.0.3.2"; - sha256 = "59408a7355ccf079d3a08f37818f79db297151f4e9e2b763df65d89802abbf35"; - libraryHaskellDepends = [ - base bytestring convertible dlist HDBC persistable-record - relational-query relational-query-HDBC text-postgresql - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC and Relational-Record instances of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, blaze-markup, bytestring, conduit, containers - , fast-logger, haskell-src-meta, http-api-data, monad-logger, mtl - , old-locale, path-pieces, resource-pool, resourcet, scientific - , silently, stdenv, tagged, template-haskell, text, time - , transformers, unliftio-core, unordered-containers, vector, void - }: - mkDerivation { - pname = "persistent"; - version = "2.8.2"; - sha256 = "696bb279259e307778dc7fbd49565c48a66429f14e793a41a13cfae0968c1ec0"; - revision = "2"; - editedCabalFile = "1y7gm3qcgizy42kf0h9hzjf27kl11dbfwvi72ggkw00apjsp9hnn"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html blaze-markup - bytestring conduit containers fast-logger haskell-src-meta - http-api-data monad-logger mtl old-locale path-pieces resource-pool - resourcet scientific silently tagged template-haskell text time - transformers unliftio-core unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-iproute" = callPackage - ({ mkDerivation, aeson, aeson-iproute, base, bytestring - , http-api-data, iproute, path-pieces, persistent, stdenv, text - }: - mkDerivation { - pname = "persistent-iproute"; - version = "0.2.3"; - sha256 = "f595a11ceaa1c19e11d6f4fc58ec2834eb100791ae82626912115f1d79edbfaa"; - revision = "1"; - editedCabalFile = "1jly9db968q5j5ly75f77hwxrhky3s6xx8ydgsjn5cdr9rc4iz8k"; - libraryHaskellDepends = [ - aeson aeson-iproute base bytestring http-api-data iproute - path-pieces persistent text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/persistent-iproute"; - description = "Persistent instances for types in iproute"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.8.1"; - sha256 = "80cc29f8fa90503a13c348e14f10dd0883f17837ca72a5cd5b2884fdb286e654"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , io-streams, monad-logger, mysql-haskell, network, persistent - , persistent-template, resource-pool, resourcet, stdenv, text, time - , tls, transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-mysql-haskell"; - version = "0.4.0"; - sha256 = "0d2cd8b20b4f78ee7c35cbe489f901dde2a5f06c9fa153b1a9c475f0fc769bbd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "A pure haskell backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.8.2.0"; - sha256 = "f2f3c80b9f1d5ae494492204f3170e33ff3a5792b9675748839de6309d082f49"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-refs" = callPackage - ({ mkDerivation, base, containers, mtl, ref-fd, stdenv - , transformers - }: - mkDerivation { - pname = "persistent-refs"; - version = "0.4"; - sha256 = "46b310e034e23993e7da740d388e06e410483ada05cbcc8c0a4953ee19f8d0d3"; - libraryHaskellDepends = [ - base containers mtl ref-fd transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/persistent-refs"; - description = "Haskell references backed by an IntMap for persistence and reversibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, old-locale, persistent, resource-pool - , resourcet, sqlite, stdenv, text, time, transformers - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.8.1.2"; - sha256 = "2f7157f3830370f60c7c36490ea49b7c52caf0f2a7349f86cf47970189f9ad0c"; - revision = "1"; - editedCabalFile = "0gfcg3jh8fn994a8awrln3kakxmrnygzc1g77flxyh1knm8q63d6"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - old-locale persistent resource-pool resourcet text time - transformers unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers - , ghc-prim, http-api-data, monad-control, monad-logger, path-pieces - , persistent, stdenv, tagged, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.5.4"; - sha256 = "4cae740ce92f98cb3ae9e092e740753394d5687b887399ee5f87af7f3c730a01"; - revision = "4"; - editedCabalFile = "08yb4kcmpqmm50lwrbmavd0zhgg6p7bl8dy026xw644cazrzcvr1"; - libraryHaskellDepends = [ - aeson aeson-compat base bytestring containers ghc-prim - http-api-data monad-control monad-logger path-pieces persistent - tagged template-haskell text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.1.0.1"; - sha256 = "598236369ee1228a3a76b4f0d5830d652a90ddbc0f98fdde064ad979a1abc97d"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "Another postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.2"; - sha256 = "e28b6fe85222adf1247d5870ab47c68c3d25df3f9ceda104bfb64e1414a92466"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "picosat" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "picosat"; - version = "0.1.4"; - sha256 = "5a6d9fae04a77a95a8c92ec6dd76302010b726d8c934dc8d8bbabc82851e9039"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/haskell-picosat"; - description = "Bindings to the PicoSAT solver"; - license = stdenv.lib.licenses.mit; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pinboard" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-client - , http-client-tls, http-types, monad-logger, mtl, network - , profunctors, random, safe-exceptions, stdenv, text, time - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pinboard"; - version = "0.9.12.10"; - sha256 = "bac98d28d29f47d39ca15f0b406f438fb2797841a21edfd1cdf8d54bdb64b049"; - libraryHaskellDepends = [ - aeson base bytestring containers http-client http-client-tls - http-types monad-logger mtl network profunctors random - safe-exceptions text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonschoning/pinboard"; - description = "Access to the Pinboard API"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.9"; - sha256 = "5c4cda351f9cf59376832baaeb857db25bd4990fd78c4b061aca0bde47271acb"; - revision = "3"; - editedCabalFile = "0ydjr0vw09spamifvv5r2y46s1x26mnijb7bbpdkz7lwa71jxn6r"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-category" = callPackage - ({ mkDerivation, base, lens, mtl, pipes, pipes-extras, stdenv }: - mkDerivation { - pname = "pipes-category"; - version = "0.3.0.0"; - sha256 = "4711d889ed2bf7244bbbc292af5746e0378d72a09929aa1e668056e7f0180701"; - libraryHaskellDepends = [ base lens mtl pipes pipes-extras ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-category#readme"; - description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.10"; - sha256 = "4675721dbff765ac69dd570d90dc816b4b625e39997d4c2640567a544fe636e3"; - revision = "1"; - editedCabalFile = "03wlcdlr078b487kf39gd1pbwcri3ln4h651l60whscgsy5hkfsb"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.14"; - sha256 = "fd1d8984872d10ac77d6ff85255951bb1d1f6378db0805a6cf9e1c708d54c89d"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fluid" = callPackage - ({ mkDerivation, base, constraints, lens, lifted-async - , monad-control, pipes, semigroups, stdenv, stm, these - , transformers, transformers-base - }: - mkDerivation { - pname = "pipes-fluid"; - version = "0.6.0.0"; - sha256 = "8a4097620bbfaf6f7662acbf792defc92434aaadd8dc71f71b7f26e58fb87585"; - libraryHaskellDepends = [ - base constraints lens lifted-async monad-control pipes semigroups - stm these transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-fluid#readme"; - description = "Reactively combines Producers so that a value is yielded as soon as possible"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.10"; - sha256 = "28d32a7be4ddacbba2cb9ccf38338fce20b7e72c17328a849875d21381d467c8"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.5"; - sha256 = "49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055"; - revision = "1"; - editedCabalFile = "015psgj5wl67p0qdc00nrn717gv354gii70c57n1px5j81b0z5cl"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-misc" = callPackage - ({ mkDerivation, base, clock, Decimal, lens, mmorph, mtl, pipes - , pipes-category, pipes-concurrency, semigroups, stdenv, stm - , transformers - }: - mkDerivation { - pname = "pipes-misc"; - version = "0.5.0.0"; - sha256 = "4e2e7e396ee0c659ae3742388d06b69e3b5146a5563cd3f4ba56f9a1febb8d26"; - libraryHaskellDepends = [ - base clock Decimal lens mmorph mtl pipes pipes-category - pipes-concurrency semigroups stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-misc#readme"; - description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network" = callPackage - ({ mkDerivation, base, bytestring, exceptions, network - , network-simple, pipes, pipes-safe, stdenv, transformers - }: - mkDerivation { - pname = "pipes-network"; - version = "0.6.5"; - sha256 = "74a461153a2f650e9e15037002b6d9177b132f409e3204824655ffbb939dc795"; - libraryHaskellDepends = [ - base bytestring exceptions network network-simple pipes pipes-safe - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network"; - description = "Use network sockets together with the pipes library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network-tls" = callPackage - ({ mkDerivation, base, bytestring, network, network-simple - , network-simple-tls, pipes, pipes-network, pipes-safe, stdenv, tls - , transformers - }: - mkDerivation { - pname = "pipes-network-tls"; - version = "0.3"; - sha256 = "a2694a6b15d71a8cae898dd8e6a085a4e1ae317c40f2752ceed2b991dfb6bab2"; - libraryHaskellDepends = [ - base bytestring network network-simple network-simple-tls pipes - pipes-network pipes-safe tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network-tls"; - description = "TLS-secured network connections support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-random" = callPackage - ({ mkDerivation, base, mwc-random, pipes, stdenv, vector }: - mkDerivation { - pname = "pipes-random"; - version = "1.0.0.4"; - sha256 = "542a07e7d7aafa87201c1f00c4e98ac8f59707f776ea03b1f6f117273608659e"; - revision = "2"; - editedCabalFile = "0czw2qfi05d5kbnwzhzr75j1ag6hfbn9nvbjyifdjradfzjxl2s9"; - libraryHaskellDepends = [ base mwc-random pipes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/pipes-random"; - description = "Producers for handling randomness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.2.9"; - sha256 = "17f16403794a2517eb283dd8b34a17c3485143b7fb66870d0a305294815a1898"; - revision = "2"; - editedCabalFile = "1crpzg72nahmffw468d31l23bw3wgi0p3w7ad2pv3jxhy1432c71"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plot-light" = callPackage - ({ mkDerivation, base, blaze-markup, blaze-svg, colour, containers - , exceptions, histogram-fill, mtl, scientific, stdenv, text, time - , vector - }: - mkDerivation { - pname = "plot-light"; - version = "0.4.3"; - sha256 = "abbc116ff80d1e7ee0ed4dd0ba90baf907da7f347fa678767ff9402714399fbb"; - libraryHaskellDepends = [ - base blaze-markup blaze-svg colour containers exceptions - histogram-fill mtl scientific text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/plot-light"; - description = "A lightweight plotting library, exporting to SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2"; - sha256 = "85fb0446b3e92267357dc52b770da90b222b85337f3db593e0350021d1e53259"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/filopodia/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.12"; - sha256 = "f54c63584ace968381de4a06bd7328b6adc3e1a74fd336e18449e0dd7650be15"; - revision = "1"; - editedCabalFile = "18daiyj3009wx0bhr87fbgy7xfh68ss9qzn6k3lgmh1z9dfsryrd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.1"; - sha256 = "7d405a8876d55a9c077a304dd378854bc9e6e20f643c357c82bd3f38297ff9d0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.1.1"; - sha256 = "fb00b37b213e00369ae17145ed8487ac0bfe295f35b3ef24afaba76f9dbf36a0"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.1"; - sha256 = "0d9fa338b67c54786ea123cb9f75f3362aad01057aaa4857687610a39908566b"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lpsmith/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.14"; - sha256 = "73decc70c9fc349d0162c253eb0e92a1add5964c28ef89abfe30e97f1184d572"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.5.4.0"; - sha256 = "f5d11ae7907307a1a32d62add9ed88cccf4dc7a25c0c1f3f36e0975d44f73a77"; - revision = "1"; - editedCabalFile = "18g85a8icp21bjl38phwla25qv78y96vcisq5v1vwmz59m2n5k4h"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable postgresql-libpq scientific - template-haskell text time transformers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-migration" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash - , directory, postgresql-simple, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-simple-migration"; - version = "0.1.12.0"; - sha256 = "98f8b2eab06474e63c76b2d048d6a08d818d086b66e84caa27f3f0a368445da3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple time - ]; - executableHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ameingast/postgresql-simple-migration"; - description = "PostgreSQL Schema Migrations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-queue" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, monad-control - , pg-transact, postgresql-simple, random, stdenv, stm, text, time - , transformers - }: - mkDerivation { - pname = "postgresql-simple-queue"; - version = "1.0.1"; - sha256 = "330b69c54e075104171758117e714b7da6c740dff8ca09fbe33bd3ab854e5a3f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions monad-control pg-transact - postgresql-simple random stm text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgresql-queue#readme"; - description = "A PostgreSQL backed queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-url" = callPackage - ({ mkDerivation, base, network-uri, postgresql-simple, split - , stdenv - }: - mkDerivation { - pname = "postgresql-simple-url"; - version = "0.2.1.0"; - sha256 = "1307f57cde2bd7f6d795a860deab53d3d64043f51af31e3114dee516ef7ee9c9"; - revision = "2"; - editedCabalFile = "1nb1ks6hdfn16389f2yhf37qhjqd2y5wjc1dcp9bjhzd787z7ypr"; - libraryHaskellDepends = [ - base network-uri postgresql-simple split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/postgresql-simple-url"; - description = "Parse postgres:// url into ConnectInfo"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-transactional" = callPackage - ({ mkDerivation, base, monad-control, mtl, postgresql-simple - , stdenv - }: - mkDerivation { - pname = "postgresql-transactional"; - version = "1.1.1"; - sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; - libraryHaskellDepends = [ - base monad-control mtl postgresql-simple - ]; - doHaddock = false; - doCheck = false; - description = "a transactional monad on top of postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-typed" = callPackage - ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring - , containers, cryptonite, haskell-src-meta, HDBC, memory, network - , old-locale, postgresql-binary, scientific, stdenv - , template-haskell, text, time, utf8-string, uuid - }: - mkDerivation { - pname = "postgresql-typed"; - version = "0.5.3.0"; - sha256 = "b3c01c0821e96a83163f919aff86aba603f13d10ff5245680f4c4e488531f82a"; - libraryHaskellDepends = [ - aeson array attoparsec base binary bytestring containers cryptonite - haskell-src-meta HDBC memory network old-locale postgresql-binary - scientific template-haskell text time utf8-string uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dylex/postgresql-typed"; - description = "PostgreSQL interface with compile-time SQL type checking, optional HDBC backend"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.1"; - sha256 = "3ddc53ea30111047efeacfe0b85d721979b51e9479051d40b00563cc7ea87cff"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.1"; - sha256 = "7bdc875d5b7265a87f06866dc00da69edcd4ae36ea9687c8c6e643833ffb40d4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-extras"; - version = "0.4.0.3"; - sha256 = "09bb087f0870a353ec1e7e1a08017b9a766d430d956afb88ca000a6a876bf877"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/prelude-extras"; - description = "Higher order versions of Prelude classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "present" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "present"; - version = "4.1.0"; - sha256 = "bae8b334817a31572cc0e771f40e89b976e72b2b55d0955e4e198502dd8a427b"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/present"; - description = "Make presentations for data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.0"; - sha256 = "ff9a5f2023d6a4454f06cc395726b4cac3f9d0ea03759b14ccf7d62df79e9c7a"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.8.2"; - sha256 = "2aa4c750d7ca7f7319e02472098381db4780358f6ddd56f398171e94671884b9"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, containers, mtl, parsec - , stdenv, text, transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "2.1.0.0"; - sha256 = "c82ce285ea5f04781bdf3f41bdfedfa3f3fd9b23c8c56afcf7633efa054d38ca"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base containers mtl parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.2.3.1"; - sha256 = "e56c49d1099aaeafe0b982ef9e60cb7194fd987c4b659a8d7bcde380d3b8784f"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.2.0.1"; - sha256 = "11397b182138efc8f7b09a70873093fb565d070e4c8f92cdde9e601bcd5a0566"; - revision = "1"; - editedCabalFile = "1171qnw9vj2aq014hibs3dcba0k6pjcdy82albpm768kxx0sfmgk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible prettyprinter"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prim-uniq" = callPackage - ({ mkDerivation, base, dependent-sum, primitive, stdenv }: - mkDerivation { - pname = "prim-uniq"; - version = "0.1.0.1"; - sha256 = "fb059785133fe5ecaa57c6c840192f252c4c5a1a598160d5704ac2a83e895aff"; - libraryHaskellDepends = [ base dependent-sum primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/prim-uniq"; - description = "Opaque unique identifiers in primitive state monads"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.6.3.0"; - sha256 = "cddeff804e0f577f1be0179d5d145dfc170f8bfb66f663b9fba67104a45d9555"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "probability" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "probability"; - version = "0.2.5.1"; - sha256 = "d3e67c8b32dda838c455ddd532a668bc464cfe1d49dc74f4502175614af7ed2d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers random transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; - description = "Probabilistic Functional Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.2"; - sha256 = "b4cba495f0779c619f466cdcc7914a4c2a209543dabebb6a32f003dc567317fb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, stdenv, tagged, transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.5.1"; - sha256 = "1d3741957d3187c033342e0b9ca3ba302e936c69bb402b89e4b1c60ae1d9b15a"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, deepseq, lens-family, lens-labels, parsec - , pretty, stdenv, text, transformers, void - }: - mkDerivation { - pname = "proto-lens"; - version = "0.3.1.0"; - sha256 = "87bf1aa7d7754ca06ccbfb0daf4a77de53345c1d098e0fa17018ee00c2b994ab"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class deepseq - lens-family lens-labels parsec pretty text transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.1"; - sha256 = "824e013d1f7c4d52434ea318aef63544491cf0e89f63dbcda4c4c07881b11c23"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-combinators" = callPackage - ({ mkDerivation, base, Cabal, data-default-class, lens-family - , proto-lens-protoc, stdenv, transformers - }: - mkDerivation { - pname = "proto-lens-combinators"; - version = "0.1.0.10"; - sha256 = "395a8626e75ed17dedcfce2de5b6b769d1fa521b56005e4f30e66a3e5ee6667b"; - setupHaskellDepends = [ base Cabal proto-lens-protoc ]; - libraryHaskellDepends = [ - base data-default-class lens-family proto-lens-protoc transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Utilities functions to proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.1"; - sha256 = "1c8706f789809bda1ad9db8b18b2a9c309e6040ded6ce1d85a2b0da7cc9e26fe"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-protoc, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.3.0.1"; - sha256 = "8a19053eabdff8e84b65181dd1beb4fafe5a84bae5af1bb3b32d043d0ef56018"; - setupHaskellDepends = [ base Cabal proto-lens-protoc ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-protoc text - ]; - libraryToolDepends = [ protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers - , data-default-class, deepseq, directory, filepath - , haskell-src-exts, lens-family, lens-labels, pretty, process - , proto-lens, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.3.1.0"; - sha256 = "7dbfa924db9014caf7bf0bb2dd1eb9f0960b9ef2fa6c80c4610b768aade73042"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal containers data-default-class deepseq - directory filepath haskell-src-exts lens-family lens-labels pretty - process proto-lens text - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers data-default-class deepseq filepath - haskell-src-exts lens-family proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.0.5"; - sha256 = "6b46b427f14eacb814dfce0a678e7cb7742d1583d14f9540ca00fb0bc0e916f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-buffers" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , directory, filepath, mtl, parsec, stdenv, syb, utf8-string - }: - mkDerivation { - pname = "protocol-buffers"; - version = "2.4.10"; - sha256 = "734fc15adecbf8231a8d83d446623526600b6ec8f2d82f264c29d01714f52767"; - revision = "1"; - editedCabalFile = "04cv52k497nmh04pflmjrl26vlbczvm3mk4qld0zrwqxkk6v0ris"; - libraryHaskellDepends = [ - array base binary bytestring containers directory filepath mtl - parsec syb utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-buffers-descriptor" = callPackage - ({ mkDerivation, base, bytestring, containers, protocol-buffers - , stdenv - }: - mkDerivation { - pname = "protocol-buffers-descriptor"; - version = "2.4.10"; - sha256 = "a095e8cee40d64b986162eeac3e87c163264c4544876107dd10bf6e2b00796f0"; - revision = "1"; - editedCabalFile = "03b3w0yawnjv5hpprkhj49s1fkj9ib03avyxgv3i9vj0n0ngbiz1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers protocol-buffers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.0"; - sha256 = "ae0c5ec142edb37df6bb51421b29e0a6c25013057e45e22159afb66cda3cf6f9"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.0.1.0"; - sha256 = "b5cc9a15e7910ecb449d3bbb142b809fa34bee2079e772ca63d4bb975a41ada0"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.2"; - sha256 = "685d0cf34b63482be84b785561009b8229327233ae311550d20d66b47b0f457c"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3"; - sha256 = "534d4d425f2834b39689e2af301bd5ff81d1619e65664a5efd797a0c88dbeb26"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psql-helpers" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv }: - mkDerivation { - pname = "psql-helpers"; - version = "0.1.0.0"; - sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; - libraryHaskellDepends = [ base postgresql-simple ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/psql-helpers#readme"; - description = "A small collection of helper functions to generate postgresql queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.0"; - sha256 = "4cf3628884015b091471e4425f5414207fd547cf71d9546e9b7318d857624fea"; - revision = "1"; - editedCabalFile = "0ncag4p7v41x5disbvkwzmv0c7ifc85lmjljzvf8d33arh7b08bj"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "publicsuffix" = callPackage - ({ mkDerivation, base, filepath, stdenv, template-haskell }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20180513"; - sha256 = "b51f193089fbdadeaecf062047b377e597ef6d72caff13e62d8a88f4c3870973"; - libraryHaskellDepends = [ base filepath template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; - description = "The publicsuffix list exposed as proper Haskell types"; - license = stdenv.lib.licenses.mit; - }) {}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qnap-decrypt" = callPackage - ({ mkDerivation, base, binary, bytestring, cipher-aes128, conduit - , conduit-extra, crypto-api, directory, filepath - , optparse-applicative, stdenv, streaming-commons, tagged - , utf8-string - }: - mkDerivation { - pname = "qnap-decrypt"; - version = "0.3.2"; - sha256 = "da930b2e821d3a1de08e6f85262793d4cbdd0d63dca017c7b2e3ad63ed6501e3"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qnap-decrypt#readme"; - description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickbench" = callPackage - ({ mkDerivation, base, containers, directory, docopt, pretty-show - , process, safe, split, stdenv, tabular, time - }: - mkDerivation { - pname = "quickbench"; - version = "1.0"; - sha256 = "8bfe252e50a683346e753db312e9542f8d43256947ab215fcfd24af03787b926"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory docopt pretty-show process safe split - tabular time - ]; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/quickbench#readme"; - description = "quick & easy benchmarking of command-line programs"; - license = "GPL"; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, stdenv, tagged, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.18"; - sha256 = "a570437eb4e5a5244c38ad161bab00ba4aeb8cb21de7c8dadf983557febf01ae"; - revision = "2"; - editedCabalFile = "02mhzd7dkhmbd8ljm114j7ixp1lcllblz3zfkz0i7n976rac86w7"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific tagged text time - transformers transformers-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.0.3"; - sha256 = "8f234cfc672986b3881eac79695025f58f4849de56171c447c9a806a713dc821"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "quicklz" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "quicklz"; - version = "1.5.0.11"; - sha256 = "0d0b23370a848efa86da80f835d036f468cdb1b201809351116945729b5b699f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/thoughtpolice/hs-quicklz"; - description = "QuickLZ compression for ByteStrings"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens-simple, process, stdenv - , text - }: - mkDerivation { - pname = "rainbow"; - version = "0.30.0.2"; - sha256 = "be021eb05bc3e6a00b4fc10e1af941afa0c0a69ab83e5204e8455cfd5c0f5ec7"; - libraryHaskellDepends = [ - base bytestring lens-simple process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-simple, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.20.0.0"; - sha256 = "937f61d2fbc7b41f065cec9bb9d6550b54346e52b788d30f73ef78cf8545b61f"; - libraryHaskellDepends = [ - base bytestring containers lens-simple rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rakuten" = callPackage - ({ mkDerivation, aeson, base, bytestring, connection, constraints - , data-default-class, extensible, http-api-data, http-client - , http-client-tls, http-types, lens, req, stdenv, text - }: - mkDerivation { - pname = "rakuten"; - version = "0.1.1.3"; - sha256 = "b06318137feec51914ff59213f7900ed2843c557d9819598111dad2c6b46a7b0"; - libraryHaskellDepends = [ - aeson base bytestring connection constraints data-default-class - extensible http-api-data http-client http-client-tls http-types - lens req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/rakuten#readme"; - description = "The Rakuten API in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.1"; - sha256 = "33a826fd04068902acb62b04cb88c5a0c47e483b88053be9f6de1d64911f0eb4"; - revision = "1"; - editedCabalFile = "0gk5hcx1j06rklfd2cv63kh5dzjk8hr184riam784c7s9zg3s9a4"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3"; - sha256 = "e51b393d2c09e3c2b0c21523389a48ce8e6090413abdfff1c623815c76cc96df"; - revision = "1"; - editedCabalFile = "00ddj7if8lcrqf5c882m4slm15sdwcghz7d2fz222c7jcw1ahvdr"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rank2classes" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "rank2classes"; - version = "1.0.2"; - sha256 = "82dc14121e896aee67321e49ec484067fba83a0bf1903ecbce1f70a195b473e2"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/grampa/tree/master/rank2classes"; - description = "standard type constructor class hierarchy, only with methods of rank 2 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.1"; - sha256 = "d6b5ea1318b6cca165fee1fae91116878ef72918eca6e7a118624bf56add1184"; - revision = "1"; - editedCabalFile = "0mhg2k786zx1cmblijnz73cf12h1s5grmkc0wb63612hnxxz53i7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratio-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ratio-int"; - version = "0.1.2"; - sha256 = "efe86052c5979261d9aa6861c6297205ee0b60e1b36de191d20485e823c9781a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RaphaelJ/ratio-int"; - description = "Fast specialisation of Data.Ratio for Int."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rattletrap" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits - , bytestring, containers, filepath, http-client, http-client-tls - , stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "rattletrap"; - version = "4.0.9"; - sha256 = "45fae33350fd11b8bae3449ea9b17f0f819ce95cbfd57a38aa73b24bd937e373"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/rattletrap#readme"; - description = "Parse and generate Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.2"; - sha256 = "93264621dc372c6180aa12324435deeac36946cdca7f77270ef0a3e162474852"; - revision = "4"; - editedCabalFile = "18gaaz7pj7x9yv2na1zbqavirrj93c7q6z28r4502if0w1w8wk8f"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rdf" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, dlist, fgl - , stdenv, text, transformers - }: - mkDerivation { - pname = "rdf"; - version = "0.1.0.2"; - sha256 = "889d93b6f54c791e62cd93ec404bb171d7e3bdbba0a085a4c7f4e4d2f3b51f6f"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq dlist fgl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/traviswhitaker/rdf"; - description = "Representation and Incremental Processing of RDF Data"; - license = stdenv.lib.licenses.mit; - }) {}; - "rdtsc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "rdtsc"; - version = "1.3.0.1"; - sha256 = "54c9a925f68d6c60b405e92f9d3bd9ebfc25cce0c72d2313a6c7e1b7cc2ed950"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgrabmueller/rdtsc"; - description = "Binding for the rdtsc machine instruction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.2"; - sha256 = "6906d80ed6834162f74ceb056230f7b1d1cd3423f05f67c65107b1493c8fd561"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, filepath, stdenv }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.1.1"; - sha256 = "35e9162b2ef895253574d953686a86a57bcbf7568c943d2828c319fb5e0566d1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad, free - , semigroups, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.0.2"; - sha256 = "3a4965bbcc10eb1d1d8dfd51771d7f20c164a1de5711333b1d5cd268a7f6aad2"; - revision = "3"; - editedCabalFile = "0fgdfkspl062b4l0dxqi4dm5rb7w322pdqgl2wmc3wb5891y751s"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad free semigroups - template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Generalized bananas, lenses and barbed wire"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.2"; - sha256 = "c5d03608b7217e8690a884014dfe03dc4c882ac1a481c5e85c76af4f7a516abd"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ref-fd" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "ref-fd"; - version = "0.4.0.1"; - sha256 = "e416f1afba149e3af9cbe1011381d0b89609c240d812127bd03b8a922a5f6037"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - description = "A type class for monads with references using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "references" = callPackage - ({ mkDerivation, array, base, containers, directory, either - , filepath, instance-control, mtl, stdenv, template-haskell, text - , transformers, uniplate - }: - mkDerivation { - pname = "references"; - version = "0.3.3.1"; - sha256 = "bc07606d36639148374e7a29a67ac489c7a0ed02655311b5d633a144a746c10e"; - libraryHaskellDepends = [ - array base containers directory either filepath instance-control - mtl template-haskell text transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/references"; - description = "Selectors for reading and updating data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refined" = callPackage - ({ mkDerivation, base, base-prelude, stdenv, template-haskell }: - mkDerivation { - pname = "refined"; - version = "0.1.2.1"; - sha256 = "156e08b286b3c433d40ca39160b7f1ecec6072c138ca48f6d90d3d0cb808e777"; - libraryHaskellDepends = [ base base-prelude template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/refined"; - description = "Refinement types with static and runtime checking"; - license = stdenv.lib.licenses.mit; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.3"; - sha256 = "88f81923abd7211e51de7071cd5800b30784e374c193de8cdd7b1c201f8de405"; - revision = "1"; - editedCabalFile = "1wjdggmzh45mfk3p7y73hl1bmsvwk92a9qz2wp6424ngqkm12vkx"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3"; - sha256 = "6659a2cc1c8137d77ef57f75027723b075d473354d935233d98b1ae1b03c3be6"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-applicative-text" = callPackage - ({ mkDerivation, base, regex-applicative, stdenv, text }: - mkDerivation { - pname = "regex-applicative-text"; - version = "0.1.0.1"; - sha256 = "b093051f80865d257da2ded8ad1b566927b01b3d2f86d41da2ffee4a26c4e2d9"; - revision = "4"; - editedCabalFile = "0ykzppl1v6k70idjl73m4w161f6lsax89v1gp100y4xgipf3yijj"; - libraryHaskellDepends = [ base regex-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/regex-applicative-text#readme"; - description = "regex-applicative on text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "regex-base"; - version = "0.93.2"; - sha256 = "20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278"; - revision = "2"; - editedCabalFile = "0dks3m5xwcjqqlyyg7abh12ci3ap5qn6wz3bz80kr6rcfgk0fhvd"; - libraryHaskellDepends = [ array base bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.1"; - sha256 = "d57cb1a5a4d66753b18eaa37a1621246f660472243b001894f970037548d953b"; - revision = "1"; - editedCabalFile = "0yg34p0rkql07y6rs6l70zlk8x51lra9vabkin921l581k6br498"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.94.4"; - sha256 = "8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0"; - revision = "1"; - editedCabalFile = "0jk29n0may65ghixlx1wwfmfcabsm730y8ppry1qy4naywhi1vs7"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.94.4.8.8.35"; - sha256 = "0bd1b695de953ba4b6e6e0de007021c346cb2a6c8e09356fbcd34f8a79d2ea78"; - revision = "1"; - editedCabalFile = "0r29q3fwlji0vxypk0pywrqgrqz84ryd0n5zmk44bgy2k534mk6c"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre-text" = callPackage - ({ mkDerivation, array, base, bytestring, regex-base - , regex-pcre-builtin, regex-tdfa-text, stdenv, text - }: - mkDerivation { - pname = "regex-pcre-text"; - version = "0.94.0.1"; - sha256 = "17991ed7b00da5cfb2efa0cefac16f9e0452fc794fe538d26d5cc802f0d8e9bd"; - libraryHaskellDepends = [ - array base bytestring regex-base regex-pcre-builtin regex-tdfa-text - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/regex-pcre-text"; - description = "Text-based PCRE API for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.95.2"; - sha256 = "56019921cd4a4c9682b81ec614236fea816ba8ed8785a1640cd66d8b24fc703e"; - revision = "2"; - editedCabalFile = "1zrlwmmrb3x3r3af1r42xwhwspzfgnzh4dw1158523sndsg8qn08"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl - , parsec, regex-base, stdenv - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.2.3"; - sha256 = "89b17ebb812d4597c0007fbbc21c78dfef70a133aa41b208217a9c99bed600d9"; - revision = "2"; - editedCabalFile = "058iq18pn07wmc28bb5slqbsvnaxqxy7abhfjm2gwnqazxk940xw"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim mtl parsec regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa-text" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa-text"; - version = "1.0.0.3"; - sha256 = "38d77a0d225c306c52c6d4eed12d11d05a4bc4194d547cb9a7a9b6f5a8792001"; - revision = "1"; - editedCabalFile = "00swglzmdw30g4bn47z6j71all0djjb2hjm7bkfl7pza4wv14wpv"; - libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; - doHaddock = false; - doCheck = false; - description = "Text interface for regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.11.1.0"; - sha256 = "b862e083da55671c3d1d506caec4fa4ac92d4a53aef56dd566ea47dde4c1cdc7"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-query-HDBC" = callPackage - ({ mkDerivation, base, containers, convertible, dlist, HDBC - , HDBC-session, names-th, persistable-record, product-isomorphic - , relational-query, relational-schemas, sql-words, stdenv - , template-haskell, th-data-compat, transformers - }: - mkDerivation { - pname = "relational-query-HDBC"; - version = "0.6.6.1"; - sha256 = "4fecb13ef0150f2f067f8b3df7cbe6a65528f0ce8035f7a2b04ac4b4a75c44a9"; - libraryHaskellDepends = [ - base containers convertible dlist HDBC HDBC-session names-th - persistable-record product-isomorphic relational-query - relational-schemas sql-words template-haskell th-data-compat - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC instance of relational-query and typed query interface for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-record" = callPackage - ({ mkDerivation, base, persistable-record - , persistable-types-HDBC-pg, product-isomorphic, relational-query - , relational-query-HDBC, stdenv - }: - mkDerivation { - pname = "relational-record"; - version = "0.2.1.2"; - sha256 = "5ead1f9de164cbf674ec268fdd613dcfbbc87f5069e53007837ea5db93320d19"; - libraryHaskellDepends = [ - base persistable-record persistable-types-HDBC-pg - product-isomorphic relational-query relational-query-HDBC - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Meta package of Relational Record"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.6.1"; - sha256 = "01ed4c898224e163d88b59ab66ebf50c710d6a4b968f8f3d6da2b6eca05278d2"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "repa" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "repa"; - version = "3.4.1.3"; - sha256 = "3e32d7b2964994d6edd3eabcce38f0c08ff474b3d4acb0d9b3f3b75c76e67a70"; - revision = "2"; - editedCabalFile = "0kmypfnpzjszdzhpd1lskp0plja8zyr8r2y9xyscx4g5md9hh0zp"; - libraryHaskellDepends = [ - base bytestring ghc-prim QuickCheck template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "High performance, regular, shape polymorphic parallel arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, haskeline, mtl, process, stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.1.7.0"; - sha256 = "503a035d8a380ac21c532e48c0f47006ff1c20ed9683f4906fdb304b4b9e55de"; - libraryHaskellDepends = [ base containers haskeline mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, data-default-class - , http-api-data, http-client, http-client-tls, http-types - , monad-control, mtl, retry, stdenv, text, time, transformers - , transformers-base - }: - mkDerivation { - pname = "req"; - version = "1.1.0"; - sha256 = "87cd886d295e2df38baebd63045be306e07bb910cf11aed9a1a734ac5dc04e22"; - revision = "1"; - editedCabalFile = "1qb458sldda1msrx8hyp31a5ybny2kdymsxhmsyk9i9c5gk0qqib"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection data-default-class http-api-data - http-client http-client-tls http-types monad-control mtl retry text - time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-url-extra" = callPackage - ({ mkDerivation, aeson, base, data-default-class, modern-uri, req - , stdenv, text - }: - mkDerivation { - pname = "req-url-extra"; - version = "0.1.0.0"; - sha256 = "b3de266ad49fb3c03ff26d589d89f81ddea7f319900b07e59843e57986d37d84"; - revision = "2"; - editedCabalFile = "0srj9fcbm9y8ddqgs8wc6caxamhgnic54y8qpxwnqdxrggdfkk67"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base modern-uri req ]; - executableHaskellDepends = [ - aeson base data-default-class modern-uri req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/req-url-extra#readme"; - description = "Provides URI/URL helper functions for use with Req"; - license = stdenv.lib.licenses.mit; - }) {}; - "require" = callPackage - ({ mkDerivation, base, bytestring, megaparsec, stdenv, text - , universum - }: - mkDerivation { - pname = "require"; - version = "0.2.1"; - sha256 = "a2b79c763f85ac22a436104c11cf5a467da48f59623027fe03c5e22a594dc131"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring megaparsec text universum - ]; - executableHaskellDepends = [ - base bytestring megaparsec text universum - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/require#readme"; - description = "Scrap your qualified import clutter"; - license = stdenv.lib.licenses.asl20; - }) {}; - "resolv" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , containers, stdenv - }: - mkDerivation { - pname = "resolv"; - version = "0.1.1.1"; - sha256 = "49b12ed2b175cca3f885c06ca6906cde1245c02b6f98f2a95fc20d6a8ae40772"; - revision = "3"; - editedCabalFile = "0r1i7zrnynqxd3nzq4cz9648s3dmj29w63mcip57620d0fimyghm"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring containers - ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the libresolv standard library routines"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.1"; - sha256 = "e765c12a6ec0f70efc3c938750060bc17569b99578aa635fd4da0c4d06fcf267"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rest-stringmap" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, hxt - , json-schema, stdenv, tostring, unordered-containers - }: - mkDerivation { - pname = "rest-stringmap"; - version = "0.2.0.7"; - sha256 = "62d4644f5f7e4ad85688feafaea48b577907a382729f11e1c1fde21a98215450"; - libraryHaskellDepends = [ - aeson base containers hashable hxt json-schema tostring - unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Maps with stringy keys that can be transcoded to JSON and XML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, data-default-class, exceptions, ghc-prim - , random, stdenv, transformers - }: - mkDerivation { - pname = "retry"; - version = "0.7.6.2"; - sha256 = "4d99f0598762de530200477efdba80a51cde2316a698a64f8683b86ba0b8b92e"; - libraryHaskellDepends = [ - base data-default-class exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.3"; - sha256 = "e38dab28a5625774be60545c8c99e647b79bbc0ac0bc9c65fe6b2ebef160642b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.2.0"; - sha256 = "98333b9376ce9cdc77ebe84b35a5fbb41ef846cc00efc12970bca1c19f948910"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rng-utils" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv }: - mkDerivation { - pname = "rng-utils"; - version = "0.3.0"; - sha256 = "0886acb1e0ae6c6ad5f594a9d4d57ea5af69c566ccc5763d0b7c690963e946ba"; - libraryHaskellDepends = [ base bytestring random ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/soostone/rng-utils"; - description = "RNG within an IORef for convenient concurrent use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rss-conduit" = callPackage - ({ mkDerivation, atom-conduit, base, conduit, conduit-combinators - , containers, dublincore-xml-conduit, lens-simple, safe - , safe-exceptions, singletons, stdenv, text, time, timerep - , uri-bytestring, vinyl, xml-conduit, xml-types - }: - mkDerivation { - pname = "rss-conduit"; - version = "0.4.2.1"; - sha256 = "b8f52cc3e899477c6f2642ea6d4abc6fa9c74fc6c08a8f990d50a79aff605712"; - revision = "1"; - editedCabalFile = "07y37q2a8wlgx9ay62bl0z6fgyqiypmfq0nzbnz766ac3jy7l42m"; - libraryHaskellDepends = [ - atom-conduit base conduit conduit-combinators containers - dublincore-xml-conduit lens-simple safe safe-exceptions singletons - text time timerep uri-bytestring vinyl xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parser/renderer for the RSS standard"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "s3-signer" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, byteable - , bytestring, case-insensitive, cryptohash, http-types, stdenv - , time, utf8-string - }: - mkDerivation { - pname = "s3-signer"; - version = "0.5.0.0"; - sha256 = "d73671d5bda0f5f627bbd876916341985c281c3572e6f8406cdf2f14ed9188e4"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder byteable bytestring - case-insensitive cryptohash http-types time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmjio/s3-signer"; - description = "Pre-signed Amazon S3 URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.17"; - sha256 = "79c5c41e7151906969133ea21af9f7e8d25c18315886e23d0bdf6faa8b537e5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-money" = callPackage - ({ mkDerivation, aeson, base, binary, cereal, constraints, deepseq - , hashable, stdenv, store, text, vector-space, xmlbf - }: - mkDerivation { - pname = "safe-money"; - version = "0.6"; - sha256 = "f9fccbbce2b81d8b54c920156ed9b77298598a7242bad98216e959a677b20fd1"; - configureFlags = [ "-f-serialise" ]; - libraryHaskellDepends = [ - aeson base binary cereal constraints deepseq hashable store text - vector-space xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/safe-money"; - description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , old-time, stdenv, template-haskell, text, time, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.9.4.1"; - sha256 = "1476c8c135baaca93ba232495b8d2a86047954e7f4439eafa28ee0763a500e84"; - libraryHaskellDepends = [ - array base bytestring cereal containers old-time template-haskell - text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.1"; - sha256 = "85290686e6482fdef5af566e7f51142e6d28bcb03f9ffb211f13da153be0a316"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.2"; - sha256 = "d186d6c61abff0766efcfc049267d847dc280fc192e844f011945ed1b610a030"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "sandman" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , optparse-applicative, process, stdenv, text, unix-compat - }: - mkDerivation { - pname = "sandman"; - version = "0.2.0.1"; - sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory filepath optparse-applicative - process text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/sandman#readme"; - description = "Manages Cabal sandboxes to avoid rebuilding packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.0"; - sha256 = "f26fdb94ed81a2ae503beca0dcea74da7ee37408ba2e41ab3fdcaa9a7622fc40"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Initial project template from stack"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring - , basic-prelude, binary, binary-conduit, bytestring, conduit - , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops - , resourcet, stdenv, template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.3.16"; - sha256 = "e3b9aec3bd3caeece563cce902862ceac9f50f55131a7ccb7591fe75882d1155"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson base basic-prelude binary-conduit bytestring conduit - conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "scalendar" = callPackage - ({ mkDerivation, base, containers, stdenv, text, time }: - mkDerivation { - pname = "scalendar"; - version = "1.2.0"; - sha256 = "f5c85e8da39e7eb22068032c4c5c32751ebbed61d0ee9679cadac904dde163ac"; - libraryHaskellDepends = [ base containers text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/scalendar"; - description = "A library for handling calendars and resource availability over time"; - license = stdenv.lib.licenses.mit; - }) {}; - "scalpel" = callPackage - ({ mkDerivation, base, bytestring, curl, data-default, scalpel-core - , stdenv, tagsoup, text - }: - mkDerivation { - pname = "scalpel"; - version = "0.5.1"; - sha256 = "20df66433570a2ca754f14058a47fb00519d9a75bb822fc3fd1769a83c608b0d"; - libraryHaskellDepends = [ - base bytestring curl data-default scalpel-core tagsoup text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scalpel-core" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, fail - , regex-base, regex-tdfa, stdenv, tagsoup, text, vector - }: - mkDerivation { - pname = "scalpel-core"; - version = "0.5.1"; - sha256 = "8c05b86853b737fbed4144dc9c7bbb7743525c305f9529f59776df97bfe229a9"; - libraryHaskellDepends = [ - base bytestring containers data-default fail regex-base regex-tdfa - tagsoup text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.2"; - sha256 = "3a020d68a0372a5211c72e55eeb299738ea608d17184bc68f74d31ebe667a5e9"; - revision = "1"; - editedCabalFile = "1mf7sia243x1cf23kxsrq3qrlrabrs2j8pk8y9m9pq5rg4kvvdq7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.1"; - sha256 = "1cd2452c5bca3ae602525a9f60f38d64542d3638cb56298150e2863d48778df5"; - revision = "3"; - editedCabalFile = "1m3gkdc74cmxdb8agnjwdkxvlqnawxhwzgs6a9x8ry3dph9crqgs"; - configureFlags = [ "-f-hpc-coveralls" ]; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.4.0.1"; - sha256 = "9a898d0acd6d7a4f341b3127d2c44e64b577e1128bc0b4d93a17ac510cb5644d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.4+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "search-algorithms" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "search-algorithms"; - version = "0.3.0"; - sha256 = "4a9d03c97abfd83fae582e4c3425a105b8649b8e69a2c1e170dbbabd8820db10"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/devonhollowood/search-algorithms#readme"; - description = "Common graph search algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, exceptions, hashable, mtl - , psqueues, stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "selda"; - version = "0.2.0.0"; - sha256 = "d226aff054c80864ffab2b50898a6109d0d8adeaee42f06074d4831a1a692ad1"; - revision = "1"; - editedCabalFile = "13iq6f81g5xicc2bb2xxxdhmbh5lkspcmq4bjcszp481z9v4kw3x"; - libraryHaskellDepends = [ - base bytestring exceptions hashable mtl psqueues text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-postgresql" = callPackage - ({ mkDerivation, base, bytestring, exceptions, postgresql-libpq - , selda, stdenv, text - }: - mkDerivation { - pname = "selda-postgresql"; - version = "0.1.7.2"; - sha256 = "ff781255b5faa9e9197fd3d298e8e11f81c13a0f01d072c72028003563fee51b"; - revision = "1"; - editedCabalFile = "08f2xdfpmbwhrwkjaqfmd9k25c3xn3p477d7a1mnnn7kf7328782"; - libraryHaskellDepends = [ - base bytestring exceptions postgresql-libpq selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "PostgreSQL backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-sqlite" = callPackage - ({ mkDerivation, base, direct-sqlite, directory, exceptions, selda - , stdenv, text - }: - mkDerivation { - pname = "selda-sqlite"; - version = "0.1.6.0"; - sha256 = "c67ba89114a82ece42b7e478bcf480ae0241cefb41e2e9b340a268f9f08be390"; - revision = "2"; - editedCabalFile = "198pg9i0lfx3fwf7b7cw0x5kial6vbf0dqwh18jnh7na3pyn1jr6"; - libraryHaskellDepends = [ - base direct-sqlite directory exceptions selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "SQLite backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, semigroups, stdenv, tagged, template-haskell - , transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.2.2"; - sha256 = "e4def54834cda65ac1e74e6f12a435410e19c1348e820434a30c491c8937299e"; - revision = "4"; - editedCabalFile = "0pqfrxzypjq6z8lgdkzq4vhcyqkpk5326hny0r6snpc3gm78r4ij"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable semigroups tagged template-haskell - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.4"; - sha256 = "589e3042329a6bcffb5c0e85834143586db22eb7a2aae094d492cd004f685d27"; - revision = "1"; - editedCabalFile = "1h1p88ygd6jn57fky75727cplg8f21lvf78avpfrxr36czh255j9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, stdenv, text }: - mkDerivation { - pname = "semver"; - version = "0.3.3.1"; - sha256 = "36d3369706836d60f3bc517f30c6860734481866363723904b8768823b6bc8b1"; - libraryHaskellDepends = [ attoparsec base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.9"; - sha256 = "102fdf6db8c00f5a5981c6eed5acba1368a2d79b2970ce5b22ceb180aa0fdc42"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , Cabal, cabal-doctest, case-insensitive, http-api-data, http-media - , http-types, mmorph, mtl, natural-transformation, network-uri - , singleton-bool, stdenv, string-conversions, tagged, text, vault - }: - mkDerivation { - pname = "servant"; - version = "0.13.0.1"; - sha256 = "a74b9448a4f994466e5636e702eca65386a415f581441b8d9cd8870f5bbfde6d"; - revision = "1"; - editedCabalFile = "0c5j8y6x9andar2zlqr2z4b8j1m3ss5qd4shias4z86mssmfgxp6"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bytestring case-insensitive - http-api-data http-media http-types mmorph mtl - natural-transformation network-uri singleton-bool - string-conversions tagged text vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.8"; - sha256 = "46ea88550123d765b2d09073370d0530a51878e7fdf2cf20b070be1f2f10ae94"; - revision = "2"; - editedCabalFile = "1cfla60vn4kk5gb7fawlp34jr2k6b2fprysq05561wdfv990x4bj"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , containers, exceptions, http-client, http-client-tls, http-media - , http-types, monad-control, mtl, semigroupoids - , servant-client-core, stdenv, stm, text, time, transformers - , transformers-base, transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.13.0.1"; - sha256 = "089f36ff31c1093d7a20b807dc4e2855c3ec25fee6a71b02f28b665546d01888"; - revision = "2"; - editedCabalFile = "1pi7nvgylx4qvzswc31slyr2zj09hgajkac7f6lw66ba3h9rhmd5"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bytestring containers exceptions - http-client http-client-tls http-media http-types monad-control mtl - semigroupoids servant-client-core stm text time transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "automatical derivation of querying functions for servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, base, base-compat, base64-bytestring, bytestring - , containers, exceptions, generics-sop, http-api-data, http-media - , http-types, mtl, network-uri, safe, servant, stdenv, text - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.13.0.1"; - sha256 = "e0e8b6acbb37eed0a5ee1e289e32ef58c60098f77dd49cbc92df0295cba2253b"; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - generics-sop http-api-data http-media http-types mtl network-uri - safe servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, control-monad-omega, hashable, http-media - , http-types, lens, servant, stdenv, string-conversions, text - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.2"; - sha256 = "6b280a8d97d295933f5b4a5442b0c54567299bcc8dd62b7c2890864af7ddd4f4"; - revision = "6"; - editedCabalFile = "0w9yi4rmfq4irmnia9rl9pb66ix086ic9nd0grspnk54ib7970cl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - control-monad-omega hashable http-media http-types lens servant - string-conversions text unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-exceptions" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-media, http-types - , mtl, servant, servant-server, stdenv, text, wai, warp - }: - mkDerivation { - pname = "servant-exceptions"; - version = "0.1.1"; - sha256 = "652b9fdc463200ebb8c2b2e0757f9d90662408bf45a657b3f719d0a36d34abe1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base exceptions http-media http-types mtl servant - servant-server text wai - ]; - executableHaskellDepends = [ - aeson base exceptions http-types servant-server text warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ch1bo/servant-exceptions#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.11.1"; - sha256 = "659cb1033b022869bb5b725cfbb82c02ab0424ca9130e4aeb2fb6bb2d0489805"; - revision = "4"; - editedCabalFile = "1alal6ps1lwl8yd2vwkpmkn4a69blr1ws2cba7mc7a2w63lg1pyz"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-github-webhook" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, github, github-webhooks, http-types, memory, servant - , servant-server, stdenv, string-conversions, text, transformers - , unordered-containers, wai - }: - mkDerivation { - pname = "servant-github-webhook"; - version = "0.4.1.0"; - sha256 = "8bbe9bfe7b7f256fd3e40bcbf36ab9a11ba68aadacac85f5e8a850c8f569cf6c"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite github - github-webhooks http-types memory servant servant-server - string-conversions text transformers unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tsani/servant-github-webhook"; - description = "Servant combinators to facilitate writing GitHub webhooks"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-kotlin" = callPackage - ({ mkDerivation, base, containers, directory, formatting, lens - , servant, servant-foreign, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "servant-kotlin"; - version = "0.1.1.1"; - sha256 = "3e0f85859dc1da4bbeb81974984beecb744fa1c76d355fd7a3b45832e135edea"; - libraryHaskellDepends = [ - base containers directory formatting lens servant servant-foreign - text time wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/servant-kotlin#readme"; - description = "Automatically derive Kotlin class to query servant webservices"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv }: - mkDerivation { - pname = "servant-lucid"; - version = "0.8"; - sha256 = "25bae7330fd3e089553e12a006930c65e46f5b6b9d98b6d9a0e29850ac81706e"; - libraryHaskellDepends = [ base http-media lucid servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.4"; - sha256 = "d9d6392461f57324208e3a227c88e81da35686a38d5d1f783afc673a0c77059c"; - revision = "3"; - editedCabalFile = "13sbgnzr0yfrbrbvzc6v66lxrgvg3pb7h9alvmg77kmm95gmx8mm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pandoc" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-media - , lens, pandoc-types, servant-docs, stdenv, string-conversions - , text, unordered-containers - }: - mkDerivation { - pname = "servant-pandoc"; - version = "0.5.0.0"; - sha256 = "12d709fced47bb3e017b83dcc5dafb1186720e5318c1b5ebeb886d4439540463"; - libraryHaskellDepends = [ - base bytestring case-insensitive http-media lens pandoc-types - servant-docs string-conversions text unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Use Pandoc to render servant API documentation"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-ruby" = callPackage - ({ mkDerivation, base, casing, lens, servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-ruby"; - version = "0.7.0.0"; - sha256 = "a95a15974fa91850ac938f65f7497927037b54307f2f34daf38b6a5c758f6964"; - libraryHaskellDepends = [ base casing lens servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joneshf/servant-ruby#readme"; - description = "Generate a Ruby client from a Servant API with Net::HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , base64-bytestring, bytestring, Cabal, cabal-doctest, containers - , exceptions, filepath, http-api-data, http-media, http-types - , monad-control, mtl, network, network-uri, resourcet, safe - , servant, split, stdenv, string-conversions, system-filepath - , tagged, text, transformers, transformers-base - , transformers-compat, wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.13.0.1"; - sha256 = "352b724274cbdfee8d8e7b340920eecf9197d5f6c454bb5137099b263e6eef39"; - revision = "2"; - editedCabalFile = "16bllcaqpcj6i53vl1sas1f6m85i6ah7qcn5mh8x515qmfzngisp"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat base64-bytestring bytestring - containers exceptions filepath http-api-data http-media http-types - monad-control mtl network network-uri resourcet safe servant split - string-conversions system-filepath tagged text transformers - transformers-base transformers-compat wai wai-app-static warp word8 - ]; - executableHaskellDepends = [ aeson base servant text wai warp ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.0.1"; - sha256 = "748c654130ac32124303bd111d80d5bf88873b9bb46a53da1c86462611d4e3da"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, stm, text, time, transformers, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-subscriber"; - version = "0.6.0.1"; - sha256 = "3da1856b47c03ffa1d1c107267e7f18ef5207e6bb2d104788f60b14f01ac7839"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/eskimor/servant-subscriber#readme"; - description = "When REST is not enough ..."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, cabal-doctest - , hspec, http-media, insert-ordered-containers, lens, QuickCheck - , servant, singleton-bool, stdenv, swagger2, text - , unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.5"; - sha256 = "4f7a442bccf2df8a9980129d83bbcd3e73cfec374919ecb8389709c5df0ca50a"; - revision = "5"; - editedCabalFile = "1c160wf4q0jyjg03w7hkwkbz0aprvmvzpwa5m944msik2kbvnyl5"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson base bytestring hspec http-media insert-ordered-containers - lens QuickCheck servant singleton-bool swagger2 text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate Swagger specification for your servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.0.3.13.2"; - sha256 = "b6dcb349d845e5a4fa357cb358f44814f30ba23129abd64cb41bda959e629352"; - revision = "2"; - editedCabalFile = "0sz08w56f7p74saass6xdzmbpyk78hpa9d79kkd2nclwinajpkgr"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3"; - sha256 = "2df7a2dea140efe5fa1b2052fa549a680d2b38d4c0e28068c9eda0d3132625ca"; - revision = "1"; - editedCabalFile = "1dh2ra39x2syzg4lw1cklr7hgr52gp72f4iy5zw4zwgy27hbq48v"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-tracing" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, bytestring-lexing - , containers, hashable, http-api-data, http-client, lifted-base - , monad-control, mtl, random, servant, servant-server, stdenv, text - , time, transformers, unordered-containers, wai, warp - }: - mkDerivation { - pname = "servant-tracing"; - version = "0.1.0.2"; - sha256 = "3edf2e58c60b6624a81c57bbc606889d779ba0cc57fc785240cb353f9caaea62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring bytestring-lexing containers hashable - http-api-data http-client lifted-base monad-control mtl random - servant servant-server text time unordered-containers wai - ]; - executableHaskellDepends = [ - async base bytestring containers http-client lifted-base - monad-control mtl servant servant-server text transformers wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/haskell-opentracing-light#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-websockets" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, conduit - , exceptions, resourcet, servant-server, stdenv, text, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-websockets"; - version = "1.1.0"; - sha256 = "63384c89db83bd03e00f2f6796c391fc133ffb3c2bc72976778d476ed82f0a51"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring conduit exceptions resourcet - servant-server text wai wai-websockets warp websockets - ]; - executableHaskellDepends = [ - aeson base conduit servant-server text wai warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/moesenle/servant-websockets#readme"; - description = "Small library providing WebSocket endpoints for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.0"; - sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "22"; - editedCabalFile = "1mi52j2c7960k0qmxqd7238yxgbccb0xgfj3ahh0zfckficn9bk7"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "servius" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , http-types, markdown, shakespeare, stdenv, text, wai - , wai-app-static - }: - mkDerivation { - pname = "servius"; - version = "1.2.0.3"; - sha256 = "47621f01e55cf4e69aeea80104a8a99e87c3a9ad13a5f144da7acd38370563f0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base blaze-builder blaze-html bytestring http-types markdown - shakespeare text wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/servius#readme"; - description = "Warp web server with template rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "ses-html" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, byteable - , bytestring, cryptohash, HsOpenSSL, http-streams, stdenv, tagsoup - , time - }: - mkDerivation { - pname = "ses-html"; - version = "0.4.0.0"; - sha256 = "cff76ee03b538e69a3d107cd63d577210cf0f9879d470bf55519e887e2a8a08f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html byteable bytestring cryptohash - HsOpenSSL http-streams tagsoup time - ]; - doHaddock = false; - doCheck = false; - description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "set-cover" = callPackage - ({ mkDerivation, base, containers, enummapset, psqueues, semigroups - , stdenv, utility-ht - }: - mkDerivation { - pname = "set-cover"; - version = "0.0.9"; - sha256 = "afebfd20c00ff68cd99c7e457d15542003228a56d98af63565549a77852f73e1"; - revision = "2"; - editedCabalFile = "1jpg9iyq0mymdbq392nfmicwfmcmq5mg688ndmhvjx08ljdl54ha"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers enummapset psqueues semigroups utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/set-cover/"; - description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.6"; - sha256 = "587af63153c1f3642de2c2f526b3a3c82c46ece3bd09ffd96a0eedbfd1c288e6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/IchUndNichtDu/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sexp-grammar" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, happy - , mtl, prettyprinter, profunctors, scientific, semigroups, split - , stdenv, tagged, template-haskell, text, transformers - }: - mkDerivation { - pname = "sexp-grammar"; - version = "1.3.0"; - sha256 = "a3038c9c8b4fa0f3d4f71cd60b8e1b12bc73eb5594fa5032c7c0bbea6b4e2b41"; - libraryHaskellDepends = [ - array base bytestring containers mtl prettyprinter profunctors - scientific semigroups split tagged template-haskell text - transformers - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/sexp-grammar"; - description = "Invertible parsers for S-expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, filepath, hashable, js-flot, js-jquery, primitive, process - , random, stdenv, time, transformers, unix, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.16.4"; - sha256 = "b732a3a46ceb3b4545a78c3733e0a7904763e7cd3ee8bf4fe2e1e91f2c9b1436"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath hashable - js-flot js-jquery primitive process random time transformers unix - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra filepath hashable - js-flot js-jquery primitive process random time transformers unix - unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake-language-c" = callPackage - ({ mkDerivation, base, data-default-class, fclabels, process, shake - , split, stdenv, unordered-containers - }: - mkDerivation { - pname = "shake-language-c"; - version = "0.12.0"; - sha256 = "661e350179e55c930c3c36f53853db2bc2697d88c5265049085cea09f5aa1ab0"; - libraryHaskellDepends = [ - base data-default-class fclabels process shake split - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/samplecount/shake-language-c"; - description = "Utilities for cross-compiling with Shake"; - license = stdenv.lib.licenses.asl20; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.15"; - sha256 = "4354c6eebbfa89103c8090aae3bc7be5fceae6a0e327acf8adc4f3fd535864ee"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, lifted-async, lifted-base - , monad-control, mtl, process, stdenv, system-fileio - , system-filepath, text, time, transformers, transformers-base - , unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.8.0"; - sha256 = "737f51e5f4d98d72012d905d3f2b78b620c5c15292bb77e38264fa4478bb08f8"; - revision = "1"; - editedCabalFile = "17achybammxg5i7zcmwlfcb7xk77q3lfvck3gqa9ljfb6ksgrxb7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions lifted-async lifted-base monad-control mtl process - system-fileio system-filepath text time transformers - transformers-base unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shortcut-links" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "shortcut-links"; - version = "0.4.2.0"; - sha256 = "1e6b75c5e94fddf9e2e665821ac70f5083e5d40d1fd55813e94943ce02335027"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/shortcut-links"; - description = "Link shortcuts for use in text markup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.0.0"; - sha256 = "22c45747c79055b5310c1da2af717bffded65ea39479c61783f8c1a22e953086"; - revision = "2"; - editedCabalFile = "003ry21snn1b9ip5c1z62hzdy24ckbbb5zf637nxcf9qj07z2xsz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "show-prettyprint" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, prettyprinter, stdenv - , trifecta - }: - mkDerivation { - pname = "show-prettyprint"; - version = "0.2.0.2"; - sha256 = "6f0623aeab81e6c369400ac19d9b7afc0a3fd8e390148d4db53920603154d3ea"; - libraryHaskellDepends = [ - ansi-wl-pprint base prettyprinter trifecta - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/show-prettyprint#readme"; - description = "Robust prettyprinter for output of auto-generated Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5"; - sha256 = "cef625635053a46032ca53b43d311921875a437910b6568ded17027fdca83839"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.30"; - sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.4.0.6"; - sha256 = "e197ed73610edb43cd9a509da3bec06db1fded265fa6e1519d5e45ac7b815cc6"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simplest-sqlite" = callPackage - ({ mkDerivation, base, bytestring, exception-hierarchy, sqlite - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "simplest-sqlite"; - version = "0.1.0.0"; - sha256 = "5f0bdee8a4ba2b5dea03ff8ecfc91827602624a91d62eb2b4ce90b4d57005d6e"; - libraryHaskellDepends = [ - base bytestring exception-hierarchy template-haskell text - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "comming soon"; - description = "Simplest SQLite3 binding"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sqlite;}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.4"; - sha256 = "0195c6e2be1e149e5b687ec3be84fd5089b377345fddd333a9d681eacdfafb2a"; - revision = "1"; - editedCabalFile = "0ccd49z9xwa8gr8sclmmn0zc4xq39yyjws4zr6lrw3xjql130nsx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.1"; - sha256 = "5a5328dd7b33bebbb90d19ef5db273798603da7194ddfc790ee397011f3e68b9"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, mtl, stdenv, syb - , template-haskell, text, th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.4.1"; - sha256 = "5d7a200c814a5f1ac16db04456fdafbdea39fc0ee6c934a9ef7bcd2d6da2f9cf"; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "size-based" = callPackage - ({ mkDerivation, base, dictionary-sharing, stdenv, template-haskell - , testing-type-modifiers - }: - mkDerivation { - pname = "size-based"; - version = "0.1.1.0"; - sha256 = "71f66046e46c8754b9f7ae1ef63b2d85aa62a1fe6901bd1ef18691d11b1edcfc"; - revision = "1"; - editedCabalFile = "1rw9ddw1vyv9k47p0d79qbvngym005fmz00hqrg3p1rq2vlfjdv2"; - libraryHaskellDepends = [ - base dictionary-sharing template-haskell testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - description = "Sized functors, for size-based enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, skylighting-core, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "skylighting"; - version = "0.7.1"; - sha256 = "c0bcd4f0075c77226052ab9a04f90ff8d2f2c8e97e5083d9e65843635bb0f574"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe skylighting-core text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, stdenv, text, transformers - , utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.7.1"; - sha256 = "4ffe223554db53cedfce5af92a7f22a907904c40bf498777dfdfe3c5ccd8723e"; - revision = "1"; - editedCabalFile = "08whksvbzc7fgfjnln0x2nsc9qll7ynjdm34c10vf0g6nbla77wz"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe text transformers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slack-web" = callPackage - ({ mkDerivation, aeson, base, containers, errors, http-api-data - , http-client, http-client-tls, megaparsec, mtl, servant - , servant-client, servant-client-core, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "slack-web"; - version = "0.2.0.4"; - sha256 = "5005546ff149b47d7fff2cced57b26ae3fafa8e657ccc3eb8e69540cb5f978f1"; - libraryHaskellDepends = [ - aeson base containers errors http-api-data http-client - http-client-tls megaparsec mtl servant servant-client - servant-client-core text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jpvillaisaza/slack-web"; - description = "Bindings for the Slack web API"; - license = stdenv.lib.licenses.mit; - }) {}; - "slave-thread" = callPackage - ({ mkDerivation, base, base-prelude, list-t, mmorph - , partial-handler, stdenv, stm-containers, transformers - }: - mkDerivation { - pname = "slave-thread"; - version = "1.0.2"; - sha256 = "e47120598dd65ebee33253911a31518021323a5ccfa52588e13c44fd5f5b4b13"; - libraryHaskellDepends = [ - base base-prelude list-t mmorph partial-handler stm-containers - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/slave-thread"; - description = "A principal solution to ghost threads and silent exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "slug" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-api-data - , path-pieces, persistent, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "slug"; - version = "0.1.7"; - sha256 = "d76f8243fd8b45d02c0731962ceddcd96154473d6f7c5cbf36ab921bc5627dde"; - revision = "4"; - editedCabalFile = "18h2wl2a3bb9094yq9dp6sjschb75ki4zlp1vrfzkpsrwb4v3ndr"; - libraryHaskellDepends = [ - aeson base exceptions http-api-data path-pieces persistent - QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/slug"; - description = "Type-safe slugs for Yesod ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.4"; - sha256 = "de04b220ca156162b9e7e45f963f71bb26fd1a2e35ec8375651b82ae5d4e5774"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.8"; - sha256 = "5a548155da88816b73ea92b32ee9eaee2ed7c3a755d5fe98fbe364f19ecfc03b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smtp-mail" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , bytestring, cryptohash, filepath, mime-mail, network, stdenv - , text - }: - mkDerivation { - pname = "smtp-mail"; - version = "0.1.4.6"; - sha256 = "86dacbef87a2519222a1165b49401a437887a249f5bfd63a99702198dad214bc"; - revision = "1"; - editedCabalFile = "1lvzami2vzrkgz5na71k1yi7346xdarxm0sbi6alq3wbpj1raakq"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring bytestring - cryptohash filepath mime-mail network text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jhickner/smtp-mail"; - description = "Simple email sending via SMTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-blaze" = callPackage - ({ mkDerivation, base, blaze-html, snap-core, stdenv }: - mkDerivation { - pname = "snap-blaze"; - version = "0.2.1.5"; - sha256 = "b36e35bd4ba3087b3de92702e488ba6570675719243b5dbdf4eae0b819988841"; - libraryHaskellDepends = [ base blaze-html snap-core ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/snap-blaze"; - description = "blaze-html integration for Snap"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-core" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , case-insensitive, containers, directory, filepath, hashable - , HUnit, io-streams, lifted-base, monad-control, mtl, network - , network-uri, old-locale, random, readable, regex-posix, stdenv - , text, time, transformers, transformers-base, unix-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "snap-core"; - version = "1.0.3.2"; - sha256 = "4c4398476fe882122ce8adc03f69509588d071fc011f50162cd69706093dd88c"; - revision = "3"; - editedCabalFile = "0wlhn33r7c9g7j23y006ddq9d87lkmianvvfrbl8jd8mvjvj2gfa"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder case-insensitive - containers directory filepath hashable HUnit io-streams lifted-base - monad-control mtl network network-uri old-locale random readable - regex-posix text time transformers transformers-base unix-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "Snap: A Haskell Web Framework (core interfaces and types)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-server" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , bytestring-builder, case-insensitive, clock, containers, filepath - , HsOpenSSL, io-streams, io-streams-haproxy, lifted-base, mtl - , network, old-locale, openssl-streams, snap-core, stdenv, text - , time, unix, unix-compat, vector - }: - mkDerivation { - pname = "snap-server"; - version = "1.1.0.0"; - sha256 = "249ea390a4e54899b310c0dd13b91af007a2b685bd0d9769c3e208dd914d7c6f"; - revision = "3"; - editedCabalFile = "0a9d3nqb5rvgm25nak68lp6yj9m6cwhbgdbg5l7ib5i2czcg7yjh"; - configureFlags = [ "-fopenssl" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring bytestring-builder - case-insensitive clock containers filepath HsOpenSSL io-streams - io-streams-haproxy lifted-base mtl network old-locale - openssl-streams snap-core text time unix unix-compat vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "A web server for the Snap Framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snappy" = callPackage - ({ mkDerivation, base, bytestring, snappy, stdenv }: - mkDerivation { - pname = "snappy"; - version = "0.2.0.2"; - sha256 = "0565df326a87c6ea67f8fb638e01acb0562cabd16a67fc6f9ea9cd191de8cd91"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ snappy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/snappy"; - description = "Bindings to the Google Snappy library for fast compression/decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) snappy;}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-openssl" = callPackage - ({ mkDerivation, base, configurator, data-default, HsOpenSSL - , http-client, http-client-openssl, soap, stdenv, text - }: - mkDerivation { - pname = "soap-openssl"; - version = "0.1.0.2"; - sha256 = "2008547f4fd22063479ce1cd1c483db926f5f08a2ff6fb0c60fb2f0f7d42830f"; - revision = "1"; - editedCabalFile = "1b3aivn9jfaax00id7x4cqvpmd6lgynslchlry0qsmq1lj466cdf"; - libraryHaskellDepends = [ - base configurator data-default HsOpenSSL http-client - http-client-openssl soap text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using openssl bindings)"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socket-activation" = callPackage - ({ mkDerivation, base, network, stdenv, transformers, unix }: - mkDerivation { - pname = "socket-activation"; - version = "0.1.0.2"; - sha256 = "b99e7b4f296cd462aac84e5bb61fb02953e2080d1351e9e10a63d35dc34eb43b"; - revision = "1"; - editedCabalFile = "0bvm8ik8fp0v5gjw6q4h767zgs1i4ydckdypvqa85sarc985hkmp"; - libraryHaskellDepends = [ base network transformers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddfisher/haskell-socket-activation"; - description = "systemd socket activation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, basement, bytestring, cereal, network - , stdenv - }: - mkDerivation { - pname = "socks"; - version = "0.6.1"; - sha256 = "734447558bb061ce768f53a0df1f2401902c6bee396cc96ce627edd986ef6a73"; - libraryHaskellDepends = [ - base basement bytestring cereal network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3"; - sha256 = "6075a191c7715cc27be60a21d5fcdfcbcfb54eb659b5d86ce6a8c89d24abad90"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, containers, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3"; - sha256 = "18b555beb0eaafce25550feea23575ec68477728654bd2fbaad67d448f5dcd8b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, leancheck, stdenv }: - mkDerivation { - pname = "speculate"; - version = "0.3.2"; - sha256 = "d34d66e5487698e1a80b5fbd7d8439a1102cee0a51383ab30cd257078308c831"; - libraryHaskellDepends = [ base cmdargs containers leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speculation" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, stm, transformers }: - mkDerivation { - pname = "speculation"; - version = "1.5.0.3"; - sha256 = "73bf641a87e0d28a2ba233922db936e0776c3dc24ed421f6f963f015e2eb4d3f"; - libraryHaskellDepends = [ base ghc-prim stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/speculation"; - description = "A framework for safe, programmable, speculative parallelism"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "sphinx" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , network, stdenv, text, text-icu, xml - }: - mkDerivation { - pname = "sphinx"; - version = "0.6.0.2"; - sha256 = "76a977c6ce6e71c220bd5fed7acd0be500c2a1b5c8d081a29564a8e37ba7a6df"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 network text text-icu - xml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/haskell-sphinx-client"; - description = "Haskell bindings to the Sphinx full-text searching daemon"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.1"; - sha256 = "2a6c8003a941640ceab9dc358aadf69e08800e2cb10a267422e4436fe1e8772f"; - revision = "1"; - editedCabalFile = "0c38sajdpqcmicdh4lfy6vpg8wnzpiyamvbximdsqs605frs3mqs"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.7"; - sha256 = "840a66ccbfa0f08851e292e0b6a3f1de652f62d66d9b17e83b69153597d81ba0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.1"; - sha256 = "638bbe0024e84b8d48d53f2debfd117382dc629fc79cac414d86d0cd16c1f91e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual - , bytestring, containers, direct-sqlite, Only, semigroups, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "sqlite-simple"; - version = "0.4.15.0"; - sha256 = "c071ed0c6d440f1ccb97db83de950b4c5c66172482829ba8df4a7a87f36f69e2"; - revision = "1"; - editedCabalFile = "13ya3cr2nmz1b9j05r2kjssv9pgrmg7d00nvjpa3dslg978z2xci"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-textual bytestring containers - direct-sqlite Only semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nurpax/sqlite-simple"; - description = "Mid-Level SQLite client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple-errors" = callPackage - ({ mkDerivation, base, parsec, sqlite-simple, stdenv, text }: - mkDerivation { - pname = "sqlite-simple-errors"; - version = "0.6.1.0"; - sha256 = "5101f84a6d74d658398cc4ef557ad3c6158d53e9c948301cc47ed0cc3eaa716f"; - libraryHaskellDepends = [ base parsec sqlite-simple text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/sqlite-simple-errors"; - description = "Wrapper around errors from sqlite-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "1.2.1"; - sha256 = "6bfbdd2755c606f7b146243db1eefc2f49c720264ba9072a9d170a1bbdbc113b"; - revision = "8"; - editedCabalFile = "0jz9cg3w71nvxc4y6hrwjayxl2291q5xm5r4qrhz1ag1lvzk26yn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stack" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, async - , attoparsec, base, base64-bytestring, bindings-uname, bytestring - , Cabal, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, deepseq, directory, echo, exceptions, extra - , file-embed, filelock, filepath, fsnotify, generic-deriving - , hackage-security, hashable, hpack, hpc, http-client - , http-client-tls, http-conduit, http-types, memory, microlens - , mintty, monad-logger, mono-traversable, mtl, mustache - , neat-interpolation, network-uri, open-browser - , optparse-applicative, path, path-io, persistent - , persistent-sqlite, persistent-template, pretty, primitive - , process, project-template, regex-applicative-text, resourcet - , retry, rio, semigroups, split, stdenv, stm, store, store-core - , streaming-commons, tar, template-haskell, temporary, text - , text-metrics, th-reify-many, time, tls, transformers - , typed-process, unicode-transforms, unix, unix-compat, unliftio - , unordered-containers, vector, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "stack"; - version = "1.7.1"; - sha256 = "19c4f2e02975bb797a339cfe2893c9e1f40241a910da45be34c5c2f05d62329f"; - revision = "10"; - editedCabalFile = "1985lm9m6pm9mi4h4m2nrn9v2rnnfh14slcnqgyxy6k934xqvg35"; - configureFlags = [ - "-fdisable-git-info" "-fhide-dependency-versions" - "-fsupported-build" - ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath ]; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - executableHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - preCheck = "export HOME=$TMPDIR"; - postInstall = '' - exe=$out/bin/stack - mkdir -p $out/share/bash-completion/completions - $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack - ''; - homepage = "http://haskellstack.org"; - description = "The Haskell Tool Stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.2.1"; - sha256 = "60fe0204eae18276a6652a2e5ffaf35c52d6660857c7b63c510425f6bccdf0d1"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "state-codes" = callPackage - ({ mkDerivation, aeson, base, shakespeare, stdenv, text }: - mkDerivation { - pname = "state-codes"; - version = "0.1.3"; - sha256 = "1667dc977607fc89a0ca736294b2f0a19608fbe861f03f404c3f8ee91fd0f4a1"; - libraryHaskellDepends = [ aeson base shakespeare text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acamino/state-codes#README"; - description = "ISO 3166-2:US state codes and i18n names"; - license = stdenv.lib.licenses.mit; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statestack" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "statestack"; - version = "0.2.0.5"; - sha256 = "f4eadcf9b08c14cb084436f81e16edf78d6eeda77a3f93e38ba5d7e263ea5f66"; - revision = "3"; - editedCabalFile = "0s9v88gcc5wnfj4c6xq86asadmh4y8z8ycv2wz5nwfwfazfgzcy3"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simple State-like monad transformer with saveable and restorable state"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - , vector - }: - mkDerivation { - pname = "static-text"; - version = "0.2.0.1"; - sha256 = "ed5d12d1bc9d6c91241007278746be07fcdcf30babc4d0705a2253b646499229"; - libraryHaskellDepends = [ - base bytestring template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/static-text#readme"; - description = "Lists, Texts, ByteStrings and Vectors of statically known length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, base, base-orphans, binary, deepseq, erf - , math-functions, monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.14.0.2"; - sha256 = "3495df2da42c9fcc5b594b97f16c02353bfd6616d6e134ac031dac389d7a4778"; - revision = "2"; - editedCabalFile = "1bx70yqkn62ii17fjv3pig4hklrzkqd09zj67zzjiyjzmn04fir3"; - libraryHaskellDepends = [ - aeson base base-orphans binary deepseq erf math-functions monad-par - mwc-random primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.2"; - sha256 = "3bf41af8950ecf0ac5645634fdd233f941a904c6c56222ff4efb03f5d17043e8"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "stm"; - version = "2.4.5.0"; - sha256 = "31d7db183f13beed5c71409d12747a7f4cf3e145630553dc86336208540859a7"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Software_transactional_memory"; - description = "Software Transactional Memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.0"; - sha256 = "ffe46c8848f002b016c86f76155b4523b2af35b2c027847afe0edb6325bd4a5d"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-containers" = callPackage - ({ mkDerivation, base, base-prelude, focus, hashable, list-t - , primitive, stdenv, transformers - }: - mkDerivation { - pname = "stm-containers"; - version = "0.2.16"; - sha256 = "69042f06647cdc69e1ecf83863d88d67acd377f631d8a15966df67245152502f"; - libraryHaskellDepends = [ - base base-prelude focus hashable list-t primitive transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-containers"; - description = "Containers for STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2"; - sha256 = "3c06a43889acc02425b7a5299f71de86ebba6245a92a507db976dc7256713807"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-stats" = callPackage - ({ mkDerivation, base, containers, stdenv, stm, template-haskell - , time - }: - mkDerivation { - pname = "stm-stats"; - version = "0.2.0.0"; - sha256 = "0a4f39b1e9fffe50d6dfaa9c0b04977e510fae8b6bd3d7abb7076e8aa8f01345"; - libraryHaskellDepends = [ - base containers stm template-haskell time - ]; - doHaddock = false; - doCheck = false; - description = "retry statistics for STM transactions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.5"; - sha256 = "461ed69edf8d68cdadd8d0c6159e9c2fef71d1a440c6feded0b07c77d9113461"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.2"; - sha256 = "ab076f15c47a2a324a2119c8feee0a78e1d2af488d0d24b7113b4bb7eee47c06"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-endian" = callPackage - ({ mkDerivation, base, byteorder, stdenv }: - mkDerivation { - pname = "storable-endian"; - version = "0.2.6"; - sha256 = "3743ac8f084ed3187b83f17b4fac280e77c5df01f7910f42b6a1bf09d5a65489"; - revision = "1"; - editedCabalFile = "12f8sscsvsarlwz3p6kk9vbvqsbyhs8lhafgn9h7c0z6pz1amrya"; - libraryHaskellDepends = [ base byteorder ]; - doHaddock = false; - doCheck = false; - description = "Storable instances with endianness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "store" = callPackage - ({ mkDerivation, array, async, base, base-orphans - , base64-bytestring, bytestring, conduit, containers, contravariant - , cryptohash, deepseq, directory, filepath, free, ghc-prim - , hashable, hspec, hspec-smallcheck, integer-gmp, lifted-base - , monad-control, mono-traversable, network, primitive, resourcet - , safe, semigroups, smallcheck, stdenv, store-core - , streaming-commons, syb, template-haskell, text, th-lift - , th-lift-instances, th-orphans, th-reify-many, th-utilities, time - , transformers, unordered-containers, vector, void - }: - mkDerivation { - pname = "store"; - version = "0.4.3.2"; - sha256 = "eca47c14b14ce5a6369a4b09a048b5a7fe7574d3f1b1099bc03449416c80308e"; - libraryHaskellDepends = [ - array async base base-orphans base64-bytestring bytestring conduit - containers contravariant cryptohash deepseq directory filepath free - ghc-prim hashable hspec hspec-smallcheck integer-gmp lifted-base - monad-control mono-traversable network primitive resourcet safe - semigroups smallcheck store-core streaming-commons syb - template-haskell text th-lift th-lift-instances th-orphans - th-reify-many th-utilities time transformers unordered-containers - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "store-core" = callPackage - ({ mkDerivation, base, bytestring, fail, ghc-prim, primitive - , stdenv, text, transformers - }: - mkDerivation { - pname = "store-core"; - version = "0.4.1"; - sha256 = "145285f9f26a64e9611e01749a0d569691a70fa898f5359bedcfca9dacb064b4"; - revision = "2"; - editedCabalFile = "03khvapg98dmmn2njlrnwqa822361r900q5gijac46dg528fdkvx"; - libraryHaskellDepends = [ - base bytestring fail ghc-prim primitive text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast and lightweight binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.23.0"; - sha256 = "2e423caf6479daece806bf054e4c6f848c60628af5350aa3018d3aa059cfe25a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl - , semigroups, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.1.0"; - sha256 = "e11d5e38c4c350cc95180cb0cf80efc0a6051ee8dd17c54961b837112c135075"; - revision = "3"; - editedCabalFile = "1d6n49ra6ay8i55lk3iab04glf2q64yizqwzq6ixxg3gdk6d1pms"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl semigroups transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, streaming - , streaming-bytestring - }: - mkDerivation { - pname = "streaming-attoparsec"; - version = "1.0.0"; - sha256 = "ff28925269ed98f03ef10a482980030dd7c8ef4c05ef6e32d147db9331df6102"; - revision = "2"; - editedCabalFile = "07hqs8nn1rhsqckqmw46yp19kd0vk35q139al6yq0k1dzpvsrcsx"; - libraryHaskellDepends = [ - attoparsec base bytestring streaming streaming-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-attoparsec"; - description = "Attoparsec integration for the streaming ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-bytestring" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl - , resourcet, stdenv, streaming, transformers, transformers-base - }: - mkDerivation { - pname = "streaming-bytestring"; - version = "0.1.6"; - sha256 = "c1d723fc9676b85f62f9fc937d756af61d81f69c9c6591e5d38c9b09b7a253d3"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions mmorph mtl resourcet streaming - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-bytestring"; - description = "effectful byte steams, or: bytestring io done right"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.0.0"; - sha256 = "f4e2b8460325c133c83d04048e334fb502ba3627f41ffc85c05f81f1f38ace5f"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, containers, exceptions - , lifted-base, lockfree-queue, monad-control, mtl, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.2.0"; - sha256 = "0ecc56f00abef27d93dbe45e1f7fec5e68e08d9d94e04b9abc5dc2dfeaf67fed"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base containers exceptions lifted-base - lockfree-queue monad-control mtl stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streamproc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "streamproc"; - version = "1.6.2"; - sha256 = "e76effaaff83e6a066df949415db109b405bda0aaeb95f0710906c65892584f2"; - revision = "1"; - editedCabalFile = "19c51gks028x8mnywkx1nz0s6bwn2mxs5ddmaj2q8n9l5pvfkcgs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/streamproc"; - description = "Stream Processer Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.2"; - sha256 = "bf5ad5d14134b57908966322d6b4a07925569b1f351ffe47644233ac4183f86f"; - revision = "1"; - editedCabalFile = "12m1jbf01d4k7w1wiqcpdsbhlxi6ssbz9nx0ax2mrjjq2l0011ny"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, Cabal, process, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.2"; - sha256 = "9757cad387856a313729caffe0639215a10be7d72b09c44bcab9e55ee2a8c218"; - revision = "1"; - editedCabalFile = "1flc6mr1nnv8mx69cy1ilwk5gxsidcns82vjdg8dcs8z5axg95kp"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.0"; - sha256 = "4d7daffe1d58671af5111c7179905653d692884cac21f09061768a5a6354e6b8"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.1"; - sha256 = "df60ac419775ad96959338c7f14e93a3d47b82728234df206b0145d33694aa41"; - revision = "2"; - editedCabalFile = "1v9gmnj17cm4p491rizvw9xdj255lk1y24gz6s8bqcz56sdb4d4s"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stylish-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , file-embed, filepath, haskell-src-exts, mtl, optparse-applicative - , semigroups, stdenv, strict, syb, yaml - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.9.2.0"; - sha256 = "db9f10056a949ad361b5fe3c6fc189601eec2c0058ff2b705ebe68e043b5229b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl semigroups syb yaml - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl optparse-applicative strict syb yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jaspervdj/stylish-haskell"; - description = "Haskell code prettifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-builder" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hashable, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "svg-builder"; - version = "0.1.1"; - sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc"; - revision = "2"; - editedCabalFile = "100nmkgcm1ncv4mkr1xcsa7bb3z6zx0lfayk8innd4hm62xsvhj3"; - libraryHaskellDepends = [ - base blaze-builder bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diagrams/svg-builder.git"; - description = "DSL for building SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.2"; - sha256 = "3a6840993765dc235322c51c9de6adfe3b06e1fa6140ba9f57547c73d62e6ac7"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, bytestring - , Cabal, cabal-doctest, containers, generics-sop, hashable - , http-media, insert-ordered-containers, lens, mtl, network - , scientific, stdenv, template-haskell, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.2.2"; - sha256 = "82d352881041baaaa1ed63cc3262953df101dad5e401272dc62ee346b3ab6eca"; - revision = "3"; - editedCabalFile = "187jl8slpyr6blcxnhdp7wf85ab54pgqnbl11n816xg6fyqy7ylk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson base base-compat-batteries bytestring containers generics-sop - hashable http-media insert-ordered-containers lens mtl network - scientific template-haskell text time transformers - transformers-compat unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swish" = callPackage - ({ mkDerivation, base, containers, directory, filepath, hashable - , intern, mtl, network-uri, old-locale, polyparse, semigroups - , stdenv, text, time - }: - mkDerivation { - pname = "swish"; - version = "0.9.2.1"; - sha256 = "ef43bedf12c4f9c9b379a8aa00f339d9487769e4388a57ff108f16cb1f8c3f7f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers directory filepath hashable intern mtl network-uri - old-locale polyparse semigroups text time - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home"; - description = "A semantic web toolkit"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7"; - sha256 = "b8757dce5ab4045c49a0ae90407d575b87ee5523a7dd5dfa5c9d54fcceff42b5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.3"; - sha256 = "3175707cb322c65760fa2eb2ab17327f251c8294ad688efc6258e82328830491"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "syz" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "syz"; - version = "0.2.0.0"; - sha256 = "3e85801a83fa2a7e57093a7d0aa52f21cba07a0bd6d1ba82d2ddfb335249a3d4"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.indiana.edu/~adamsmd/papers/scrap_your_zippers/"; - description = "Scrap Your Zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1"; - sha256 = "122c975d73a6bcbe98b3352144ec249494fcd30b6ed23eff19acc562d7ee24c0"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "tagged"; - version = "0.8.5"; - sha256 = "e47c51c955ed77b0fa36897f652df990aa0a8c4eb278efaddcd604be00fc8d99"; - revision = "2"; - editedCabalFile = "0r2knfcq0b4s652vlvlnfwxlc2mkc2ra9kl8bp4zdn1awmfy0ia5"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.2"; - sha256 = "916dd7fdd15452f3d760c345e023ce99496806b813ab01b03ff1b240bbd50210"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.6"; - sha256 = "4b4ed4db1428e859389d628dd5755074f659a424ec49934ec53e44b0fc6a63fb"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagstream-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, conduit-extra, data-default, resourcet - , stdenv, text, transformers, xml-conduit - }: - mkDerivation { - pname = "tagstream-conduit"; - version = "0.5.5.3"; - sha256 = "b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring case-insensitive conduit - conduit-extra data-default resourcet text transformers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yihuang/tagstream-conduit"; - description = "streamlined html tag parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.0"; - sha256 = "c89d697b6472b739db50e61201251fcaf8a8f5b595b1d9a488d395d7d5ce4b68"; - revision = "1"; - editedCabalFile = "1lydbwsmccf2av0g61j07bx7r5mzbcfgwvmh0qwg3a91857x264x"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.2.3"; - sha256 = "579e7b4f452266d86f9385c6f388e3b96115140e56d426d6eb397f614cc142c7"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - }: - mkDerivation { - pname = "tasty"; - version = "1.0.1.1"; - sha256 = "1a920d41a58402ee93a4b060c3f2792a9b9a444a049ecc58a72d2d3eeadbeeb3"; - revision = "1"; - editedCabalFile = "1j1y85k73vg7sy6vc9jmqrc00zqs885hx8wpjbw9pf9paph3jp8c"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "1.2.0.2"; - sha256 = "25bf5aef6cfed20af0cfafbc867bbfdaf9c83e97b7dcb5d24322a15d5100bc90"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.0"; - sha256 = "06156cf0f2fe1daf1162f0f265782a37c602754fa7cdcda592d22a249e1e1aa7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lwm/tasty-discover#readme"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.1"; - sha256 = "519a5c0d2ef9dd60355479f11ca47423133364f20ad3151f3c8b105313405ac4"; - revision = "1"; - editedCabalFile = "1b3fn7d3zwhhwm3gp8cmmsdcrvn9dhshd665xrx1mk6cmy4m8k16"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.1.3"; - sha256 = "3718b9e6288653f022602afd3f380fe52b053ade2242f2fbecff0921ed4231f7"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-hedgehog"; - version = "0.2.0.0"; - sha256 = "5a107fc3094efc50663e4634331a296281318b38c9902969c2d2d215d754a182"; - revision = "6"; - editedCabalFile = "0d7s1474pvnyad6ilr5rvpama7s468ya9ns4ksbl0827z9vvga43"; - libraryHaskellDepends = [ base hedgehog tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/tasty-hedgehog"; - description = "Integration for tasty and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.4"; - sha256 = "e3ce0f18870a117e799c04709ace8c95455b2a87ec100083b3de62a01ecbc49d"; - revision = "2"; - editedCabalFile = "1ijz75l5jhyxjk6hjrhbsw4470dxfdnwdwn9q3akxbmk095hpzjl"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.1"; - sha256 = "8f903bef276ef503e4ef8b66a1e201c224588e426bc76f7581480f66d47b7048"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10"; - sha256 = "10fd30cef4a0c2cefb70afecef5adcee1f32f0fd287f108321458fbfd6d7266f"; - revision = "1"; - editedCabalFile = "1ndkkywcqgb2wj339vgckjv5915da5kd4ixlkaww9fsba3qsrnwx"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.11"; - sha256 = "5f2170cee1f3104d1e8d6937bb032b57ca712704500286aae5e7e8608cf073e7"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-stats" = callPackage - ({ mkDerivation, base, containers, directory, process, stdenv, stm - , tagged, tasty, time - }: - mkDerivation { - pname = "tasty-stats"; - version = "0.2.0.4"; - sha256 = "a64d018056c746efde87e830ff2e7bcd0b65b6582de96d493ca706ea0325447c"; - libraryHaskellDepends = [ - base containers directory process stm tagged tasty time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/tasty-stats#readme"; - description = "Collect statistics of your Tasty testsuite"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, io-streams - , network, pem, stdenv, tls, x509, x509-store, x509-system - }: - mkDerivation { - pname = "tcp-streams"; - version = "1.0.1.0"; - sha256 = "77d812e5db567875ca26c2682ceddf4bcf825d90dd10dcb171279bd7e96e4861"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class io-streams network pem tls x509 - x509-store x509-system - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "One stop solution for tcp client and server with tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system - , io-streams, network, stdenv, tcp-streams - }: - mkDerivation { - pname = "tcp-streams-openssl"; - version = "1.0.1.0"; - sha256 = "c3e7588ba7348fac87a9dcc531909f90bb3b4a1c01da9eb871a918d02b146afe"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL HsOpenSSL-x509-system io-streams network - tcp-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "Tcp streams using openssl for tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2"; - sha256 = "786b4a6b51e31960de3c0ae02d3cc92fe71ac7eae611d1f86c18f730672631f2"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "teardown" = callPackage - ({ mkDerivation, base, prettyprinter, rio, stdenv, typed-process - , unliftio - }: - mkDerivation { - pname = "teardown"; - version = "0.5.0.0"; - sha256 = "50eac07b244bd2d662731929e8b1785df3e8a5014b4bb62f6e843e33e896395c"; - libraryHaskellDepends = [ - base prettyprinter rio typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-teardown#readme"; - description = "Build safe and composable teardown sub-routines for resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "terminal-progress-bar" = callPackage - ({ mkDerivation, async, base, stdenv, stm, stm-chans, terminal-size - }: - mkDerivation { - pname = "terminal-progress-bar"; - version = "0.2"; - sha256 = "d6b134fb6f7b1cbe67004153608a77701f45532bad9618ead6dac1dae9f84a14"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ async base stm stm-chans terminal-size ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roelvandijk/terminal-progress-bar"; - description = "A simple progress bar in the terminal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.4"; - sha256 = "d763afb99fa14cffaccbfad259534a656be129329ba12246fed2e4330619486e"; - revision = "1"; - editedCabalFile = "147ngmfdkskyg7mwsp5w73a4dbx3rp5s38bci3z03kn1m093lxff"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-feat" = callPackage - ({ mkDerivation, base, QuickCheck, size-based, stdenv - , testing-type-modifiers - }: - mkDerivation { - pname = "testing-feat"; - version = "1.1.0.0"; - sha256 = "1904d31ddce611474e8c836582efbca1ae7d1c7dc76083cf4300e8e0eeff58ec"; - libraryHaskellDepends = [ - base QuickCheck size-based testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JonasDuregard/testing-feat"; - description = "Functional Enumeration of Algebraic Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.11.0.1"; - sha256 = "4ec7f6ec41b38d184ca5069440f09ff2b50ff8318809c880f8da79eb6002ac85"; - revision = "1"; - editedCabalFile = "12cjvir2nn71s2q052075llvh9px8p6qh2h88ym6d6l0qhd5dl6i"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq, ghc-prim - , integer-gmp, stdenv - }: - mkDerivation { - pname = "text"; - version = "1.2.3.0"; - sha256 = "20e0b1627f613b32cc7f2d2e8dcc48a4a61938b24f3d14fb77cee694f0c9311a"; - revision = "2"; - editedCabalFile = "1vnygj4v4pmrvvnvbvq78r7kkxljj055xyc33c93vf0miq2sfmb0"; - configureFlags = [ "-f-integer-simple" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq ghc-prim integer-gmp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/text"; - description = "An efficient packed Unicode text type"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "text-builder"; - version = "0.5.1"; - sha256 = "397cc3632e581de96809e1f681b0479905066e65b15d3dc5d983cd3f2c53adf4"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.12"; - sha256 = "7d65962e68c52c2785c779679ebd365c7c84b26c640c42a0897f5754ed39d7cd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.0"; - sha256 = "654017986968d54dba0b0a8c48d51adbb37ab9d8325a0637aabdc71f62466035"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5"; - sha256 = "8f0c01a6a15b4314c2d47ab5f0772d176ec38f1c1fe190b9fa7db5149a6c4a0b"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.2"; - sha256 = "b3f2b867d14c7c2586ea580028606b6662293ad080726d5241def937e5e31167"; - revision = "2"; - editedCabalFile = "106p7c0399zxdlh9f9qkgy7g2gp3bxqdpy6m6lnfhzi0pm5y8mks"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, contravariant - , generic-deriving, ghc-boot-th, ghc-prim, integer-gmp, nats - , semigroups, stdenv, tagged, template-haskell, text - , th-abstraction, th-lift, transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "3.7.3"; - sha256 = "efdfdd18c8a696abaf997138720fb9b5d27cf3eafd98e540fa1a23da6cab1cb5"; - revision = "3"; - editedCabalFile = "0zfhb7rbwhgdg8yl3sn276k26x89hxfnn8c1y0k2b18gx34mpr09"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers contravariant generic-deriving - ghc-boot-th ghc-prim integer-gmp nats semigroups tagged - template-haskell text th-abstraction th-lift transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show-instances" = callPackage - ({ mkDerivation, base, base-compat-batteries, bifunctors, binary - , bytestring, containers, directory, ghc-boot-th, haskeline, hoopl - , hpc, old-locale, old-time, pretty, process, random, semigroups - , stdenv, tagged, template-haskell, terminfo, text, text-show, time - , transformers, transformers-compat, unix, unordered-containers - , vector, xhtml - }: - mkDerivation { - pname = "text-show-instances"; - version = "3.6.4"; - sha256 = "4ebefbcfd2af90cfca9afca3755bc219804434c71b426450220b156a3c534aa8"; - revision = "1"; - editedCabalFile = "0fb704bm4n99vv7cblzsg9l8i6gy2ybppp2xagh4mcrwn5g776l8"; - libraryHaskellDepends = [ - base base-compat-batteries bifunctors binary bytestring containers - directory ghc-boot-th haskeline hoopl hpc old-locale old-time - pretty process random semigroups tagged template-haskell terminfo - text text-show time transformers transformers-compat unix - unordered-containers vector xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show-instances"; - description = "Additional instances for text-show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-zipper" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text, vector }: - mkDerivation { - pname = "text-zipper"; - version = "0.10.1"; - sha256 = "9afaeb93d55b0bb6d0d6f495e3ff0789a60d0dee57fb6103f52e4c05ae64b14b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base deepseq text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/text-zipper/"; - description = "A text editor zipper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.0.2"; - sha256 = "9a817090cb91f78424affc3bfb6a7ea65b520087b779c9fd501fc9779e654cda"; - revision = "1"; - editedCabalFile = "062rvn5ba3x5fjhnqs8lid6mra3vqz5ikaixck1mlmafkqmxhvw9"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.3.1.0"; - sha256 = "4b9e1bcc6ec3d897fb09c3d7fa2f37f0672d5370e0e3e49809886da81fe001b9"; - revision = "1"; - editedCabalFile = "1c0sy614vfcdvshn0z09nzfiq89v5if31yvvpxzrivrdy9gf912s"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.0.2.6"; - sha256 = "422fa20a0df78a5c47d0867d3094e4f0a5ba9b3f7118300af7c580156fce78bd"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, syb - , template-haskell, th-expand-syns, th-lift, th-orphans - }: - mkDerivation { - pname = "th-desugar"; - version = "1.8"; - sha256 = "bb4d1f1f4f63b77f8b0fdb545f0fd90a4183c80f4bb61edc2052d64e877b7a59"; - revision = "1"; - editedCabalFile = "13jvl6ijxjwbd7df0cq5pnijs3wrs8x5r9ykyyj180dak66909wd"; - libraryHaskellDepends = [ - base containers mtl syb template-haskell th-expand-syns th-lift - th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.4.0"; - sha256 = "cc0f52d1364ace9ba56f51afd9106a5fe01ed3f5ae45c958c1b0f83be0a6f906"; - revision = "1"; - editedCabalFile = "1zbdg3hrqv7rzlsrw4a2vjr3g4nzny32wvjcpxamlvx77b1jvsw9"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.7.10"; - sha256 = "b9ce47a1e5e50d273606e826c1210b724f1af2f302a1de71cd5c9297724d888d"; - revision = "1"; - editedCabalFile = "1f9zrg4ddjh0610ywzknx87s08xjq8k65fm26z11pgmkiy8j5mqc"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mboes/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, th-lift, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.11"; - sha256 = "1da46afabdc73c86f279a0557d5a8f9af1296f9f6043264ba354b1c9cc65a6b8"; - revision = "1"; - editedCabalFile = "03jdc34ms54dphjd69w3md3vj1gf0r975rc946iiw3png5z1myk2"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text th-lift vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-nowq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, time }: - mkDerivation { - pname = "th-nowq"; - version = "0.1.0.2"; - sha256 = "0112f4385eb0856fd186b43a491c6538331d74ca6f86d5dfef4d15ae86e438e5"; - libraryHaskellDepends = [ base template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/th-nowq#readme"; - description = "Template Haskell splice that expands to current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.5"; - sha256 = "95644d4b7914317e1dd31095947b8371f1a18be0c09e75f0e29203eb774a25ad"; - revision = "1"; - editedCabalFile = "1rgsrnh0qvlriz0c2c3q8wbb3ykby8d3lli0j553ml3n1sn9k4zv"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.4"; - sha256 = "089f9dda73744c533badcf13bc8e7c6dece4518a3a0b3eb5309cf55808a28a22"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.8"; - sha256 = "cecaae187df911de515d08929e1394d6d6f7ce129795be8189a6b10d3734fe43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-utilities" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , primitive, stdenv, syb, template-haskell, text, th-orphans - }: - mkDerivation { - pname = "th-utilities"; - version = "0.2.0.1"; - sha256 = "65c64cee69c0d9bf8d0d5d4590aaea7dcf4177f97818526cbb3fac20901671d6"; - libraryHaskellDepends = [ - base bytestring containers directory filepath primitive syb - template-haskell text th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/th-utilities#readme"; - description = "Collection of useful functions for use with Template Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, containers - , data-default-class, deepseq, hashable, keys, mtl, profunctors - , QuickCheck, semigroupoids, stdenv, transformers - , transformers-compat, unordered-containers, vector - , vector-instances - }: - mkDerivation { - pname = "these"; - version = "0.7.4"; - sha256 = "dcf37d7bab1780fc56663dac1f2eeee7890a4511f66e268aafbf786def8d884a"; - revision = "8"; - editedCabalFile = "0j3ps7ngrzgxvkbr5gf8zkfkd1ci4dnfh425ndbr2xp9ipy00nkd"; - libraryHaskellDepends = [ - aeson base bifunctors binary containers data-default-class deepseq - hashable keys mtl profunctors QuickCheck semigroupoids transformers - transformers-compat unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.0"; - sha256 = "e8879653bbe54b5134eed23186f98688c4e9819ce9ef4f2e2d01d0f1ae219a18"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.1.2"; - sha256 = "85c271438bb702698cb010ec1fb9c63641b1b6519208a4520a5f34f05204d459"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads-extras" = callPackage - ({ mkDerivation, base, stdenv, stm, threads }: - mkDerivation { - pname = "threads-extras"; - version = "0.1.0.2"; - sha256 = "4defab98b8a767b9580413d530e6823e53f6169671e53b6f8b6bfea89fde2575"; - libraryHaskellDepends = [ base stm threads ]; - doHaddock = false; - doCheck = false; - description = "Extends the threads package with a bounded thread group"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threepenny-gui" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, containers - , data-default, deepseq, exceptions, file-embed, filepath, hashable - , network-uri, safe, snap-core, snap-server, stdenv, stm - , template-haskell, text, transformers, unordered-containers, vault - , vector, websockets, websockets-snap - }: - mkDerivation { - pname = "threepenny-gui"; - version = "0.8.2.3"; - sha256 = "8be3123765f8f162715f39f5daccddf2d07e2d65ec4ed803312a09ee6228909e"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default deepseq - exceptions file-embed filepath hashable network-uri safe snap-core - snap-server stm template-haskell text transformers - unordered-containers vault vector websockets websockets-snap - ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Threepenny-gui"; - description = "GUI framework that uses the web browser as a display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "through-text" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, stdenv, text - }: - mkDerivation { - pname = "through-text"; - version = "0.1.0.0"; - sha256 = "933225da128906e61865ccd1da73463781b890d742cbb38f52524d94ac19b4cd"; - revision = "4"; - editedCabalFile = "1clc4g6rg5970654fd596ygly79axkhyzn773by1wi4grvhw96fi"; - libraryHaskellDepends = [ base bytestring case-insensitive text ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/bergmark/through-text"; - description = "Convert textual types through Text without needing O(n^2) instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "tibetan-utils" = callPackage - ({ mkDerivation, base, composition-prelude, either, megaparsec - , stdenv, text, text-show - }: - mkDerivation { - pname = "tibetan-utils"; - version = "0.1.1.5"; - sha256 = "38007ff5e5ae38bbd68ff2ee6fd850bedb0da2e81891736146494ba1448f7825"; - revision = "2"; - editedCabalFile = "17zyhdxwnq85kr60bnxirmyvw3b1679j5mhm3i30ri65896pjdwf"; - libraryHaskellDepends = [ - base composition-prelude either megaparsec text text-show - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vmchale/tibetan-utils#readme"; - description = "Parse and display tibetan numerals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.4"; - sha256 = "f2d165557e2bbd014a4d6615b3e6c177adb034179a307a775e06836f91ebbe62"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-manager" = callPackage - ({ mkDerivation, auto-update, base, stdenv }: - mkDerivation { - pname = "time-manager"; - version = "0.0.0"; - sha256 = "90a616ed20b2119bb64f78f84230b6798cde22a35e87bc8d9ee08cdf1d90fcdb"; - libraryHaskellDepends = [ auto-update base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Scalable timer"; - license = stdenv.lib.licenses.mit; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.0"; - sha256 = "4e50d40f13f8e6c5175be22b91586f909607ecb631f8209ff45bce2031bb3c24"; - revision = "3"; - editedCabalFile = "0im963wjcmwf6ii9a00mbi8lhmx5cy7cs6rmp0qi2j2jddba78j2"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tintin" = callPackage - ({ mkDerivation, base, clay, data-has, directory, frontmatter - , inliterate, lucid, optparse-generic, process, require, stdenv - , temporary, text, universum, yaml - }: - mkDerivation { - pname = "tintin"; - version = "1.5.0"; - sha256 = "473ea27d627fa2614de61ae328e478ddf0bf38b6020326c8d27ff223b5b415ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base clay data-has directory frontmatter inliterate lucid process - require temporary text universum yaml - ]; - libraryToolDepends = [ require ]; - executableHaskellDepends = [ - base optparse-generic require universum - ]; - executableToolDepends = [ require ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/tintin#readme"; - description = "A softer alternative to Haddock"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.14.1"; - sha256 = "d13e96117dfcedc861185bee5d1d130a92bce7876cc1ffd041ace2426820df07"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, memory, mtl, network - , stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.4.1"; - sha256 = "bbead1afc0b808bd5cff7bddaeae84ade37f18bbe72bd78d45a2fa4ac41908f8"; - revision = "1"; - editedCabalFile = "0qk07miindqvynhgsqj8jjk1d6i95lbgwipanwnn4vh1707z8xhv"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class memory mtl network transformers x509 x509-store - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, time, tls, x509, x509-store, x509-system - , x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.5"; - sha256 = "a345c4863bf923829d73abb8e2b706dab8058b12cdf73859d3860eaf7223eb9b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem time tls - x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, clock, psqueues, stdenv, tls }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.0.2"; - sha256 = "c586ccfd8da578ed2174352bea1952f55fe38023e476f851d7f0ed428aa57567"; - libraryHaskellDepends = [ auto-update base clock psqueues tls ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, base, bytestring, directory, network - , postgresql-simple, process, stdenv, temporary, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "0.1.1.1"; - sha256 = "2c5d557c53f60179d5e5e8c7fb6e393ff703e45b55c126359b308ab7a82be863"; - libraryHaskellDepends = [ - base bytestring directory network postgresql-simple process - temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres for testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, hashable, megaparsec, mtl - , parser-combinators, stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "0.2.1"; - sha256 = "1dc97bbfc79eddb072033322a53d835eae2838f978143fd992d41eed7588a025"; - revision = "1"; - editedCabalFile = "1760b4n14152234s5j7iqmxc1czibi1vbnivx30yqyrsj5p4p4i5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base hashable megaparsec mtl parser-combinators text time - unordered-containers - ]; - executableHaskellDepends = [ base text time unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "TOML parser"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.2"; - sha256 = "dc06228b7b8a546f9d257b4fe2b369fc2cb279240bbe4312aa8f47bb2752e4be"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-lift" = callPackage - ({ mkDerivation, base, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "transformers-lift"; - version = "0.2.0.1"; - sha256 = "0bd8bf23fb29874daf9ff990bf25035e21208cfa292f9f18e8cfdb0b4b1ee09d"; - revision = "3"; - editedCabalFile = "0rkbjlpn460gn93qr0l7025ggkgj46j6pkcil6m2chkzk91cpk9i"; - libraryHaskellDepends = [ - base transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - description = "Ad-hoc type classes for lifting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.0.0"; - sha256 = "65a220f1652b68269dfe8cc283a6e9292941eb12bdbd79344e073ba766191fbb"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, containers, generics-sop, hashable - , MemoTrie, parsec, parsers, pretty, QuickCheck, scientific, stdenv - , tagged, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.0.1"; - sha256 = "bfe23e4c17c0cdbffa9f159b7adaaeb20e48575b3b5bda591c5e025118213b11"; - revision = "6"; - editedCabalFile = "1wyhygrpqphxzzwlrk6nl4h5xbyx6zi0y34i1nxvsy726fl5idai"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - containers generics-sop hashable MemoTrie parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base - , blaze-builder, blaze-html, blaze-markup, bytestring, Cabal - , cabal-doctest, charset, comonad, containers, deepseq, fingertree - , ghc-prim, hashable, lens, mtl, parsers, profunctors, reducers - , semigroups, stdenv, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "1.7.1.1"; - sha256 = "61f8753368fa0c7673b44c4e4c4dede00916f68b3f3b68a5fef6d9dedc50c68e"; - revision = "5"; - editedCabalFile = "0zlvnmzxx1ax8kx1d0z4jibjy49picz2zxknr8i6pz1gsj89bgrw"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html - blaze-markup bytestring charset comonad containers deepseq - fingertree ghc-prim hashable lens mtl parsers profunctors reducers - semigroups transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.1.2.0"; - sha256 = "86b8749e708fd288a874d23ebeb9ff5e3a584ada13bc22c3a9b596418bd57063"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.0.0"; - sha256 = "25bcf013f51bb7b8f7afb5aaaab5718bb0c4763a55b5d721d1752b6fadd43dd5"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, system-fileio, system-filepath, temporary, text, time - , transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.8"; - sha256 = "045bc65a84a1cb01c0078462cb386b1aeb7a845ee8c1a5ae891353ef9720e46e"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm system-fileio - system-filepath temporary text time transformers unix unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-equality" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-equality"; - version = "1"; - sha256 = "4728b502a211454ef682a10d7a3e817c22d06ba509df114bb267ef9d43a08ce8"; - revision = "1"; - editedCabalFile = "13lsff17dxz852f5bhjz8d1by704rzvwr67qqfc5dz5s7xc28qyk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hesselink/type-equality"; - description = "Data.Type.Equality compat package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, double-conversion, ghc-prim - , stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.4.0.1"; - sha256 = "e3992f60601f8624a13cb686d400f9be843e33c20223a2ce7af51e85f3bc92ad"; - libraryHaskellDepends = [ - base bytestring double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.1.0.4"; - sha256 = "dbbcedf368c23c46abac04f157cb4f2c812099a4f75d606b24f1ac1116d40b74"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.3.0.1"; - sha256 = "aecd1a319efc13eb42b73b489cf374f94bf126f19fdc28b2f5cd6f73dda3a241"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.2.0"; - sha256 = "42ed06889c15aa07577a0e8e3632659e343be95b77afa252b48b592ff7dbcf30"; - revision = "2"; - editedCabalFile = "01xrdzbla9d83zrr481hirj0f0gwy51gzv6klc866vv4rzh2lhbc"; - libraryHaskellDepends = [ - async base bytestring process stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typelits-witnesses" = callPackage - ({ mkDerivation, base, base-compat, constraints, reflection, stdenv - , transformers - }: - mkDerivation { - pname = "typelits-witnesses"; - version = "0.3.0.2"; - sha256 = "6e26c69ff347d138568e6c7e3fc5b256fc3fa3d54c563c2423443dc3428ee64c"; - libraryHaskellDepends = [ - base base-compat constraints reflection transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/typelits-witnesses"; - description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; - license = stdenv.lib.licenses.mit; - }) {}; - "typography-geometry" = callPackage - ({ mkDerivation, base, containers, parallel, polynomials-bernstein - , stdenv, vector - }: - mkDerivation { - pname = "typography-geometry"; - version = "1.0.0.1"; - sha256 = "edaeafb60126be19f0e4fdda54be89b92317dd03b59e9d8b6f119064c1642ad7"; - libraryHaskellDepends = [ - base containers parallel polynomials-bernstein vector - ]; - doHaddock = false; - doCheck = false; - description = "Drawings for printed text documents"; - license = "GPL"; - }) {}; - "tz" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-default - , deepseq, stdenv, template-haskell, time, tzdata, vector - }: - mkDerivation { - pname = "tz"; - version = "0.1.3.1"; - sha256 = "0b54729c7b60e90e00ee8e78190d4e86b3fb02d24ef4e393383df800faccfff9"; - libraryHaskellDepends = [ - base binary bytestring containers data-default deepseq - template-haskell time tzdata vector - ]; - doHaddock = false; - doCheck = false; - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; - homepage = "https://github.com/nilcons/haskell-tz"; - description = "Efficient time zone handling"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20180122.0"; - sha256 = "a31bd845e94fd50d0e97d6d23a0ae39511cdf144075f4978579ede55b714db9d"; - revision = "1"; - editedCabalFile = "1a2jlinwj0m0ilc50wxgil1xr2an5byywipd55sf9pqvnj5ap0qi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unbound-generics" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, contravariant - , deepseq, exceptions, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "unbound-generics"; - version = "0.3.3"; - sha256 = "7fedc5b19dfb4a20d280a4ae538d89cf3482ad30ac77ee1bd2aaa35a6519ad1a"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers contravariant deepseq exceptions mtl - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lambdageek/unbound-generics"; - description = "Support for programming with names and binders using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unfoldable" = callPackage - ({ mkDerivation, base, containers, ghc-prim, one-liner, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "unfoldable"; - version = "0.9.6"; - sha256 = "cd90eae9ba258cfaf2554b4946c9b60def83c92548bbeb7269fec97a8657eaa1"; - revision = "2"; - editedCabalFile = "08rx8ci2jpa77q1dl4lghlyhd27if990ic9kaz30hczsazlzi44b"; - libraryHaskellDepends = [ - base containers ghc-prim one-liner QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/unfoldable"; - description = "Class of data structures that can be unfolded"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unfoldable-restricted" = callPackage - ({ mkDerivation, base, constraints, containers, hashable, stdenv - , transformers, unfoldable, unit-constraint, unordered-containers - }: - mkDerivation { - pname = "unfoldable-restricted"; - version = "0.0.3"; - sha256 = "0b19287719453617f3883863f32be75ba62aad68151cb79aea3a5fa90dc7836e"; - libraryHaskellDepends = [ - base constraints containers hashable transformers unfoldable - unit-constraint unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "An alternative to the Unfoldable typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1"; - sha256 = "49bde95d4df4ebed755b10860aeb92f9cf0a3be8127d39a95f480036e6449b81"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.2"; - sha256 = "7ee394879b345ee397aef87ca058628cd79d59cbfc1cec81aeda7fea65f53943"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nushio3/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.4"; - sha256 = "829eaccba7d2e3d642d0cf60bbab403a6a5673db64284c02abf3ee3e8d5c0852"; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union" = callPackage - ({ mkDerivation, base, deepseq, profunctors, stdenv, tagged, vinyl - }: - mkDerivation { - pname = "union"; - version = "0.1.1.2"; - sha256 = "7ce28e082940e184a255459b29356b7d39e3421cb37b01ee1ed067437165d382"; - revision = "5"; - editedCabalFile = "0mphzzvvr8lh1x8mb6n9nzzskx32cmr6ycihdy68qw35ybrqb0aj"; - libraryHaskellDepends = [ base deepseq profunctors tagged vinyl ]; - doHaddock = false; - doCheck = false; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "uniq-deep"; - version = "1.1.0.0"; - sha256 = "f8953f91cbf90c5073ca90d4e9235dbe0a399ff811709d051b037a8a7db0d38e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep"; - description = "uniq-deep"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe" = callPackage - ({ mkDerivation, stdenv, universe-instances-base - , universe-instances-extended, universe-instances-trans - , universe-reverse-instances - }: - mkDerivation { - pname = "universe"; - version = "1.0"; - sha256 = "1f80e4788d348d53e39a32c8514940418a71c49c5423eb70b94e1786d94ff9a7"; - libraryHaskellDepends = [ - universe-instances-base universe-instances-extended - universe-instances-trans universe-reverse-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Classes for types where we know all the values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "universe-base"; - version = "1.0.2.1"; - sha256 = "07c48350afacdc0b5569f72e3d6a27a8ff3c208b7a6f22d00e149a201798bb51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types and some helper functions for enumerating them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.0"; - sha256 = "a21150ee3bb71283522a573bf092c8d96b2e28a95336a95505aa4c2a067dd212"; - revision = "2"; - editedCabalFile = "0c9zxmifhy2qjvsikgm168n8k8ka8ia88ldy8qjqkz5pqknlr9sj"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-extended" = callPackage - ({ mkDerivation, adjunctions, base, comonad, stdenv - , universe-instances-base, void - }: - mkDerivation { - pname = "universe-instances-extended"; - version = "1.0.0.1"; - sha256 = "665b272701b16a6bb8d40a5396aa1dcb038f002452ebdc29d353e3be2070c997"; - revision = "3"; - editedCabalFile = "1f7mzwn97kmnm1p1hscz5mzly700q2pw5awwdzzsxfkxv3law7xn"; - libraryHaskellDepends = [ - adjunctions base comonad universe-instances-base void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from select extra packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers, universe-base - , universe-instances-base - }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.0.0.1"; - sha256 = "0d047cf1eb4af9f2052f44f487e7d2d44c86f51b54a3cc1fc5243ad816e8310e"; - revision = "1"; - editedCabalFile = "0dcwgbgmbkjwzbxlncpl1b5hgjrmkl73djknjkhbnh02pysbwv69"; - libraryHaskellDepends = [ - base mtl transformers universe-base universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-instances-base - }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.0"; - sha256 = "e9d41cbf26eabd77587fddf69493d7ad23028303d1c1d1d2ee1de1bf3d3e8d49"; - revision = "2"; - editedCabalFile = "0cpnsip1iakwkgnwnd21gwrc8qbifzpff6agjwm34jgkq9j646k8"; - libraryHaskellDepends = [ - base containers universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, type-operators, unordered-containers - , utf8-string, vector - }: - mkDerivation { - pname = "universum"; - version = "1.2.0"; - sha256 = "37a10c85d0b4812a9687846cdfe20a61eb102839318149ad036d8c1be47e8518"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - type-operators unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, deepseq, directory, filepath, process - , stdenv, stm, time, transformers, unix, unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.7.0"; - sha256 = "5adaf4c623914ec027760259042059326c14831e8c9142287cf8f082e9481463"; - revision = "1"; - editedCabalFile = "0w86bp3kbym481jj667bndswq1y7rca4g30d2xx9n1a7xxsbllv6"; - libraryHaskellDepends = [ - async base deepseq directory filepath process stm time transformers - unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.1.0"; - sha256 = "7550b017d87af53ae3e0d3b8524e24a77faf739073f35e40663454a9e9752385"; - revision = "1"; - editedCabalFile = "16bjwcsaghqqmyi69rq65dn3ydifyfaabq3ns37apdm00mwqbcj2"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.0.0"; - sha256 = "99cb542dcd38400b83acc3462c8984c7df8969a2a2f896f4c05c8ae19dfa8a2c"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.0"; - sha256 = "acecd68b9d3128d6b6de99580664ab1e7cbaa0e7722e50c5fc67ccbd7c9104e0"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-templater" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, charset - , containers, dlist, HTTP, mtl, parsers, stdenv, template-haskell - , text, time, trifecta, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "uri-templater"; - version = "0.3.1.0"; - sha256 = "21e665ff2600b3de42b6ad01ef342b6165859dc6e66897f84a9075649f1c49c2"; - revision = "1"; - editedCabalFile = "0vl1nv40yzns9fnaz6h34x72vpfaaws8f0zm8qlr82333pxg2scw"; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring charset containers dlist HTTP mtl - parsers template-haskell text time trifecta unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/uri-templater"; - description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.0"; - sha256 = "90bf89265f5ae94d55e395e199a1b9205d4c56720f1edf9390644c2dc88252fb"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-postgresql-simple" = callPackage - ({ mkDerivation, base, bytestring, mtl, postgresql-simple, stdenv - , text, time, users, uuid - }: - mkDerivation { - pname = "users-postgresql-simple"; - version = "0.5.0.2"; - sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100"; - libraryHaskellDepends = [ - base bytestring mtl postgresql-simple text time users uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A PostgreSQL backend for the users package"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-test" = callPackage - ({ mkDerivation, base, hspec, stdenv, text, users }: - mkDerivation { - pname = "users-test"; - version = "0.5.0.1"; - sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e"; - libraryHaskellDepends = [ base hspec text users ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "Library to test backends for the users library"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "util"; - version = "0.1.10.1"; - sha256 = "04056d473579dff21aebb40db9947eebf27b1aead8b6c447b91286ab4c3773fc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1"; - sha256 = "70455a22637983dbcf7a688ff80c05bb8bf2690d9e4523d6ca4ebcef77abb921"; - revision = "1"; - editedCabalFile = "1x1g4nannz81j1h64l1m3ancc96zc57d1bjhj1wk7bwn1xxbi5h3"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.6.0.0"; - sha256 = "f808077373e16e75fda393ce573e25f391bfc0e5aa072126797674f1fb6e47ad"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.1"; - sha256 = "fe5212b8fc9f78ef040b34c03990b7944a9eaddc72fafc735dc42733d9ad3a00"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.3.0.1"; - sha256 = "a9090ba735a656f6457909dadbac475db0baf7041305fcfeb35da58cc569e1ca"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.3.0.1"; - sha256 = "0ecbe0935c5c4aace2a32b1bb47decc39803afff976a200d320db83246f6584f"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.3.0.1"; - sha256 = "7e06ff1aab574b7b2b03e69dc41ca59ea6138ecc0628f22d1e06f2748501cdd5"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.1"; - sha256 = "5ce509c4a3ce6b4d098ad4b0c6561af5337cdf797af41a6a0c45e19d60fbf0c6"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.0.1"; - sha256 = "aeb10cb317e198a002cf5b30e2ad81bc2b90c38dad552670baf8751ac4329e31"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.1"; - sha256 = "6e113bd05c43416c325e98f2173f4b13047051ae4be38142579c1d7d52d51cd5"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.1"; - sha256 = "821cc8d4c7514ffe57b1d9f2003c79b9efffeeebdf604c0377aef52543cbfc86"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.1"; - sha256 = "362d8cc2dbfbd54bc14061f1c7ecce1472e7f7e550d4b3c287dd48f022249396"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.1"; - sha256 = "640e25f047b83becc8ebafa9f383eec08135dc8b3c0d070961a2ac86cd845152"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.0"; - sha256 = "d960a843c3dae1f6073f50e980dcdbbe2e46e9911273c9f122ba96494c4c979f"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, deepseq - , distributive, fin, hashable, lens, semigroupoids, stdenv - }: - mkDerivation { - pname = "vec"; - version = "0.1"; - sha256 = "be54ef0a53ff4f27a7a0f14b249d1fd47ede63c085d4c68962db24bf4ba3e054"; - revision = "3"; - editedCabalFile = "093q5qlhlia12ckhvax322lyy3sb554pg46ghabvsvx8znixw2hh"; - libraryHaskellDepends = [ - adjunctions base base-compat deepseq distributive fin hashable lens - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.0.1"; - sha256 = "b100ee79b9da2651276278cd3e0f08a3c152505cc52982beda507515af173d7b"; - revision = "3"; - editedCabalFile = "0y5rh8k710i2a3p1h2rghvr5cfg78p5h0kbfi7ifxqqf6pzlyr1x"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.7.0.1"; - sha256 = "ed460a41ca068f568bc2027579ab14185fbb72c7ac469b5179ae5f8a52719070"; - revision = "2"; - editedCabalFile = "186nxwg02m16v68gi186f0z99cafp4g87flhfccnzlrvshlfb83m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dolio/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.4"; - sha256 = "2b2f783e414dcf2e7dc34ad14264e5af83e5cd4784d5a0a64e4b4571963443f8"; - revision = "1"; - editedCabalFile = "196frl4akhfk7xf1nxzn8lmq99dxhzhsimanswn9yy7ym8zhki4i"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary and Data.Serialize for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.4.1"; - sha256 = "d1649096abdcc96894031292a63dfc0b36be4ab004a00f91f08aa5bc4c65ebb7"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, deepseq, distributive - , finite-typelits, indexed-list-literals, primitive, stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.0.2.0"; - sha256 = "c930887b2de816d3c62275ebe391144901294a1f7cc514435d3039764b5f8929"; - revision = "1"; - editedCabalFile = "05y542ga4y6b9ksf732k3gsdjdylsr7qzpd10bpvlzwqk42d369m"; - libraryHaskellDepends = [ - adjunctions base deepseq distributive finite-typelits - indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.13"; - sha256 = "0291d5778378acbbb1d6709ba57238f3d6ad551b8b2c6ca2b8177e68f748d617"; - revision = "2"; - editedCabalFile = "1p9vibym0ggr1rjyak0wphswdl4vik2b2w85afgvyj9zn32w28bw"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.6"; - sha256 = "be87d4a6f1005ee2d0de6adf521e05c9e83c441568a8a8b60c79efe24ae90235"; - revision = "1"; - editedCabalFile = "1bpxdliw7jmks1rkmb8hbr7hng3niz1pfc6n3s8ndj1acrksmfmv"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vectortiles" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , mtl, protocol-buffers, protocol-buffers-descriptor, stdenv, text - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "vectortiles"; - version = "1.4.0"; - sha256 = "393cc4f3d0f16c8cbf3c1fda99a6823463d4a855b77babae41249d4175e915c0"; - revision = "1"; - editedCabalFile = "1nlkhmfcvlzi96nzq8cpbqw5akrjahnrhl460q07vq6iyhibvf87"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable mtl protocol-buffers - protocol-buffers-descriptor text transformers unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/vectortiles"; - description = "GIS Vector Tiles, as defined by Mapbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.2.3.0"; - sha256 = "8b4ce5ab48aab17b6752dec4efba259964b7084ce10330198ae3ff7ea090f264"; - libraryHaskellDepends = [ base binary data-default-class deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.3.2"; - sha256 = "cfe98ab9cb8a53ff3a0eef7f1cbe2041f86214202c5a31025fc9d0dd92328bf0"; - revision = "1"; - editedCabalFile = "0vh8nikp0xqyp24fx5lm7221jg7pp8c83dankja2zzkmr09pd96v"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "viewprof" = callPackage - ({ mkDerivation, base, brick, containers, directory, ghc-prof, lens - , scientific, stdenv, text, vector, vector-algorithms, vty - }: - mkDerivation { - pname = "viewprof"; - version = "0.0.0.17"; - sha256 = "2ea4577595923bc43b91dc4dcf89ac14036c4baa266dee27752178ef9bf14072"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base brick containers directory ghc-prof lens scientific text - vector vector-algorithms vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/viewprof"; - description = "Text-based interactive GHC .prof viewer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vinyl" = callPackage - ({ mkDerivation, array, base, ghc-prim, stdenv }: - mkDerivation { - pname = "vinyl"; - version = "0.8.1.1"; - sha256 = "d03a3c53026b91160b30f4f65db1e29bed157ca67f676674488218d7cfd48f3f"; - revision = "1"; - editedCabalFile = "0mb694y03r185r0p473zh6bl4j0l4na9km0r3x8czjil7x9yb0vr"; - libraryHaskellDepends = [ array base ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Extensible Records"; - license = stdenv.lib.licenses.mit; - }) {}; - "vivid" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hashable, MonadRandom, mtl, network, process, random - , random-shuffle, split, stdenv, stm, time, transformers - , utf8-string, vivid-osc, vivid-supercollider - }: - mkDerivation { - pname = "vivid"; - version = "0.3.0.2"; - sha256 = "00e0941c018fc467424d10a94ed568b48bf1fd226cd81a00ced319817d79bb99"; - libraryHaskellDepends = [ - base bytestring containers directory filepath hashable MonadRandom - mtl network process random random-shuffle split stm time - transformers utf8-string vivid-osc vivid-supercollider - ]; - doHaddock = false; - doCheck = false; - description = "Sound synthesis with SuperCollider"; - license = "GPL"; - }) {}; - "vivid-osc" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, stdenv, time }: - mkDerivation { - pname = "vivid-osc"; - version = "0.3.0.0"; - sha256 = "a728f85c60f6b8361d6b973f45c854485a2b061431869934df72c172a4884a94"; - libraryHaskellDepends = [ base binary bytestring cereal time ]; - doHaddock = false; - doCheck = false; - description = "Open Sound Control encode/decode"; - license = "GPL"; - }) {}; - "vivid-supercollider" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, split, stdenv - , utf8-string, vivid-osc - }: - mkDerivation { - pname = "vivid-supercollider"; - version = "0.3.0.0"; - sha256 = "83b79ebc06b4e6db34c91c850191e11488e108b4bf64aa85110c3a389cc4d395"; - libraryHaskellDepends = [ - base binary bytestring cereal split utf8-string vivid-osc - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of SuperCollider server specifications"; - license = "GPL"; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.2"; - sha256 = "d3fffe66a03e4b53db1e459edf75ad8402385a817cae415d857ec0b03ce0cf2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.21"; - sha256 = "5a79b8b5f3a2ead0db01cfbc34e145cfa8ff36315f0bb075e6d364ae0a937a5b"; - revision = "1"; - editedCabalFile = "18dyham92ksdvglmn8h955h6rq3pkyxi6bcgxg7jp3iwryz4zkja"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2.1"; - sha256 = "fef72486e3a9e01f564abfb680f6eac9b553f8195cae8ed903d960da55380815"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.6.2"; - sha256 = "d0b0a566be61ef4c8f800922a71dbc4de64287f8f73782b1461cd5d294c1dc3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cli" = callPackage - ({ mkDerivation, ansi-terminal, base, http-types, monads-tf - , network, options, socket-activation, stdenv, stm - , streaming-commons, unix, wai, wai-extra, warp, warp-tls - }: - mkDerivation { - pname = "wai-cli"; - version = "0.1.1"; - sha256 = "0643ebd8cbd4fcedd2076450b635d020aa2101b26e80f69ade10acd2c3252862"; - libraryHaskellDepends = [ - ansi-terminal base http-types monads-tf network options - socket-activation stm streaming-commons unix wai wai-extra warp - warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/wai-cli"; - description = "Command line runner for Wai apps (using Warp) with TLS, CGI, socket activation & graceful shutdown"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.6"; - sha256 = "cac61023184404ba5abf8d3739e51c4862561ba56f829f6f5e69dd64216aa986"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , iproute, lifted-base, network, old-locale, resourcet, stdenv - , streaming-commons, stringsearch, text, time, transformers, unix - , unix-compat, vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.22.1"; - sha256 = "7e7c9075455015b90e079d7c1d16110f2fb27e33ff66620d84248c3a9805722f"; - revision = "1"; - editedCabalFile = "09qhzh2hihfi9vf8xcxjqih5kl62hzm1jw0jk1v83kw78fdkiqb3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types iproute lifted-base network - old-locale resourcet streaming-commons stringsearch text time - transformers unix unix-compat vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.2.4"; - sha256 = "0e9d9c61310890380dc87807ba1285bc1ab185914be6367ea4bb0a05d3df2900"; - revision = "1"; - editedCabalFile = "1mjxbzw3a5wybcp8s4x05rx91p2qaabpfci6w2k6p6nw4rjvfijv"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, case-insensitive - , fast-logger, http-types, network, stdenv, unix, unix-time, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.2"; - sha256 = "8dd4ff875d9ac2c115f5d45cc4375635a6c3e55a75c632ff3781d1fb086eb470"; - libraryHaskellDepends = [ - base byteorder bytestring case-insensitive fast-logger http-types - network unix unix-time wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching-lru" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , lrucache, stdenv, text, wai, wai-middleware-caching - }: - mkDerivation { - pname = "wai-middleware-caching-lru"; - version = "0.1.0.0"; - sha256 = "377dc842f5ad77b98e8a817e092c891ccfd0da978fb9f69a380f001a95da28d3"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types lrucache text wai - wai-middleware-caching - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-lru#readme"; - description = "Initial project template from stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, text, transformers, void, wai, wai-conduit - }: - mkDerivation { - pname = "wai-middleware-consul"; - version = "0.1.0.2"; - sha256 = "d89d5a5bf0b08cf4fcd300d9e16c351a146119c34a9f31949498a874699c0763"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/wai-middleware-consul"; - description = "Wai Middleware for Consul"; - license = stdenv.lib.licenses.mit; - }) {}; - "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 - , stdenv, 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 = "1136b61a6ce7729093664b63a4ab70de73e356d34b0c7a8114b639b18626b058"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Middleware and utilities for using Atlassian Crowd authentication"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-metrics" = callPackage - ({ mkDerivation, base, ekg-core, http-types, stdenv, text, time - , wai - }: - mkDerivation { - pname = "wai-middleware-metrics"; - version = "0.2.4"; - sha256 = "e73685a748f0ba6d16956b500cdc23f3802f794f5259a3d6b8a5b885e928ec74"; - libraryHaskellDepends = [ base ekg-core http-types text time wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Helkafen/wai-middleware-metrics"; - description = "A WAI middleware to collect EKG request metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.2"; - sha256 = "0be4e9fd5252d526334e4e5885a2a75269aaaad560282b5c383c49e4d855befc"; - revision = "2"; - editedCabalFile = "17vq38dh7x1kqzfwla1s0rldd5hzm5mcrx49sjlzy8b66gd2n3ac"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-travisci" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptonite, http-types, stdenv, text, transformers, vault, wai - }: - mkDerivation { - pname = "wai-middleware-travisci"; - version = "0.1.0"; - sha256 = "bbc9f2fea4c0ee3d9a73fd13dd1a2a7ef85fc294bd311ed519c1e41a1fada828"; - revision = "2"; - editedCabalFile = "0j1k2y75gwbny72zf5nrwzanh7sn2plscnrjd4hw5npccxi4dchx"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptonite http-types text - transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/wai-middleware-travisci"; - description = "WAI middleware for authenticating webhook payloads from Travis CI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-predicates" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, case-insensitive, cookie, http-types - , singletons, stdenv, text, transformers, vault, vector, wai - }: - mkDerivation { - pname = "wai-predicates"; - version = "0.10.0"; - sha256 = "b7b3f6d147bbbf7a959c84235d0533763eda8fc4973b42f131fd47fe8ffbd7c2"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion case-insensitive - cookie http-types singletons text transformers vault vector wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/wai-predicates/"; - description = "WAI request predicates"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, cookie, data-default - , entropy, postgresql-simple, resource-pool, stdenv, text, time - , transformers, wai, wai-session - }: - mkDerivation { - pname = "wai-session-postgresql"; - version = "0.2.1.2"; - sha256 = "39d570dd99b4dc38e7803b60b4da4bc804244ed83b3fb250a6e2191a1419ac83"; - libraryHaskellDepends = [ - base bytestring cereal cookie data-default entropy - postgresql-simple resource-pool text time transformers wai - wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hce/postgresql-session#readme"; - description = "PostgreSQL backed Wai session store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-transformers" = callPackage - ({ mkDerivation, base, exceptions, extractable-singleton - , monad-control-aligned, stdenv, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "wai-transformers"; - version = "0.1.0"; - sha256 = "17a330c80bad8a95add5d6efb0a12c774c197a2d19f83e6b9dc08ab73d8c8592"; - libraryHaskellDepends = [ - base exceptions extractable-singleton monad-control-aligned - transformers wai wai-websockets websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/wai-transformers#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, time-manager, unix - , unix-compat, vault, wai, word8 - }: - mkDerivation { - pname = "warp"; - version = "3.2.28"; - sha256 = "872b4d7e56c5454e87f0f4f612318cda37fc3bfb3a62ad3f72625dc6a21a5c70"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - time-manager unix unix-compat vault wai word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.4.3"; - sha256 = "84cd511e32019ba5bef07b0e8a3550b2da06d534bf3df1673d14a5ec4a12f29d"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv - , streaming-commons, unix, wai, warp, warp-tls - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.1"; - sha256 = "08b0805f9bf0bfc4dd0017ba320b02c042741feeef9335be87ddf4f2e15134b9"; - libraryHaskellDepends = [ - base bytestring network streaming-commons unix wai warp warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , data-default-class, stdenv, transformers - }: - mkDerivation { - pname = "wave"; - version = "0.1.5"; - sha256 = "250a08b0c36870fb7fd0de7714818784eed0c4ff74377746dc1842967965fe0f"; - revision = "2"; - editedCabalFile = "0zs0mw42z9xzs1r935pd5dssf0x10qbkhxlpfknv0x75n2k0azzj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers data-default-class transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-plugins" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, stm, text }: - mkDerivation { - pname = "web-plugins"; - version = "0.2.9"; - sha256 = "e63bfd7f666b40c7ff962a070c64dc5bef4a5c490af745fa7ee8f964284a7a50"; - libraryHaskellDepends = [ base containers mtl stm text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/clckwrks/web-plugins"; - description = "dynamic plugin system for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, mtl, parsec, split, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "web-routes"; - version = "0.27.14.2"; - sha256 = "af8b349c5d17de1d1accc30ab0a21537414a66e9d9515852098443e1d5d1f74a"; - libraryHaskellDepends = [ - base blaze-builder bytestring exceptions ghc-prim http-types mtl - parsec split text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; - description = "portable, type-safe URL routing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-hsp" = callPackage - ({ mkDerivation, base, hsp, stdenv, text, web-routes }: - mkDerivation { - pname = "web-routes-hsp"; - version = "0.24.6.1"; - sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; - libraryHaskellDepends = [ base hsp text web-routes ]; - doHaddock = false; - doCheck = false; - description = "Adds XMLGenerator instance for RouteT monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, stdenv, text, wai - , web-routes - }: - mkDerivation { - pname = "web-routes-wai"; - version = "0.24.3.1"; - sha256 = "8e1fd187686452af39929bc6b6a31319001859930744e22e2eee1fa9ad103049"; - libraryHaskellDepends = [ - base bytestring http-types text wai web-routes - ]; - doHaddock = false; - doCheck = false; - description = "Library for maintaining correctness of URLs within an application"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, data-default-class, directory, directory-tree - , exceptions, filepath, http-client, http-types, lifted-base - , monad-control, network, network-uri, scientific, stdenv - , temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.8.5"; - sha256 = "a8167a8b147411a929e81727a77bc31fcd7d93424442268913fb522e1932c1be"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, containers - , entropy, network, random, SHA, stdenv, streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.4.1"; - sha256 = "92287746deb56ebdcb070ab568cd3f7a406bd364d9db59a6f0c6516aa5d429e3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive containers entropy network - random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "websockets-snap" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams - , mtl, snap-core, snap-server, stdenv, websockets - }: - mkDerivation { - pname = "websockets-snap"; - version = "0.10.3.0"; - sha256 = "b34a40583a2111bb44233b728095fac38b8de1ab74c027fc4ee92a65af373be4"; - libraryHaskellDepends = [ - base bytestring bytestring-builder io-streams mtl snap-core - snap-server websockets - ]; - doHaddock = false; - doCheck = false; - description = "Snap integration for the websockets library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.5"; - sha256 = "51e73d9a404b262f7726c2d706c9a354b880abf3574c535bd725c910b29d8a2e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.12"; - sha256 = "fdc8b86edac17d57a56a04f149f796f55bfffa04e3c8d32afeedf5775252827f"; - libraryHaskellDepends = [ - base deepseq mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.0.6"; - sha256 = "1d8c0998b70af7b850a9d22642a50c6334ec47acdb8a31a90de7533d4b6b7c78"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wikicfp-scraper" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scalpel-core, stdenv - , text, time - }: - mkDerivation { - pname = "wikicfp-scraper"; - version = "0.1.0.9"; - sha256 = "9e3cfd6dae669c34c8037cfc0996f371799297f4d08588702399413d8a4242e2"; - libraryHaskellDepends = [ - attoparsec base bytestring scalpel-core text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wikicfp-scraper"; - description = "Scrape WikiCFP web site"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.0"; - sha256 = "e68ee75a7ae1c5189f8d0b11cf123e834c0d4c34e7f3e9136a37843bc2593630"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.3"; - sha256 = "8d120815f9150fc4ce51d74c290c82632ae34c3c894572b3ad03618ce7ab5859"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "windns" = callPackage - ({ mkDerivation, base, bytestring, deepseq, dnsapi, stdenv }: - mkDerivation { - pname = "windns"; - version = "0.1.0.0"; - sha256 = "0c60f45e4a0563365283586e5d760ea9d2b8247e8c6b8955b90285c078e5f0c2"; - revision = "3"; - editedCabalFile = "0j6gqyvhv7hxm5n249nrv0d9r41qb0yc4qdrzkjgs6lchndi6mrp"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ dnsapi ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the Windows dnsapi standard library"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) dnsapi;}; - "wire-streams" = callPackage - ({ mkDerivation, base, binary, binary-parsers, bytestring - , io-streams, stdenv - }: - mkDerivation { - pname = "wire-streams"; - version = "0.1.1.0"; - sha256 = "96dffb70c08c89589881c96f199d271b55e4a5b3cc5be0f3e24e101858e2fb27"; - revision = "1"; - editedCabalFile = "1j7gpk3k82h0kxnhpv40jmnqxpnr0v0m4lj6bhpga81vlmznr088"; - libraryHaskellDepends = [ - base binary binary-parsers bytestring io-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/wire-streams"; - description = "Fast binary io-streams adapter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "withdependencies" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, profunctors - , stdenv - }: - mkDerivation { - pname = "withdependencies"; - version = "0.2.4.2"; - sha256 = "ff51ed5d94ec0051d61458ef38264e0c21119606377d27cc0d9a5a8ae32bf312"; - libraryHaskellDepends = [ - base conduit containers mtl profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/withdependencies"; - description = "Run computations that depend on one or more elements in a stream"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "witherable" = callPackage - ({ mkDerivation, base, base-orphans, containers, hashable, stdenv - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "witherable"; - version = "0.2"; - sha256 = "9ddb5a2b02fe0f7950742461dfabc9fc4aba245eddeec6afa9e1cd35fa16ea2d"; - libraryHaskellDepends = [ - base base-orphans containers hashable transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/witherable"; - description = "filterable traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.2"; - sha256 = "4ba12c726d60688b8173db3891aa1dce7f57c6364c40ba2f1c2c8d16404bd30b"; - revision = "1"; - editedCabalFile = "15vwynd5v6xm92dxkxf125grd8sv599n5bnj92qqmhlc89psxhxk"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.0"; - sha256 = "b7ce310688626b25c19e2c93c3546ce5f6a3a6c5943b0a687031b757ba494930"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Wadler/Leijen pretty printer with annotations and slightly modernized API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.1"; - sha256 = "a7c7f6aa14f78bf6a8aae1a629433872f8bfb377b1392f08047520cdcb3b70fc"; - revision = "1"; - editedCabalFile = "1mlbjjk5mhv3jxzqvfspm07di09pns0xfalhx68k2r39z4lj1fa5"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "wl-pprint-extras" = callPackage - ({ mkDerivation, base, containers, nats, semigroupoids, semigroups - , stdenv, text, utf8-string - }: - mkDerivation { - pname = "wl-pprint-extras"; - version = "3.5.0.5"; - sha256 = "a9c21a85a729191fc422938a1f785d61be52f3a2923d8d79dade9b21e8e98d8f"; - libraryHaskellDepends = [ - base containers nats semigroupoids semigroups text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/wl-pprint-extras/"; - description = "A free monad based on the Wadler/Leijen pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-terminfo" = callPackage - ({ mkDerivation, base, bytestring, containers, nats, semigroups - , stdenv, terminfo, text, transformers, wl-pprint-extras - }: - mkDerivation { - pname = "wl-pprint-terminfo"; - version = "3.7.1.4"; - sha256 = "3cdaba571fc3f8c51e39d14773b23f0f8237bb2d33dbaf9230a98d4b2f388d20"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers nats semigroups terminfo text - transformers wl-pprint-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/wl-pprint-terminfo/"; - description = "A color pretty printer with terminfo support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-text" = callPackage - ({ mkDerivation, base, base-compat, stdenv, text }: - mkDerivation { - pname = "wl-pprint-text"; - version = "1.1.1.1"; - sha256 = "8bdeeaef7e1f55ba582cd4ea104dcd9346b461da09431f3b366b4522583e42ec"; - libraryHaskellDepends = [ base base-compat text ]; - doHaddock = false; - doCheck = false; - description = "A Wadler/Leijen Pretty Printer for Text values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word-wrap" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "word-wrap"; - version = "0.4.1"; - sha256 = "eb72f91947c0c62cb862feb33cad9efdc5e720f456fa9ca68ef8ac9d1ec42c97"; - revision = "1"; - editedCabalFile = "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/word-wrap/"; - description = "A library for word-wrapping"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "0.1.0.0"; - sha256 = "737685799cdd97c2178c749a60906d15548b040570b90f1bbb4f259ba0e756a5"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.2.1"; - sha256 = "b3d069b38d709becdd5ebc75859ff46833419d25f6168367e672243f29491237"; - revision = "1"; - editedCabalFile = "0kicf24sa2afxw258h2rrshb6sbi9vvjsl6n1736gp6ryglpw60v"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq-stringless" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string, wreq - }: - mkDerivation { - pname = "wreq-stringless"; - version = "0.5.9.1"; - sha256 = "502cd16163ff3356f5477ed7ab1b67147aa6bb445238055450df12b69697f235"; - libraryHaskellDepends = [ base bytestring text utf8-string wreq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/j-keck/wreq-stringless#readme"; - description = "Simple wrapper to use wreq without Strings"; - license = stdenv.lib.licenses.mit; - }) {}; - "writer-cps-full" = callPackage - ({ mkDerivation, base, stdenv, writer-cps-lens, writer-cps-morph - , writer-cps-mtl, writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-full"; - version = "0.1.0.0"; - sha256 = "ba51df5149470be6d70fd179f2af4cae30824a3a63528f1549a97f57610a5e95"; - revision = "1"; - editedCabalFile = "01zizhxk6kk5z3sqv5r7dp2yxbv5q87h5wgb5kbss60ncf042661"; - libraryHaskellDepends = [ - base writer-cps-lens writer-cps-morph writer-cps-mtl - writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-full#readme"; - description = "WriteT and RWST monad transformers (Reexport with all dependencies)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-lens" = callPackage - ({ mkDerivation, base, lens, profunctors, stdenv, transformers - , writer-cps-mtl, writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-lens"; - version = "0.1.0.1"; - sha256 = "2d6b8b6f4f86dcb3cc75bdd25d4ab186d09c2859023f3a6ef2171576b0d306ef"; - libraryHaskellDepends = [ - base lens profunctors transformers writer-cps-mtl - writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/writer-cps-lens#readme"; - description = "Lens instances for the stricter CPS WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-morph" = callPackage - ({ mkDerivation, base, mmorph, stdenv, writer-cps-transformers }: - mkDerivation { - pname = "writer-cps-morph"; - version = "0.1.0.2"; - sha256 = "e91d07b7dce83973c8ad8f489e161ea8092bd3c7d161f4e57cddeedd2f3fd5d8"; - revision = "1"; - editedCabalFile = "0dqpbpaidwa7ahk0n7pv397mv7ncr26p3vcrjh1xzl6vk26bdah5"; - libraryHaskellDepends = [ base mmorph writer-cps-transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/writer-cps-morph#readme"; - description = "MFunctor instance for CPS style WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-mtl" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-mtl"; - version = "0.1.1.4"; - sha256 = "62a3b3b76a5dc0dc6e8b9837afc8c5fc83fb334a034f89fab6a4a544fe204870"; - libraryHaskellDepends = [ - base mtl transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-mtl#readme"; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-transformers" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "writer-cps-transformers"; - version = "0.1.1.3"; - sha256 = "8aa22832fdb413c706a6862b83ad4a4ef8dd61ae8658aca6e5076cf2a5cd4aae"; - revision = "1"; - editedCabalFile = "151djln523rlil7vgm5k6yprfzjwdavhg6prg7d4jrrgggwfpq79"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-transformers#readme"; - description = "WriteT and RWST monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ws" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-uri, base - , bytestring, exceptions, haskeline, mtl, network - , optparse-applicative, stdenv, strict, text, vector, websockets - , wuss - }: - mkDerivation { - pname = "ws"; - version = "0.0.4"; - sha256 = "d88080c45551cccb8e8de012795852d9ca3c98b97519f2b2e81118d18f3a5f02"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec-uri base bytestring exceptions haskeline mtl - network text websockets wuss - ]; - executableHaskellDepends = [ - async attoparsec attoparsec-uri base bytestring exceptions - haskeline mtl network optparse-applicative strict text vector - websockets wuss - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/ws#readme"; - description = "A simple CLI utility for interacting with a websocket"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.9"; - sha256 = "3f3529a040cd40aaf8a76a0605fab252d21cb5cd3c3924b5988087a5dbfe40d1"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.3"; - sha256 = "41740f949bb773dc721d342a85587a512658c81ee8cd38f102473b315e127356"; - revision = "1"; - editedCabalFile = "06zzirygvzp0ssdg9blipdwmd0b41p4gxh3ldai7ngjyjsdclwsx"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.6"; - sha256 = "6a276f595cf91c9688129cad4c9c6be9c349ffc0de22300eeb3dfa6a2b6e7635"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.10"; - sha256 = "761c9d77322528259b690508e829cb360feb1fc542951a99f3af51ae980e45d7"; - revision = "1"; - editedCabalFile = "1isap8v1gh31q4pj3gn155ya8nd1da0a5a3cryqh4yhf0ivbwl0w"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, hspec, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.4"; - sha256 = "5a2a56d969a6410b65150bc4254f343c6bbe585e60eb4890d2bc0ac6c1f334eb"; - revision = "1"; - editedCabalFile = "08xip42hqa21w3klaw41z5s6rdh82wq0gcysqmwvyzbkldgd7pj8"; - libraryHaskellDepends = [ - array base bytestring deepseq hspec mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xenstore" = callPackage - ({ mkDerivation, base, bytestring, cereal, mtl, network, stdenv }: - mkDerivation { - pname = "xenstore"; - version = "0.1.1"; - sha256 = "c2b538c9ce6716f4a1b4c0cb63ed5c6e5ee3e69e80dbb7826ee7f5392f45e874"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring cereal mtl network ]; - doHaddock = false; - doCheck = false; - description = "Xenstore client access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xhtml" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "xhtml"; - version = "3000.2.2.1"; - sha256 = "5cc869013ecc07ff68b3f873c0ab7f03b943fd7fa16d6f8725d4601b2f9f6924"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/xhtml"; - description = "An XHTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.1"; - sha256 = "097711246a78389bdde19484d422ffb2248d46ab62248e4ca653c50e12ff0928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3"; - sha256 = "98d8d1263462c7880afefff15957affe969d202bd3716f5bb553c6ada55c4355"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, monad-control, resourcet, stdenv - , text, transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.8.0"; - sha256 = "0382bfd3627be4970b11228948274faef51ca9a2590a7723b5787a7205a52036"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq monad-control - resourcet text transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-parse" = callPackage - ({ mkDerivation, base, conduit, conduit-parse, containers - , exceptions, parsers, stdenv, text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-parse"; - version = "0.3.1.2"; - sha256 = "c1aae117720128195dbbf2ce196271e4ca2973163c6a03a1b0ead3b32f936308"; - revision = "1"; - editedCabalFile = "0jnnr4z3c6rq2dz0ldiic5zwkrp36igf6gip11qrm9ss2pk9khbl"; - libraryHaskellDepends = [ - base conduit conduit-parse containers exceptions parsers text - xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/xml-conduit-parse"; - description = "Streaming XML parser based on conduits"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0"; - sha256 = "7bcec0aad83e72c2870efd3327553b3d78f6332cf01c12ad4b67c02f499015a3"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-isogen" = callPackage - ({ mkDerivation, base, deepseq, dom-parser, lens, mtl, QuickCheck - , semigroups, stdenv, template-haskell, text, xml-conduit - , xml-conduit-writer - }: - mkDerivation { - pname = "xml-isogen"; - version = "0.3.0"; - sha256 = "9f812d7bb5dd280e62f5013fd77af27e3710fb1a76dcf7a12f0abbfae5400a17"; - libraryHaskellDepends = [ - base deepseq dom-parser lens mtl QuickCheck semigroups - template-haskell text xml-conduit xml-conduit-writer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/xml-isogen"; - description = "Generate XML-isomorphic types"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.1.6.3"; - sha256 = "4dd7f1a91fbb12ae52d5a14badd9f38c0f0d7556f08ee77d79a67cc546dcb1e8"; - revision = "2"; - editedCabalFile = "1phba1j6ggxfsq4ivhd5wibzw1b9hwppqmgichyj3xg9z3widmnl"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlbf" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "xmlbf"; - version = "0.4.1"; - sha256 = "189a02e8b54c3576c3a919799def7b83c0e602b222264901c644c941c34fdc75"; - revision = "1"; - editedCabalFile = "0j5yvsz0ib5w80wp1gc0li376adw8l861xvf5paa2hdq55jkxvi6"; - libraryHaskellDepends = [ - base bytestring containers text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlbf-xeno" = callPackage - ({ mkDerivation, base, bytestring, html-entities, stdenv, text - , unordered-containers, xeno, xmlbf - }: - mkDerivation { - pname = "xmlbf-xeno"; - version = "0.1.1"; - sha256 = "6c1c4e419240c1e480d5543e89883cd2a356c1bb470a452f935424a80367dd32"; - libraryHaskellDepends = [ - base bytestring html-entities text unordered-containers xeno xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "xeno backend support for the xmlbf library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.5.7"; - sha256 = "955856413e70375c794766d04ac9ab7f0d3337dbb04a412c9b7ff5c415acac00"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/haskell-xss-sanitize"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, HDBC - , parsec, stdenv, template-haskell - }: - mkDerivation { - pname = "yeshql"; - version = "3.0.1.3"; - sha256 = "376126afd611d84599fd9c0f9f50c27bea8b9b8630e608bda424555829765b13"; - libraryHaskellDepends = [ - base containers convertible filepath HDBC parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "YesQL-style SQL database abstraction"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , conduit, data-default-class, directory, fast-logger, monad-logger - , resourcet, semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, transformers, unix, unordered-containers - , wai, wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0"; - sha256 = "8a242ffe1df10bc2c5dffb6e255ad21b11e96a9c4794bac20504b67f973da773"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring conduit - data-default-class directory fast-logger monad-logger resourcet - semigroups shakespeare streaming-commons template-haskell text - transformers unix unordered-containers wai wai-extra wai-logger - warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-alerts" = callPackage - ({ mkDerivation, alerts, base, blaze-html, blaze-markup, safe - , stdenv, text, yesod-core - }: - mkDerivation { - pname = "yesod-alerts"; - version = "0.1.2.0"; - sha256 = "8e52c8a7ec9cdbe7cdc06f39ea4e27b852be0391cf78652e349f0f2c169b146f"; - libraryHaskellDepends = [ - alerts base blaze-html blaze-markup safe text yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/yesod-alerts#readme"; - description = "Alert messages for the Yesod framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, conduit, conduit-extra - , containers, cryptonite, data-default, email-validate, file-embed - , http-client, http-client-tls, http-conduit, http-types, memory - , mime-mail, network-uri, nonce, persistent, persistent-template - , random, resourcet, safe, shakespeare, stdenv, template-haskell - , text, time, transformers, unliftio, unliftio-core - , unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.3"; - sha256 = "a0df427bfd95374957435f56561787d0bc66f978a7ea7cb017ec64f59c8698b8"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup byteable bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory mime-mail network-uri nonce persistent persistent-template - random resourcet safe shakespeare template-haskell text time - transformers unliftio unliftio-core unordered-containers wai - yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, fb, http-conduit - , resourcet, shakespeare, stdenv, text, time, transformers - , unliftio, wai, yesod-auth, yesod-core, yesod-fb - }: - mkDerivation { - pname = "yesod-auth-fb"; - version = "1.9.0"; - sha256 = "e8751b7703b2bc73eb37ec3ed03f3afec552cbc3933dff25fa0d899dcfea46c2"; - libraryHaskellDepends = [ - aeson base bytestring conduit fb http-conduit resourcet shakespeare - text time transformers unliftio wai yesod-auth yesod-core yesod-fb - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-auth-fb"; - description = "Authentication backend for Yesod using Facebook"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7"; - sha256 = "65b9a941a9eb87421dfc57f817a7e4dd46bb204b0f27438084f7417805434f1c"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , bytestring, Cabal, conduit, conduit-extra, containers - , data-default-class, directory, file-embed, filepath, fsnotify - , http-client, http-client-tls, http-reverse-proxy, http-types - , network, optparse-applicative, parsec, process, project-template - , resourcet, say, shakespeare, split, stdenv, stm - , streaming-commons, tar, template-haskell, text, time - , transformers, transformers-compat, unix-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.3"; - sha256 = "e4db295b4c651c205a1730df38501c217d9b600f3dbc1eea21d5fa47e832aedc"; - revision = "4"; - editedCabalFile = "1iw9m3z6m4n9dlwamf1kwr7pp2wpk6awf1m63zjkgw5j4vwxlcpg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec base base64-bytestring blaze-builder bytestring Cabal - conduit conduit-extra containers data-default-class directory - file-embed filepath fsnotify http-client http-client-tls - http-reverse-proxy http-types network optparse-applicative parsec - process project-template resourcet say shakespeare split stm - streaming-commons tar template-haskell text time transformers - transformers-compat unix-compat unliftio unordered-containers wai - wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , byteable, bytestring, case-insensitive, cereal, clientsession - , conduit, conduit-extra, containers, cookie, deepseq - , deepseq-generics, directory, fast-logger, http-types - , monad-logger, mtl, old-locale, parsec, path-pieces, primitive - , random, resourcet, safe, semigroups, shakespeare, stdenv - , template-haskell, text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.5"; - sha256 = "b446be00eb6580317c2cce24144768aeb8505b90ce9ae3142796b2c3dd32407a"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup byteable bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq deepseq-generics directory fast-logger - http-types monad-logger mtl old-locale parsec path-pieces primitive - random resourcet safe semigroups shakespeare template-haskell text - time transformers unix-compat unliftio unordered-containers vector - wai wai-extra wai-logger warp word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-csp" = callPackage - ({ mkDerivation, attoparsec, base, case-insensitive - , mono-traversable, network-uri, semigroups, stdenv, syb - , template-haskell, text, wai, yesod, yesod-core - }: - mkDerivation { - pname = "yesod-csp"; - version = "0.2.4.0"; - sha256 = "e05d31857d6d0e8aececdd83b6a896267ecab2c29426d559e3dafb259eac92a5"; - libraryHaskellDepends = [ - attoparsec base case-insensitive mono-traversable network-uri - semigroups syb template-haskell text wai yesod yesod-core - ]; - doHaddock = false; - doCheck = false; - description = "Add CSP headers to Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-eventsource" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, stdenv, transformers - , wai, wai-eventsource, wai-extra, yesod-core - }: - mkDerivation { - pname = "yesod-eventsource"; - version = "1.6.0"; - sha256 = "6fceeca34d5e80c8a0d65ab95fab3c53807d1f18eb506abdef67a8f70d0e418b"; - libraryHaskellDepends = [ - base blaze-builder conduit transformers wai wai-eventsource - wai-extra yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Server-sent events support for Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, crypto-api, fb - , http-client-tls, http-conduit, stdenv, text, wai, yesod-core - }: - mkDerivation { - pname = "yesod-fb"; - version = "0.5.0"; - sha256 = "de375004c12e89eec47738d60465c7c63b5f0c7bfc3591c70a35522fdc0841db"; - libraryHaskellDepends = [ - aeson base bytestring conduit crypto-api fb http-client-tls - http-conduit text wai yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-fb"; - description = "Useful glue functions between the fb library and Yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, template-haskell, text, time, transformers - , wai, xss-sanitize, yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.1"; - sha256 = "b8ff14eafff4bb6c2b01b235e8ebeafe9802f545979c1c1227076b06edd3f616"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare - template-haskell text time transformers wai xss-sanitize yesod-core - yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form-bootstrap4" = callPackage - ({ mkDerivation, base, shakespeare, stdenv, text, yesod-core - , yesod-form - }: - mkDerivation { - pname = "yesod-form-bootstrap4"; - version = "1.0.0"; - sha256 = "d8651c4f14fd0261a860522e660d4e3ae96308db02576b38a01d8b609ae1297c"; - libraryHaskellDepends = [ - base shakespeare text yesod-core yesod-form - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-form-bootstrap4#readme"; - description = "renderBootstrap4"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrepo" = callPackage - ({ mkDerivation, base, directory, http-types, process, stdenv - , temporary, text, unliftio, wai, yesod-core - }: - mkDerivation { - pname = "yesod-gitrepo"; - version = "0.3.0"; - sha256 = "b03c67c506bc3fc402cb41759d69f2c3159af47959cbd964cb6531996084981e"; - libraryHaskellDepends = [ - base directory http-types process temporary text unliftio wai - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yesod-gitrepo#readme"; - description = "Host content provided by a Git repo"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, gitrev, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.0.0"; - sha256 = "df9f374e6099e55eb62cc273451605ce8746785a293e76115d25002355fee052"; - revision = "1"; - editedCabalFile = "1b0df34lz569gnwbbz0p20dml6bi2nbva9wfdsxyvva0dhvxjaz5"; - libraryHaskellDepends = [ - aeson base gitrev template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.6.1.0"; - sha256 = "6d0b97592d74ca45e204f1876fb113a4830c5f35612b876175169af3d2f79615"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-paginator" = callPackage - ({ mkDerivation, base, persistent, resourcet, stdenv, text - , transformers, yesod - }: - mkDerivation { - pname = "yesod-paginator"; - version = "0.11.0"; - sha256 = "60afa9b2a11f8c61a5ca090d3e0b0effe35162f67038e9c833a6e100b28aeb96"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base persistent resourcet text transformers yesod - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pbrisbin/yesod-paginator"; - description = "A pagination approach for yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0"; - sha256 = "42be2b4277fb265e18273503f3592259feb69ce5bfa2d2a862639b755c4fa5bd"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-recaptcha2" = callPackage - ({ mkDerivation, base, classy-prelude-yesod, http-conduit, stdenv - , yesod-auth - }: - mkDerivation { - pname = "yesod-recaptcha2"; - version = "0.2.4"; - sha256 = "2848ecd3fd581cb3beba406640417add2def248c1fc7f20b6ba6a62d220181ab"; - libraryHaskellDepends = [ - base classy-prelude-yesod http-conduit yesod-auth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-recaptcha2#readme"; - description = "yesod recaptcha2"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, byteable, bytestring, conduit, containers - , cryptonite, cryptonite-conduit, css-text, data-default, directory - , exceptions, file-embed, filepath, hashable, hjsmin, http-types - , memory, mime-types, old-time, process, resourcet, stdenv - , template-haskell, text, transformers, unix-compat - , unordered-containers, wai, wai-app-static, yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0"; - sha256 = "bd0bf5924bb9c27fe24047816018158e92fc687053c190221af2f03bac94880e"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder byteable - bytestring conduit containers cryptonite cryptonite-conduit - css-text data-default directory exceptions file-embed filepath - hashable hjsmin http-types memory mime-types old-time process - resourcet template-haskell text transformers unix-compat - unordered-containers wai wai-app-static yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-table" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , semigroups, stdenv, text, yesod-core - }: - mkDerivation { - pname = "yesod-table"; - version = "2.0.3"; - sha256 = "363a70fe6def770776e1e0e777651c66e4849e4d95e853956a2f2ae1be80189b"; - libraryHaskellDepends = [ - base bytestring containers contravariant semigroups text yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/yesod-table"; - description = "HTML tables for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, bytestring, case-insensitive, conduit, containers - , cookie, hspec-core, html-conduit, http-types, HUnit, network - , persistent, pretty-show, semigroups, stdenv, text, time - , transformers, wai, wai-extra, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.4"; - sha256 = "cffa1639237646836be0ead1bc0b1787a3fccb384cbb7e77dcbcf54c1ed3b95b"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-html blaze-markup bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit network persistent pretty-show semigroups text - time transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-text-markdown" = callPackage - ({ mkDerivation, aeson, base, markdown, persistent, shakespeare - , stdenv, text, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-text-markdown"; - version = "0.1.10"; - sha256 = "3cee8b3d8d84f30e8b825076d650afb05e79ebd22f34a21fc7ad7f45e1637ddc"; - libraryHaskellDepends = [ - aeson base markdown persistent shakespeare text yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - description = "Yesod support for Text.Markdown."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai, wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0"; - sha256 = "4a642982209e27e3b1dac0f29c2c86c4ac39e5109483fa8274e97cd8a574e446"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai wai-websockets - websockets yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-language" = callPackage - ({ mkDerivation, alex, array, base, binary, containers - , data-default, hashable, microlens-platform, oo-prototypes - , pointedlist, regex-base, regex-tdfa, stdenv, template-haskell - , transformers-base, unordered-containers - }: - mkDerivation { - pname = "yi-language"; - version = "0.17.1"; - sha256 = "4aee628b278e9d6b2b2e92a8974696ce6de10c30ef137ababb709bdca193b69e"; - libraryHaskellDepends = [ - array base binary containers data-default hashable - microlens-platform oo-prototypes pointedlist regex-base regex-tdfa - template-haskell transformers-base unordered-containers - ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/yi#readme"; - description = "Collection of language-related Yi libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.2"; - sha256 = "2ce82bd1e87ea37cd8ad1e1bb3886bb3535ce583aea2841d07f0b47658a278be"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.4"; - sha256 = "38cdc62d9673b8b40999de69da2ec60dab7a65fb1c22133ecd54e0a2ec61d5d5"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.7.0"; - sha256 = "58d4504ee607cb681fc3da2474ed92afaefdb2dc34752b145aa9f746ab29079f"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.1.0"; - sha256 = "65942d6a2ccef6d2b78183f250a6d8b6c04d081ab3df1f39215de0a76a26d9dc"; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, Cabal, containers - , digest, directory, filepath, mtl, old-time, pretty, stdenv, text - , time, unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.3.2.5"; - sha256 = "0939d80f13e34a5140a8b89248ad16a4c5183bcbb7c0d0f8eafd7e538854b393"; - revision = "1"; - editedCabalFile = "1js8im7fxzdg1izbdwr8q4w9bsrhmlhgmw5y60dgwhk9d21bdgyd"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl old-time pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.1.1"; - sha256 = "b88ce2ad46b218a7f0f31ffe02f61105c0ad2b35bf3a171a8e44f8727590d2f2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, profunctors - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.2.5"; - sha256 = "2d127772564655df0cb99d5191b91a555797e66e535d0b8b4f5ed4d54097c085"; - revision = "3"; - editedCabalFile = "0y0klc2jaj611cjvmqi95dyj9yvribf9xhibn1andrz5rs6ysz3p"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2"; - sha256 = "0dcc7d925769bdbeb323f83b66884101084167501f11d74d21eb9bc515707fed"; - revision = "1"; - editedCabalFile = "1wihqz5arcv5hylwpvjh5ajny88wbys5kas8ic1bchi5k19nvkfa"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.0.0"; - sha256 = "0875840799d987cf8f8dd5e0a7686978084b3088c07123e66f6f88561f474bff"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebookexperimental/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ztail" = callPackage - ({ mkDerivation, array, base, bytestring, filepath, hinotify - , process, regex-posix, stdenv, time, unix, unordered-containers - }: - mkDerivation { - pname = "ztail"; - version = "1.2.0.2"; - sha256 = "a14341d51da6dbef9f0edcdefe185dbd7726880ec4e230855fb9871de7c07717"; - revision = "1"; - editedCabalFile = "0d0cpgb0v849zxl12c2gkm3x4nmyfycka1pcfix43lawx62rky8s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base bytestring filepath hinotify process regex-posix time - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Multi-file, colored, filtered log tailer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/ghc843.nix b/generated/stable/stack2nix/ghc843.nix deleted file mode 100644 index ace6dbf..0000000 --- a/generated/stable/stack2nix/ghc843.nix +++ /dev/null @@ -1,41220 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc843 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.2"; - sha256 = "b8364da380f5f1d85d13e427851a153be2809e1838d16393e37566f34b384b87"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Agda" = callPackage - ({ mkDerivation, alex, array, async, base, binary, blaze-html - , boxes, bytestring, Cabal, containers, cpphs, data-hash, deepseq - , directory, EdisonCore, edit-distance, emacs, equivalence - , filemanip, filepath, geniplate-mirror, gitrev, happy, hashable - , hashtables, haskeline, ieee754, mtl, murmur-hash, pretty, process - , regex-tdfa, stdenv, stm, strict, template-haskell, text, time - , transformers, unordered-containers, uri-encode, zlib - }: - mkDerivation { - pname = "Agda"; - version = "2.5.4.1"; - sha256 = "7759aa76936e6a35325c2e186a7546553921775155a426c8edc9a234f58ab72f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal filemanip filepath process ]; - libraryHaskellDepends = [ - array async base binary blaze-html boxes bytestring containers - data-hash deepseq directory EdisonCore edit-distance equivalence - filepath geniplate-mirror gitrev hashable hashtables haskeline - ieee754 mtl murmur-hash pretty process regex-tdfa stm strict - template-haskell text time transformers unordered-containers - uri-encode zlib - ]; - libraryToolDepends = [ alex cpphs happy ]; - executableHaskellDepends = [ base directory filepath process ]; - executableToolDepends = [ emacs ]; - doHaddock = false; - doCheck = false; - postInstall = '' - files=("$data/share/ghc-"*"/"*"-ghc-"*"/Agda-"*"/lib/prim/Agda/"{Primitive.agda,Builtin"/"*.agda}) - for f in "''${files[@]}" ; do - $out/bin/agda $f - done - for f in "''${files[@]}" ; do - $out/bin/agda -c --no-main $f - done - $out/bin/agda-mode compile - ''; - homepage = "http://wiki.portal.chalmers.se/agda/"; - description = "A dependently typed functional programming language and proof assistant"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "Allure" = callPackage - ({ mkDerivation, async, base, containers, enummapset, filepath - , LambdaHack, optparse-applicative, random, stdenv - , template-haskell, text, transformers, zlib - }: - mkDerivation { - pname = "Allure"; - version = "0.8.3.0"; - sha256 = "6b83013281da6ccc5f0bf4c483a53acdbff7679c7234a1dfa57261c45a8cf8fb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - async base containers enummapset filepath LambdaHack - optparse-applicative random template-haskell text transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://allureofthestars.com"; - description = "Near-future Sci-Fi roguelike and tactical squad game"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "BiobaseNewick" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, cereal - , cereal-text, cmdargs, containers, fgl, ForestStructures - , QuickCheck, stdenv, text, text-binary, vector - }: - mkDerivation { - pname = "BiobaseNewick"; - version = "0.0.0.2"; - sha256 = "6432f684a75fd8a2cea59a5359a59f48020ead19119efaed7018ecae726d13bd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/choener/BiobaseNewick"; - description = "Newick file format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "2.2.0.1"; - sha256 = "02b5301304df73cea3c7d544b5026b228141dc3ac1d5b08c9a206f99aa330a7b"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChasingBottoms" = callPackage - ({ mkDerivation, base, containers, mtl, QuickCheck, random, stdenv - , syb - }: - mkDerivation { - pname = "ChasingBottoms"; - version = "1.3.1.5"; - sha256 = "60f43e0956459606e3432ab528bada79503f928c9fa26e52deaea8961613d341"; - libraryHaskellDepends = [ - base containers mtl QuickCheck random syb - ]; - doHaddock = false; - doCheck = false; - description = "For testing partial and infinite values"; - license = stdenv.lib.licenses.mit; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ClustalParser" = callPackage - ({ mkDerivation, base, cmdargs, either-unwrap, parsec, stdenv, text - , vector - }: - mkDerivation { - pname = "ClustalParser"; - version = "1.2.3"; - sha256 = "fed67bdcb9d89d871b02f556e5a294d0ea6fd05576f92621a8797abff4325a72"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec text vector ]; - executableHaskellDepends = [ base cmdargs either-unwrap ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing Clustal tools output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.2"; - sha256 = "613314357579b29e1d3fa8451b51e8b9a1307a2b33b65a3f2b2ef2bece025169"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DRBG" = callPackage - ({ mkDerivation, base, bytestring, cereal, cipher-aes128 - , crypto-api, cryptohash-cryptoapi, entropy, mtl, parallel - , prettyclass, stdenv, tagged - }: - mkDerivation { - pname = "DRBG"; - version = "0.5.5"; - sha256 = "21df3202486cc83c7cc3f867cb139eac9a3f69bd91b5f6b016ae026e03c33bfd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal cipher-aes128 crypto-api - cryptohash-cryptoapi entropy mtl parallel prettyclass tagged - ]; - doHaddock = false; - doCheck = false; - description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.3.4"; - sha256 = "77b7daec5a79ade779706748f11b4d9b8f805e57a68e7406c3b5a1dee16e0c2f"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.12.1.0"; - sha256 = "731493be9cb960c3159458dc24b1a217d6f26e1f46a840bef880accd04d5bd1d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "EdisonAPI" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "EdisonAPI"; - version = "1.3.1"; - sha256 = "95a3b8d01599520a50456219b5a2e9f7832bcddaaeb8e94ce777bd87a4a6b56e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://rwd.rdockins.name/edison/home/"; - description = "A library of efficient, purely-functional data structures (API)"; - license = stdenv.lib.licenses.mit; - }) {}; - "EdisonCore" = callPackage - ({ mkDerivation, array, base, containers, EdisonAPI, mtl - , QuickCheck, stdenv - }: - mkDerivation { - pname = "EdisonCore"; - version = "1.3.2.1"; - sha256 = "73c6014d07107a9ed21df76a59f70c9d68d64ac84cced35f7b628f1d792cf239"; - libraryHaskellDepends = [ - array base containers EdisonAPI mtl QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://rwd.rdockins.name/edison/home/"; - description = "A library of efficient, purely-functional data structures (Core Implementations)"; - license = stdenv.lib.licenses.mit; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Fin" = callPackage - ({ mkDerivation, alg, base, foldable1, natural-induction, peano - , stdenv, universe-base - }: - mkDerivation { - pname = "Fin"; - version = "0.2.6.0"; - sha256 = "1c562c390626c7805721917ce5ae20870d1c4f3150f76ee708ed273a601c0ca3"; - libraryHaskellDepends = [ - alg base foldable1 natural-induction peano universe-base - ]; - doHaddock = false; - doCheck = false; - description = "Finite totally-ordered sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.4"; - sha256 = "43d3878154d543a337b0cc45f40dcd57153e47fca39122bac0e5ed81b6bc5b3d"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ForestStructures" = callPackage - ({ mkDerivation, base, containers, fgl, QuickCheck, stdenv - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "ForestStructures"; - version = "0.0.0.2"; - sha256 = "fe74067fee601844de5c839a115f2bd75d4a1be9f0ee8ec42c0150bcf886693f"; - libraryHaskellDepends = [ - base containers fgl QuickCheck unordered-containers vector - vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/choener/ForestStructures"; - description = "Tree- and forest structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.2.1.0"; - sha256 = "31c022e0ad63f259ff9fa582a235924786e929a95b52efae10a3d29fef7cb6a6"; - revision = "2"; - editedCabalFile = "0xlby7483dv33c13f44kkvmai186g72jhxmcq8749s1hyxi6fqnb"; - libraryHaskellDepends = [ base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.14"; - sha256 = "5cf8f7700a6b6ac33e39b2d7bd300679a245ff7c1498eb423901134f9d302106"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.9.3"; - sha256 = "3a77853eba3700c5346cd6d4008302e70dca93a7e8ac0d679cf41b16c7a4c9e8"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HCodecs" = callPackage - ({ mkDerivation, array, base, bytestring, QuickCheck, random - , semigroups, stdenv - }: - mkDerivation { - pname = "HCodecs"; - version = "0.5.1"; - sha256 = "a724616b79ac12c2d661dc3f54cfa0e7d530d1ba3eafa1e6c3e7116e035a3143"; - libraryHaskellDepends = [ - array base bytestring QuickCheck random semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; - description = "A library to read, write and manipulate MIDI, WAVE, and SoundFont2 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC" = callPackage - ({ mkDerivation, base, bytestring, containers, convertible, mtl - , old-time, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "HDBC"; - version = "2.4.0.2"; - sha256 = "670757fd674b6caf2f456034bdcb54812af2cdf2a32465d7f4b7f0baa377db5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers convertible mtl old-time text time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdbc/hdbc"; - description = "Haskell Database Connectivity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC-mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, HDBC, mysqlclient - , openssl, stdenv, time, utf8-string, zlib - }: - mkDerivation { - pname = "HDBC-mysql"; - version = "0.7.1.0"; - sha256 = "81c985d4a243c965930fb412b3175ca799ba66985f8b6844014fd600df1da7cf"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring HDBC time utf8-string ]; - librarySystemDepends = [ mysqlclient openssl zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ryantm/hdbc-mysql"; - description = "MySQL driver for HDBC"; - license = "LGPL"; - }) {inherit (pkgs) mysqlclient; inherit (pkgs) openssl; -inherit (pkgs) zlib;}; - "HDBC-session" = callPackage - ({ mkDerivation, base, HDBC, stdenv }: - mkDerivation { - pname = "HDBC-session"; - version = "0.1.2.0"; - sha256 = "aa057f18bbc9d2f9876152246682f546c9cf140192515c7c23b5be2fccc296e3"; - libraryHaskellDepends = [ base HDBC ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Bracketed connection for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HPDF" = callPackage - ({ mkDerivation, array, base, base64-bytestring, binary, bytestring - , containers, errors, mtl, random, stdenv, vector, zlib - }: - mkDerivation { - pname = "HPDF"; - version = "1.4.10"; - sha256 = "de2bfddd93eeef2129a2378e8dce486d086bec3c48ee2a1bf1a5fb01581607d4"; - revision = "1"; - editedCabalFile = "1djn0a9rk3qrbz31bxj115r65p28fi3wzcrkrnjvzibl3450pq30"; - libraryHaskellDepends = [ - array base base64-bytestring binary bytestring containers errors - mtl random vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.alpheccar.org"; - description = "Generation of PDF documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSet" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, stdenv }: - mkDerivation { - pname = "HSet"; - version = "0.0.1"; - sha256 = "eba93be5a76581585ae33af6babe9c2718fae307d41989cd36a605d9b0e8d16a"; - libraryHaskellDepends = [ base containers hashable hashtables ]; - doHaddock = false; - doCheck = false; - description = "Faux heterogeneous sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.0.3.22"; - sha256 = "8dac8a583c762675f2d64138303618f017d6be95d59e60774ea7cbfc040dab04"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.13.2.4"; - sha256 = "36c5cafd35683c37379a93098dea61e6194aa1b9cfd0cdad4e0f1643f4cf2bf6"; - revision = "2"; - editedCabalFile = "1kaxcx0xqpcxddaapywikg56ip9a172clikhsfvwd287hpyrjqff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.12"; - sha256 = "a3ff6a9c93771079121083f1691188fe45f84380118e0f76bc4578153c361990"; - revision = "2"; - editedCabalFile = "1gw6xzp1n4gsqwnbfr29ds8v4wpk78b2bha8i108dqav97viwm8c"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaTeX" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, matrix - , parsec, QuickCheck, stdenv, text, transformers, wl-pprint-extras - }: - mkDerivation { - pname = "HaTeX"; - version = "3.19.0.0"; - sha256 = "1fd977a582f44a62dafe32ad72acde8c0c01b0ae0ce5f7d6bbc4d91b68e24749"; - libraryHaskellDepends = [ - base bytestring containers hashable matrix parsec QuickCheck text - transformers wl-pprint-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; - description = "The Haskell LaTeX library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet" = callPackage - ({ mkDerivation, array, base, base64-string, bytestring, cryptohash - , mime-mail, mtl, network, old-time, pretty, stdenv, text - }: - mkDerivation { - pname = "HaskellNet"; - version = "0.5.1"; - sha256 = "3245d31ad76f9f9013a2f6e2285d73ed37376eeb073c100b9a6d19e87f0ca838"; - revision = "1"; - editedCabalFile = "12p3v58jhr54yzsmqgza3rbrp19w2iq5m43g568hcx20n7zwzwjk"; - libraryHaskellDepends = [ - array base base64-string bytestring cryptohash mime-mail mtl - network old-time pretty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/HaskellNet"; - description = "Client support for POP3, SMTP, and IMAP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet-SSL" = callPackage - ({ mkDerivation, base, bytestring, connection, data-default - , HaskellNet, network, stdenv, tls - }: - mkDerivation { - pname = "HaskellNet-SSL"; - version = "0.3.4.0"; - sha256 = "83ae92547fd5d52b5b74402101ec254423abeac0c0725e14a112d6ffc843040f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring connection data-default HaskellNet network tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dpwright/HaskellNet-SSL"; - description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, strict - , template-haskell, terminal-size, text, transformers, uniplate - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "Hoed"; - version = "0.5.1"; - sha256 = "a8f6dc9717e15642f00cd84a8d1030ac6a7c7870f7015e380bd728a843c3f4e7"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MaartenFaddegon/Hoed"; - description = "Lightweight algorithmic debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.15"; - sha256 = "cebdceef21d8f00feaa3dcc31b18fc960bbfeaec1326ece1edeb56d4cc54b545"; - revision = "1"; - editedCabalFile = "0bkcw2pjfgv1bhgkrpncvwq9czfr7cr4ak14n0v8c2y33i33wk5z"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsOpenSSL-x509-system" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, stdenv, unix }: - mkDerivation { - pname = "HsOpenSSL-x509-system"; - version = "0.1.0.3"; - sha256 = "5bdcb7ae2faba07a374109fea0a1431ae09d080f8574e60ab7a351b46f931f92"; - libraryHaskellDepends = [ base bytestring HsOpenSSL unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/HsOpenSSL-x509-system"; - description = "Use the system's native CA certificate store with HsOpenSSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.1.1"; - sha256 = "3b0959a9f1357b12aff50bda88e3af6e13ba0787758209c68a60fb6e88755e50"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "IPv6DB" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, fast-logger - , hedis, http-types, IPv6Addr, mtl, optparse-applicative, stdenv - , text, unordered-containers, vector, wai, wai-logger, warp - }: - mkDerivation { - pname = "IPv6DB"; - version = "0.3.1"; - sha256 = "96354eb278fe7de771fb7fd9f29dbe6f328a0497526dc85f066eca65c7074418"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hedis http-types IPv6Addr mtl text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring fast-logger hedis http-types IPv6Addr mtl - optparse-applicative text unordered-containers vector wai - wai-logger warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://ipv6db.cybervisible.com"; - description = "A RESTful microService for IPv6-related data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.0.0"; - sha256 = "8f7d0d81c23a2d2dc7e7333b82824070a53144d40e08741456c8afe078b2111a"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.2.9.5"; - sha256 = "849c6cf4a613f906f7e553a1baefe9c0dc61c13b41a5f5b9605cf80e328cc355"; - revision = "1"; - editedCabalFile = "0s6i5f2cpm29b88zjrs1na699v9kvfsbcvr25z6vyr6bi6mmxdfm"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-blp" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, directory - , filepath, hashable, JuicyPixels, optparse-simple, stdenv - , text-show, unordered-containers, vector - }: - mkDerivation { - pname = "JuicyPixels-blp"; - version = "0.1.0.1"; - sha256 = "2c8e0773e41fb841e90a36fb8c839670d2afebc6b89271f782fc5df250cbcc99"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base binary bytestring hashable JuicyPixels text-show - vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath JuicyPixels optparse-simple - text-show unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/NCrashed/JuicyPixels-blp#readme"; - description = "BLP format decoder/encoder over JuicyPixels library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.3.0"; - sha256 = "c5a03a9747bcd984924d6f7c9b4771188e297df82160e7d667ea8f4f671b0e22"; - revision = "3"; - editedCabalFile = "1xr4vjhzjw3ynibb6693dhcz2jbvbx4yg2bir8w2s98n37gwsxd7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LambdaHack" = callPackage - ({ mkDerivation, assert-failure, async, base, base-compat, binary - , bytestring, containers, deepseq, directory, enummapset, filepath - , ghc-prim, hashable, hsini, keys, miniutter, optparse-applicative - , pretty-show, random, sdl2, sdl2-ttf, stdenv, stm - , template-haskell, text, time, transformers, unordered-containers - , vector, vector-binary-instances, zlib - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.8.3.0"; - sha256 = "5a9b23a893ba809d8f7ff1ef810d4d542fcd7419876aef4208cf237a3662076c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-prim hashable hsini keys - miniutter optparse-applicative pretty-show random sdl2 sdl2-ttf stm - text time transformers unordered-containers vector - vector-binary-instances zlib - ]; - executableHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-prim hashable hsini keys - miniutter optparse-applicative pretty-show random stm - template-haskell text time transformers unordered-containers vector - vector-binary-instances zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://lambdahack.github.io"; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6"; - sha256 = "c1cdec79a5f585a5839eea26a2afe6a37aab5ed2f402a16e7d59fe9a4e925a9a"; - revision = "2"; - editedCabalFile = "1mca2r4gjznqdh4kck5cjkn53isgkhvkf3ri09qsn7nsssvgki0g"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JohnLato/listlike"; - description = "Generic support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.9"; - sha256 = "1d6045b8fdf7b89ed6b495e535613f5091cdfc9cdfe05a862207e76ce205f794"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MissingH" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath - , hslogger, HUnit, mtl, network, old-locale, old-time, parsec - , process, random, regex-compat, stdenv, time, unix - }: - mkDerivation { - pname = "MissingH"; - version = "1.4.1.0"; - sha256 = "49ecd2df3ad45d6da64a984e506cd0e2ca02c238a743d757feeea8c4cddce0ca"; - revision = "2"; - editedCabalFile = "1k7d8cgvpmln4imcrfpj4c02n3c5l1gkd5hs4hnar9ln0qh61cfx"; - libraryHaskellDepends = [ - array base containers directory filepath hslogger HUnit mtl network - old-locale old-time parsec process random regex-compat time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/missingh"; - description = "Large utility library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadPrompt" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "MonadPrompt"; - version = "1.0.0.5"; - sha256 = "b012cbbe83650f741c7b7f6eafcc89dec299b0ac74a758b6f3a8cdfc5d3bbeda"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - description = "MonadPrompt, implementation & examples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.1"; - sha256 = "abda4a297acf197e664695b839b4fb70f53e240f5420489dc21bcf6103958470"; - revision = "3"; - editedCabalFile = "0fiblwmwk48d1g9j99qrcg1ak904csgfb86y80d1nl2vr782cq6w"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4.1"; - sha256 = "262c29f630a761356454c2a382d149230ea2e621c95102b3d3b30427d7c0cd57"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Network-NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, convertible - , exceptions, hslogger, monad-loops, monad-peel, mstate, mtl - , network, NineP, regex-posix, stateref, stdenv, transformers - }: - mkDerivation { - pname = "Network-NineP"; - version = "0.4.3"; - sha256 = "8169e46ddfd690b96f25bc9a577568a363a270c2bddbb9fb3e1e7f1959644ec3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers convertible exceptions hslogger - monad-loops monad-peel mstate mtl network NineP regex-posix - stateref transformers - ]; - doHaddock = false; - doCheck = false; - description = "High-level abstraction over 9P protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OneTuple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "OneTuple"; - version = "0.2.2"; - sha256 = "d82e702485bcbdefbda0d12b6a250d318a269572ee58d63b60eee531e56624dc"; - revision = "3"; - editedCabalFile = "0m3a9fj2h0v529q3i1kq1jfbdj68wxsmhq65hgx2rwjpgb8cqf0z"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Singleton Tuple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.4"; - sha256 = "3989f6c4fe437843551004dd011c4308bf63d787ae4fbb8ce71d44b1b0b1f118"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.2.2"; - sha256 = "4cba40fe8eecee67c8251556b4c05d9e98256c11d49c20e914f8232bfae67da7"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.1.0"; - sha256 = "6b0745f6d421f658b57c13bfdbae014c0aa6871a98e11e98908d4a04461f1cf5"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, random, splitmix - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.13.2"; - sha256 = "7b560baa5853de777702dc23a6f2126ae4adbfdab163295bc56323a706914610"; - libraryHaskellDepends = [ - base containers deepseq random splitmix template-haskell - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.3.0"; - sha256 = "eee76dc7f9dd2d2cdeb014af728ff56f2f5d2908212bd3bb8c5e89f5c6485333"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.4"; - sha256 = "986efe76aad9a8530d4826b8c0f8034866f37b8d645ea34a9849edca9357c58d"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SCalendar" = callPackage - ({ mkDerivation, base, containers, stdenv, text, time }: - mkDerivation { - pname = "SCalendar"; - version = "1.1.0"; - sha256 = "4971bf6df45953434088ba50d0e17dcc49a0e4c2dd37ad06385c1f87d87b348d"; - libraryHaskellDepends = [ base containers text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.researchgate.net/publication/311582722_Method_of_Managing_Resources_in_a_Telecommunication_Network_or_a_Computing_System"; - description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "STMonadTrans" = callPackage - ({ mkDerivation, array, base, mtl, stdenv }: - mkDerivation { - pname = "STMonadTrans"; - version = "0.4.3"; - sha256 = "574fd56cf74036c20d00a09d815659dbbb0ae51c8103d00c93cd9558ad3322db"; - revision = "1"; - editedCabalFile = "09kqrv9a4yhsdpix49h9qjw0j2fhxrgkjnfrnyxg1nspmqrvl50m"; - libraryHaskellDepends = [ array base mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad transformer version of the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SVGFonts" = callPackage - ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg - , bytestring, cereal, cereal-vector, containers, data-default-class - , diagrams-core, diagrams-lib, directory, parsec, split, stdenv - , text, vector, xml - }: - mkDerivation { - pname = "SVGFonts"; - version = "1.7"; - sha256 = "da3ccd65e0963473df035f4543b56dfc84b45edca540990050e5de444fa431cd"; - revision = "1"; - editedCabalFile = "1w687f4lk4l07wqgldhpg7ycid0fs099x8vrylcxqdgfrzmm04dg"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base blaze-markup blaze-svg bytestring cereal - cereal-vector containers data-default-class diagrams-core - diagrams-lib directory parsec split text vector xml - ]; - doHaddock = false; - doCheck = false; - description = "Fonts from the SVG-Font format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SafeSemaphore" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "SafeSemaphore"; - version = "0.10.1"; - sha256 = "21e5b737a378cae9e1faf85cab015316d4c84d4b37e6d9d202111cef8c4cef66"; - revision = "1"; - editedCabalFile = "1k61gqgfh6n3sj8ni8sfvpcm39nqc2msjfxk2pgmhfabvv48w5hv"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/SafeSemaphore"; - description = "Much safer replacement for QSemN, QSem, and SampleVar"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SegmentTree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "SegmentTree"; - version = "0.3"; - sha256 = "6188c1b1276d7fa0391098a563df73dd522d20b57dc5321fe3418a9e3ca84fc1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data structure for querying the set (or count) of intervals covering given point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ShellCheck" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, mtl, parsec, process, QuickCheck, regex-tdfa, stdenv - }: - mkDerivation { - pname = "ShellCheck"; - version = "0.5.0"; - sha256 = "2b9430736f48de17a60c035546a6a969c14392521bec30119e1c869017d3307c"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson base bytestring containers directory mtl parsec process - QuickCheck regex-tdfa - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory mtl parsec QuickCheck - regex-tdfa - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.shellcheck.net/"; - description = "Shell script analysis tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "21df2193bf1216d55a0d43691182125993eeadc6f097eaf5eb995c23f2016b13"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spock" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, containers - , cryptonite, focus, hashable, http-types, hvect, list-t - , monad-control, mtl, reroute, resource-pool, resourcet, Spock-core - , stdenv, stm, stm-containers, text, time, transformers - , transformers-base, unordered-containers, vault, wai - }: - mkDerivation { - pname = "Spock"; - version = "0.13.0.0"; - sha256 = "8a73a3ddeb8982cd7c10f650e9adbfec2f6abac8da3a912bdb3025dc8d731ad0"; - revision = "1"; - editedCabalFile = "1glpfh1w9zahfwi4nc7kbxd429ni9xwvx3cd880mi3zdixlz4ghn"; - libraryHaskellDepends = [ - base base64-bytestring bytestring containers cryptonite focus - hashable http-types hvect list-t monad-control mtl reroute - resource-pool resourcet Spock-core stm stm-containers text time - transformers transformers-base unordered-containers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.spock.li"; - description = "Another Haskell web framework for rapid development"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spock-core" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, containers, cookie, directory, hashable - , http-api-data, http-types, hvect, monad-control, mtl, old-locale - , reroute, resourcet, stdenv, stm, superbuffer, text, time - , transformers, transformers-base, unordered-containers, vault, wai - , wai-extra, warp - }: - mkDerivation { - pname = "Spock-core"; - version = "0.13.0.0"; - sha256 = "5ecabd42a48c1930ca37f9ec02192b7cdf2cf2f49aba5b4d7f7a0d8d25d85162"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive containers - cookie directory hashable http-api-data http-types hvect - monad-control mtl old-locale reroute resourcet stm superbuffer text - time transformers transformers-base unordered-containers vault wai - wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.spock.li"; - description = "Another Haskell web framework for rapid development"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.1.1.1"; - sha256 = "eb6436516ab2d5e3d3e070b5a1595c4dceea760a58a9cc8d23dad5f6008f2223"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Strafunski-StrategyLib" = callPackage - ({ mkDerivation, base, directory, mtl, stdenv, syb, transformers }: - mkDerivation { - pname = "Strafunski-StrategyLib"; - version = "5.0.1.0"; - sha256 = "a018c7420289a381d2b491a753f685b9d691be07cea99855cc5c8e05d5a9a295"; - revision = "2"; - editedCabalFile = "1g9ksfgcz8fjasn78zq7w1yw9wk87i4gd5i0pf31gnf4l3963yz8"; - libraryHaskellDepends = [ base directory mtl syb transformers ]; - doHaddock = false; - doCheck = false; - description = "Library for strategic programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TypeCompose" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "TypeCompose"; - version = "0.9.13"; - sha256 = "0c96cca12f9a3a1da0abc3cf843d33b9e3858dbdc794a52588bf166372a3b432"; - revision = "2"; - editedCabalFile = "026h1zgp7fj8ccq8rpzcq0s4wdbw2v7fskcj73n40mfhv0gx26y0"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/TypeCompose"; - description = "Type composition classes & instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9"; - sha256 = "10138e863d8c6f860aad1755a6f1a36949cc02d83e5afacf6677fb3999f10db9"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque-tests" = callPackage - ({ mkDerivation, abstract-deque, array, base, containers, HUnit - , random, stdenv, test-framework, test-framework-hunit, time - }: - mkDerivation { - pname = "abstract-deque-tests"; - version = "0.3"; - sha256 = "5f17fb4cc26559f81c777f494622907e8927181175eaa172fb6adbf14b2feba5"; - libraryHaskellDepends = [ - abstract-deque array base containers HUnit random test-framework - test-framework-hunit time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A test-suite for any queue or double-ended queue satisfying an interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "active" = callPackage - ({ mkDerivation, base, lens, linear, semigroupoids, semigroups - , stdenv, vector - }: - mkDerivation { - pname = "active"; - version = "0.2.0.13"; - sha256 = "5d9a141d58bcefbf699ed233a22309ded671c25ed64bcee11a663d00731280fb"; - revision = "9"; - editedCabalFile = "1xq08xn26v3zi3fz1y5lhb1q2xv1d413wdg4pibi98n98nc2ypxz"; - libraryHaskellDepends = [ - base lens linear semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "Abstractions for animation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.5"; - sha256 = "9c5e754b1f0ff83490bcc30f5dfa8504de5a34ab8f7be03ac232882940dc8d60"; - revision = "5"; - editedCabalFile = "0yzyfqhsafzaqzj8wmjrj5ghm6jwbxya3wxc9sjl59j9q20jc4nq"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "aern2-mp" = callPackage - ({ mkDerivation, base, convertible, hmpfr, hspec, integer-gmp - , integer-logarithms, lens, mixed-types-num, QuickCheck, regex-tdfa - , stdenv, template-haskell - }: - mkDerivation { - pname = "aern2-mp"; - version = "0.1.2.0"; - sha256 = "9de6632ad943c044115e713f6c87078f33c37c6bde36ff472a5142a96cf53c8c"; - revision = "1"; - editedCabalFile = "09b92kf60m4v0xn2nm9h8wkg8wr7dc1na5c9mg2lk3kplf60sfvk"; - libraryHaskellDepends = [ - base convertible hmpfr hspec integer-gmp integer-logarithms lens - mixed-types-num QuickCheck regex-tdfa template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Multi-precision floats via MPFR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aern2-real" = callPackage - ({ mkDerivation, aern2-mp, aeson, base, bytestring, containers - , convertible, hspec, lens, mixed-types-num, QuickCheck, random - , stdenv, stm, transformers - }: - mkDerivation { - pname = "aern2-real"; - version = "0.1.1.0"; - sha256 = "25e0428536b401d5a06fd3b169025747663359595b3cfcdb56a042be81d002eb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aern2-mp aeson base bytestring containers convertible hspec lens - mixed-types-num QuickCheck stm transformers - ]; - executableHaskellDepends = [ - aern2-mp base mixed-types-num QuickCheck random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Exact real numbers via Cauchy sequences and MPFR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, contravariant, deepseq, dlist, ghc-prim, hashable - , primitive, scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers contravariant - deepseq dlist ghc-prim hashable primitive scientific tagged - template-haskell text th-abstraction time time-compat - unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.1.0.5"; - sha256 = "cfec563dc6822f035858a7190153d8818c200be565806b43b70f198bf5410577"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.9"; - sha256 = "e043941ba761c13a3854fc087521b864b56b2df874154e42aedb67b2a77f23c8"; - revision = "2"; - editedCabalFile = "1y07skwfg22z37fvjmqcpcl1yz1kx2zn4zz3n1bfghk7740c4gyd"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.5"; - sha256 = "61d9dd60b6c19dd5aa350b85083ebed3eab8d8611893db1279e55e43d7c7fbcf"; - revision = "1"; - editedCabalFile = "0a29nph4a1ny365nhsxlm73mk6zgaam4sfx6knzqjy8dxp1gkj48"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-extra" = callPackage - ({ mkDerivation, aeson, aeson-compat, attoparsec - , attoparsec-iso8601, base, base-compat-batteries, bytestring - , containers, deepseq, exceptions, hashable, parsec - , recursion-schemes, scientific, stdenv, template-haskell, text - , these, time, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-extra"; - version = "0.4.1.1"; - sha256 = "d48a65d976cbf496c8e5e9c927118ffcc878d6a83adf2fc9cebd418186d6fdf8"; - revision = "4"; - editedCabalFile = "0ja5vr9w22wyknkjyl7w43frdfdfnxphvrai1b18lhinjqcd9bl5"; - libraryHaskellDepends = [ - aeson aeson-compat attoparsec attoparsec-iso8601 base - base-compat-batteries bytestring containers deepseq exceptions - hashable parsec recursion-schemes scientific template-haskell text - these time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-extra#readme"; - description = "Extra goodies for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.3"; - sha256 = "a6b6ca511483bc9de72c2c640a9f871fe8d329811fb8b87d0a664c4394e223cf"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-iproute" = callPackage - ({ mkDerivation, aeson, base, iproute, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "aeson-iproute"; - version = "0.2"; - sha256 = "ee4d53338bfdc4a6ce0039dea24e797a0ff1e22c312b31be2e73ddc0bddf268f"; - libraryHaskellDepends = [ - aeson base iproute text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/aeson-iproute"; - description = "Aeson instances for iproute types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.4"; - sha256 = "b20e23905c395d7b61fce6c5f6343758e3753a2dbee61800d3e15e753ac7c452"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.2"; - sha256 = "6db252c94601efcb1ce395de0084ccf931a3525339ccdca011a740e7b11cc152"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-typescript" = callPackage - ({ mkDerivation, aeson, base, containers, interpolate, mtl, stdenv - , template-haskell, text, th-abstraction, unordered-containers - }: - mkDerivation { - pname = "aeson-typescript"; - version = "0.1.1.0"; - sha256 = "77a3b10384383f0188feef57015a896e89bac9882df4c83bed765f70b77aa46b"; - revision = "1"; - editedCabalFile = "1y5baadwfpyszd78dfbcln93ypg7ai6qvbdz7r95ili8p0vwikbk"; - libraryHaskellDepends = [ - aeson base containers interpolate mtl template-haskell text - th-abstraction unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/codedownio/aeson-typescript#readme"; - description = "Generate TypeScript definition files from your ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alarmclock" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, time - , unbounded-delays - }: - mkDerivation { - pname = "alarmclock"; - version = "0.5.0.2"; - sha256 = "2574a30897a9a63f09ba97a51f1aead1baeade3cd8b4b063a74d5bb8fa73d64c"; - libraryHaskellDepends = [ - async base clock stm time unbounded-delays - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/davecturner/alarmclock"; - description = "Wake up and perform an action at a certain time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.0.0"; - sha256 = "52418ed3abfff15e802506e5fb45f56d38eee020cb01af3f0acfe163c470ca68"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.4"; - sha256 = "d58e4d708b14ff332a8a8edad4fa8989cb6a9f518a7c6834e96281ac5f8ff232"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.8.0"; - sha256 = "39bbd5c5ea68fde4073b53a8f66947c4963726396f532c0c6b187d4e540385ff"; - libraryHaskellDepends = [ base util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebra" = callPackage - ({ mkDerivation, adjunctions, array, base, containers, distributive - , mtl, nats, semigroupoids, semigroups, stdenv, tagged - , transformers, void - }: - mkDerivation { - pname = "algebra"; - version = "4.3.1"; - sha256 = "25982f929b6f9930ad4df7b2c4084da473178a6e1f33ccc556ec96ee6f541224"; - revision = "2"; - editedCabalFile = "1yrqg6p9p7vfzv8gjbcvln5gd221kslg6zvn5d1722wfa06g4g1j"; - libraryHaskellDepends = [ - adjunctions array base containers distributive mtl nats - semigroupoids semigroups tagged transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/algebra/"; - description = "Constructive abstract algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebraic-graphs" = callPackage - ({ mkDerivation, array, base, base-compat, containers, deepseq, mtl - , stdenv - }: - mkDerivation { - pname = "algebraic-graphs"; - version = "0.2"; - sha256 = "887ae448ff4ea7af9cfd0d4242c1505346df0ea3919e587d20c05a603e2ada65"; - libraryHaskellDepends = [ - array base base-compat containers deepseq mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/alga"; - description = "A library for algebraic graph construction and transformation"; - license = stdenv.lib.licenses.mit; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1.1"; - sha256 = "6348f63e2858df9c0b516053c7c5111139936faea6edf7cf400b8fba6cca94d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alternators" = callPackage - ({ mkDerivation, base, lens, mmorph, mtl, newtype-generics, stdenv - , stm, transformers - }: - mkDerivation { - pname = "alternators"; - version = "1.0.0.0"; - sha256 = "44395b8b42193fdd78f94fd9f62560bfa69aef345a0fb2602df0d8d3613fd339"; - libraryHaskellDepends = [ - base lens mmorph mtl newtype-generics stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/alternators#readme"; - description = "Handy functions when using transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , stdenv, text, time, transformers, transformers-base - , transformers-compat, void - }: - mkDerivation { - pname = "amazonka"; - version = "1.6.0"; - sha256 = "3721892c87946c12bbd87ddba38d9e244aa962db190d8897c16a264c4f3fc41c"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-apigateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-apigateway"; - version = "1.6.0"; - sha256 = "56e63ecfbd8358d0d2766e08f8f2b08362bb435c1059a5791964089dbab75ae8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon API Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-application-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-application-autoscaling"; - version = "1.6.0"; - sha256 = "5536a7d1c24cd5907b85bd743df5989d91cb3325602944062c9c640178a61df7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-appstream" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-appstream"; - version = "1.6.0"; - sha256 = "eb90692b932d62c4e7006d661b8022c4dd9f7d4dcc07e5499eceae14b33747df"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon AppStream SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-autoscaling"; - version = "1.6.0"; - sha256 = "1b52132b23ef899937d20cef595d9f8757f85861d142616bcb5ee0ba8ed5f8d3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-budgets" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-budgets"; - version = "1.6.0"; - sha256 = "ccc692856a7f7ddfba573cde6506108a30a59f641748ecc787aece894d7ce4b7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Budgets SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-certificatemanager" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-certificatemanager"; - version = "1.6.0"; - sha256 = "1fdf93c685a1b348a851b793b170a0a2282b06dc65a91c016d4756ea5726aa6a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Certificate Manager SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudformation" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudformation"; - version = "1.6.0"; - sha256 = "15e2c82574906a13d390f68f5a57a83f4bbfc37fb9ce590c9f73e00dcafa8335"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFormation SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudfront" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudfront"; - version = "1.6.0"; - sha256 = "956a60988ff3b9bef042bf523b63c882cd7b2c386483cc3f1d1d8534aad334a2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFront SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudhsm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudhsm"; - version = "1.6.0"; - sha256 = "e4227038a39486e8c390198997571ca1b14ebf5e15fec1146169da7378a41b5f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudHSM SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch"; - version = "1.6.0"; - sha256 = "dd17345576acd8f44fd3af82f07b00fdce0781abbd51ab2df827fa48528c6394"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch-domains"; - version = "1.6.0"; - sha256 = "24f0d36f9aeed5041fd893b8a0d60e5df6f31c8a126cead4652115c6b28f7ca7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch Domain SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudtrail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudtrail"; - version = "1.6.0"; - sha256 = "d9d99df96ac2e46321e0da7d1797f12472ee32011f126d2881a2f19aa7491c24"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudTrail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch"; - version = "1.6.0"; - sha256 = "25c812b364b22d96d082e3598cd75d988cb8e3decdb8e3291a0deb9714dbee51"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-events" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-events"; - version = "1.6.0"; - sha256 = "13fb5e436fc4c534d6e01c47ef23f589c01042f8a9d7efb622e89bd8f5d2ec4d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Events SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-logs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-logs"; - version = "1.6.0"; - sha256 = "80e4e74af0fb29f5ecc04f4d956ba0e9950f7936c858c1ff84461b62ca87ee7d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Logs SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codebuild" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codebuild"; - version = "1.6.0"; - sha256 = "fdbf43578e0aa54c616b2daf8b442b32a8765b62da0c3b7f6b1df95f4e55a0ab"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeBuild SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codecommit" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codecommit"; - version = "1.6.0"; - sha256 = "8a2f2630bfabd3c71fdb811a9bbafefb058ce085ad18c1756a82f59bdd682415"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeCommit SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codedeploy" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codedeploy"; - version = "1.6.0"; - sha256 = "3315b99ab8851acb5ae1251344474e0ec03796e9fd59f1d18278abc7add3c2df"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeDeploy SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codepipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codepipeline"; - version = "1.6.0"; - sha256 = "c46eea221931601ced439454d3a3fe0030acccbb776bf153182010ca8f2ec043"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodePipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-identity" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-identity"; - version = "1.6.0"; - sha256 = "3aac30e210d3fc0f45166b6211c4c61eb7cc4480fb550f106cd6206c8dc9b6d5"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-idp" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-idp"; - version = "1.6.0"; - sha256 = "a98989c8ca10bb938fb4f27803920462fc8f88d7104cebb5106b9e3728e81fff"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity Provider SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-sync" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-sync"; - version = "1.6.0"; - sha256 = "5fde10d8e1f31e676433dfd32d061739d805a076ee58abd9c05d8faba36cf435"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Sync SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-config" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-config"; - version = "1.6.0"; - sha256 = "5cb03ebc049efbccfb48ab926e08f0e9824880bb349129601f724679fe42c9cd"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Config SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite, deepseq - , exceptions, hashable, http-client, http-conduit, http-types, lens - , memory, mtl, resourcet, scientific, semigroups, stdenv, tagged - , text, time, transformers, transformers-compat - , unordered-containers, xml-conduit, xml-types - }: - mkDerivation { - pname = "amazonka-core"; - version = "1.6.0"; - sha256 = "afe1c5b74aadc0222419bd792688fd179e4f5693aeb75b74232f770fff093dc9"; - libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Core data types and functionality for Amazonka libraries"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-datapipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-datapipeline"; - version = "1.6.0"; - sha256 = "1b212dd70864ef1ccc45e3a7deca936e0e1803c97aacefc34fad966fd85f3ae5"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Data Pipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-devicefarm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-devicefarm"; - version = "1.6.0"; - sha256 = "d81b74b8b0c254a487ce464b1d6f0679d774bd42daf32312867e4dd37e35c569"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Device Farm SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-directconnect" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-directconnect"; - version = "1.6.0"; - sha256 = "8d85b9ce865eac817610a3a1db2e28100ff0069b85f41c4359a6aa5978533832"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Direct Connect SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-discovery" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-discovery"; - version = "1.6.0"; - sha256 = "7bc67ad76b1413c2aebe48324d56b2e6f4279db6e7d4951e93bdaa5329199213"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Discovery Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dms"; - version = "1.6.0"; - sha256 = "a75f19dc2a7642840a97a135f24cd9120d3f5a81ad924aad6a46c514fba180f3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Database Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ds"; - version = "1.6.0"; - sha256 = "06fa338938aee62f81f93755cdc7039515dc0c6b32bb7c0bac33d7c92066d389"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Directory Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb"; - version = "1.6.0"; - sha256 = "33f54ee4f898972f1539a00e65a851bb940c8d26058d63ddfcd07fbca57f9a3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb-streams"; - version = "1.6.0"; - sha256 = "b3f832ddf70e95232cb79d71633276aa65c72e51c6c553118b4bc9db3a48e57f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB Streams SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ec2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ec2"; - version = "1.6.0"; - sha256 = "2221c2c4e188aac9f0c9e4bb2e0bce65eb21102e6199c3783c20f3797da955cc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Compute Cloud SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecr"; - version = "1.6.0"; - sha256 = "42088ad4b4d4c01b87267a372fec706f57db4db19b27c06a3c6826ef62ef8450"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Registry SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecs"; - version = "1.6.0"; - sha256 = "309535abe8359475b3430488c84c398ed8d25a05321101c725e4a04d5f4cde3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-efs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-efs"; - version = "1.6.0"; - sha256 = "268456294406d63eb49422027226af8ef15ce08dc2095be9a6657bf9bf41afbb"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic File System SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticache" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticache"; - version = "1.6.0"; - sha256 = "e4a74a2ce2d89534fd738c429dc9a0ee7564ee3539bd93488eba211176763969"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon ElastiCache SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticbeanstalk" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticbeanstalk"; - version = "1.6.0"; - sha256 = "c1dc065763475b705aabf61086546bcd312e6802dbb328775b9777e682b2386a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Beanstalk SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticsearch"; - version = "1.6.0"; - sha256 = "3429fcae1c6fec5ebbc8acf1597532615b39def394d2296d641614c0225f3083"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elasticsearch Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elastictranscoder" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elastictranscoder"; - version = "1.6.0"; - sha256 = "ab12a7c97e09cd1a60e81525e793f5f7b84799f8f9968a2b62bae8b9c9f3c10a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Transcoder SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elb"; - version = "1.6.0"; - sha256 = "59c974009a2c26f7d267ae9736c71893a82ae69c19f344b87b4e3afd19f97e4d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elbv2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elbv2"; - version = "1.6.0"; - sha256 = "2a53d35e29b613ac7261a3202023cb8221607fd8df5f034c572d6aa751c622c9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-emr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-emr"; - version = "1.6.0"; - sha256 = "e9a07458ee61feadeff2e98fc83c1542320d5b97744225304dc1cc568ad9774f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic MapReduce SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-gamelift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-gamelift"; - version = "1.6.0"; - sha256 = "ebcdbd4a43c8d02dc0a0d7302f4b27c8e106a783e910c5cdaa68a7a7ee775ffc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon GameLift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glacier" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glacier"; - version = "1.6.0"; - sha256 = "5307434d1fbddfba54b56ceb5eea2e5dfa3ece05b9353e61a998788af3e0f913"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glacier SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-health" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-health"; - version = "1.6.0"; - sha256 = "c216b18e93e998ff04b00a5fc3ab6df8d36ef95d4b9988587eceb837615ba67b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Health APIs and Notifications SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iam" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iam"; - version = "1.6.0"; - sha256 = "a335813a795c3d28400b95b94f1b14ada3e621e83d07cb9fd9c7e7edb285905d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Identity and Access Management SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-importexport" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-importexport"; - version = "1.6.0"; - sha256 = "0951f2bcd74e24c687ab39a044cfc9334b68fdb3c885d54693c918a1c97dcd04"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-inspector" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-inspector"; - version = "1.6.0"; - sha256 = "bcef005e38e63b742c1d7c63de84f582a447042a19ea611b1b617751f3cce13e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Inspector SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot"; - version = "1.6.0"; - sha256 = "180b2169c97bd021e5f013cc72b64fe701270a7a5000950e20fa6373d38a26d0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot-dataplane" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot-dataplane"; - version = "1.6.0"; - sha256 = "aee63bc0e6eca4cc4f76f7c8aa5e20f97e3f98268160006099014c66f4a88742"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT Data Plane SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis"; - version = "1.6.0"; - sha256 = "549e41d29e46ff6aa485676436cb7cf15d2d37c2d0c62e6358b9b12b92e22f38"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-analytics"; - version = "1.6.0"; - sha256 = "7efb5438596ef4541ebca35e4b87adf3c989bf88032be2d2e617bb14a7f685ee"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-firehose" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-firehose"; - version = "1.6.0"; - sha256 = "120545cdc888c031290b2f8a6745b911ebc6e2e5c077005067683118d197549c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Firehose SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kms"; - version = "1.6.0"; - sha256 = "7aa5333583b494d0a5585f78ead67833a7e72942b264673ee8b91d7be89e8e99"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Key Management Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lambda" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lambda"; - version = "1.6.0"; - sha256 = "649626896a7572979c5628e9406eb9be090106b7468473455e77aa59cec99b06"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lambda SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lightsail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lightsail"; - version = "1.6.0"; - sha256 = "741b4c6aff2f0e08fe9868aa858708a8ab36f95859bc0a9eecfdd9bd2060aceb"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lightsail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-analytics"; - version = "1.6.0"; - sha256 = "4d6c0db0e9c17b5131c6b03cd27bc53fbddb144c3910d46639edfdccbecd5d6a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Commerce Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-metering" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-metering"; - version = "1.6.0"; - sha256 = "672de14acac579673c8c3cf032c3806554355cc84ae1b61882a589af2afb5f77"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Metering SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ml" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ml"; - version = "1.6.0"; - sha256 = "9dc12d7b71a72ea720efe9de60668ab904adddfdfbe9c422f5ebda940a556dfe"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Machine Learning SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks"; - version = "1.6.0"; - sha256 = "9a4372339b8ec556331b0198b5faf74bd8116f0816176aa8626d31f3b372d918"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks-cm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks-cm"; - version = "1.6.0"; - sha256 = "4f9e9b755f70fffd15cea08d0dfef5dc23ee4f822471f8e89f4d9b2f77a748f4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks for Chef Automate SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-pinpoint" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-pinpoint"; - version = "1.6.0"; - sha256 = "b0f8cdaabd9f357d5a687999ce83c7670f43023507ab9b25e94bc717f916b005"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Pinpoint SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-polly" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-polly"; - version = "1.6.0"; - sha256 = "773edcfa2628cb9e616b9f1f5fab461cd6f0e5822dafa43fef4403c54e958ad0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Polly SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rds"; - version = "1.6.0"; - sha256 = "c793613c53773b3ba8c5db1fa342e68c25fcada39f8557c6ed39feb05f1bc24d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Relational Database Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-redshift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-redshift"; - version = "1.6.0"; - sha256 = "426ab96936e8d42ed85b31f076d99304148a6eb0896edbe90c6b1e570a90b329"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Redshift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rekognition" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rekognition"; - version = "1.6.0"; - sha256 = "462e427021e5362747b155ba4f77e4c1d99d794087dca273697fae93aff532a8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Rekognition SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv, text }: - mkDerivation { - pname = "amazonka-route53"; - version = "1.6.0"; - sha256 = "68ef773bd9c44b28cb6166d86e3e499d9d32581915548ba08670f5cb1caa6317"; - libraryHaskellDepends = [ amazonka-core base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-route53-domains"; - version = "1.6.0"; - sha256 = "f75bfe2f5f57c7367412479f3406cabcafa11a1436dd19f9a00ead6932e1a5ea"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 Domains SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-s3" = callPackage - ({ mkDerivation, amazonka-core, base, lens, stdenv, text }: - mkDerivation { - pname = "amazonka-s3"; - version = "1.6.0"; - sha256 = "eca18ebbd0df13a78768d9665827c7624282f76d512b3cf8f0f22a3afd463f47"; - libraryHaskellDepends = [ amazonka-core base lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Storage Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sdb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sdb"; - version = "1.6.0"; - sha256 = "b9c28b21326fdb78a0acee0968188ffb6fb156c7fe0faf688a2ec83d3f5fbdfd"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon SimpleDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-servicecatalog" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-servicecatalog"; - version = "1.6.0"; - sha256 = "11f8df3b1b2b43ec636eb5a428c43c8534eae9d9554071298688005bcb46f264"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Service Catalog SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ses" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ses"; - version = "1.6.0"; - sha256 = "778d32e738faae3fd1a7e12a67dddce063c0480740b95e1a58b5c23dc052bd02"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Email Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-shield" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-shield"; - version = "1.6.0"; - sha256 = "b983a85b2b5a617bc3cbc911bc8d00a3fbf199ddd5dee67bdb3882b23747ebf4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Shield SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sms"; - version = "1.6.0"; - sha256 = "fc4d359d2988d7604780a5eca5b3371d3d3034180e96d2cbc6148559f0cda47f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Server Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-snowball" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-snowball"; - version = "1.6.0"; - sha256 = "534b30fe9205ba1edf8b1c5c4f4f91dccbe124f95a599f5efdf0cc4cd502ee25"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export Snowball SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sns" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sns"; - version = "1.6.0"; - sha256 = "1d16b548031359ed593b14d172e7880847934e76bbedf535d014674414e37573"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Notification Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sqs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sqs"; - version = "1.6.0"; - sha256 = "743838707d28707095700afdf2d875ff34c5fe1d90b214f5a7e48be04c900433"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Queue Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ssm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ssm"; - version = "1.6.0"; - sha256 = "11218249760a2d06cfd5ad2b41bf67233b6178f86e2ab979c199088a5a1c701a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Systems Manager (SSM) SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-stepfunctions" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-stepfunctions"; - version = "1.6.0"; - sha256 = "99ac8e545d28d7d765e180a26572d216f88d1e6ab9a2cd0f0a874992fa89acbf"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Step Functions SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-storagegateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-storagegateway"; - version = "1.6.0"; - sha256 = "6f06376650f03107ebd13a622b77b1983da91c6030927e2d10afb4040b48b43d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Storage Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sts" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sts"; - version = "1.6.0"; - sha256 = "36056b67d6f97a5b137f7ae35f39fb5417c61991333347129ed3e77f79a99a12"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Security Token Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-support" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-support"; - version = "1.6.0"; - sha256 = "7f434aef975f2817d4b9d7aa1c6055d788988e817fdb5c8fae20a787f26853e9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Support SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-swf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-swf"; - version = "1.6.0"; - sha256 = "1f0e437ba9c1511f46c64df16ae4551667fee39ade3c32f251f9e34b2255aa90"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Workflow Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-test" = callPackage - ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, process, resourcet, stdenv, tasty, tasty-hunit - , template-haskell, temporary, text, time, unordered-containers - , yaml - }: - mkDerivation { - pname = "amazonka-test"; - version = "1.6.0"; - sha256 = "46a8b77900370524a487f2ca0490473e23d0155664db2461c5504678d275dd28"; - libraryHaskellDepends = [ - aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types process - resourcet tasty tasty-hunit template-haskell temporary text time - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Common functionality for Amazonka library test-suites"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-waf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-waf"; - version = "1.6.0"; - sha256 = "880b9ec52be2d8fb0f5711d1e5357b0ce566e98b775e3bb7921e8f4295bbb980"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WAF SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-workspaces" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-workspaces"; - version = "1.6.0"; - sha256 = "56cf348d8c519a4db23693e81cccf822975ec5b37e74dda54f9f020415c91c84"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WorkSpaces SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-xray" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-xray"; - version = "1.6.0"; - sha256 = "8f510075361aa600cd7759763f4de55aed07b8a7cce65eb445dfcf9f475590f0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon X-Ray SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.18.1"; - sha256 = "4678e2eb976df97e27cacbc4b1feafeb5a1800a9779b0a36666f04804f43e248"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.10.2"; - sha256 = "a894e224920b5bd475eb514126801ae3d58538c1fc2d3804b890e17754a40940"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.9"; - sha256 = "a7b2e8e7cd3f02f2954e8b17dc60a0ccd889f49e2068ebb15abfa1d42f7a4eac"; - revision = "1"; - editedCabalFile = "0bb5fzjjc00932pny1fql40dmpmikfqzbrbmpwr09bfw9aynvzgn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "2bd198b97077090476f8f512a7c03f3ab4147a6df51cf8cd22b5145c37b2ccda"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.4"; - sha256 = "58ea66abe4dd502d2fc01eecdb0828d5e214704a3c1b33b1f8b33974644c4b26"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.5.0.0"; - sha256 = "1f5fb9b53f5750c5c73e36f93a708189e15f7300cd2fb95da77ba87a215b74af"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.3"; - sha256 = "8f71d0b77152edb048e9f75c72a82b9d7ae1b15432fc011610fe9f1b83225b18"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.1"; - sha256 = "d837f716d9e73d68a53a17321f0433dd9ffe71df24d550aed6a34ec1c2ad2ea2"; - revision = "1"; - editedCabalFile = "1sd3s1ibn5dmgwzlqwshj7im4lmgpfzcv43ax6lpp9bdmxa6lmz9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, containers, exact-pi, ghc-prim - , integer-gmp, integer-logarithms, mtl, random, stdenv, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.7.0.0"; - sha256 = "8b33049122c6194d61467b3685294c2c0029a3e877f481598f4b21b7285e030c"; - revision = "3"; - editedCabalFile = "1s0jm2y0jhfrj7af80csckiizkfq5h0v4zb92mkwh1pkfi763fha"; - configureFlags = [ "-f-llvm" ]; - libraryHaskellDepends = [ - array base containers exact-pi ghc-prim integer-gmp - integer-logarithms mtl random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-list" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "arrow-list"; - version = "0.7"; - sha256 = "33f836f23648aa2cea11533f7a9941127c397eecdca105b2084dded9e039d5d8"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/silkapp/arrow-list"; - description = "List arrows for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.5"; - sha256 = "1e863bfd363f6c3760cc80f2c0d422e17845a9f79fe006030db202ecab5aaf29"; - revision = "1"; - editedCabalFile = "0vsw8rd6fxd87rx3jyh3bb96sjd7ag0mrlylhkcmgaps2ma8sw5b"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.4"; - sha256 = "c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.2"; - sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1-types"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assoc" = callPackage - ({ mkDerivation, base, bifunctors, stdenv, tagged }: - mkDerivation { - pname = "assoc"; - version = "1.0.1"; - sha256 = "4000dea2fbc272ff5a15a0bf0fae1c29dea4b87b8fb4ccb8b07b8114ee2636d5"; - libraryHaskellDepends = [ base bifunctors tagged ]; - doHaddock = false; - doCheck = false; - description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.1"; - sha256 = "da5dde1bcf42e4f48f5f23dbf3a890a2904ecaf86df3d75e365e071b924afe29"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.2"; - sha256 = "4b4ab1ac82c45144d82c6daf6cb6ba45eab9957dad44787fa5e869e23d73bbff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-conduit" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, conduit-combinators - , lens-simple, mono-traversable, parsers, safe-exceptions, stdenv - , text, time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "atom-conduit"; - version = "0.5.0.1"; - sha256 = "8c88c5c77567753b56163bfa596f50a9cfdde28796e66bb194ca6d9057e831cd"; - libraryHaskellDepends = [ - base blaze-builder conduit conduit-combinators lens-simple - mono-traversable parsers safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287)."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.2"; - sha256 = "67f8872e0c1e634d819a967365eb4ad514e9b2cde967fbc710da7cdc4d17d933"; - revision = "1"; - editedCabalFile = "0gdcd84x2s4jiry0was74rzv9l53an1q6ad8jiaj37fr4fim0wcc"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.5"; - sha256 = "dbc7b4c31c734ad12d8f6c05b5d1384ee57f50ad8ff1a703d560b39e2f0458c5"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.2"; - sha256 = "dd93471eb969172cc4408222a3842d867adda3dd7fb39ad8a4df1b121a67d848"; - revision = "4"; - editedCabalFile = "1vz6jz7cwd80sryabpa99hccamgccjf2l7907wjblbs7dy66a8cb"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.1"; - sha256 = "8da5ca8ae483bbb8dacfae3a888fa9438f55f84f8605e7c769091ee5b6555629"; - libraryHaskellDepends = [ attoparsec base ip ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.1.0"; - sha256 = "499ffbd2d39e79cc4fda5ad0129dbf94fdb72a84aa932dfe2a5f5c5c02074142"; - revision = "1"; - editedCabalFile = "1rjhscmczgs1bwyqx7lvkm8py3ylxjd2797mrzgnq60fvm292750"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.4"; - sha256 = "4e032ccaa65f96edac79556431ade75ad400371d0a5c19aeed6a7adbd3d2f1f3"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, http-conduit, http-types - , network-uri, resourcet, stdenv, tagstream-conduit, text - , transformers, unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.4"; - sha256 = "3fd566dbfdf75d81ad1bebd19facb9f01509ead6e27d9aed802404ecde932fb8"; - revision = "1"; - editedCabalFile = "0ipbmf633c0kmcwwb7d51ac8s4220nfyk5xghhq66mpgna77j2c2"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers http-conduit http-types network-uri resourcet - tagstream-conduit text transformers unordered-containers - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6"; - sha256 = "d26d9f10fd57e06fa2af066df65e578ff3ec7541efc3e6648b29a743b13f8375"; - revision = "1"; - editedCabalFile = "1fxwn8bn6qs8dhxq0q04psq7zp1qvw1b6g3vmsclgyj9p7kr77ms"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.4"; - sha256 = "5e96c151024e8bcaf4eaa932e16995872b2017f46124b967e155744d9580b425"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "autoexporter"; - version = "1.1.13"; - sha256 = "7bb6fbf567f56a5a3ec53036fe82aa8e17452c46778a34e9dd00477e5cdcaf16"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, data-binary-ieee754, entropy, fail - , hashable, mtl, pure-zlib, scientific, semigroups, stdenv, tagged - , template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "avro"; - version = "0.3.5.1"; - sha256 = "c805534d4829dba8055985284a07436cb77481dfc4554d91937d8b0f864afc90"; - revision = "1"; - editedCabalFile = "07h4502vdr0ybxqv1hcwrnm1f4bhblbdmh3n58hb198jx91rlfpf"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - data-binary-ieee754 entropy fail hashable mtl pure-zlib scientific - semigroups tagged template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/avro#readme"; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "avwx" = callPackage - ({ mkDerivation, attoparsec, base, HTTP, lens, optparse-applicative - , parsers, pretty-show, stdenv, text - }: - mkDerivation { - pname = "avwx"; - version = "0.3.0.2"; - sha256 = "b4299cc4e05a4c94f53d06f05b30baac1e15c59663b59afd1dd32417a280fb0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; - executableHaskellDepends = [ - base optparse-applicative pretty-show text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.hcesperer.org/posts/2016-09-20-avwx.html"; - description = "Parse aviation weather reports"; - license = stdenv.lib.licenses.mit; - }) {}; - "backprop" = callPackage - ({ mkDerivation, base, containers, deepseq, microlens, primitive - , reflection, simple-reflect, stdenv, transformers, vector, vinyl - }: - mkDerivation { - pname = "backprop"; - version = "0.2.5.0"; - sha256 = "aa2dbe41de6aa015cd3c0d9edb21ab24254d19b9205fbc440fc2a6cbccae6bf5"; - libraryHaskellDepends = [ - base containers deepseq microlens primitive reflection - simple-reflect transformers vector vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://backprop.jle.im"; - description = "Heterogeneous automatic differentation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bank-holidays-england" = callPackage - ({ mkDerivation, base, containers, stdenv, time }: - mkDerivation { - pname = "bank-holidays-england"; - version = "0.1.0.8"; - sha256 = "3219472077c4093809dc7c986b693aee2b76c12d44b6063d1b7055af3aa9672a"; - libraryHaskellDepends = [ base containers time ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/davecturner/bank-holidays-england"; - description = "Calculation of bank holidays in England and Wales"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "barrier" = callPackage - ({ mkDerivation, base, blaze-svg, bytestring, stdenv - , template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "barrier"; - version = "0.1.1"; - sha256 = "6395da01eea1984c7bcc85c624b1b5dfbe0b6b764adeed7b04c9fa4d8de91ed9"; - revision = "1"; - editedCabalFile = "167akvi72l47gcqbq5609m24469pq0xmv0kjbmivnrxs796gh890"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-svg bytestring template-haskell text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/philopon/barrier"; - description = "Shields.io style badge generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.11.1"; - sha256 = "356f1542ec93e7192a9073d32a8ef1e48194275495dcec7fb0d241f4baaf6d36"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.10.1"; - sha256 = "15578bafe45db81f7c7ad33253b2b047dab9b6df4ca7ca57f541d64084f113c9"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.2"; - sha256 = "2a8062385e5d5dee418428a22c72b9391557bc1fe2f93bd643f7754b36b9eb01"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.3"; - sha256 = "e3cc66e99d6c83aac548c4d8e6a166e5bd9cf557947cde49161026d0341267fe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.2.4"; - sha256 = "a2f841430fec32edba778b74bde83bf0170ada7c5e2e59d7187c8f06d92dcca9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.1"; - sha256 = "ab25abf4b00a2f52b270bc3ed43f1d59f16c8eec9d7dffb14df1e9265b233b50"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, QuickCheck, stdenv - , text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1"; - sha256 = "74019bd11f8012ae5ccc88c206bc5a8024f7605130099aabbac012073160e440"; - revision = "4"; - editedCabalFile = "0yfhy4a9n67l9w3amqrzzy79q47yyj6qbv5i5lqym5z7ygwmlzn6"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.8"; - sha256 = "c7f41b97f2b0a71804c3c7d760047dc9adc9734e789084ca1198c4764ce192a4"; - revision = "2"; - editedCabalFile = "0d1cw4nyp2r2cd9kw4k3a2nq10hbq28108zsfrkdq1gbs7pcf7j3"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation#readme"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "beam-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist, free - , ghc-prim, hashable, microlens, mtl, network-uri, stdenv, tagged - , text, time, vector-sized - }: - mkDerivation { - pname = "beam-core"; - version = "0.7.2.2"; - sha256 = "1231aedb995f40758924ad39d3476a51b3a186e5e849f3d4b284860838500f98"; - revision = "1"; - editedCabalFile = "1fvds5arsm0h81fw4rf5fsg5sa9jfqn350amhhc247f0hhjy3csf"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist free ghc-prim hashable - microlens mtl network-uri tagged text time vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "http://travis.athougies.net/projects/beam.html"; - description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-migrate" = callPackage - ({ mkDerivation, aeson, base, beam-core, bytestring, containers - , deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable - , haskell-src-exts, mtl, parallel, pqueue, pretty, scientific - , stdenv, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "beam-migrate"; - version = "0.3.2.1"; - sha256 = "2d195926ead3ed550e5efddd32f87f4cc93a5bad6ac8c2906478387ed0f39373"; - revision = "1"; - editedCabalFile = "1ghg6n0dj63i0am7wh0cg95hwyf29gnkm0llrw3wb5pj8f7937gv"; - libraryHaskellDepends = [ - aeson base beam-core bytestring containers deepseq dependent-map - dependent-sum free ghc-prim hashable haskell-src-exts mtl parallel - pqueue pretty scientific text time unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://travis.athougies.net/projects/beam.html"; - description = "SQL DDL support and migrations support library for Beam"; - license = stdenv.lib.licenses.mit; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.12"; - sha256 = "a6376f4741588201ab6e5195efb1e9921bc0a899f77a5d9ac84a5db32f3ec9eb"; - revision = "1"; - editedCabalFile = "0sk6vkjwk7g1diwah67ifj7s69qvwi52ngaijkfx5prn0vz24ldn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bencode" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, parsec - , stdenv - }: - mkDerivation { - pname = "bencode"; - version = "0.6.0.0"; - sha256 = "3b8efdfecee9bc486d9bcdbb633b7128ca235360f102478a7e0f8c895281f68a"; - revision = "1"; - editedCabalFile = "0nvph7frmrra9k57v01saxgnhf1ma3m8qzwj1i53pswssfnj41mv"; - libraryHaskellDepends = [ - base binary bytestring containers parsec - ]; - doHaddock = false; - doCheck = false; - description = "Parser and printer for bencoded data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bhoogle" = callPackage - ({ mkDerivation, base, brick, bytestring, containers, directory - , filepath, hoogle, lens, process, protolude, stdenv, text, time - , typed-process, vector, vty - }: - mkDerivation { - pname = "bhoogle"; - version = "0.1.3.5"; - sha256 = "c9e57081ae65d50c68ec6ad583ffe7bcaa79589dcc743ebce153f030034f2fbe"; - revision = "2"; - editedCabalFile = "0jwfw2xa55ysfxyzp5n2pf2vq753iagpmvg9xnj69nv6ly9whfp7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base brick bytestring containers directory filepath hoogle lens - process protolude text time typed-process vector vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrevdm/bhoogle#readme"; - description = "Simple terminal GUI for local hoogle"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.7"; - sha256 = "88b3a2d4504e1139a3aef7027913faa0870631477d0a2ebb6fa67d494cdb3532"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.3.3"; - sha256 = "73829355c7bcbd3eedba22a382a04a3ab641702b00828790ec082ec2db3a8ad1"; - libraryHaskellDepends = [ base containers exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-bits" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "binary-bits"; - version = "0.5"; - sha256 = "16534a018a4754d8d1eab051711c23fb741f41a0d141b289001c52824b5be794"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Bit parsing/writing on top of binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3.1"; - sha256 = "0480c3ff498bdbba6913ee8ad70d4828cf7a766bf9336a3ed8eb73676c46d29f"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ext" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, data-binary-ieee754, errors, exceptions - , monad-control, monad-loops, mono-traversable, mtl, scientific - , stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "binary-ext"; - version = "2.0.4"; - sha256 = "6e58e19bde26d6f271916ceb43a28903136e28cf7868d86f65e68a60152ade08"; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - data-binary-ieee754 errors exceptions monad-control monad-loops - mono-traversable mtl scientific text transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/binary-ext#readme"; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = stdenv.lib.licenses.asl20; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, aeson, base, binary, case-insensitive, hashable - , scientific, stdenv, tagged, text, text-binary, time - , unordered-containers, vector, vector-binary-instances - }: - mkDerivation { - pname = "binary-orphans"; - version = "0.1.8.0"; - sha256 = "f17557ccd98931df2bea038f25e7f835f38019ea7d53bd763f71fe64f931c0cc"; - revision = "5"; - editedCabalFile = "1dny1jvwwcyrbzhqvymmn6n7ib48bpy0nasbrcrdrpzjypkmg500"; - libraryHaskellDepends = [ - aeson base binary case-insensitive hashable scientific tagged text - text-binary time unordered-containers vector - vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-orphans#readme"; - description = "Orphan instances for binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.3.0"; - sha256 = "bc6195493b950efcbeb9ef54dfe47a6badf894dff934cf02a4b170331c1b217a"; - revision = "1"; - editedCabalFile = "09ag18yr1m26fl3w7ab1d5q5j201ygbw7qsbsy41bwd6iq87rq15"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, generics-sop, hashable, scientific, SHA - , stdenv, tagged, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.1.5.1"; - sha256 = "70cb8fff540937f1d9753a71e0343039ee1718a0f029d4df698164b04fd5d5a4"; - revision = "1"; - editedCabalFile = "1z612d3wbrlywcx96lc52svi9b2s6nskdnwnwm3d5mylcqaqckcx"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - generics-sop hashable scientific SHA tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.2.1.1"; - sha256 = "6b24c66b20ebfd8ff2e4ac32e3b435889bba0a32477598ba69fc7adc9608160e"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bit-stream" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bit-stream"; - version = "0.1.0.2"; - sha256 = "811f2e7d4a827440bc21557e48c5310fe91e1b17f337ec35208546e1c5639bf4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bit-stream#readme"; - description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitcoin-api" = callPackage - ({ mkDerivation, aeson, base, base58string, binary, bitcoin-block - , bitcoin-script, bitcoin-tx, bitcoin-types, bytestring, hexstring - , lens, lens-aeson, stdenv, text, unordered-containers, wreq - }: - mkDerivation { - pname = "bitcoin-api"; - version = "0.12.1"; - sha256 = "c978de1519b24c5c04ff518ad1209f74f91df31d65e23592dc639219df6b3e30"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base58string binary bitcoin-block bitcoin-script - bitcoin-tx bitcoin-types bytestring hexstring lens lens-aeson text - unordered-containers wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides access to the RPC API of Bitcoin Core"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-api-extra" = callPackage - ({ mkDerivation, base, binary, bitcoin-api, bitcoin-block - , bitcoin-tx, bytestring, conduit, lens, stdenv, stm, stm-chans - , stm-conduit, text, transformers - }: - mkDerivation { - pname = "bitcoin-api-extra"; - version = "0.9.1"; - sha256 = "c423c6007d0f830dd2bbc0e1bc9219980e6fb2bde684890e265e1bfce4bdd7fc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-api bitcoin-block bitcoin-tx bytestring conduit - lens stm stm-chans stm-conduit text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Higher level constructs on top of the bitcoin-api package"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-block" = callPackage - ({ mkDerivation, base, binary, bitcoin-tx, bitcoin-types - , bytestring, cryptohash, hexstring, largeword, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-block"; - version = "0.13.1"; - sha256 = "d7f57c0fe71045dab85d223dc15d64db3a15cc7fd8446bfe4ebd98cd9d417d5a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-tx bitcoin-types bytestring cryptohash - hexstring largeword lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin blocks"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-script" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-script"; - version = "0.11.1"; - sha256 = "398c1d86e918731b5b2026351bb3b0b90b20606517e7c21e42f05d6c6e197b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Compilation, manipulation and decompilation of Bitcoin scripts"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-tx" = callPackage - ({ mkDerivation, base, binary, bitcoin-script, bitcoin-types - , bytestring, cryptohash, hexstring, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-tx"; - version = "0.13.1"; - sha256 = "3bb88265353066c394e96a56b2dc555fa13d37ca7f820978b793196c6829cc00"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-script bitcoin-types bytestring cryptohash - hexstring lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-types" = callPackage - ({ mkDerivation, base, base58string, binary, bytestring, hexstring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-types"; - version = "0.9.2"; - sha256 = "b72f9448508b64706d5f443748dc9b8abde8e749959187ce3d8356cde0d6c40b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base58string binary bytestring hexstring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides consistent low-level types used commonly among Bitcoin implementations"; - license = stdenv.lib.licenses.mit; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.1"; - sha256 = "657e557bb913b53fb3b3fc7eda820cf3c85a5b89692d242275d3e8e8d9479c93"; - revision = "5"; - editedCabalFile = "012qycmsfz5l6y82d3zgjmp1k3pgvhlpjdk6rwlpc1wlfbpdqiaw"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.3"; - sha256 = "692b08b3e9a490f5b2776b8f20277320fad247d9c4ea158225fee0f27f91afed"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - description = "Useful bitwise operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.0"; - sha256 = "14e9eded3d5f535dbb1ce6debe4edd2d227765af31cc58e072b78824cd9f9b06"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, scientific, split, stdenv, text, time - }: - mkDerivation { - pname = "bitx-bitcoin"; - version = "0.12.0.0"; - sha256 = "31f2398bbb0deff80361fdabb108c1552ae097b15a44c6ca6674977ae735c871"; - libraryHaskellDepends = [ - aeson base bytestring deepseq exceptions http-client - http-client-tls http-types microlens microlens-th network - QuickCheck scientific split text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tebello-thejane/bitx.hs"; - description = "A Haskell library for working with the BitX bitcoin exchange"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.2.0"; - sha256 = "07d910e3f5c6e98f5a6b9d53dbe5f52506c3859b513bc7493b52552a28382cfc"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blank-canvas" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries - , base64-bytestring, bytestring, colour, containers - , data-default-class, http-types, kansas-comet, mime-types, scotty - , semigroups, stdenv, stm, text, text-show, transformers, vector - , wai, wai-extra, warp - }: - mkDerivation { - pname = "blank-canvas"; - version = "0.6.3"; - sha256 = "739d24ff7035fd675e95c2d33bd9d3cb7d1ef0cca94c16bbf950c4a7f7b320b4"; - revision = "3"; - editedCabalFile = "15gcxvbbb0pjnw6wh4jvc4xqvv1gr493h2s9yclf81vfg7bry24w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base-compat-batteries base64-bytestring bytestring - colour containers data-default-class http-types kansas-comet - mime-types scotty semigroups stm text text-show transformers vector - wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/blank-canvas/wiki"; - description = "HTML5 Canvas Graphics Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-carray" = callPackage - ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi - , stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "blas-carray"; - version = "0.0.1.1"; - sha256 = "bdad1b777d36e46a63bec022190bd009d2782018d7a447f41e3c2db772635f46"; - libraryHaskellDepends = [ - base blas-ffi carray netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-carray/"; - description = "Auto-generated interface to Fortran BLAS via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.0.1.1"; - sha256 = "ee0d88ad15d127e08dd273264befe2259bb64646156adb9e830aa8692dc3f036"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blas-hs" = callPackage - ({ mkDerivation, base, blas, stdenv, storable-complex }: - mkDerivation { - pname = "blas-hs"; - version = "0.1.1.0"; - sha256 = "80e06b0927982b391d239f8656ed437cd29665969d1a078ea4e42a2bf196b086"; - libraryHaskellDepends = [ base storable-complex ]; - librarySystemDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Rufflewind/blas-hs"; - description = "Low-level Haskell bindings to Blas"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-colonnade" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, colonnade, stdenv - , text - }: - mkDerivation { - pname = "blaze-colonnade"; - version = "1.2.2"; - sha256 = "1f2f7116ffea5ad2a04337b9bdc1277de0b12a71fb4b830b216c37911d8ea14c"; - libraryHaskellDepends = [ - base blaze-html blaze-markup colonnade text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Helper functions for using blaze-html with colonnade"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.1.1"; - sha256 = "ea0e944298dbbd692b41af4f15dbd1a1574aec7b8f91f38391d25106b143bb1b"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.2"; - sha256 = "c6f0cf8fd707ba8c0b700e0c5ad6a1212c8b57d46a9cbdfb904d8bf585ad82e1"; - revision = "1"; - editedCabalFile = "0ivspcxz0b2r7kcas5hlw0fh92883r8ghwz9lck7nyqn6wn5i8zx"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "bno055-haskell" = callPackage - ({ mkDerivation, base, bytestring, cereal, h2c, mtl, resourcet - , stdenv - }: - mkDerivation { - pname = "bno055-haskell"; - version = "0.1.0"; - sha256 = "7adc29f94755047b4214115c23b63041e9d3970d2648f53dcd38b84725059ad8"; - libraryHaskellDepends = [ - base bytestring cereal h2c mtl resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/bno055-haskell"; - description = "Library for communication with the Bosch BNO055 orientation sensor"; - license = stdenv.lib.licenses.mit; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, constraints, fin - , generics-sop, stdenv, streams, tagged, transformers - , transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1"; - sha256 = "73d60829c3a789f3d377d56ce7844aaaea6b517bcea43e06579ab785181b4664"; - revision = "2"; - editedCabalFile = "1jxaby4cagbhii194x9x0j75ms1v5bm14sx7d19zz3844mh9qyci"; - libraryHaskellDepends = [ - adjunctions base base-compat constraints fin generics-sop streams - tagged transformers transformers-compat vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brick" = callPackage - ({ mkDerivation, base, config-ini, containers, contravariant - , data-clist, deepseq, dlist, microlens, microlens-mtl - , microlens-th, stdenv, stm, template-haskell, text, text-zipper - , transformers, vector, vty, word-wrap - }: - mkDerivation { - pname = "brick"; - version = "0.37.2"; - sha256 = "7cb86cd88d344d4a8b997677f805e3a3adaecf37d65478e06081737efbc1d99c"; - revision = "1"; - editedCabalFile = "0cj98cjlr400yf47lg50syj5zpvh6q9mm1hp4blns6ndz2xys5rz"; - configureFlags = [ "-fdemos" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base config-ini containers contravariant data-clist deepseq dlist - microlens microlens-mtl microlens-th stm template-haskell text - text-zipper transformers vector vty word-wrap - ]; - executableHaskellDepends = [ - base microlens microlens-th text text-zipper vector vty word-wrap - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/brick/"; - description = "A declarative terminal user interface library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "broadcast-chan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "broadcast-chan"; - version = "0.1.1"; - sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2"; - revision = "1"; - editedCabalFile = "03bmddz9bryh3viskh2nldj4hbzl5b9xkkx2pml73vq9bn2aq5s4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/broadcast-chan"; - description = "Broadcast channel type that avoids 0 reader space leaks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.4"; - sha256 = "148309e23eb8b261c1de374712372d62d8c8dc8ee504c392809c7ec33c0a0e7c"; - revision = "2"; - editedCabalFile = "0bz62lxdbnwkfr1d4ngm8xi4y1ndpdflbv71s6h43vp5lbd546hr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bson" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash - , data-binary-ieee754, mtl, network, stdenv, text, time - }: - mkDerivation { - pname = "bson"; - version = "0.3.2.6"; - sha256 = "738dc3615aafa1dd553f51a67373af2f27db90e75266ed6cdee5cecb7f6fce80"; - revision = "2"; - editedCabalFile = "153i8mx7xwjiq8j58swhbyky4gm33zz4pxmp1szaknxfv963xy7y"; - libraryHaskellDepends = [ - base binary bytestring cryptohash data-binary-ieee754 mtl network - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mongodb-haskell/bson"; - description = "BSON documents are JSON-like objects with a standard binary encoding"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bson-lens" = callPackage - ({ mkDerivation, base, bson, lens, stdenv, text }: - mkDerivation { - pname = "bson-lens"; - version = "0.1.1"; - sha256 = "d73bb417def2d8cb1efebfc22482a859e119bcc4005dd10106c82dff5ceeb160"; - libraryHaskellDepends = [ base bson lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/bson-lens"; - description = "BSON lenses"; - license = stdenv.lib.licenses.mit; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.1.2.3"; - sha256 = "7efc0b5c65623dcf60910baf896aec7da7ac2df4231f03a3072c78fb5b2fb88d"; - revision = "1"; - editedCabalFile = "1py88k9sjmx9x41l0wmp19a52ng9fdf66rmd0n9404gxxbqd5jxv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.7"; - sha256 = "b389fac5ce61818adb8451550762aca135c34b9007b68be5a8d9a0fa45583f58"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.2.0"; - sha256 = "0cb29a2355c7fc4e55c61ef6138067a8f3f30baaa945d9a2ca7b638023d2ea1a"; - revision = "1"; - editedCabalFile = "1r4v2biwd0hp6v1jgx7zngh0hqlsk8ia3bvggbxxn5sp5x7ika1m"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butter" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , forkable-monad, free, HUnit, network-simple, stdenv, stm - , template-haskell, text, transformers - }: - mkDerivation { - pname = "butter"; - version = "0.1.0.6"; - sha256 = "8640b2681a57c0bc545684c821e80a97d57fe14bc6036e9030dc4cc63c2e4164"; - libraryHaskellDepends = [ - aeson base bytestring containers forkable-monad free HUnit - network-simple stm template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/Butter#readme"; - description = "Monad Transformer for Asyncronous Message Passing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp - , mono-traversable, primitive, QuickCheck, stdenv - }: - mkDerivation { - pname = "bv-little"; - version = "0.1.2"; - sha256 = "8c8d394050d154e100e29df7daf75235eb870aeb3946d8a68f58472e31c14c77"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp mono-traversable primitive - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest - , cereal, containers, hashable, mtl, scientific, stdenv, text, time - , transformers, transformers-compat, unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.15.5"; - sha256 = "039935e6b367eb8657aa3eb109e719b257a06524b0d9ff5246e8029bb7a07118"; - revision = "1"; - editedCabalFile = "0k05cszpxmdwgnbxhmlmmvsxkwlanvz8dn0p3f6bzs8qlv3kbhm7"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytestring cereal containers hashable mtl scientific - text time transformers transformers-compat unordered-containers - void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.2.0"; - sha256 = "27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5.1"; - sha256 = "1879edb56e530169f5c4a738fff46ac56faeb30f9ac3d59f1361183111a5c69e"; - revision = "1"; - editedCabalFile = "1snn8qb17maa76zji75i4yfz9x8ci16xp6zwg6kgwb33lf06imnd"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.2"; - sha256 = "a12df2ef970eab34c7bb968ba1a157fb01e478cd9abada097fc3e4ec61b5020e"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib" = callPackage - ({ mkDerivation, base, bytestring, bzip2, stdenv }: - mkDerivation { - pname = "bzlib"; - version = "0.5.0.5"; - sha256 = "9ee7d0ac7461b330820af928c13c6668bf4fe3601f171c42432a85c33718017e"; - revision = "1"; - editedCabalFile = "1d4ra5prh2q9h8inpwvrsmkmg1ndisdj47jv06iijpj6xdp5bapl"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the bzip2 format"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.1"; - sha256 = "43d811549f7fb0710e4895ad54f78418271579f7e27d75e3c3470b74b285a239"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.6"; - sha256 = "91dd121ac565009f2fc215c50f3365ed66705071a698a545e869041b5d7ff4da"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.6"; - sha256 = "decaaa5a73eaabaf3c4f8c644bd7f6e3f428b6244e935c0cf105f75f9b24ed2d"; - revision = "2"; - editedCabalFile = "1kbiwqm4fxrsdpcqijdq98h8wzmxydcvxd03f1z8dliqzyqsbd60"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-install" = callPackage - ({ mkDerivation, array, async, base, base16-bytestring, binary - , bytestring, Cabal, containers, cryptohash-sha256, deepseq - , directory, echo, edit-distance, filepath, hackage-security - , hashable, HTTP, mtl, network, network-uri, pretty, process - , random, stdenv, stm, tar, time, unix, zlib - }: - mkDerivation { - pname = "cabal-install"; - version = "2.2.0.0"; - sha256 = "c856a2dd93c5a7b909597c066b9f9ca27fbda1a502b3f96077b7918c0f64a3d9"; - revision = "1"; - editedCabalFile = "0f1svlhh4cpj3p5fs9bcjpv15qp291lnvlaxxcw7aib8a1gn3wim"; - configureFlags = [ "-flib" "-f-native-dns" ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath process ]; - libraryHaskellDepends = [ - array async base base16-bytestring binary bytestring Cabal - containers cryptohash-sha256 deepseq directory echo edit-distance - filepath hackage-security hashable HTTP mtl network network-uri - pretty process random stm tar time unix zlib - ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir $out/etc - mv bash-completion $out/etc/bash_completion.d - ''; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat - , base16-bytestring, bytestring, containers, directory, filepath - , mtl, optics-core, optparse-applicative, parsec, process - , semialign, singleton-bool, stdenv, text, these, topograph - , transformers, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.6.2.0"; - sha256 = "efbbf4e00c60bc1d59343a4785527f400bf4cd4ea830f1b25a09c64ea4f78b3f"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring containers directory - filepath text - ]; - executableHaskellDepends = [ - ansi-terminal async base base-compat bytestring containers - directory mtl optics-core optparse-applicative parsec process - semialign singleton-bool text these topograph transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, process, simple-cmd - , stdenv, time, unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "0.12.6"; - sha256 = "da26117406caca76e85729b69c8ef573499b5fb1a816951aeb861fb4cf16c0cc"; - revision = "1"; - editedCabalFile = "0wfj9gcygm1c9fy86973ybs8ww8g6fn3l7f5v2kvs28204g8i18g"; - configureFlags = [ "-f-old-locale" ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit process simple-cmd time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal - , containers, deepseq, directory, distribution-nixpkgs, filepath - , hackage-db, hopenssl, hpack, language-nix, lens, monad-par - , monad-par-extras, mtl, optparse-applicative, pretty, process - , split, stdenv, text, time, transformers, yaml - }: - mkDerivation { - pname = "cabal2nix"; - version = "2.9.3"; - sha256 = "129fcefe74fcb0c15aa4747603116820d751b0ea904376cd1603381a339a8182"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db hopenssl hpack - language-nix lens optparse-applicative pretty process split text - time transformers yaml - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory - distribution-nixpkgs filepath hopenssl language-nix lens monad-par - monad-par-extras mtl optparse-applicative pretty - ]; - doHaddock = false; - doCheck = false; - preCheck = '' - export PATH="$PWD/dist/build/cabal2nix:$PATH" - export HOME="$TMPDIR/home" - ''; - homepage = "https://github.com/nixos/cabal2nix#readme"; - description = "Convert Cabal files into Nix build instructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.1.1"; - sha256 = "ad063835309823388883324a42d951f15c5da9b4e324bfe3de97751f4fdca9ba"; - revision = "2"; - editedCabalFile = "0fip9d1hdjkb7pzz668qb9b9m90r9xifjhx7zbhax4wr3723lfxg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.1.1"; - sha256 = "1029991d52add00d7ea68cc03e7d87301cf23f644a0ffa8dbbaed91c9eb05f11"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cachix" = callPackage - ({ mkDerivation, async, base, base16-bytestring, base64-bytestring - , bifunctors, bytestring, cachix-api, conduit, conduit-extra - , cookie, cryptonite, dhall, directory, ed25519, filepath, fsnotify - , here, hspec-discover, http-client, http-client-tls, http-conduit - , http-types, lzma-conduit, megaparsec, memory, mmorph - , optparse-applicative, process, protolude, resourcet - , safe-exceptions, servant, servant-auth, servant-auth-client - , servant-client, servant-client-core, servant-streaming-client - , stdenv, streaming, text, unix, uri-bytestring, versions - }: - mkDerivation { - pname = "cachix"; - version = "0.1.2"; - sha256 = "c7ec670eb1d0d6c00fc13f0703094faaeb177cca14bd38f7c13a3c4aa964a2de"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base base16-bytestring base64-bytestring bifunctors - bytestring cachix-api conduit conduit-extra cookie cryptonite dhall - directory ed25519 filepath fsnotify here http-client - http-client-tls http-conduit http-types lzma-conduit megaparsec - memory mmorph optparse-applicative process protolude resourcet - safe-exceptions servant servant-auth servant-auth-client - servant-client servant-client-core servant-streaming-client - streaming text unix uri-bytestring versions - ]; - executableHaskellDepends = [ - async base base16-bytestring base64-bytestring bifunctors - bytestring cachix-api conduit conduit-extra cookie cryptonite dhall - directory ed25519 filepath fsnotify here http-client - http-client-tls http-conduit http-types lzma-conduit megaparsec - memory mmorph optparse-applicative process protolude resourcet - safe-exceptions servant servant-auth servant-auth-client - servant-client servant-client-core servant-streaming-client - streaming text unix uri-bytestring versions - ]; - executableToolDepends = [ hspec-discover ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cachix/cachix#readme"; - description = "Command line client for Nix binary cache hosting https://cachix.org"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cachix-api" = callPackage - ({ mkDerivation, aeson, amazonka, base, base16-bytestring - , bytestring, conduit, cookie, cryptonite, http-api-data - , http-media, lens, memory, servant, servant-auth - , servant-auth-server, servant-auth-swagger, servant-streaming - , servant-swagger, servant-swagger-ui-core, stdenv, string-conv - , swagger2, text, transformers - }: - mkDerivation { - pname = "cachix-api"; - version = "0.1.0.2"; - sha256 = "f69500953e74c1d19230b4c840660c7f56edb04bf65550a939f9e31e479a0a4b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson amazonka base base16-bytestring bytestring conduit cookie - cryptonite http-api-data http-media lens memory servant - servant-auth servant-auth-server servant-auth-swagger - servant-streaming servant-swagger servant-swagger-ui-core - string-conv swagger2 text transformers - ]; - executableHaskellDepends = [ - aeson amazonka base base16-bytestring bytestring conduit cookie - cryptonite http-api-data http-media lens memory servant - servant-auth servant-auth-server servant-auth-swagger - servant-streaming servant-swagger servant-swagger-ui-core - string-conv swagger2 text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cachix/cachix#readme"; - description = "Servant HTTP API specification for https://cachix.org"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cairo" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo - , gtk2hs-buildtools, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cairo"; - version = "0.13.5.0"; - sha256 = "420acd81e0b5578ad188bcdd38463135293c233221abb741cc4004d4c8a6bef3"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring mtl text utf8-string - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Cairo library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) cairo;}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0.0.1"; - sha256 = "8cd39ccf4fbe538f8e5d434d0efd0c559074420b9283d2c7c4b7ab6262b4d529"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.1.0"; - sha256 = "f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "capataz" = callPackage - ({ mkDerivation, async, base, bytestring, pretty-show - , prettyprinter, rio, stdenv, teardown, time, uuid - }: - mkDerivation { - pname = "capataz"; - version = "0.2.0.0"; - sha256 = "a4dfc60ccd24bb3102127cb0226f23abfc12b7263fe45e74747cf674d736022c"; - libraryHaskellDepends = [ - async base bytestring pretty-show prettyprinter rio teardown time - uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-capataz#readme"; - description = "OTP-like supervision trees in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.0.11"; - sha256 = "a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.0"; - sha256 = "8e8a3631ef5823ae53dfeb7497ad4856c6758e3e380ff164f6a261f41685f6d7"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.1.0"; - sha256 = "762c8aaea2cdad61f52bad1b9f1f3b32764b4b6da03371aba6e5017f69614277"; - revision = "3"; - editedCabalFile = "0q9hwcn5jr5vs52n246qw8iw9jmc1d3dla071hhc0hdpck4igq6m"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-conduit" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, containers, mtl, stdenv, text - }: - mkDerivation { - pname = "cassava-conduit"; - version = "0.5.0"; - sha256 = "19460ab99942455cc12fa38b15c07da80df496eb5494675e7e524d197d874876"; - libraryHaskellDepends = [ - array base bifunctors bytestring cassava conduit containers mtl - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domdere/cassava-conduit"; - description = "Conduit interface for cassava package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-records" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, foldl - , stdenv, template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "cassava-records"; - version = "0.1.0.4"; - sha256 = "11f832c11125bd7a73b57941284d9aeb7f1e7572004da7e37311b34d3366af8d"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava foldl template-haskell text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/cassava-records#readme"; - description = "Auto-generation of records data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, stdenv }: - mkDerivation { - pname = "category"; - version = "0.2.0.1"; - sha256 = "07d0b37638ec5c46d96874c9318ca385ea489ae0538c62e9c559b6f56809ab6c"; - libraryHaskellDepends = [ alg base ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cayley-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , exceptions, http-client, http-conduit, lens, lens-aeson, mtl - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cayley-client"; - version = "0.4.7"; - sha256 = "ba1bc81ef9d15d076d22372444d4c3c9b6dc7a6a9f12dd2be80d261119ad598e"; - libraryHaskellDepends = [ - aeson attoparsec base binary bytestring exceptions http-client - http-conduit lens lens-aeson mtl text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/cayley-client"; - description = "A Haskell client for the Cayley graph database"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , ghc-prim, half, integer-gmp, primitive, stdenv, text - }: - mkDerivation { - pname = "cborg"; - version = "0.2.1.0"; - sha256 = "9198735f7645ae492345505448f790433f5fe407b19e1c6b2ec2a4c76bd97483"; - revision = "1"; - editedCabalFile = "0v3z332gfi3mf0ilw94qwa0afkz7w1n5rnjjj0g170dmqrjphvrg"; - libraryHaskellDepends = [ - array base bytestring containers deepseq ghc-prim half integer-gmp - primitive text - ]; - doHaddock = false; - doCheck = false; - description = "Concise Binary Object Representation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.7.0"; - sha256 = "7abdaf6d52260e714adcf1c3e16f2e25a56492d90a747d1a9594e15f05acf1c8"; - revision = "1"; - editedCabalFile = "0m6iml0rm3nv40rj4dylpha1al573ifx0y7rvpj165l7z6sh3l22"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-time" = callPackage - ({ mkDerivation, base, cereal, stdenv, time }: - mkDerivation { - pname = "cereal-time"; - version = "0.1.0.0"; - sha256 = "bec6d5103ec45bee242825da4cf695f574f101bb1d48778bf7823175dfa43cb2"; - libraryHaskellDepends = [ base cereal time ]; - doHaddock = false; - doCheck = false; - description = "Serialize instances for types from `time` package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cfenv" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "cfenv"; - version = "0.1.0.0"; - sha256 = "8ce96643559ebe4504c0641f9817d8795b22631f614084af50c88e51277e747e"; - libraryHaskellDepends = [ aeson base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomphp/haskell-cfenv#readme"; - description = "A library getting the environment when running on Cloud Foundry"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.3"; - sha256 = "f9e988023fd53fc60b00fbb5546f9e75045ab1dc83e21aa0c56288c681072232"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chart-unit" = callPackage - ({ mkDerivation, base, colour, data-default, diagrams-lib - , diagrams-svg, foldl, formatting, generic-lens, lens, linear - , numhask, numhask-prelude, numhask-range, palette, protolude - , scientific, stdenv, svg-builder, SVGFonts, text, time - }: - mkDerivation { - pname = "chart-unit"; - version = "0.7.0.0"; - sha256 = "97f893f3a9f28cf93d8ad30991ed6fec04c908e8a5bbc4f8e018f06a00bab20e"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/chart-unit#readme"; - description = "Native haskell charts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chatwork" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, connection - , data-default-class, http-api-data, http-client, http-client-tls - , http-types, req, stdenv, text - }: - mkDerivation { - pname = "chatwork"; - version = "0.1.3.5"; - sha256 = "755e81663dcfd3c325bff3ffe2aedb1594bf46b303a172e8a2f42ae43eec6959"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/chatwork#readme"; - description = "The ChatWork API in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "cheapskate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , data-default, deepseq, mtl, stdenv, syb, text, uniplate - , xss-sanitize - }: - mkDerivation { - pname = "cheapskate"; - version = "0.1.1"; - sha256 = "621041bf50cb9d94bf6a4eb90a038e0b0a6cb9794802f985fe126a73e08938c2"; - revision = "1"; - editedCabalFile = "1zrbp211ciia8j1br6krbxbqsj69kmx0rgkbvbpxdklmbgpfam3b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html containers data-default deepseq mtl syb text - uniplate xss-sanitize - ]; - executableHaskellDepends = [ base blaze-html bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/cheapskate"; - description = "Experimental markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-highlight" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate - , stdenv, text - }: - mkDerivation { - pname = "cheapskate-highlight"; - version = "0.1.0.0"; - sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; - revision = "1"; - editedCabalFile = "1c8kxqdqf0j962xjdrrjfcbjsl0c1kax31rjykymv7w16d6hmlj4"; - libraryHaskellDepends = [ - base blaze-html cheapskate highlighting-kate text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-highlight"; - description = "Code highlighting for cheapskate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-lucid" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, lucid, stdenv }: - mkDerivation { - pname = "cheapskate-lucid"; - version = "0.1.0.0"; - sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; - revision = "1"; - editedCabalFile = "197nx95xw21i7zyvgzcgnr36ab6vrk17c66iz8ndwz61vp1jf6hc"; - libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-lucid"; - description = "Use cheapskate with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "check-email" = callPackage - ({ mkDerivation, base, bytestring, email-validate, resolv, stdenv - }: - mkDerivation { - pname = "check-email"; - version = "1.0.2"; - sha256 = "1c2615fadba09a5d7aa5c68648d12218a595efb759842fb4f524cf380afa9327"; - libraryHaskellDepends = [ base bytestring email-validate ]; - librarySystemDepends = [ resolv ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qoelet/check-email#readme"; - description = "Confirm whether an email is valid and probably existant"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) resolv;}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.4.11"; - sha256 = "d0602d3561b9c3d9365387543e363e40b11851ace42698feb519c6567d842d38"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-aes128" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cereal, crypto-api - , process, stdenv, tagged - }: - mkDerivation { - pname = "cipher-aes128"; - version = "0.7.0.3"; - sha256 = "6f27bea8bcd1987072fc75b6b423ae9c691574324b6a328ec1e2866f84412e3a"; - revision = "1"; - editedCabalFile = "1c3lr80vcdrajlvks9ny9s8m2n2kc9jw14nh65668dfikp0pqc61"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/cipher-aes128"; - description = "AES and common modes using AES-NI when available"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-blowfish" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-blowfish"; - version = "0.0.3"; - sha256 = "8f41170a851dba6d0b6f07298af3213baca09ab2a8aaf2adb733631feb3b6641"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Blowfish cipher"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "circle-packing" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "circle-packing"; - version = "0.1.0.6"; - sha256 = "64ee44a90da3e5fe20d5b78bfe6eba93102a6b52c65f8a7b99af7799798ee81b"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Simple heuristic for packing discs of varying radii in a circle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.3"; - sha256 = "7e962a9f34e5b0c66fe858f4c6a322d22586bc7a8ac602a317697d2d9b6228ba"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "clang-compilation-database" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text }: - mkDerivation { - pname = "clang-compilation-database"; - version = "0.1.0.1"; - sha256 = "114601a1769471e4fc2e8d100c5546e95fa803b9e56dcd342dab9829d0dc1ca8"; - libraryHaskellDepends = [ aeson base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lambdageek/clang-compilation-database"; - description = "JSON Compilation Database Format encoding and decoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "clash-ghc" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib - , clash-prelude, concurrent-supply, containers, deepseq, directory - , filepath, ghc, ghc-boot, ghc-prim, ghc-typelits-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable - , haskeline, integer-gmp, lens, mtl, primitive, process, reflection - , stdenv, text, time, transformers, unbound-generics, uniplate - , unix, unordered-containers, vector - }: - mkDerivation { - pname = "clash-ghc"; - version = "0.99.3"; - sha256 = "89470f1e133514a488d8c77ffd63535ffae5b014fc2288c6bc8879c10ddc4b3e"; - revision = "1"; - editedCabalFile = "0r86409nh73wcychmwh2j3qnbbjk9z2yxr5amx7gpc8gar4qb3qi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bifunctors bytestring clash-lib clash-prelude - concurrent-supply containers deepseq directory filepath ghc - ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat - ghc-typelits-natnormalise ghci hashable haskeline integer-gmp lens - mtl primitive process reflection text time transformers - unbound-generics uniplate unix unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "clash-lib" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , bytestring, clash-prelude, concurrent-supply, containers - , data-binary-ieee754, deepseq, directory, errors, fgl, filepath - , ghc, hashable, integer-gmp, lens, mtl, parsers, prettyprinter - , primitive, process, reducers, stdenv, template-haskell, text - , time, transformers, trifecta, unbound-generics - , unordered-containers, vector - }: - mkDerivation { - pname = "clash-lib"; - version = "0.99.3"; - sha256 = "556b0fc0166f2f3a48e3f9d6deecc25e472cce5183887fb046c0642cae73daba"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base bytestring clash-prelude - concurrent-supply containers data-binary-ieee754 deepseq directory - errors fgl filepath ghc hashable integer-gmp lens mtl parsers - prettyprinter primitive process reducers template-haskell text time - transformers trifecta unbound-generics unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware - As a Library"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "clash-prelude" = callPackage - ({ mkDerivation, array, base, bifunctors, constraints - , data-binary-ieee754, data-default, deepseq, ghc-prim - , ghc-typelits-extra, ghc-typelits-knownnat - , ghc-typelits-natnormalise, half, integer-gmp, lens, QuickCheck - , reflection, singletons, stdenv, template-haskell, transformers - , vector - }: - mkDerivation { - pname = "clash-prelude"; - version = "0.99.3"; - sha256 = "ef4628671f207dc7f27c7df46e5151f4c20826438507defd9bf05f76658b77bc"; - libraryHaskellDepends = [ - array base bifunctors constraints data-binary-ieee754 data-default - deepseq ghc-prim ghc-typelits-extra ghc-typelits-knownnat - ghc-typelits-natnormalise half integer-gmp lens QuickCheck - reflection singletons template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware - Prelude library"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.4.0"; - sha256 = "2b3b255676ab0fdeb39aebafa3543535ddd684d00c645b643e50cb9e2d25f9e0"; - revision = "1"; - editedCabalFile = "1gf615lz0bfsn09vrjgj63d8zcpsmz1cgvdv8px3h0b4jrwdij6v"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.4.0"; - sha256 = "39ef2567a3542ebf91f6ebc103cc4afb64c2a4ec051c7ce578b577ef9931c424"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.4.0"; - sha256 = "0cd2a88f42c3541ba4bce6801c8b8d9c331e1c49a6288bf16f764676a34b9e28"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "classyplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "classyplate"; - version = "0.3.1.0"; - sha256 = "9548f228998d7aa00372385e94d51d2802f1a5400b3b85dcb31fda4d75f7d12b"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Fuseable type-class based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.1"; - sha256 = "844e9101cc1835eb12bac50e289d00f19c24eeee12bcdebae1b633edffa328a3"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "closed" = callPackage - ({ mkDerivation, aeson, base, cassava, deepseq, hashable - , persistent, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "closed"; - version = "0.2.0"; - sha256 = "7a301c6c543ae60354b737c56c2259dfc9e01ddf9eee452e4469c6262c53c21c"; - revision = "1"; - editedCabalFile = "0n4g5in0lzy0gs04jj4y0kb3ndychp6nd92pqcsy80bqlllqv2a9"; - libraryHaskellDepends = [ - aeson base cassava deepseq hashable persistent QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/closed#readme"; - description = "Integers bounded by a closed interval"; - license = stdenv.lib.licenses.mit; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "fe2abf0386c96df6e51cbae4f45e074b54452fc01f9308b098198ade4ffc5ea4"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.0"; - sha256 = "fd4b303d206eaf242c779bb65c42256e42220c8497a6bcf3bc59589b9396c495"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.1.6"; - sha256 = "c8f916c8fbc9b3c564dcd6946cd530a292a055b60c784dde303803199a6c6968"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-builder" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "code-builder"; - version = "0.1.3"; - sha256 = "559e47a44cec85a8e95df92e5d2693cacc9761503c30be3b83eaebd95360a4ab"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simple system for generating code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.1.3"; - sha256 = "e65c86600e06d85f2e2c2a9df4b3d68e2dbd3adb2df9e922a4cd744966762191"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec" = callPackage - ({ mkDerivation, aeson, base, binary, binary-bits, bytestring, mtl - , profunctors, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "codec"; - version = "0.2.1"; - sha256 = "ffc261b58108c3d90c0b0b68461857d1148208d1a9645916e63241aaa3c25b28"; - libraryHaskellDepends = [ - aeson base binary binary-bits bytestring mtl profunctors - template-haskell text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chpatrick/codec"; - description = "Simple bidirectional serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.2.0"; - sha256 = "61eb624e5f347ec9249f976bc8b62ae597777604d82ab0e62acb9901374ae365"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "codo-notation" = callPackage - ({ mkDerivation, base, comonad, haskell-src-meta, parsec, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "codo-notation"; - version = "0.5.2"; - sha256 = "78eb57004541ed29eb4c54196b91ac2dd1028a3315f51cd4dc00debfc0938eaf"; - libraryHaskellDepends = [ - base comonad haskell-src-meta parsec template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - description = "A notation for comonads, analogous to the do-notation for monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "coercible-utils" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "coercible-utils"; - version = "0.0.0"; - sha256 = "2a624986cdc010c7fc3e90f8c94f722995af9fe6e88b9d52a94ebaa319b08c98"; - revision = "1"; - editedCabalFile = "1xbnkv6fqf4mizqkha8b073p0r84l1rx1kzdsd6nh8b0adrp6i4d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/coercible-utils"; - description = "Utility functions for Coercible types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colonnade" = callPackage - ({ mkDerivation, base, bytestring, contravariant, profunctors - , stdenv, text, vector - }: - mkDerivation { - pname = "colonnade"; - version = "1.2.0.1"; - sha256 = "32ebd86360c9a363d62a2490b7120de5651a6674a79c4f9d85e13d2cc8cb3e8b"; - libraryHaskellDepends = [ - base bytestring contravariant profunctors text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Generic types and functions for columnar encoding and decoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.2"; - sha256 = "0b42ff47e011f011f73e444d7121b7bc54324077cb2a1011ee01766483706578"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.4"; - sha256 = "0f439f00b322ce3d551f28a4dd1520aa2c91d699de4cdc6d485b9b04be0dc5eb"; - revision = "1"; - editedCabalFile = "1awhbn3pk4zgzpnbbhb10rbxzbb4fz5gywa5h3xl589dclv912ls"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1.0.1"; - sha256 = "c4d67854fecd353f5e7e6be009ffbd16cd6e9f6f41af16f072ae89778596db70"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3.1"; - sha256 = "c926189971d0b416b4b078a1652de65a12a9fabd013d2373204bbe96fef8b562"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv }: - mkDerivation { - pname = "commutative"; - version = "0.0.1.4"; - sha256 = "0de746012c73543b5dcf649434046e36d5e158e0967e8e2ae122e85d5457c9cf"; - libraryHaskellDepends = [ base random semigroups ]; - doHaddock = false; - doCheck = false; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , contravariant, distributive, semigroups, stdenv, tagged - , transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.4"; - sha256 = "78a89d7f9f0975b40b3294adcb70885649572b687ac5f5dc98e452471838e825"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers contravariant distributive semigroups tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.7.2"; - sha256 = "c7f9bf47a586720deda33b82ddc633d3507c8bc199eb5555c80931f6c323cae2"; - revision = "2"; - editedCabalFile = "1f5hfmzi2bk7xldxgmcd85gyi4dqm7q18cgmwmzpyz7f67p7awhz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "componentm" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, pretty-show - , prettyprinter, rio, stdenv, teardown - }: - mkDerivation { - pname = "componentm"; - version = "0.0.0.2"; - sha256 = "efe23d927d3ad2aee5052ef379f7a472f60e1b0749195e9b46bbf0d8c756b6a7"; - libraryHaskellDepends = [ - base containers deepseq exceptions pretty-show prettyprinter rio - teardown - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-componentm#readme"; - description = "Monad for allocation and cleanup of application resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "componentm-devel" = callPackage - ({ mkDerivation, base, componentm, foreign-store, rio, stdenv - , teardown - }: - mkDerivation { - pname = "componentm-devel"; - version = "0.0.0.2"; - sha256 = "2dd7303c9b26d748baf1a0893b19072ef2a2817c8c77639e3c844e559cd85b0a"; - libraryHaskellDepends = [ - base componentm foreign-store rio teardown - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-componentm#readme"; - description = "Easy REPL driven development using ComponentM"; - license = stdenv.lib.licenses.mit; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composition-prelude"; - version = "1.5.3.1"; - sha256 = "ed4c5090b8281b3a69ed50c49cc2558cb9953be19f22b3eb56c2e391bbfd0437"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Higher-order function combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compressed" = callPackage - ({ mkDerivation, base, comonad, containers, fingertree, hashable - , keys, pointed, reducers, semigroupoids, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "compressed"; - version = "3.11"; - sha256 = "d77bbf2f445d32f138dfde9e860e68db5de8ae04c52ffda23941ddf7bdabdd3d"; - revision = "1"; - editedCabalFile = "0h3kfr2kdn74vk0mam5mwk6phclrcm79khd8yz2pp8j9zv1v8q3r"; - libraryHaskellDepends = [ - base comonad containers fingertree hashable keys pointed reducers - semigroupoids semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/compressed/"; - description = "Compressed containers and reducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.6.1.0"; - sha256 = "40a4093192666ca375c0b8f5cef1ab4dd1c4197d8131159e96827ea15f669e01"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.7"; - sha256 = "605015aa15315a3df5fe8e864a313661e7fd95b2c25f8f96a0484b9a6c40bd70"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1"; - sha256 = "60793c8eeff1fa0fe03910951d1925f3c66aec61ead64bf3f98dd6110a05b8e7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-supply" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "concurrent-supply"; - version = "0.1.8"; - sha256 = "ccf827dcd221298ae93fad6021c63a06707456de0671706b44f1f2fed867f21f"; - revision = "1"; - editedCabalFile = "1yzrr68k81w3jmrarx3y6z7ymzaaxwab509pp6kkd2fjia3g8wwk"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/concurrent-supply/"; - description = "A fast concurrent unique identifier supply with a pure API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.1"; - sha256 = "ae129b66ada785c43a693d3b260f0e7b2f01d79fbf04ae43f7341405455320d6"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, containers, deepseq - , exceptions, lzma-conduit, monad-control, mtl, pqueue, resourcet - , stdenv, stm, stm-conduit, streaming-commons, transformers - , unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.8.2"; - sha256 = "a897faa37209780088ed3203aadb0195169d7c24f1eae39bd2ad2f0f851d82e8"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra containers deepseq exceptions lzma-conduit - monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-connection" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "conduit-connection"; - version = "0.1.0.4"; - sha256 = "5e784117f3698dc653b286fbb53d530068d0cdadbe130ec02abf42e3f2c821fc"; - libraryHaskellDepends = [ - base bytestring conduit connection resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-connection"; - description = "Conduit source and sink for Network.Connection."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.0"; - sha256 = "2c41c925fc53d9ba2e640c7cdca72c492b28c0d45f1a82e94baef8dfa65922ae"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-iconv" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv }: - mkDerivation { - pname = "conduit-iconv"; - version = "0.1.1.3"; - sha256 = "1c71304782e4599a2987321028b50356c4982b45d9096d954e0b7c0b7ad3acb6"; - libraryHaskellDepends = [ base bytestring conduit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-iconv"; - description = "Conduit for character encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-throttle" = callPackage - ({ mkDerivation, async, base, conduit, conduit-combinators - , conduit-extra, monad-control, resourcet, stdenv, stm, stm-chans - , throttle-io-stream, unliftio, unliftio-core - }: - mkDerivation { - pname = "conduit-throttle"; - version = "0.3.1.0"; - sha256 = "8dd6d616f5ddce25668bb34069bfdcdfe2a866c8d708b725a9b2e450a95aa329"; - libraryHaskellDepends = [ - async base conduit conduit-combinators conduit-extra monad-control - resourcet stm stm-chans throttle-io-stream unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/conduit-throttle#readme"; - description = "Throttle Conduit Producers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "config-ini" = callPackage - ({ mkDerivation, base, containers, megaparsec, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "config-ini"; - version = "0.2.2.0"; - sha256 = "364d67b876abf867d97eaacac630e920521ff96478fe9869a41983893ce140a0"; - libraryHaskellDepends = [ - base containers megaparsec text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aisamanra/config-ini"; - description = "A library for simple INI-based configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configuration-tools" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base-unicode-symbols, base64-bytestring, bytestring, Cabal - , case-insensitive, connection, data-default, deepseq, directory - , dlist, enclosed-exceptions, filepath, http-client - , http-client-tls, http-types, monad-control, mtl, network-uri - , optparse-applicative, process, profunctors, semigroups, stdenv - , text, tls, transformers, unordered-containers, x509, x509-system - , x509-validation, yaml - }: - mkDerivation { - pname = "configuration-tools"; - version = "0.3.1"; - sha256 = "e0df7e71b084c1bd831cd9887584f06e016e359291dc4f71b72d2027f7f86e47"; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base-unicode-symbols - base64-bytestring bytestring Cabal case-insensitive connection - data-default deepseq directory dlist enclosed-exceptions filepath - http-client http-client-tls http-types monad-control mtl - network-uri optparse-applicative process profunctors semigroups - text tls transformers unordered-containers x509 x509-system - x509-validation yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alephcloud/hs-configuration-tools"; - description = "Tools for specifying and parsing configurations"; - license = stdenv.lib.licenses.mit; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, basement, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "1"; - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv }: - mkDerivation { - pname = "constraint"; - version = "0.1.1.1"; - sha256 = "22800d629e3255c7e37d9265ac70b9a4ec4bee2d5f4cc19948e8d28b911ddf47"; - libraryHaskellDepends = [ base category ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "constraints"; - version = "0.10.1"; - sha256 = "5880ec261e053841b307c7c8c59614f46c2efbd5189f0f2a3c817589cedec3f7"; - revision = "1"; - editedCabalFile = "1i2rd805mjz5q7s98ryy1m91zd4b9hx92gw1rwr6kpibqqw9smcb"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "consul-haskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , connection, either, exceptions, http-client, http-client-tls - , http-types, lifted-async, lifted-base, monad-control, network - , retry, stdenv, stm, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "consul-haskell"; - version = "0.4.2"; - sha256 = "b10812b70dfbce7037f9f23eda71fa2fa6fc97ed309bd63c00f226522d30d80a"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring connection either - exceptions http-client http-client-tls http-types lifted-async - lifted-base monad-control network retry stm text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/consul-haskell"; - description = "A consul client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "containers-unicode-symbols" = callPackage - ({ mkDerivation, base, base-unicode-symbols, containers, stdenv }: - mkDerivation { - pname = "containers-unicode-symbols"; - version = "0.3.1.1"; - sha256 = "4655f286a2d116cb5f2b89f472df54df739bf904ac8e932b2fd34d3f713e9b31"; - libraryHaskellDepends = [ base base-unicode-symbols containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "contravariant"; - version = "1.4.1"; - sha256 = "c93d3d619fa378f3fdf92c53bb8b04b8f47963b88aba7cfa54b57656189ad0ed"; - revision = "1"; - editedCabalFile = "0qj5nymccrb9p0cd6hffsy90jidjng14g9yv95z8v6h4q84sbzvx"; - libraryHaskellDepends = [ - base StateVar transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, base-prelude, contravariant, semigroups - , stdenv, template-haskell, tuple-th - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.4"; - sha256 = "36a9239d5a84bc6a418a3aa1a0df145d76ece24d00b76deb817b92441913e63d"; - revision = "1"; - editedCabalFile = "1h2955ahga6i4fn7k8v66l03v77p6fhsac6ck8gpabkc08ij60wp"; - libraryHaskellDepends = [ - base base-prelude contravariant semigroups template-haskell - tuple-th - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-dsl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-dsl"; - version = "0.2.1.3"; - sha256 = "e8c795e256030194ef9beb8009ed49f1257790ad1b51d3f629c98f6ce5e56967"; - revision = "2"; - editedCabalFile = "18jypzsawq0mp12i35f58px80i3k07ri0g07wcrh6af93vqkhvil"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Atry/Control.Dsl#readme"; - description = "An alternative to monads in do-notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.2"; - sha256 = "63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.1"; - sha256 = "383b98ecf5db5add42f318672af9eb1c8b9d99ec42d48c240e209a93b5cf1186"; - revision = "1"; - editedCabalFile = "029v5j0mnlzzn6my7jgw26gdm5fbs2h7y395zk1q7r5bfar00q58"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.4"; - sha256 = "3245ed04ae933cf7becede816d1f76043b851472700abf558ae90b28414cc0e3"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "country" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , ghc-prim, hashable, primitive, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "country"; - version = "0.1.6"; - sha256 = "09b36e30dfb1fa5fa7a2c5c38f316a70e0c740b8a4dd6e340abe9770ad149928"; - revision = "3"; - editedCabalFile = "034cd94hiwgci0qhkdkkqmx2igmf1wxmd4b70g6sdlk1kklcn7x1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq ghc-prim hashable - primitive scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/country#readme"; - description = "Country data type and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "courier" = callPackage - ({ mkDerivation, async, base, bytestring, cereal, containers - , hslogger, network, stdenv, stm, text, uuid - }: - mkDerivation { - pname = "courier"; - version = "0.1.1.5"; - sha256 = "ac9e674ff33de347b173da2892859b3807a408b341d10d6101d2a7d07ac334d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring cereal containers hslogger network stm text - uuid - ]; - executableHaskellDepends = [ base cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/hargettp/courier"; - description = "A message-passing library for simplifying network applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "cql" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, Decimal - , iproute, network, stdenv, template-haskell, text, time - , transformers, uuid, vector - }: - mkDerivation { - pname = "cql"; - version = "4.0.1"; - sha256 = "89294c6a6ed2c6f8c6037ee2ca4236d3606bf9019a39df9e39b7ad8dcd573808"; - libraryHaskellDepends = [ - base bytestring cereal containers Decimal iproute network - template-haskell text time transformers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql/"; - description = "Cassandra CQL binary protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cql-io" = callPackage - ({ mkDerivation, async, auto-update, base, bytestring, containers - , cql, cryptohash, data-default-class, exceptions, hashable - , HsOpenSSL, iproute, lens, monad-control, mtl, mwc-random, network - , retry, semigroups, stdenv, stm, text, time, tinylog, transformers - , transformers-base, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "cql-io"; - version = "1.0.1.1"; - sha256 = "ac1353fc3ae4b182877aa518282ea1bd839cf5a3ffb936d6da4807b11d00bbcd"; - libraryHaskellDepends = [ - async auto-update base bytestring containers cql cryptohash - data-default-class exceptions hashable HsOpenSSL iproute lens - monad-control mtl mwc-random network retry semigroups stm text time - tinylog transformers transformers-base unordered-containers uuid - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql-io/"; - description = "Cassandra CQL client"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, bytestring, cassava, code-page, containers, deepseq - , directory, exceptions, filepath, Glob, js-flot, js-jquery - , microstache, mtl, mwc-random, optparse-applicative, parsec - , semigroups, statistics, stdenv, text, time, transformers - , transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.4.1.0"; - sha256 = "c49306676aa7927c3ca3c1807b081d1e86771eb8da99c8391f9c4dacb24a826c"; - revision = "1"; - editedCabalFile = "0jg7mk9y9br5aqi29vrrrq28mnyknyg96zmr8rrlxw0rf68l892a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary bytestring - cassava code-page containers deepseq directory exceptions filepath - Glob js-flot js-jquery microstache mtl mwc-random - optparse-applicative parsec semigroups statistics text time - transformers transformers-compat vector vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "criterion-measurement" = callPackage - ({ mkDerivation, aeson, base, base-compat, binary, containers - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "criterion-measurement"; - version = "0.1.1.0"; - sha256 = "f5f87769386a927dbf487d2f256fc6804f2902078e86dcf113e35178a582ab56"; - libraryHaskellDepends = [ - aeson base base-compat binary containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/criterion"; - description = "Criterion measurement functionality and associated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.1"; - sha256 = "8c1af53bde729026809b722468f6b36c4f96cb532f26a390f32f1c91fb8b3251"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api-tests" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, directory - , filepath, HUnit, QuickCheck, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-api-tests"; - version = "0.3"; - sha256 = "f44aecdd4ceb9da9f38330e84d9c17745a82b0611085ebb34442d2dce4207270"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api directory filepath HUnit - QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/crypto-api/wiki"; - description = "A test framework and KATs for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-tests" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , HUnit, mtl, QuickCheck, securemem, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-cipher-tests"; - version = "0.0.11"; - sha256 = "dfb670b73d4091b8683634d0d4d5a40576d573ad160650d5e518244ced8b98a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types HUnit mtl QuickCheck - securemem test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, base, containers, MissingH, mtl, split, stdenv }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.0.2.14"; - sha256 = "37a5d239b7a7ec1ad635b97e22406038911e70aaf01ce51396904578e27dfb89"; - libraryHaskellDepends = [ base containers MissingH mtl split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-numbers" = callPackage - ({ mkDerivation, base, bytestring, crypto-random, ghc-prim - , integer-gmp, stdenv, vector - }: - mkDerivation { - pname = "crypto-numbers"; - version = "0.2.7"; - sha256 = "420aeb17e9cdcfdf8c950c6c6f10c54503c5524d36f611aa7238e3fd65f189a6"; - revision = "1"; - editedCabalFile = "1jjkhid8kwrz5894nad537rqxzzyx6b687bmgyk70nv0ny336j9b"; - libraryHaskellDepends = [ - base bytestring crypto-random ghc-prim integer-gmp vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-numbers"; - description = "Cryptographic numbers: functions and algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-numbers - , crypto-pubkey-types, crypto-random, cryptohash, stdenv - }: - mkDerivation { - pname = "crypto-pubkey"; - version = "0.2.8"; - sha256 = "c0ccf2f5c38517de1f1626cb0a2542f35aefad8842f8ad5c1fac0b8c9de8b56e"; - libraryHaskellDepends = [ - base byteable bytestring crypto-numbers crypto-pubkey-types - crypto-random cryptohash - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-pubkey"; - description = "Public Key cryptography"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocipher" = callPackage - ({ mkDerivation, base, cipher-aes, cipher-blowfish, cipher-camellia - , cipher-des, cipher-rc4, crypto-cipher-types, stdenv - }: - mkDerivation { - pname = "cryptocipher"; - version = "0.6.2"; - sha256 = "34b9e62dee36c4019dd0c0e86576295d0bd1bb573eeb24686ec635a09550e346"; - libraryHaskellDepends = [ - base cipher-aes cipher-blowfish cipher-camellia cipher-des - cipher-rc4 crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Symmetrical block and stream ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocompare" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , exceptions, http-conduit, MissingH, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "cryptocompare"; - version = "0.1.1"; - sha256 = "d12e0f6fd133e538852e5700b0a31d81c6885dc8b1e9e88d1b331dcec38316b3"; - libraryHaskellDepends = [ - aeson base bytestring containers directory exceptions http-conduit - MissingH text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/cryptocompare"; - description = "Haskell wrapper for the cryptocompare API"; - license = stdenv.lib.licenses.mit; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.25"; - sha256 = "89be1a18af8730a7bfe4d718d7d5f6ce858e9df93a411566d15bf992db5a3c8c"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csg" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, gloss - , gloss-raster, QuickCheck, simple-vec3, stdenv, strict - , system-filepath, transformers, turtle - }: - mkDerivation { - pname = "csg"; - version = "0.1.0.5"; - sha256 = "09436d220b669b6d35146c8bc696a37f05eac60c737388b9d504471cbb70fc8b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/csg#readme"; - description = "Analytical CSG (Constructive Solid Geometry) library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-syntax" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scientific, stdenv - , text - }: - mkDerivation { - pname = "css-syntax"; - version = "0.0.8"; - sha256 = "4271ecf02ee47334dc8bee8bf6bcaa99503056aa73f42ef9eb3ad5840d3030c1"; - libraryHaskellDepends = [ - attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "This package implments a parser for the CSS syntax"; - license = stdenv.lib.licenses.mit; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.5"; - sha256 = "c5c9825782d97c4059b2261dddd6471fdb270ddac0ff97d6d02d4f0d44b62758"; - revision = "1"; - editedCabalFile = "0dii4z0cl1ylvay1n5z90d6rbvnk9k30q81i6izhgxbgdawwhh33"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , exceptions, megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "1.0.1"; - sha256 = "214a58e87a849c8311eb652ca215b4f5789d724e7499324544b3a01187577f8f"; - revision = "3"; - editedCabalFile = "14kgk1digf1vbsr7v5jvj8gajkx0rkn3zjl4m8csqhxalkaxa2zl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class exceptions megaparsec - mtl QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "curl-runnings" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring - , case-insensitive, cmdargs, directory, hspec, hspec-expectations - , http-conduit, http-types, megaparsec, stdenv, text - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "curl-runnings"; - version = "0.6.0"; - sha256 = "44204017b483d96659948011a3abe78f05afa5b63cd561bcaa36ea5f21efac19"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring case-insensitive directory hspec - hspec-expectations http-conduit http-types megaparsec text - unordered-containers vector yaml - ]; - executableHaskellDepends = [ base cmdargs text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/curl-runnings#readme"; - description = "A framework for declaratively writing curl based API tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.2.0.0"; - sha256 = "fb7292d4a5b9c4389690d1386fe24ce6a93eacbcfa952936ca6d4fd3afa98499"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "currency" = callPackage - ({ mkDerivation, base, containers, hashable, iso3166-country-codes - , stdenv - }: - mkDerivation { - pname = "currency"; - version = "0.2.0.0"; - sha256 = "bcd517f3d9f47f0dd3c4e802143159239e4a90db2fc552be4a99d759ffe9417a"; - libraryHaskellDepends = [ - base containers hashable iso3166-country-codes - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/currency-haskell"; - description = "Types representing standard and non-standard currencies"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cyclotomic" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv }: - mkDerivation { - pname = "cyclotomic"; - version = "0.5.1"; - sha256 = "f72098bac1ec2fe561a2cc654334d8931b1a9074424be0081157901df56f5ffd"; - libraryHaskellDepends = [ arithmoi base containers ]; - doHaddock = false; - doCheck = false; - description = "A subfield of the complex numbers for exact calculation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.1"; - sha256 = "4a148579f4ef822544b721a4b59f7a9e62a965e270dee9d2a54a98ceab494243"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "darcs" = callPackage - ({ mkDerivation, array, async, attoparsec, base, base16-bytestring - , binary, bytestring, Cabal, containers, cryptohash, curl - , data-ordlist, directory, fgl, filepath, graphviz, hashable - , haskeline, html, HTTP, mmap, mtl, network, network-uri, old-time - , parsec, process, random, regex-applicative, regex-compat-tdfa - , sandi, stdenv, stm, tar, terminfo, text, time, transformers, unix - , unix-compat, utf8-string, vector, zip-archive, zlib - }: - mkDerivation { - pname = "darcs"; - version = "2.14.1"; - sha256 = "61ddbc99acaf06df3a114437064e9241e0da467c23d1d3fb520a782eee32cd35"; - configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ - array async attoparsec base base16-bytestring binary bytestring - containers cryptohash data-ordlist directory fgl filepath graphviz - hashable haskeline html HTTP mmap mtl network network-uri old-time - parsec process random regex-applicative regex-compat-tdfa sandi stm - tar terminfo text time transformers unix unix-compat utf8-string - vector zip-archive zlib - ]; - librarySystemDepends = [ curl ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/etc/bash_completion.d - mv contrib/darcs_completion $out/etc/bash_completion.d/darcs - ''; - homepage = "http://darcs.net/"; - description = "a distributed, interactive, smart revision control system"; - license = stdenv.lib.licenses.gpl2; - }) {inherit (pkgs) curl;}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.2.8"; - sha256 = "ac3f95162df227a16eabf6be65d1d6563e5207d581edf72b680bfcd59f7f04bb"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-template" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, template-haskell - , utility-ht - }: - mkDerivation { - pname = "data-accessor-template"; - version = "0.2.1.16"; - sha256 = "93e7f2120b8974d81a4acc56bd6a5b7121dac4672d974a42512c169c6937ed95"; - libraryHaskellDepends = [ - base data-accessor template-haskell utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-clist" = callPackage - ({ mkDerivation, base, deepseq, QuickCheck, stdenv }: - mkDerivation { - pname = "data-clist"; - version = "0.1.2.1"; - sha256 = "9a1882e286e2f5428517375e129dc3c6fb12114f360cd4a767e7a699d67c8416"; - libraryHaskellDepends = [ base deepseq QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sw17ch/data-clist"; - description = "Simple functional ring type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.6.0.0"; - sha256 = "094d44446b2429bad5707b4aef0f1f63a9d101739d9a244cb2131f7646eccbd4"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse-lens" = callPackage - ({ mkDerivation, base, data-diverse, data-has, lens, profunctors - , stdenv, tagged - }: - mkDerivation { - pname = "data-diverse-lens"; - version = "4.3.0.0"; - sha256 = "97d049769f0a3693428bac8eb8de73e004f6fc9a1d0e3dc0c567f9d39f8ed986"; - libraryHaskellDepends = [ - base data-diverse data-has lens profunctors tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse-lens#readme"; - description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.2"; - sha256 = "6b677600221de86eaee21dd2d4c23c04320370c594a56f7bb3477ef4e4b69120"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-hash" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "data-hash"; - version = "0.2.0.1"; - sha256 = "9117dd49013ca28ff188fc71c3595ac3af23d56d301c1f39bac93d44d8c60bbe"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - description = "Combinators for building fast hashing functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-inttrie" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-inttrie"; - version = "0.1.4"; - sha256 = "6b3a7d8d49b0676c09486ac08107b0e5a6dfd66d9627443be440e9fd11e7bd54"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luqui/data-inttrie"; - description = "A simple lazy, infinite trie from integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-memocombinators" = callPackage - ({ mkDerivation, array, base, data-inttrie, stdenv }: - mkDerivation { - pname = "data-memocombinators"; - version = "0.5.1"; - sha256 = "b4341d2024b84a43f92edc39f6d6766bf4f0f00a40fd834b9f6f8e987b606ed7"; - libraryHaskellDepends = [ array base data-inttrie ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/data-memocombinators"; - description = "Combinators for building memo tables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , data-msgpack-types, groom, stdenv, text - }: - mkDerivation { - pname = "data-msgpack"; - version = "0.0.12"; - sha256 = "5c9f8b04fbc30368e0a085de2c33e08cb0601fc9e95f767c38435d5a0ce1f487"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 data-msgpack-types text - ]; - executableHaskellDepends = [ base bytestring groom ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack-types" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , QuickCheck, stdenv, text, unordered-containers, vector, void - }: - mkDerivation { - pname = "data-msgpack-types"; - version = "0.0.2"; - sha256 = "54fdda1fa485c9f86f1f0f2aa8cc71d111b2f36504b7fb9c0a2de95c0b1287a5"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable QuickCheck text - unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.1.2"; - sha256 = "605cf65aa01f93a5834305001056b2206a95830e25b7f969b34c9479a7e42621"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4"; - sha256 = "e793156aa2262ca294183a9d045f37e6ff2070825b40d2ffe5a8d64e0b455ec6"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.2"; - sha256 = "44c530b081a486c50d668004637814223d1f1890716d39f7b692c83644d29830"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.1"; - sha256 = "cec8c278e1033695ce97e2d7bf5db2b1b45a764976e59d06c67a6fe4fc5401fe"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, dlist, http-client, http-client-tls, http-types, lens - , lifted-base, monad-control, network, old-locale, stdenv, text - , time, transformers-base, unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.2.0"; - sha256 = "450fb6fba21d9739c8269f167ecf084d966e2248084386ab5c04b2748b4b6944"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring dlist http-client - http-client-tls http-types lens lifted-base monad-control network - old-locale text time transformers-base unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "datasets" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cassava - , directory, file-embed, filepath, hashable, microlens, stdenv - , stringsearch, text, time, vector, wreq - }: - mkDerivation { - pname = "datasets"; - version = "0.2.5"; - sha256 = "9a9139130936102bbfa60324e1ed7f9fd5b9a68db096917f589e8bb07999fdba"; - revision = "1"; - editedCabalFile = "1q96bxn8cjzr3pnygxz1s7bjk40l9kkxji9w4hxjbl3qh1m2i1sw"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cassava directory file-embed - filepath hashable microlens stringsearch text time vector wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/datasets"; - description = "Classical data sets for statistics and machine learning"; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dawg-ord" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, transformers - , vector - }: - mkDerivation { - pname = "dawg-ord"; - version = "0.5.1.0"; - sha256 = "d9129acfb71ce41b6994d2c72a040319fc85af408226122d3958d5617e8922e9"; - libraryHaskellDepends = [ - base containers mtl transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/dawg-ord"; - description = "Directed acyclic word graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dbcleaner" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv, text }: - mkDerivation { - pname = "dbcleaner"; - version = "0.1.3"; - sha256 = "0817b0e1698d8d48ac58d631f51dc6e34663f4e97af7bac3fd03e31349830f35"; - libraryHaskellDepends = [ base postgresql-simple text ]; - doHaddock = false; - doCheck = false; - description = "Clean database tables automatically around hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , filepath, lens, libxml-sax, network, parsec, random, split - , stdenv, template-haskell, text, th-lift, transformers, unix - , vector, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.0.1"; - sha256 = "a325b5c6958a343b30fd378d54ac01f9db889a4d7cadb14b2103da7ef4e7e8f5"; - revision = "2"; - editedCabalFile = "0fskpis9ryzj4bkzjh9h2hdw2lwr38qjh74drazfq25w5ba2zj3j"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq filepath lens libxml-sax - network parsec random split template-haskell text th-lift - transformers unix vector xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.1.2"; - sha256 = "1cd3b5f099f0d26d0f14e2611b11b6599e4fad4cc217b88b61d1e478d3ec1641"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, template-haskell - , text, uniplate, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "debug"; - version = "0.1.1"; - sha256 = "330f44c6341833c5e0cccf08fa7674dd54f14a843a2b5703e25ce08ffed49248"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/debug"; - description = "Simple trace-based debugger"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "debug-trace-var" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, unicode-show }: - mkDerivation { - pname = "debug-trace-var"; - version = "0.2.0"; - sha256 = "174f79d31d905c99adc880dd79899b3f335e1a7c552a7bcff8664abbffb6b489"; - libraryHaskellDepends = [ base template-haskell unicode-show ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/debug-trace-var#readme"; - description = "You do not have to write variable names twice in Debug.Trace"; - license = stdenv.lib.licenses.mit; - }) {}; - "dec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dec"; - version = "0.0.3"; - sha256 = "d9b8701244e77354ba7800f290c05f705994e2cc3a6c09b6c02d9c212add0bf9"; - revision = "1"; - editedCabalFile = "09dkybwqmayf2a1sn94vmmma2xfvf07bw7grhcyjm7lq9jpxv8y0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Decidable propositions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "1.11.0.3"; - sha256 = "dd2e23a975eddc01d4f281f6c9c19a0e815ed39dd1546a8a9661b62936074aa4"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum, stdenv }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.4.0"; - sha256 = "5db396bdb5d156434af920c074316c3b84b4d39ba8e1cd349c7bb6679cb28246"; - revision = "1"; - editedCabalFile = "0a5f35d1sgfq1cl1r5bgb5pwfjniiycxiif4ycxglaizp8g5rlr1"; - libraryHaskellDepends = [ base containers dependent-sum ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "dependent-sum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dependent-sum"; - version = "0.4"; - sha256 = "a8deecb4153a1878173f8d0a18de0378ab068bc15e5035b9e4cb478e8e4e1a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-sum"; - description = "Dependent sum type"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dependent-sum-template" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv, template-haskell - , th-extras - }: - mkDerivation { - pname = "dependent-sum-template"; - version = "0.0.0.6"; - sha256 = "994cb4891949cad1b9ca268052377c58c174f77a469cae44742ac83727be91ad"; - libraryHaskellDepends = [ - base dependent-sum template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "/dev/null"; - description = "Template Haskell code to generate instances of classes in dependent-sum package"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "deque"; - version = "0.2.1"; - sha256 = "019d197e306724f1a09ad53ab9309cee1cfbbf5456f2956d3ab52a59fe523264"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queue"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.5.2"; - sha256 = "495660f8b41bbb5ab372e2d393eaf57ba8ebd5d4f80b1477b2fd5caef875b240"; - revision = "1"; - editedCabalFile = "1s672vc7w96fmvr1p3fkqi9q80sn860j14545sskpxb8iz9f7sxg"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.5"; - sha256 = "9ed69dd320fafe190d296ae24aaf4d1e85688cdb8240cf1fea187a0bb3a1cadf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "detour-via-sci" = callPackage - ({ mkDerivation, aeson, base, cassava, newtype, scientific - , siggy-chardust, stdenv, template-haskell - }: - mkDerivation { - pname = "detour-via-sci"; - version = "1.0.0"; - sha256 = "451e1194f7bf6a7dea02379679c790313cc20423271fd8e98f164c942e3d81e4"; - revision = "1"; - editedCabalFile = "00dj8vf9gg9ww37sir6mblf3xhcpam8qgfz5bfana23arhf2cixj"; - libraryHaskellDepends = [ - aeson base cassava newtype scientific siggy-chardust - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/detour-via-sci#readme"; - description = "JSON and CSV encoding for rationals as decimal point numbers"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "df1" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, stdenv - , text, time - }: - mkDerivation { - pname = "df1"; - version = "0.1.1"; - sha256 = "362409d7f47f69f9afc746b87c2380bc6d1536c1e9d1b8b77963b83504722fe3"; - libraryHaskellDepends = [ - attoparsec base bytestring containers text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Type, render and parse the df1 hierarchical structured log format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, case-insensitive - , containers, contravariant, cryptonite, Diff, directory - , exceptions, filepath, haskeline, http-client, http-client-tls - , insert-ordered-containers, lens-family-core, megaparsec, memory - , mtl, optparse-applicative, parsers, prettyprinter - , prettyprinter-ansi-terminal, repline, scientific, stdenv - , template-haskell, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "dhall"; - version = "1.15.1"; - sha256 = "ea3bb3b6a006b82e0286d72757ba9969f6ee292ef12eea2376939ba219c88e30"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring case-insensitive containers - contravariant cryptonite Diff directory exceptions filepath - haskeline http-client http-client-tls insert-ordered-containers - lens-family-core megaparsec memory mtl optparse-applicative parsers - prettyprinter prettyprinter-ansi-terminal repline scientific - template-haskell text transformers unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall - , insert-ordered-containers, neat-interpolation, optparse-generic - , shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.15"; - sha256 = "045b8f405e9ace3ad3547727ed0de6cc7974d825f70e1447626a15dfe973af97"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall insert-ordered-containers - neat-interpolation shell-escape text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall - , insert-ordered-containers, optparse-applicative, stdenv, text - , unordered-containers, yaml - }: - mkDerivation { - pname = "dhall-json"; - version = "1.2.3"; - sha256 = "83cb1e27f937c50ba6852eeb55ed3f06af8db9b73716bfa8c1326699482ffcda"; - revision = "1"; - editedCabalFile = "02zwka1vav66z3528hmhhlsnwmsi0haj4bhp7r57w2j877c25z2h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base dhall insert-ordered-containers optparse-applicative - text unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall optparse-applicative text - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-text" = callPackage - ({ mkDerivation, base, dhall, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "dhall-text"; - version = "1.0.13"; - sha256 = "50050ac45ade8ab12c5a219914c903b1f6f632c8bc98d276e691f2cc05837c25"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base dhall optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "Template text using Dhall"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di" = callPackage - ({ mkDerivation, base, df1, di-core, di-df1, di-handle, di-monad - , exceptions, stdenv - }: - mkDerivation { - pname = "di"; - version = "1.0.1"; - sha256 = "2913ed3a7b8db8d9160a6aec510a35e5f8199c962c0e115f84c0c88d8236ec40"; - libraryHaskellDepends = [ - base df1 di-core di-df1 di-handle di-monad exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging using di, mtl and df1"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, safe-exceptions, stdenv, stm - , time - }: - mkDerivation { - pname = "di-core"; - version = "1.0.3"; - sha256 = "f0900e071c6a4fd99ac5588b1801333bcd50aa73a212222b29c731494d52dfe5"; - libraryHaskellDepends = [ - base containers safe-exceptions stm time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-df1" = callPackage - ({ mkDerivation, base, df1, di-core, di-handle, di-monad, stdenv - , stm - }: - mkDerivation { - pname = "di-df1"; - version = "1.0.2"; - sha256 = "d0518d17165c6f9baa60772526f263b11128a17edd1f214c91f0e42aad11b3c6"; - libraryHaskellDepends = [ - base df1 di-core di-handle di-monad stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Write logs in the df1 format using the di logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-handle" = callPackage - ({ mkDerivation, base, bytestring, di-core, exceptions, stdenv - , unix - }: - mkDerivation { - pname = "di-handle"; - version = "1.0"; - sha256 = "cd081f53824a173b30550ae9dbea744a2e7ac8931092d1f1b246b9bd5bb092ec"; - libraryHaskellDepends = [ - base bytestring di-core exceptions unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "IO support for file handles in di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.0.2"; - sha256 = "b84d79e180778720b6aa31bf5e7f72db809378f92c97c391828639c876164ee8"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams" = callPackage - ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib - , diagrams-svg, stdenv - }: - mkDerivation { - pname = "diagrams"; - version = "1.4"; - sha256 = "8608f6fa682b8c43b9fbe7c42c033c7a6de0680bd7383f6a81ea8bca37999139"; - libraryHaskellDepends = [ - diagrams-contrib diagrams-core diagrams-lib diagrams-svg - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative vector graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-builder" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cmdargs - , diagrams-cairo, diagrams-lib, diagrams-postscript - , diagrams-rasterific, diagrams-svg, directory, exceptions - , filepath, hashable, haskell-src-exts, haskell-src-exts-simple - , hint, JuicyPixels, lens, mtl, split, stdenv, svg-builder - , transformers - }: - mkDerivation { - pname = "diagrams-builder"; - version = "0.8.0.3"; - sha256 = "3a80ac090b73838de3d2a9d006d128cb7903852b2f8df24db30855f729b30abd"; - revision = "1"; - editedCabalFile = "0cdnriavw7y0cr12n60vd0hwcyi09vkx5zjr47af3bj00lq1v9hk"; - configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-orphans cmdargs diagrams-lib directory exceptions - filepath hashable haskell-src-exts haskell-src-exts-simple hint - lens mtl split transformers - ]; - executableHaskellDepends = [ - base bytestring cmdargs diagrams-cairo diagrams-lib - diagrams-postscript diagrams-rasterific diagrams-svg directory - filepath JuicyPixels lens svg-builder - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "hint-based build service for the diagrams graphics EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-cairo" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, colour, containers - , data-default-class, diagrams-core, diagrams-lib, filepath - , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango - , split, statestack, stdenv, transformers, unix, vector - }: - mkDerivation { - pname = "diagrams-cairo"; - version = "1.4.1"; - sha256 = "df64fd41f4c8eb37e2edcc458c4d49c574d22cf7ca2ef7ceb5de4a79f6436658"; - revision = "1"; - editedCabalFile = "0irrv1mf7lz3n4dy5pz9y6kw00v1rly47g2g6hi95nj6a6hib3z0"; - libraryHaskellDepends = [ - array base bytestring cairo colour containers data-default-class - diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl - optparse-applicative pango split statestack transformers unix - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Cairo backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-canvas" = callPackage - ({ mkDerivation, base, blank-canvas, cmdargs, containers - , data-default-class, diagrams-core, diagrams-lib, lens, mtl - , NumInstances, optparse-applicative, statestack, stdenv, text - }: - mkDerivation { - pname = "diagrams-canvas"; - version = "1.4.1"; - sha256 = "92def277f039ab95428bb3339f66e6068dd6c1699f24a4c76ca8894004d915c6"; - libraryHaskellDepends = [ - base blank-canvas cmdargs containers data-default-class - diagrams-core diagrams-lib lens mtl NumInstances - optparse-applicative statestack text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "HTML5 canvas backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-contrib" = callPackage - ({ mkDerivation, base, circle-packing, colour, containers - , cubicbezier, data-default, data-default-class, diagrams-core - , diagrams-lib, diagrams-solve, force-layout, hashable, lens - , linear, mfsolve, MonadRandom, monoid-extras, mtl, mtl-compat - , parsec, random, semigroups, split, stdenv, text - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.3"; - sha256 = "65fba87bb7752b1053fb3ab8e4ae30d5920208ff48441c4d8969cdbe73402007"; - revision = "3"; - editedCabalFile = "0mm1mmagx6q8g6dxk1cagqka38z6393ihp0lvf6095prlvidasqs"; - libraryHaskellDepends = [ - base circle-packing colour containers cubicbezier data-default - data-default-class diagrams-core diagrams-lib diagrams-solve - force-layout hashable lens linear mfsolve MonadRandom monoid-extras - mtl mtl-compat parsec random semigroups split text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Collection of user contributions to diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-core" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive - , dual-tree, lens, linear, monoid-extras, mtl, profunctors - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "diagrams-core"; - version = "1.4.1.1"; - sha256 = "a182e9f99e3664efdfa5e18f4b403703112fba33c5b877a91c9eabed1d8bb682"; - revision = "2"; - editedCabalFile = "1lf7xcq42l4hjksgp1nhj7600shvw9q5a27bh729fyfphmvv3xkf"; - libraryHaskellDepends = [ - adjunctions base containers distributive dual-tree lens linear - monoid-extras mtl profunctors semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Core libraries for diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-gtk" = callPackage - ({ mkDerivation, base, cairo, diagrams-cairo, diagrams-lib, gtk - , stdenv - }: - mkDerivation { - pname = "diagrams-gtk"; - version = "1.4"; - sha256 = "b66bde621a09b79b99185af50b2d1ed0b2bd3988c95ed27c7e92e5383917eae9"; - revision = "3"; - editedCabalFile = "0k0i3nm5zpdmrqh8wmd8y5xhw7drd67hifdva5a7dih8w5sab4ra"; - libraryHaskellDepends = [ - base cairo diagrams-cairo diagrams-lib gtk - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Backend for rendering diagrams directly to GTK windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-html5" = callPackage - ({ mkDerivation, base, cmdargs, containers, data-default-class - , diagrams-core, diagrams-lib, lens, mtl, NumInstances - , optparse-applicative, split, statestack, static-canvas, stdenv - , text - }: - mkDerivation { - pname = "diagrams-html5"; - version = "1.4.1"; - sha256 = "e8eed3f8ae1176099c96806281262227618d9e9f40512a430fc9379af44ce96e"; - libraryHaskellDepends = [ - base cmdargs containers data-default-class diagrams-core - diagrams-lib lens mtl NumInstances optparse-applicative split - statestack static-canvas text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "HTML5 canvas backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-lib" = callPackage - ({ mkDerivation, active, adjunctions, array, base, bytestring - , cereal, colour, containers, data-default-class, diagrams-core - , diagrams-solve, directory, distributive, dual-tree, exceptions - , filepath, fingertree, fsnotify, hashable, intervals, JuicyPixels - , lens, linear, monoid-extras, mtl, optparse-applicative, process - , profunctors, semigroups, stdenv, tagged, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.2.3"; - sha256 = "25a7adccbe3175cdb081a3824413ba431e561026c6ddd9a647cd133e4bfcbe9c"; - revision = "3"; - editedCabalFile = "157y2qdsh0aczs81vzlm377mks976mpv6y3aqnchwsnr7apzp8ai"; - libraryHaskellDepends = [ - active adjunctions array base bytestring cereal colour containers - data-default-class diagrams-core diagrams-solve directory - distributive dual-tree exceptions filepath fingertree fsnotify - hashable intervals JuicyPixels lens linear monoid-extras mtl - optparse-applicative process profunctors semigroups tagged text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-postscript" = callPackage - ({ mkDerivation, base, containers, data-default-class - , diagrams-core, diagrams-lib, dlist, hashable, lens, monoid-extras - , mtl, semigroups, split, statestack, stdenv - }: - mkDerivation { - pname = "diagrams-postscript"; - version = "1.4.1"; - sha256 = "a758191d99c30bd663dc0df2dedef13cd735a33c143e77906aa88baceb282c9c"; - revision = "2"; - editedCabalFile = "0s6z3kaj1dm5kifaydnd2nx97g5qbc6jjqy3wn4dwa9rm7w49753"; - libraryHaskellDepends = [ - base containers data-default-class diagrams-core diagrams-lib dlist - hashable lens monoid-extras mtl semigroups split statestack - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Postscript backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity - , hashable, JuicyPixels, lens, mtl, optparse-applicative - , Rasterific, stdenv - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.1.1"; - sha256 = "f72a87b421b1da874757256d9c9603c40fdad1f0a82be17bf1806820188a5365"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels - lens mtl optparse-applicative Rasterific - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Rasterific backend for diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-solve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "diagrams-solve"; - version = "0.1.1"; - sha256 = "a41f5f410b10f162b1e5c07bd4ca3305544870ff1314ae4f5824c83a31644f9d"; - revision = "5"; - editedCabalFile = "1yl8cs05fzqcz49p601am1ij66m9pa70yamhfxgcvya2pf8nimlf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Pure Haskell solver routines used by diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-svg" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, colour - , containers, diagrams-core, diagrams-lib, filepath, hashable - , JuicyPixels, lens, monoid-extras, mtl, optparse-applicative - , semigroups, split, stdenv, svg-builder, text - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.2"; - sha256 = "5455b68d92826a5405d51490976870cc0fa5b8b56aef0a8f56982b5f48efded2"; - revision = "2"; - editedCabalFile = "15sn85xaachw4cj56w61bjcwrbf4qmnkfl8mbgdapxi5k0y4f2qv"; - libraryHaskellDepends = [ - base base64-bytestring bytestring colour containers diagrams-core - diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl - optparse-applicative semigroups split svg-builder text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "SVG backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dimensional" = callPackage - ({ mkDerivation, base, deepseq, exact-pi, ieee754, numtype-dk - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "dimensional"; - version = "1.1"; - sha256 = "3a25889c1c67966a2739a9c1ccd040278c89e10823a1b2463fbf571b74075e16"; - revision = "2"; - editedCabalFile = "0922kd3svn96c1qg2lx3ya0xlrbll51csc18cnma0f8j899r4xgn"; - libraryHaskellDepends = [ - base deepseq exact-pi ieee754 numtype-dk semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/dimensional/"; - description = "Statically checked physical dimensions, using Type Families and Data Kinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "direct-sqlite" = callPackage - ({ mkDerivation, base, bytestring, semigroups, stdenv, text }: - mkDerivation { - pname = "direct-sqlite"; - version = "2.3.23"; - sha256 = "1fdb6f6ea34ac978e72f61a845786e4b4b945014ccc64ddb07ddcafa1254937b"; - libraryHaskellDepends = [ base bytestring semigroups text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/IreneKnapp/direct-sqlite"; - description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "discrimination" = callPackage - ({ mkDerivation, array, base, containers, contravariant, deepseq - , ghc-prim, hashable, primitive, profunctors, promises, semigroups - , stdenv, transformers, transformers-compat, vector, void - }: - mkDerivation { - pname = "discrimination"; - version = "0.3"; - sha256 = "d6d4b285783e66446a8f798b3a440b1020bdc681285b05794d3ec84d96dc4ca3"; - revision = "1"; - editedCabalFile = "1p39vcdmv9k9wxlkh49w1dr1isvn2hvhjjbs95qwljpxca74i23g"; - libraryHaskellDepends = [ - array base containers contravariant deepseq ghc-prim hashable - primitive profunctors promises semigroups transformers - transformers-compat vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/discrimination/"; - description = "Fast generic linear-time sorting, joins and container construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , stdenv, syb, template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.1"; - sha256 = "de4efea05ec685e9b5b087857ea3460a24d4314862e329279b99ca914b2e7ce6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - executableHaskellDepends = [ async base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-static" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , rank1dynamic, stdenv - }: - mkDerivation { - pname = "distributed-static"; - version = "0.3.8"; - sha256 = "954bf65722b662794990c81ba31a7fdbccd9d233af9212896443aa5ab9d4ffc2"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq rank1dynamic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compositional, type-safe, polymorphic static values and closures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.1.1"; - sha256 = "55eb858a98995f4f2b2eec5fcbc44ba1901284e915ef5e18609e253a5a662499"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs#readme"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "distributive"; - version = "0.5.3"; - sha256 = "9173805b9c941bda1f37e5aeb68ae30f57a12df9b17bd2aa86db3b7d5236a678"; - revision = "6"; - editedCabalFile = "06bd38rf31yrvvy989r44pm0id3dsxwcp6nxg7wk6ccj3n2b8rzk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans tagged transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.5"; - sha256 = "98a88aa839b40d4aee8b08880030d282d627b63de311f5414dca6e831a951b43"; - revision = "1"; - editedCabalFile = "1jh8zw1vpx0ld4gmc4l0pqpgbl9frpgbyw9kvsr56bnz0v2rgqpx"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dns" = callPackage - ({ mkDerivation, async, attoparsec, auto-update, base - , base64-bytestring, binary, bytestring, containers, cryptonite - , iproute, mtl, network, psqueues, safe, stdenv, time - }: - mkDerivation { - pname = "dns"; - version = "3.0.4"; - sha256 = "7b3433b536b7d225914d7b8495c7af1927d9554538d7d86c2644ccf9d3fa44a9"; - revision = "1"; - editedCabalFile = "15jafrm919w4p23m7kpmyc1yvzpy88jcccycc00dza69d119zjdr"; - libraryHaskellDepends = [ - async attoparsec auto-update base base64-bytestring binary - bytestring containers cryptonite iproute mtl network psqueues safe - time - ]; - doHaddock = false; - doCheck = false; - testTarget = "spec"; - description = "DNS library in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "docker" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , conduit-combinators, conduit-extra, containers - , data-default-class, directory, exceptions, filemanip, filepath - , http-client, http-conduit, http-types, monad-control, mtl - , network, resourcet, scientific, stdenv, tar, temporary, text - , time, tls, transformers, transformers-base, unliftio-core - , unordered-containers, uuid, vector, x509, x509-store, x509-system - , zlib - }: - mkDerivation { - pname = "docker"; - version = "0.6.0.0"; - sha256 = "4d3a00300abc09c2f9214f03d2d16fb51aa5b2f182aa6c4de69a3017e4b42045"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit conduit-combinators - conduit-extra containers data-default-class directory exceptions - filemanip filepath http-client http-conduit http-types - monad-control mtl network resourcet scientific tar temporary text - time tls transformers transformers-base unliftio-core - unordered-containers uuid vector x509 x509-store x509-system zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/denibertovic/docker-hs"; - description = "An API client for docker written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.1.0.1"; - sha256 = "294ac0b6c0546da15bf5453d6006979aeb6f6b36f0566be75767f5021de00025"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A simple DSL for describing and generating Dockerfile containers in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "docopt" = callPackage - ({ mkDerivation, base, containers, parsec, stdenv, template-haskell - , th-lift - }: - mkDerivation { - pname = "docopt"; - version = "0.7.0.5"; - sha256 = "15790808a4896bbf0748c1c0f3ab63c07aea4621d95b93a39886813f829d05ee"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers parsec template-haskell th-lift - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/docopt/docopt.hs"; - description = "A command-line interface parser that will make you smile"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, parsec, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.2.2.1"; - sha256 = "6b0cfb565fc7fa90d71ac56b83aedecf670678e6f1441278877fbf399e9bccbf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers parsec - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.16.0.1"; - sha256 = "9b5275497330607f66aaf2625b798b2ad566867fed3f52cea9de31a23361d780"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-discover" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, stdenv - }: - mkDerivation { - pname = "doctest-discover"; - version = "0.1.0.9"; - sha256 = "6790bb2df19b692131dca9f910a789884c2d4361a25f812f5bcb8803033799b2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - executableHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/karun012/doctest-discover"; - description = "Easy way to run doctests via cabal"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, doctest, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.2.0.4"; - sha256 = "d986edd163e61911c71dd6611e23d0d872c2d11595736be1b3e4c07b01c57a71"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base doctest ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dom-parser" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, mtl - , scientific, semigroups, stdenv, text, transformers, xml-conduit - , xml-lens - }: - mkDerivation { - pname = "dom-parser"; - version = "3.1.0"; - sha256 = "d7e15cae0b27d708389160517b1616343da1911baf95f2c97e213732a0262ac3"; - libraryHaskellDepends = [ - base case-insensitive containers lens mtl scientific semigroups - text transformers xml-conduit xml-lens - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/dom-parser"; - description = "Simple monadic DOM parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, directory, exceptions - , megaparsec, optparse-applicative, process, stdenv, text - , transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.5.2.5"; - sha256 = "a197bf60643fc4dea5acd71b03b71cb89e8df91d55cc400b2ada5e79b4b6f4e1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat directory exceptions megaparsec process text - transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "download" = callPackage - ({ mkDerivation, base, bytestring, feed, stdenv, tagsoup, xml }: - mkDerivation { - pname = "download"; - version = "0.3.2.6"; - sha256 = "a06d401a2ca58b6ee494ce462c753939ef0a2d11b4d475ae40848884fb44eef2"; - libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/download"; - description = "High-level file download based on URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drawille" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "drawille"; - version = "0.1.2.0"; - sha256 = "b8188ee87a06c168974c9655188450eb86c331c556decb31cf084efa846237df"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-drawille#readme"; - description = "A port of asciimoo's drawille to haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "drifter" = callPackage - ({ mkDerivation, base, containers, fgl, stdenv, text }: - mkDerivation { - pname = "drifter"; - version = "0.2.3"; - sha256 = "df539d47e47a6064997619079cde28cc0ae039cbda1915cec447380736d92638"; - libraryHaskellDepends = [ base containers fgl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/drifter"; - description = "Simple schema management for arbitrary databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "drifter-postgresql" = callPackage - ({ mkDerivation, base, containers, drifter, mtl, postgresql-simple - , stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "drifter-postgresql"; - version = "0.2.1"; - sha256 = "93320177ec9aab96799623ccc274f5b069500587f002f5f415c24159dd6eed5c"; - libraryHaskellDepends = [ - base containers drifter mtl postgresql-simple time transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/drifter-postgresql"; - description = "PostgreSQL support for the drifter schema migration tool"; - license = stdenv.lib.licenses.mit; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.4.1"; - sha256 = "3322954e87b279a94c1fb43a5d16e4d0022e7d422a2d2b9be0f3c4b4d346e42c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual-tree" = callPackage - ({ mkDerivation, base, monoid-extras, newtype-generics, semigroups - , stdenv - }: - mkDerivation { - pname = "dual-tree"; - version = "0.2.2"; - sha256 = "7412d70cf239da98b5a21df1cbbeab7319fd23d757427d4f5ce71b907dbaa9eb"; - revision = "3"; - editedCabalFile = "00gwdgzy80p9c5r4wafm1fiqnh2hy1xjsbl86h1qkk7xg33g2ssi"; - libraryHaskellDepends = [ - base monoid-extras newtype-generics semigroups - ]; - doHaddock = false; - doCheck = false; - description = "Rose trees with cached and accumulating monoidal annotations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.4.0.0"; - sha256 = "d6f48393ed9ed584eafe2393c848b78288fca1db5c504ed4749f9f0efe82b817"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dynamic-state" = callPackage - ({ mkDerivation, base, binary, bytestring, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.1"; - sha256 = "c4d50bdf03e7b2af05ee2b78fdd5dd5d16e72ef5edf78cada60bf4cdc6a23537"; - libraryHaskellDepends = [ - base binary bytestring hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Optionally serializable dynamic state keyed by type"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easytest" = callPackage - ({ mkDerivation, async, base, call-stack, containers, mtl, random - , stdenv, stm, text, transformers - }: - mkDerivation { - pname = "easytest"; - version = "0.2"; - sha256 = "0b486487a566f838cf448b46cc7215230f020fb4756bd362dfb5a66f6ee1a9e9"; - revision = "1"; - editedCabalFile = "1kgijad57iyhn6w096zr3n2gi1g7y3dc4qxy6v14dq96xjjym5ga"; - libraryHaskellDepends = [ - async base call-stack containers mtl random stm text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelburget/easytest"; - description = "Simple, expressive testing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "either"; - version = "5.0.1"; - sha256 = "6cb6eb3f60223f5ffedfcd749589e870a81d272e130cafd1d17fb6d3a8939018"; - revision = "2"; - editedCabalFile = "0859h2dc77fq0f14jh11h4i89hrg3iqvzk0yrk78516k6m7n96zc"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-unwrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-unwrap"; - version = "1.1"; - sha256 = "ccabd6f87118abc8dcba481b316c76b8195ac9e8a8f3ddb478de5eb64e2d2e3c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gcross/either-unwrap"; - description = "Functions for probing and unwrapping values inside of Either"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, network, snap-core, snap-server, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "ekg"; - version = "0.4.0.15"; - sha256 = "482ae3be495cfe4f03332ad1c79ce8b5ad4f9c8eec824980c664808ae32c6dcc"; - revision = "6"; - editedCabalFile = "012y235n8k7hhx651l01xf88vgr2wskapbsn83w18ls1h1njqnzk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath network snap-core - snap-server text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-core" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-core"; - version = "0.1.1.4"; - sha256 = "66d89acca05c1c91dc57a9c4b3f62d25ccd0c04bb2bfd46d5947f9b8cd8ee937"; - revision = "3"; - editedCabalFile = "1s3545x9w01rrwzchb4f91ck0n6dc7gf0zwkryqx1b2c95ni5qa8"; - libraryHaskellDepends = [ - base containers ghc-prim text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-core"; - description = "Tracking of system metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-json" = callPackage - ({ mkDerivation, aeson, base, ekg-core, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-json"; - version = "0.1.0.6"; - sha256 = "1e6a80aa0a28bbf41c9c6364cbb5731160d14fa54145f27a82d0b3467a04dd47"; - revision = "4"; - editedCabalFile = "16sn4nbqm0rxkf0swi6r2jn6z9x92qmcg9xlx258d98kqb5fkwjg"; - libraryHaskellDepends = [ - aeson base ekg-core text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-json"; - description = "JSON encoding of ekg metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-statsd" = callPackage - ({ mkDerivation, base, bytestring, ekg-core, network, stdenv, text - , time, unordered-containers - }: - mkDerivation { - pname = "ekg-statsd"; - version = "0.2.4.0"; - sha256 = "5e74bf63a1cd347c939d4eb7beb9181556b7bd033a60e5f6f4df0505e98a7adb"; - revision = "3"; - editedCabalFile = "0va7fliya7g546f5qbc42bl7dyh74al38sspd2smjyl7a9d5mmlk"; - libraryHaskellDepends = [ - base bytestring ekg-core network text time unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-statsd"; - description = "Push metrics to statsd"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-wai" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, http-types, network, stdenv, text, time, transformers - , unordered-containers, wai, wai-app-static, warp - }: - mkDerivation { - pname = "ekg-wai"; - version = "0.1.0.3"; - sha256 = "bfd35917b663da0c1354339dd30837eee6ddf0d42cf57442fd916a42c977a2e9"; - revision = "2"; - editedCabalFile = "17kca2wzlcv8nxyq096fv57jfklhz4ibnvf5nqqdszczb03j3dnn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath http-types network - text time transformers unordered-containers wai wai-app-static warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/ekg-wai"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elf" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "elf"; - version = "0.29"; - sha256 = "426509f12279bdc5a0228f74edef86997dbb47fddc19d83e9815dd301d4a8fac"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/elf"; - description = "An Elf parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.4.1"; - sha256 = "3becae7b9634055dd02c3908d800dd12b3335b524299e033215a38cfe51b1d00"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-export" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , formatting, mtl, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "elm-export"; - version = "0.6.0.1"; - sha256 = "bf9862015918c72b54b421efcd9d858969dcd94ef0a3d0cb92d9bc0c4363f9d5"; - libraryHaskellDepends = [ - base bytestring containers directory formatting mtl text time - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/krisajenkins/elm-export"; - description = "A library to generate Elm types from Haskell source"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.8"; - sha256 = "d71bce8bc7f1842cfdc4bd99956f4622c0a6b7cfcdf096ba5588c50a47374ed3"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.3"; - sha256 = "af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.3"; - sha256 = "510aebda134d1c835250bce8e5e7008fe54a929b05ced6a45121be488935a91c"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.5.2.2"; - sha256 = "792fdbdf387de02580accb3ad49a6f5191b24eb2283ef141355eacfd328cce74"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalt/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.4.1"; - sha256 = "5f9d115f7f2b2d4dba290f9d62cd7e9f52f6f6f8235ac5ed9bbf6e982a51d054"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "1.5.0.0"; - sha256 = "cdc099b3ae0c61007d07642c8e4811d29dfe3977b49595e21e03a1e29f741fbf"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "equivalence" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, STMonadTrans - , transformers, transformers-compat - }: - mkDerivation { - pname = "equivalence"; - version = "0.3.3"; - sha256 = "ee8dd8ce12298e6252f331e3844f684cfe7f32b70e529fe7b8dd63153eb2500a"; - libraryHaskellDepends = [ - base containers mtl STMonadTrans transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pa-ba/equivalence"; - description = "Maintaining an equivalence relation implemented as union-find using STT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "error-util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "error-util"; - version = "0.0.1.2"; - sha256 = "df1916a2de007697b7b1a9f83eacab4588d8dc472fd0f21395dce83b085e4e06"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/error-util"; - description = "Set of utils and operators for error handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.2"; - sha256 = "406e65338046d6c1d6994072b529272fab4ad7abbdb2c3b63576788fd8dd9618"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.4"; - sha256 = "42dca507046c32e00459bf6167d02bb508b72bb47669470a0eb3fba20b73a019"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, rio, stdenv, template-haskell, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "61b4d5f29a1fc66df082623e5fc9269bdbb49d28ebf4cbb740c71319257a27c8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base rio template-haskell text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, transformers - }: - mkDerivation { - pname = "event"; - version = "0.1.4"; - sha256 = "6791d1402b4d77a11407ab592f65cb61ee60c5a80b99751c5d775afcc9d1824a"; - libraryHaskellDepends = [ - base containers semigroups transformers - ]; - doHaddock = false; - doCheck = false; - description = "Monoidal, monadic and first-class events"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-memory" = callPackage - ({ mkDerivation, base, containers, eventful-core, mtl, safe, stdenv - , stm - }: - mkDerivation { - pname = "eventful-memory"; - version = "0.2.0"; - sha256 = "6a7c3e0a12e3c4e572927929020ad92075933e5d3c66ea61ff615a3ac217adb9"; - libraryHaskellDepends = [ - base containers eventful-core mtl safe stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "In-memory implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sql-common" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core, mtl - , persistent, persistent-template, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sql-common"; - version = "0.2.0"; - sha256 = "a46ea18cbbb5bd04b3a6846273e8161b7e4208660d0abf5a401192b07636aebc"; - revision = "1"; - editedCabalFile = "1w2qq0p4304zsjkwmqx79azpq5v0ajz5grg740vwkca8qvdvdq91"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core mtl persistent - persistent-template text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common library for SQL event stores"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core - , eventful-sql-common, mtl, persistent, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sqlite"; - version = "0.2.0"; - sha256 = "c0bbea0ebd1f0a4891a74b190f499caf85ac026f49b9401fc76f181b0041dfef"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core eventful-sql-common mtl - persistent text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "SQLite implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventstore" = callPackage - ({ mkDerivation, aeson, array, base, bifunctors, bytestring, cereal - , clock, connection, containers, dns, dotnet-timespan, ekg-core - , exceptions, fast-logger, hashable, http-client, interpolate - , lifted-async, lifted-base, machines, monad-control, monad-logger - , mono-traversable, mtl, protobuf, random, safe-exceptions - , semigroups, stdenv, stm, stm-chans, text, time, transformers-base - , unordered-containers, uuid - }: - mkDerivation { - pname = "eventstore"; - version = "1.1.6"; - sha256 = "dca4fd1fae1deb7af5b13ef3f640c9cd0915986e131671f2da7da9cce99c6d01"; - revision = "1"; - editedCabalFile = "1y1a7brw220bg4mfc80qhkcyzlm38qvs6pkr7p8xyk104b8k5qgx"; - libraryHaskellDepends = [ - aeson array base bifunctors bytestring cereal clock connection - containers dns dotnet-timespan ekg-core exceptions fast-logger - hashable http-client interpolate lifted-async lifted-base machines - monad-control monad-logger mono-traversable mtl protobuf random - safe-exceptions semigroups stm stm-chans text time - transformers-base unordered-containers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/YoEight/eventstore-hs"; - description = "EventStore TCP Client"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" "x86_64-linux" ]; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.8"; - sha256 = "32a822b109ab6e9f62fe23d76bd5af593c20ba0e589005d3985ccda00dd4475e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.4.1.4"; - sha256 = "7bf496b46e831936942ae0e6035b48f262d129a2e0b92f8df1e7bd5f2c076197"; - libraryHaskellDepends = [ base numtype-dk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-hierarchy" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "exception-hierarchy"; - version = "0.1.0.1"; - sha256 = "a9424dc79f08bc98bf49353550101495c9a72ad67ba7c302388f64eed03760fe"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "yet"; - description = "Exception type hierarchy with TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.7"; - sha256 = "925b61eb3d19148a521e79f8b4c8ac097f6e0dea6a09cc2f533279f3abf1f2ef"; - revision = "1"; - editedCabalFile = "0sahi93f75acvmqagkjc1lcwx31crja6z9hyww9abj85x45pqa6f"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptional" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "exceptional"; - version = "0.3.0.0"; - sha256 = "da866ed28ea14d245cc065271f4ddd6da0a91b83e8d83daddcd1ef0623e99f06"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/"; - description = "Essentially the Maybe type with error messages"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.0"; - sha256 = "1edd912e5ea5cbda37941b06738597d35214dc247d332b1bfffc82adadfa49d7"; - revision = "2"; - editedCabalFile = "0aiihbjfrlmxzw9q8idvr6mihhs7kbx9s3w1vj8x3pz27p0ncq7g"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-hash" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cryptohash, directory - , executable-path, file-embed, filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "executable-hash"; - version = "0.2.0.4"; - sha256 = "34eaf5662d90d3b7841f66b322ac5bc54900b0e3cb06792852b08b3c05a42ba4"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base bytestring Cabal cryptohash directory file-embed filepath - template-haskell - ]; - libraryHaskellDepends = [ - base bytestring cryptohash directory executable-path file-embed - template-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/executable-hash"; - description = "Provides the SHA1 hash of the program executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exinst" = callPackage - ({ mkDerivation, aeson, base, binary, bytes, cereal, constraints - , deepseq, hashable, profunctors, QuickCheck, singletons, stdenv - }: - mkDerivation { - pname = "exinst"; - version = "0.6"; - sha256 = "e906a149bfe195c16c25a5ab9ec2116e2577e5a10de134c17dff2be2c17c925e"; - configureFlags = [ "-f-serialise" ]; - libraryHaskellDepends = [ - aeson base binary bytes cereal constraints deepseq hashable - profunctors QuickCheck singletons - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/exinst"; - description = "Dependent pairs and their instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exomizer" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "exomizer"; - version = "1.0.0"; - sha256 = "94c24d436d12666d16cb7171c83cedec449b992dc3aeaaa6decdc0faf8e2cfd2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/exomizer#readme"; - description = "Compression and decompression in the exomizer format"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.1.6.0"; - sha256 = "e63ad90fcd292a9a31bd42b94408930c7cdf06700c9879453e61423a89a75be3"; - revision = "1"; - editedCabalFile = "1zbsjlj6wavz9ysfzjqb4ng7688crlfvsbyj4li84khc1jp71xj3"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.9.2"; - sha256 = "60f6029777f80ec958e28cef19a15723242987a01f09f6bfef252f24207649f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible" = callPackage - ({ mkDerivation, aeson, base, bytestring, cassava, comonad - , constraints, deepseq, ghc-prim, hashable, monad-skeleton, mtl - , prettyprinter, primitive, profunctors, QuickCheck, semigroups - , StateVar, stdenv, tagged, template-haskell, text, th-lift - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "extensible"; - version = "0.4.9"; - sha256 = "b752ea6f45ff57e2994e12af911c92977b54246756c5181e376e09fd28f93e86"; - libraryHaskellDepends = [ - aeson base bytestring cassava comonad constraints deepseq ghc-prim - hashable monad-skeleton mtl prettyprinter primitive profunctors - QuickCheck semigroups StateVar tagged template-haskell text th-lift - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/extensible"; - description = "Extensible, efficient, optics-friendly data types and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.3.3"; - sha256 = "22fff22a2c5b36a6545b27495c0eba63e8e3f72baccb3f9d687967c6532381d5"; - libraryHaskellDepends = [ - base leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "facts" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "facts"; - version = "0.0.1.0"; - sha256 = "dde59212abc383920c5ac5c5a0b5253f4a309d14ebbb21b45310d5b78d922e8a"; - revision = "1"; - editedCabalFile = "03v6p3vlilz6vk5xlvw3r31cqicx3m1xjii9shcqpacxvlh2zzlp"; - libraryHaskellDepends = [ base exceptions mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/facts"; - description = "Refined types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "2.4.11"; - sha256 = "bbe5deab58f435754dbe938cf0ddf26fc21f317c35fb3431d4bdb96809dea2a9"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fay" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , Cabal, containers, data-default, data-lens-light, directory - , filepath, ghc-paths, haskell-src-exts, language-ecmascript, mtl - , mtl-compat, optparse-applicative, process, random, safe - , shakespeare, sourcemap, split, spoon, stdenv, syb, tasty - , tasty-hunit, tasty-th, text, time, transformers - , transformers-compat, traverse-with-class, uniplate - , unordered-containers, utf8-string, vector - }: - mkDerivation { - pname = "fay"; - version = "0.24.0.1"; - sha256 = "a26ef27237670a6dccbc566a649fb9e137dc736a61e65c05814b381fb86fe817"; - configureFlags = [ "-ftest" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base base-compat bytestring containers data-default - data-lens-light directory filepath ghc-paths haskell-src-exts - language-ecmascript mtl mtl-compat process safe shakespeare - sourcemap split spoon syb text time transformers - transformers-compat traverse-with-class uniplate - unordered-containers utf8-string vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring containers directory filepath - haskell-src-exts mtl optparse-applicative random split tasty - tasty-hunit tasty-th text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/faylang/fay/wiki"; - description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fay-base" = callPackage - ({ mkDerivation, base, fay, stdenv }: - mkDerivation { - pname = "fay-base"; - version = "0.21.1.0"; - sha256 = "5f94e3657276c5d15fcec039e8fa28f4f0d923aab17069518f6a7ca208c029c4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base fay ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/faylang/fay/"; - description = "The base package for Fay"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fay-dom" = callPackage - ({ mkDerivation, fay-base, stdenv }: - mkDerivation { - pname = "fay-dom"; - version = "0.5.0.1"; - sha256 = "e0f2e4dc11a13c4a9c43d707a3cf24bc1badb585540d24b29e8a6bc6ace1a6fe"; - revision = "1"; - editedCabalFile = "1lhmkf2n7prv6w51bl3szz4g9cn2dkhb873m7f568nnwysqibv8b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/faylang/fay-dom"; - description = "DOM FFI wrapper library for Fay"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , base64-bytestring, bytestring, cereal, conduit, conduit-extra - , crypto-api, cryptohash, cryptohash-cryptoapi, data-default - , http-client, http-conduit, http-types, monad-logger, old-locale - , resourcet, stdenv, text, time, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "1.2.1"; - sha256 = "a9d670a763e2ccf3e457e6b310769d5d8977cb1c00a78c8825861999da055d15"; - libraryHaskellDepends = [ - aeson attoparsec base base16-bytestring base64-bytestring - bytestring cereal conduit conduit-extra crypto-api cryptohash - cryptohash-cryptoapi data-default http-client http-conduit - http-types monad-logger old-locale resourcet text time transformers - transformers-base unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fclabels" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "fclabels"; - version = "2.0.3.3"; - sha256 = "9a9472a46dc23b5acc0545d345ecd708f7b003f72ab212e2d12125b902b9c2e0"; - revision = "4"; - editedCabalFile = "09pn1q4gjlhw956asmhzva1rhrafmn69xmd1sc80fh3c8vjd3icz"; - libraryHaskellDepends = [ base mtl template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sebastiaanvisser/fclabels"; - description = "First class accessor labels implemented as lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-haskell-tools" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, time - , unix - }: - mkDerivation { - pname = "fedora-haskell-tools"; - version = "0.5.1"; - sha256 = "b9a9119aace941ff5860c02462bf340c6f3cce29f7bdcb42af98dedfa9888394"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base directory filepath process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fedora-haskell/fedora-haskell-tools"; - description = "Building and managing tools for Fedora Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.0.0.0"; - sha256 = "9359a12d3da138ba50fecfc31eed7f92438a6417e9fc3aa17b95a014fa792f17"; - revision = "4"; - editedCabalFile = "0baavcavm3ywykcr9cm07aqr7sna98jba2n68lyn3kany8ri214d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.6.0.0"; - sha256 = "94722e1eb3dca66069e26a2d4b072c558bc896816ee016fc99521f3e16b9ccc4"; - revision = "1"; - editedCabalFile = "17r5p1c6srgyzpdkqkjcl9k3ax9c82lvps1kqjhxpdzypsnzns70"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11.1"; - sha256 = "a113e7fe528be8204f40d3e9e00d595234e49def6caa133136e8254b659189d6"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-modules" = callPackage - ({ mkDerivation, async, base, directory, filepath, haskell-src-exts - , MissingH, regex-compat, regex-pcre, stdenv - }: - mkDerivation { - pname = "file-modules"; - version = "0.1.2.4"; - sha256 = "ffea2dbd51f77ed76f8559d8519674a1210611a35e2dbea72dfb41d7d5f0f235"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - executableHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/stack-run-auto"; - description = "Takes a Haskell source-code file and outputs its modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.4.0"; - sha256 = "cd088db62e75138e877a88b31cf44dfa8773dc30c4a431e6b0663b6e3a764e74"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.2"; - sha256 = "0ff1dcb13ec619f72496035e2a1298ef9dc6a814ba304d882cd9b145eae3203d"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filter-logger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base - , bytestring, data-default, fast-logger, http-types, scotty - , semigroups, stdenv, time, wai, wai-extra, wai-logger - }: - mkDerivation { - pname = "filter-logger"; - version = "0.6.0.0"; - sha256 = "7884124056950a7f7ff393ebb7d1622695f9b66f898c60aeb8bc991c73642f21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring data-default - fast-logger http-types semigroups time wai wai-extra wai-logger - ]; - executableHaskellDepends = [ aeson base bytestring scotty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/filter-logger#readme"; - description = "Filterable request logging wai middleware. Change how data is logged and when."; - license = stdenv.lib.licenses.mit; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.1.0"; - sha256 = "d6a53889a7d114a7ea411026b994c9f73ebfeffe68ea338ce2abf9dc977e363c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "fin"; - version = "0.0.1"; - sha256 = "34d28a951f2899f1d27bfb75d53818204d6d7e5aeaaef1a326c50ae915361a57"; - revision = "1"; - editedCabalFile = "056d22f1j1xv5ka2qr7a3z5ad5w1im76qdf77v6dqdi4vaz52vd1"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "find-clumpiness" = callPackage - ({ mkDerivation, aeson, base, BiobaseNewick, bytestring, clumpiness - , containers, hierarchical-clustering, listsafe, mtl - , optparse-applicative, stdenv, text, text-show, tree-fun - , unordered-containers, vector - }: - mkDerivation { - pname = "find-clumpiness"; - version = "0.2.3.1"; - sha256 = "089e55641eedd12ab16ae5e81cbd2c6c0375801c01fc17fb2ce23354a0ec2c2a"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GregorySchwartz/find-clumpiness#readme"; - description = "Find the clumpiness of labels in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.1"; - sha256 = "9778dc162963c376f02239183e782673729d01a2e1e1dbf81924d80bf6f74ea4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.4.2"; - sha256 = "d207a46c911b69ecc1f7c50d9d65ea1aca6c6efacec6342bc3294ed1bc4bd747"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "first-class-patterns" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.4"; - sha256 = "3bf42829097277a89043021d02b82bde24950de9c30d19b33c0ffa5e1f2482b5"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/first-class-patterns"; - description = "First class patterns and pattern matching, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.2.1.1"; - sha256 = "24a9e1e251998c9d06037bb771d9eab2980a91132de59a19d0166a1c51e715e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, tfp, utility-ht }: - mkDerivation { - pname = "fixed-length"; - version = "0.2"; - sha256 = "3171f2d443171a8e92733b3935805c7d5b54eae1f39f9fd729a766f887a6389b"; - libraryHaskellDepends = [ base non-empty tfp utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.1.0.0"; - sha256 = "1ed0bef94b0fead859ad2aea0b73bf1bd3686a6c1faafc75e321fbd9c3ae94c5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , directory, exceptions, filepath, FLAC, mtl, stdenv, text - , transformers, vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.1.2"; - sha256 = "5692b3dfc561cbeed25b1cf9280705f58eadd8c400aa2e6a725fd5562042ac29"; - revision = "5"; - editedCabalFile = "0rwwq8qrxd497rd5m0kidz4v69frj72ds7a6zrdqigj5f5471rhd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class directory exceptions - filepath mtl text transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.1"; - sha256 = "3c1cf80c48521370ce6351d4b544c14891442bfe47c65e5bf436fe58f6fec1ce"; - revision = "1"; - editedCabalFile = "02vdh61nzig0yrv6ja6fjlgfcznj5k4iqh3i5f9g5p078ycqb17w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flat-mcmc" = callPackage - ({ mkDerivation, base, formatting, mcmc-types, monad-par - , monad-par-extras, mwc-probability, pipes, primitive, stdenv, text - , transformers, vector - }: - mkDerivation { - pname = "flat-mcmc"; - version = "1.5.0"; - sha256 = "87cea9deac6e2d32d9984741ba222ccb2fb0d5f8c58e843684476bfe7632f1fd"; - revision = "1"; - editedCabalFile = "1pjkyvs4c6yx6jva08zw2b1qfhhv9q71sy806f5lddjsknnym2fn"; - libraryHaskellDepends = [ - base formatting mcmc-types monad-par monad-par-extras - mwc-probability pipes primitive text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/flat-mcmc"; - description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "flay" = callPackage - ({ mkDerivation, base, constraints, stdenv, transformers }: - mkDerivation { - pname = "flay"; - version = "0.4"; - sha256 = "01ff3e642eab48807e4369fd8c1336e22d7abdcf4374cd1322b1fe259c9413ef"; - libraryHaskellDepends = [ base constraints transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/flay"; - description = "Work generically on your datatype without knowing its shape nor its contents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flexible-defaults" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-extras, transformers - }: - mkDerivation { - pname = "flexible-defaults"; - version = "0.0.2"; - sha256 = "f3d5d41a6dd69dbb585dd10fe6b7fe9023bc4308bac1320a55b62758acc18a64"; - revision = "1"; - editedCabalFile = "1bmqmxv5nijb837xwxnb46w3bglmakfj1qs3xwkcnfh5ab0zazwr"; - libraryHaskellDepends = [ - base containers template-haskell th-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/flexible-defaults"; - description = "Generate default function implementations for complex type classes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flow" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "flow"; - version = "1.0.17"; - sha256 = "86ec19d8bec13afc58e21d53f4225c3fcafda2ff902b05f64062919edbe84d19"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/flow#readme"; - description = "Write more understandable Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.2"; - sha256 = "8fc4b55d04e7f216740a01acd2f38293e3bd9409a9495e6042a162580c420609"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "focus"; - version = "0.1.5.2"; - sha256 = "c2988d48c2bc6861a00be4e02161df96abcbf6c80e801676cee39b7628715cb7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.8"; - sha256 = "fc6b3ef028517f642886c2ffa270726cc38c79be75d1233e28f760816d08fbc8"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.3"; - sha256 = "97c80c4ca7f84260539829ee7ebf0eaa6b127005158eb910411ae0b17157ef67"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldable1" = callPackage - ({ mkDerivation, base, stdenv, transformers, util }: - mkDerivation { - pname = "foldable1"; - version = "0.1.0.0"; - sha256 = "85d684e5caab9e0c87dd04d016432f4a9effb5c8c62354aedcf85c96c1e3e90a"; - libraryHaskellDepends = [ base transformers util ]; - doHaddock = false; - doCheck = false; - description = "Foldable types with at least 1 element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.5"; - sha256 = "0ba0bd8a8b4273feef61b66b6e251e70f70537c113f8b7f0e3aeab77d8af12a7"; - revision = "4"; - editedCabalFile = "12qrmlazijyz5dn73p50klyny7x4vx8yw2isfmjikmrr12nhc5g0"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroupoids semigroups text - transformers unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.4"; - sha256 = "5c6e6f7c9c852cbe3d5372f93ed99f82400d15ae99ecf8e9e005481647734572"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "force-layout" = callPackage - ({ mkDerivation, base, containers, data-default-class, lens, linear - , stdenv - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "f7729855b1b14e0b255325faaca9f4834004e02bd21def6a865d2c55c734259d"; - revision = "5"; - editedCabalFile = "14d494pa7hcxmq9cvy039y5x7da6j4p5jp8kw0kmrlb9q8h6rh18"; - libraryHaskellDepends = [ - base containers data-default-class lens linear - ]; - doHaddock = false; - doCheck = false; - description = "Simple force-directed layout"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forkable-monad" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "571e33effa5baaef4e2dc910010e2b02c01d8b8e06f051e96906f288f71ad462"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/ForkableMonad#readme"; - description = "An implementation of forkIO for monad stacks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.0"; - sha256 = "b7dc7270e0a294cdaf40e99f067928411d82ed50af4dad51a6088830d539c325"; - revision = "2"; - editedCabalFile = "1yc9gv1rjbl4lsxscp5idfpn7jp27c38j6gm9v7isxgyaih0j4v4"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.6"; - sha256 = "6a28db7625f912dfa0075d4376b6f1b7f84d139defda53c90e440dcf74aad31a"; - revision = "1"; - editedCabalFile = "0vw77ji2d7rhwhq2g7dmln9ifsghgzdlnxg4wjipb128f6gwclh7"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.21"; - sha256 = "4ed3a0e7f8052b52d27c9806eff3bea51acc2587f74f81db4b8e03e938f283e0"; - revision = "1"; - editedCabalFile = "07mzfc75wl7kn2lr2gmbx4i0a5gxyi9b066rz0x2pqxqav3fwqs0"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, bifunctors, comonad, containers - , distributive, exceptions, mtl, profunctors, semigroupoids - , semigroups, stdenv, template-haskell, transformers - , transformers-base, transformers-compat - }: - mkDerivation { - pname = "free"; - version = "5.0.2"; - sha256 = "ef05eb1c8e69742a4f962c573ef362e44ad48772940f1ef69fe39f0f77b2a396"; - revision = "1"; - editedCabalFile = "036js4y08jpqy5g067wpvzmq2lljnx51xclm5jhrvaq2s9fhhlvd"; - libraryHaskellDepends = [ - base bifunctors comonad containers distributive exceptions mtl - profunctors semigroupoids semigroups template-haskell transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.1.0.0"; - sha256 = "2198cdb1f6206b192bed553757cfc145485ee86be7261878bf44bc0e84b1bb01"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friday" = callPackage - ({ mkDerivation, base, containers, convertible, deepseq, primitive - , ratio-int, stdenv, transformers, vector - }: - mkDerivation { - pname = "friday"; - version = "0.2.3.1"; - sha256 = "0827492c1a6116baa5c4866539a4cfa0f6d81bf31f6573616bf5ac4484199613"; - revision = "1"; - editedCabalFile = "0n1f4plvrmad6gm8dbsi6g5ghahdwwy2fhgippmnp1ixb65x7d58"; - libraryHaskellDepends = [ - base containers convertible deepseq primitive ratio-int - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RaphaelJ/friday"; - description = "A functional image processing library for Haskell"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "friday-juicypixels" = callPackage - ({ mkDerivation, base, friday, JuicyPixels, stdenv, vector }: - mkDerivation { - pname = "friday-juicypixels"; - version = "0.1.2.4"; - sha256 = "6d59828fe700ddd0777d180551c5f62444c18fd0b27ae3a675ad185efa90ae3f"; - libraryHaskellDepends = [ base friday JuicyPixels vector ]; - doHaddock = false; - doCheck = false; - homepage = "github.com/TomMD/friday-juicypixels"; - description = "Converts between the Friday and JuicyPixels image types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frisby" = callPackage - ({ mkDerivation, array, base, containers, mtl, semigroups, stdenv - }: - mkDerivation { - pname = "frisby"; - version = "0.2.2"; - sha256 = "c1b318dbf54d56e1012955cc47a1633af5fd77facc128c725353718c0663b6d5"; - libraryHaskellDepends = [ array base containers mtl semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://repetae.net/computer/frisby/"; - description = "Linear time composable parser for PEG grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "from-sum"; - version = "0.2.1.0"; - sha256 = "a1ed8a433b98df8a70be2f9199abae3e5ed7fb4c2f2b3fb1268b6b588f326667"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Canonical fromMaybeM and fromEitherM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, shelly, stdenv, text, time, unix, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.3.0.1"; - sha256 = "ded2165f72a2b4971f941cb83ef7f58b200e3e04159be78da55ba6c5d35f6da5"; - revision = "1"; - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify shelly - text time unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "03990f311f7d66a6996b88722602b6058fbae7ad33e74073875ef0466ef001ce"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, base-unicode-symbols, data-default, lens - , stdenv, text, text-metrics, unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.1.0.6"; - sha256 = "731ae813678de30bbccac03760f7bb0baed5cc8d91ed21e871b1f8d7aafe61a3"; - libraryHaskellDepends = [ - base base-unicode-symbols data-default lens text text-metrics - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.4"; - sha256 = "297fa02ceeb8be23c111ecbd15bfb2203dfa22a757fce51f8ed2829d35630add"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gc" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "gc"; - version = "0.0.2"; - sha256 = "39cc5ac887319aeb184ee0d6ddb5b5a34e3f3d38c3fdf3ecc60bdf31a53dc30c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/gc/"; - description = "Poor Richard's Memory Manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; 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, stdenv - , text, time, unordered-containers, uuid, vector, websockets, wreq - , wuss - }: - mkDerivation { - pname = "gdax"; - version = "0.6.0.0"; - sha256 = "deb8efce5e4deb5b45c0d66d23eac65224c3d560d7ac67da6d3616cd5a916721"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/gdax"; - description = "API Wrapping for Coinbase's GDAX exchange"; - license = stdenv.lib.licenses.mit; - }) {}; - "gdp" = callPackage - ({ mkDerivation, base, lawful, stdenv }: - mkDerivation { - pname = "gdp"; - version = "0.0.0.2"; - sha256 = "214fff5ae2e4952cb8f15e7209be125e760b6d97fac4cd99b2e0592f790a1abf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base lawful ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/githubuser/gdp#readme"; - description = "Reason about invariants and preconditions with ghosts of departed proofs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, generic-deriving, mtl - , stdenv, tagged, text, unordered-containers, vector - }: - mkDerivation { - pname = "generic-aeson"; - version = "0.2.0.9"; - sha256 = "34c13f91ffa72a1f6d7f43b84fdd19b20db547045eb6164a4119f9a95dcd84cb"; - revision = "4"; - editedCabalFile = "0m2m2wfv9nhq8m7xl1nrmj4wy3yip3s31b4448za58ryrwkdgjzd"; - libraryHaskellDepends = [ - aeson attoparsec base generic-deriving mtl tagged text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Derivation of Aeson instances using GHC generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.13.1"; - sha256 = "e9b53a40eae58e18ee281858a1ba400f14128d5779858272b01c10d64aa09abe"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged }: - mkDerivation { - pname = "generic-lens"; - version = "1.0.0.2"; - sha256 = "5e6f8a188e84b0130c55d469d6bb379ac323fb59008fd84eaf73360bb8934168"; - libraryHaskellDepends = [ base profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.2.0.0"; - sha256 = "9b1e00d2f06b582695a34cfdb2d8b62b32f64152c6ed43f5c2d776e6e9aa148c"; - revision = "1"; - editedCabalFile = "1d0hx41r7yq2a86ydnfh2fv540ah8cz05l071s2z4wxcjw0ymyn4"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-xmlpickler" = callPackage - ({ mkDerivation, base, generic-deriving, hxt, stdenv, text }: - mkDerivation { - pname = "generic-xmlpickler"; - version = "0.1.0.5"; - sha256 = "d51760f5650051eebe561f2b18670657e8398014fa2a623c0e0169bfeca336af"; - revision = "8"; - editedCabalFile = "1hpcglml4b5yv192syxazminr5v7qjrgqwb2wk0cf7f0sjpm5d0q"; - libraryHaskellDepends = [ base generic-deriving hxt text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/generic-xmlpickler"; - description = "Generic generation of HXT XmlPickler instances using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-eot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generics-eot"; - version = "0.4"; - sha256 = "5abedc86df738c8ff7a8c6ca9ee97605406a1b6fadd4924fa93f7aacd2fece9b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://generics-eot.readthedocs.io/"; - description = "A library for generic programming that aims to be easy to understand"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.3.2.0"; - sha256 = "3060ecd09ccbd27ecf825bb89af0af9cfcadd16f747ce5964c501682a2301b99"; - revision = "3"; - editedCabalFile = "0lw5n8npdrdd1h7j000flaig4z30b8pig4q52sj34zhwccjkdzq2"; - libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.1.2.1"; - sha256 = "4e49d4cc580d45e25e0abdeee12b1191ae75937af1c7ca03333979584a8a525c"; - revision = "6"; - editedCabalFile = "0j4j3kk2nsl5n5gp0vrzqdc5y9ly31b4nvhq0bpgcpzibvik7ssw"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "geniplate-mirror" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "geniplate-mirror"; - version = "0.7.6"; - sha256 = "4b6b82d0348e79ae4a5e1deac029441251ae87ec15a7667cf0a1de5ff80215f8"; - revision = "2"; - editedCabalFile = "03fg4vfm1wgq4mylggawdx0bfvbbjmdn700sqx7v3hk1bx0kjfzh"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/danr/geniplate"; - description = "Use Template Haskell to generate Uniplate-like functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.5.1.0"; - sha256 = "402ad5193fefdec24c7a0c62386f764a356bfc93e5e36672fc54a824d1c0d39f"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.2.0.2"; - sha256 = "d1244fea0a0a7cad4f783a72b9ff98c606131445a3f2fe9bced5194ff8a2e7b0"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.2.0.2"; - sha256 = "43b9051401d59714766d96d48435ee01016454e524af54be51427dcf804cc1e3"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.5.1.0"; - sha256 = "03b5a99546232a9a9747e18b401902ca50e96f4860d2a138eb4214c72e300325"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, transformers, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.6.2.0"; - sha256 = "3b94c1ee78b61b6bf1d2aa0b8826eb567712a2d6f5f43ddbca9639bd7774af15"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - transformers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.3.0.0"; - sha256 = "b0e772bf802a4a70c7e52947d8fe301622cc7ffccf465f780042c8671075122f"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.2"; - sha256 = "210868b5ce59fc20c406c452970003f332298bcdf900ed736975e0592a5824c0"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.2"; - sha256 = "e150f686eb9c161b4386d1515bd0dd12724b8d5593dbe2ebda2eca9c667a249b"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.2"; - sha256 = "3c1e48c842ced9e86c3978c61062f6afcfada9d08786e0a7368c745fc92c9f68"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.2"; - sha256 = "00fc6d2f4d54cda700ad4af04efea62db002cab4fbb3ca8da4d20b1a03a340ba"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.2.1.1"; - sha256 = "2ba882f02c8f696d7253ba7472d04bb37548fd19dd5cbb926a2d367f452c5c32"; - libraryHaskellDepends = [ - base genvalidity hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.1.0"; - sha256 = "af11d48c53455eb250e68c6cb4f6e8159ddc16fb635879fc2973d57d8bd5903d"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.5.1.0"; - sha256 = "ef3d7ebe85cf5ce10675f350dd80dfdb3c3f700e109170d0c4929afdbfe8ee48"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.1.1"; - sha256 = "c555c206edddbd70355b295ccf9ff053463c137735c4aebcc340091f6d6b7874"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.2.0.3"; - sha256 = "ada97e40d4a68fcfa7fe90b431ba9684bdc34fa7c7c566dc06f528b375bc0965"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.2"; - sha256 = "d1354bdfc0a75a1f228cfed22cd0edb0cc13a925e4b2514a634d56eb5b53f412"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.2.0.2"; - sha256 = "11d2988f3256eeedef0d5be4e5e9c7883fd4f86fde08eda6e2559ab86f673e38"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geodetics" = callPackage - ({ mkDerivation, array, base, dimensional, stdenv }: - mkDerivation { - pname = "geodetics"; - version = "0.0.6"; - sha256 = "e21dbbd01fac330a542fba24d6dedc6c3b46a4bf43e7fa6181417e6daab9e542"; - revision = "1"; - editedCabalFile = "0ns8368ylapmgk7h9l1ppvrnrqd9jgrm304icf6v47wdan1r82xr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ array base dimensional ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/geodetics"; - description = "Terrestrial coordinate systems and geodetic calculations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.2"; - sha256 = "e604aa25d7843a175ec8803e2d60eb6c959fbb4cc7fb0d8321f315ff8671600c"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc-lib-parser, stdenv, uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc-lib-parser uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-parser" = callPackage - ({ mkDerivation, base, cpphs, ghc, happy, stdenv }: - mkDerivation { - pname = "ghc-parser"; - version = "0.2.0.2"; - sha256 = "bb74cc64ff8fd3d10447075d5982c7c684210762faa15226415d0ed7da756084"; - libraryHaskellDepends = [ base ghc ]; - libraryToolDepends = [ cpphs happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gibiansky/IHaskell"; - description = "Haskell source parser from GHC"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.9"; - sha256 = "afa68fb86123004c37c1dc354286af2d87a9dcfb12ddcb80e8bd0cd55bc87945"; - revision = "4"; - editedCabalFile = "1fp0jyvi6prqsv0dxn010c7q4mmiwlcy1xk6ppd4d539adxxy67d"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.4"; - sha256 = "b01a514fe0147ca4b562335813a9742ac90334809b145145ba31eb9fbaf834f3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-syntax-highlighter" = callPackage - ({ mkDerivation, base, ghc, stdenv, text }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.2.0"; - sha256 = "cf335c2d5c789dd6dac948edba4cef89b3b8595b5150c21ee735c82b97868dbd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ghc text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; - description = "Syntax highlighter for Haskell using lexer of GHC itself"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.3"; - sha256 = "30acfd21d590809c16d990512fc8fcb98361ec540a76438233bd8aa23e82374c"; - revision = "2"; - editedCabalFile = "1hrbvixm25x1dx1ljy9x7f63kcan4ffz885xj6qsl8l070wj96s1"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.2.6"; - sha256 = "958d3c44543c75fabfe2f0a0db9d9cd3182bb748af9223e9c498ce4bcdcca637"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-knownnat - ghc-typelits-natnormalise integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.5.1"; - sha256 = "5b94c42dac0ae7fe381019d77afa9fe9b290b0ab7a2d9d6e20357381fc586d7b"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.6.2"; - sha256 = "801ceb41442dfa992fad04c64f2989d1d701bcfe0874a55aa8d250e63c1a4311"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.7.1"; - sha256 = "a73719b5d03c24726b60d1cd4cd7379d7e50690c9b738b760149c450763bc31a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-base-stub" = callPackage - ({ mkDerivation, aeson, attoparsec, base, containers, deepseq - , ghc-prim, primitive, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "ghcjs-base-stub"; - version = "0.2.0.0"; - sha256 = "67bb7c931d1dc6cf2023fd8b7db126e3cd52772e5039bc3fd24585278d4a6516"; - revision = "1"; - editedCabalFile = "0hvmgwyhv28d39was8bm52anwqh6x4mbd1mzzqxazlm0d0l8bpwp"; - libraryHaskellDepends = [ - aeson attoparsec base containers deepseq ghc-prim primitive - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/javascript-stub#readme"; - description = "Allow GHCJS projects to compile under GHC and develop using intero"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.2"; - sha256 = "6cbb2c649f6d4a874eb7486a2dd33db2ed0f138f1f8289a6447460d39b4b2097"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gi-atk" = callPackage - ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-atk"; - version = "2.0.15"; - sha256 = "89753b4517e77ea956dcfd1294b4b98032c6e50df912e28c9a796d2b825fbfee"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ atk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Atk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) atk;}; - "gi-cairo" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-cairo"; - version = "1.0.17"; - sha256 = "5dbda70a038a93cb07130597407de9cde1436603beca3f2a0a6b43953c55a7ab"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Cairo bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo;}; - "gi-gdk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo - , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gdk"; - version = "3.0.16"; - sha256 = "7eb0aa493d268cd040c7ff70ad09d7bf7787e0e7619617ba220b88eafe68e34a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gdk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf - , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gdkpixbuf"; - version = "2.0.16"; - sha256 = "fdbb5f12ecd3a419a345919913e659f90000b38b973ce79fb6e9ba05f5d4166f"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GdkPixbuf bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; - "gi-gio" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, glib, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gio"; - version = "2.0.18"; - sha256 = "13ebcd9c5d804de97db1f0ce7de520a73ba2eed950cbf5be84950fe33a8ef440"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gio bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-glib"; - version = "2.0.17"; - sha256 = "9d7abe0a9d66689c5102629edb43a2336d1bb8dc805f0cbe214e5a4e799eab67"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GLib bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gobject" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gobject"; - version = "2.0.16"; - sha256 = "c57844d5b9566834ece584bfbbdff1c3ef2de5aa67c711c406fe92d4b927f6ad"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GObject bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gtk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.25"; - sha256 = "a12f75c45ac2349d5b2c31e6039ff57ff2b8fb9e4a1c2f6b7b4a3e5510b4dd50"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gtk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gtk-hs" = callPackage - ({ mkDerivation, base, base-compat, containers, gi-gdk - , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk-hs"; - version = "0.3.6.2"; - sha256 = "1f2df8f787c4b203d15fbbdb0db91dff06a73d494cec89d839fd637b44d6f311"; - libraryHaskellDepends = [ - base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject - gi-gtk haskell-gi-base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/gi-gtk-hs"; - description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "gi-gtksource" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtksource"; - version = "3.0.16"; - sha256 = "97b91b9f48b9e0c65a3936beb6e814ac5a55ab20aefbd9a167313982bd5da53a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtksourceview3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GtkSource bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtksourceview3;}; - "gi-javascriptcore" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, haskell-gi - , haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers, webkitgtk - }: - mkDerivation { - pname = "gi-javascriptcore"; - version = "4.0.15"; - sha256 = "03ea9ef17c74bbb57d2b6260a8f46b6e91b22de20788c53de823e9a8e32cbf1d"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ webkitgtk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "JavaScriptCore bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) webkitgtk;}; - "gi-pango" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, pango, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-pango"; - version = "1.0.16"; - sha256 = "a7bcc68413d7f7479e9b746eacf08b0c29a93b7c8af17005d96607ce090e78f4"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo pango ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Pango bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; - "gio" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers, glib - , gtk2hs-buildtools, mtl, stdenv, system-glib - }: - mkDerivation { - pname = "gio"; - version = "0.13.5.0"; - sha256 = "5c761423e947c02181721bdac7c11293d1bd31515fabe969e7e4ac9fd7e7355c"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring containers glib mtl - ]; - libraryPkgconfigDepends = [ system-glib ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to GIO"; - license = stdenv.lib.licenses.lgpl21; - }) {system-glib = pkgs.glib;}; - "giphy-api" = callPackage - ({ mkDerivation, aeson, base, containers, http-api-data - , http-client, http-client-tls, microlens, microlens-th, mtl - , network-uri, servant, servant-client, stdenv, text, transformers - }: - mkDerivation { - pname = "giphy-api"; - version = "0.6.0.1"; - sha256 = "8ddfb5005bc26553850366c527c0a1a93e6b1efaf4334f195a4f5ab647408604"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "git-vogue" = callPackage - ({ mkDerivation, base, bifunctors, containers, cpphs, Diff - , directory, filepath, formatting, haskell-src-exts, hlint - , hscolour, optparse-applicative, process, split, stdenv, strict - , stylish-haskell, temporary, text, transformers, unix - }: - mkDerivation { - pname = "git-vogue"; - version = "0.3.0.2"; - sha256 = "b41669f86776dd8fc56bec61f96f14b1fa0fc6720eaf3ed0559db97b4020705c"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/christian-marie/git-vogue"; - description = "A framework for pre-commit checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, base-compat - , base16-bytestring, binary, binary-orphans, byteable, bytestring - , containers, cryptohash, deepseq, deepseq-generics, exceptions - , hashable, http-client, http-client-tls, http-link-header - , http-types, iso8601-time, mtl, network-uri, semigroups, stdenv - , text, time, tls, transformers, transformers-compat - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "github"; - version = "0.19"; - sha256 = "f0ea9b57cd21645bba40e37e5e7c83ad78469cc3e32526b15e9a4bb2b3b84394"; - revision = "3"; - editedCabalFile = "0s3zmkzgfbh1mc0492i7rjiawxkzg0im8z2p10niv5ff58m87yri"; - libraryHaskellDepends = [ - aeson aeson-compat base base-compat base16-bytestring binary - binary-orphans byteable bytestring containers cryptohash deepseq - deepseq-generics exceptions hashable http-client http-client-tls - http-link-header http-types iso8601-time mtl network-uri semigroups - text time tls transformers transformers-compat unordered-containers - vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/github"; - description = "Access to the GitHub API, v3"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-release" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, mime-types, optparse-generic, stdenv - , text, unordered-containers, uri-templater - }: - mkDerivation { - pname = "github-release"; - version = "1.2.2"; - sha256 = "0684e7279625b654221e61ec0a95128e0aec0be810181699e1ca46902e92d356"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - executableHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/github-release#readme"; - description = "Upload files to GitHub releases"; - license = stdenv.lib.licenses.mit; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "github-webhooks" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, deepseq, deepseq-generics, memory, stdenv, text, time - , vector - }: - mkDerivation { - pname = "github-webhooks"; - version = "0.10.0"; - sha256 = "084a8aa9cc71f89a47a0c8cdb1d0f9eac79fb7d4360ed224efd8443f0c7271df"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite deepseq - deepseq-generics memory text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/onrock-eng/github-webhooks#readme"; - description = "Aeson instances for GitHub Webhook payloads"; - license = stdenv.lib.licenses.mit; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , fixed, half, hxt, libGL, stdenv, transformers - }: - mkDerivation { - pname = "gl"; - version = "0.8.0"; - sha256 = "aa4d2838157c86da920bda651458a4266fccc7c291ea93a69558ab02540e1439"; - revision = "3"; - editedCabalFile = "0q8d4237ds78y4p35xl2arlmmpgs2ag7krw9chby6q9dcs00zxrl"; - setupHaskellDepends = [ - base Cabal containers directory filepath hxt transformers - ]; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "0.3.6"; - sha256 = "3113326be49f4e1276ad6e61d47cac07768985d7203cb718c7dd60f76cd541ad"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glaze" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "glaze"; - version = "0.3.0.1"; - sha256 = "bbb184408bcf24e8c4f89a960cf7a69ab0c51e98bf84c5fa9901aae1702e22a1"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glaze#readme"; - description = "Framework for rendering things with metadata/headers and values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glazier" = callPackage - ({ mkDerivation, alternators, base, data-diverse, data-diverse-lens - , dlist, lens, mtl, stdenv, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "glazier"; - version = "1.0.0.0"; - sha256 = "e9c56250e48b99bfe6280c58d1458c5d35203bf3676705355a4d0bd89c7b71a4"; - libraryHaskellDepends = [ - alternators base data-diverse data-diverse-lens dlist lens mtl - transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glazier#readme"; - description = "Extensible effects using ContT, State and variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , gtk2hs-buildtools, stdenv, text, utf8-string - }: - mkDerivation { - pname = "glib"; - version = "0.13.6.0"; - sha256 = "4e71062c6a458440294d820e21449aa4666deed2ea233ef5915da7c1d4aee8eb"; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - base bytestring containers text utf8-string - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the GLIB library for Gtk2Hs"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gloss" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim - , gloss-rendering, GLUT, OpenGL, stdenv - }: - mkDerivation { - pname = "gloss"; - version = "1.12.0.0"; - sha256 = "6906d8ad72f094f16c27f19a4836e770cdae08dd90537239b067d5ddebdeac4b"; - libraryHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Painless 2D vector graphics, animations and simulations"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-raster" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, gloss-rendering - , repa, stdenv - }: - mkDerivation { - pname = "gloss-raster"; - version = "1.12.0.0"; - sha256 = "c89f496a397f168f020ad69742da21a7c54265e0b5144f3224d7912a15c34191"; - libraryHaskellDepends = [ - base containers ghc-prim gloss gloss-rendering repa - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Parallel rendering of raster images"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-rendering" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL - , stdenv - }: - mkDerivation { - pname = "gloss-rendering"; - version = "1.12.0.0"; - sha256 = "60d90b9729b8f6c8715d621aec8a9ded3f8f95bcb0877391d39a8e303de5c4bc"; - libraryHaskellDepends = [ - base bmp bytestring containers GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - description = "Gloss picture data types and rendering functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "gnuplot" = callPackage - ({ mkDerivation, array, base, containers, data-accessor - , data-accessor-transformers, deepseq, filepath, process - , semigroups, stdenv, temporary, time, transformers, utility-ht - }: - mkDerivation { - pname = "gnuplot"; - version = "0.5.5.3"; - sha256 = "4f742082835978919db75abc570e6cd924d63c6bdd951e1280f97d5d98540504"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers data-accessor data-accessor-transformers - deepseq filepath process semigroups temporary time transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Gnuplot"; - description = "2D and 3D plots using gnuplot"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "goggles" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary - , bytestring, containers, cryptonite, exceptions, filepath - , http-client, http-client-tls, http-types, memory, mtl, pem, req - , scientific, stdenv, stm, text, time, transformers, unix-time - , x509, x509-store - }: - mkDerivation { - pname = "goggles"; - version = "0.3.2"; - sha256 = "a64d25c6506b172ec6f3b8a55f7934c23ccedc66c1acfb62432063dff743e93c"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring binary bytestring - containers cryptonite exceptions filepath http-client - http-client-tls http-types memory mtl pem req scientific stm text - time transformers unix-time x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/goggles"; - description = "Extensible interface to Web APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-oauth2-jwt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, HsOpenSSL - , RSA, stdenv, text, unix-time - }: - mkDerivation { - pname = "google-oauth2-jwt"; - version = "0.3.0"; - sha256 = "72fd0f2fa82b734bc099c108ab0f168b1faaf6fb855d4dfb1df6348167ab27d6"; - libraryHaskellDepends = [ - base base64-bytestring bytestring HsOpenSSL RSA text unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/google-oauth2-jwt"; - description = "Get a signed JWT for Google Service Accounts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.5.1"; - sha256 = "8361853fca2d2251bd233e18393053dd391d21ca6f210b2bc861b0e0f4c2e113"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphviz" = callPackage - ({ mkDerivation, base, bytestring, colour, containers, directory - , dlist, fgl, filepath, mtl, polyparse, process, stdenv, temporary - , text, wl-pprint-text - }: - mkDerivation { - pname = "graphviz"; - version = "2999.20.0.2"; - sha256 = "e7662eb82d1e5b22b467fb6e9094b65731036ae04c5374058e3b52fbc055474e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring colour containers directory dlist fgl filepath mtl - polyparse process temporary text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/graphviz/"; - description = "Bindings to Graphviz for graph visualisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "graylog" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, network - , random, scientific, stdenv, text, time, vector - }: - mkDerivation { - pname = "graylog"; - version = "0.1.0.1"; - sha256 = "2d8173e61da8d02c39cb95e6ccea8a167c792f682a496aed5fe4edfd0e6a0082"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring network random scientific text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/haskell-graylog"; - description = "Support for graylog output"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "greskell" = callPackage - ({ mkDerivation, aeson, base, greskell-core, semigroups, stdenv - , text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "greskell"; - version = "0.2.1.1"; - sha256 = "9a05cff3285cc290c8283219d3e63c6d6bed41811845f1c3d231ed0734d3f45a"; - configureFlags = [ "-f-hint-test" ]; - libraryHaskellDepends = [ - aeson base greskell-core semigroups text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-core" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, scientific - , semigroups, stdenv, text, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "greskell-core"; - version = "0.1.2.4"; - sha256 = "201d3f76a503948114f387f0c63d88e1170ed26305b2c2a8b799a47d37dc4f85"; - libraryHaskellDepends = [ - aeson base containers hashable scientific semigroups text - unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language - core data types and tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-websocket" = callPackage - ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , greskell-core, hashtables, safe-exceptions, stdenv, stm, text - , unordered-containers, uuid, vector, websockets - }: - mkDerivation { - pname = "greskell-websocket"; - version = "0.1.1.2"; - sha256 = "9062b34fec1855b0262a0cf529dcc3ebf5bb20738712195420d832dd46e2cde7"; - libraryHaskellDepends = [ - aeson async base base64-bytestring bytestring greskell-core - hashtables safe-exceptions stm text unordered-containers uuid - vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell client for Gremlin Server using WebSocket serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gtk" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gio, glib, gtk2, gtk2hs-buildtools, mtl, pango, stdenv, text - }: - mkDerivation { - pname = "gtk"; - version = "0.14.10"; - sha256 = "28e1671eeb216335c7615513ba285a0c538d6747e38eb9acb64a5641f2650633"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk2;}; - "gtk2hs-buildtools" = callPackage - ({ mkDerivation, alex, array, base, Cabal, containers, directory - , filepath, happy, hashtables, pretty, process, random, stdenv - }: - mkDerivation { - pname = "gtk2hs-buildtools"; - version = "0.13.4.0"; - sha256 = "0f3e6ba90839efd43efe8cecbddb6478a55e2ce7788c57a0add4df477dede679"; - revision = "1"; - editedCabalFile = "0nbghg11y4nvxjxrvdm4a7fzj8z12fr12hkj4b7p27imlryg3m10"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base Cabal containers directory filepath hashtables pretty - process random - ]; - libraryToolDepends = [ alex happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Tools to build the Gtk2Hs suite of User Interface libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "gtk3" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gio, glib, gtk2hs-buildtools, gtk3, mtl, pango, stdenv, text - }: - mkDerivation { - pname = "gtk3"; - version = "0.14.9"; - sha256 = "48e14ac9180fb090718fdaa5ec8f345173edbe5fdbebd6151f0a64804d0796e5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ 3 graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gym-http-api" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-client, servant - , servant-client, servant-lucid, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "gym-http-api"; - version = "0.1.0.1"; - sha256 = "2c3fd9b261cd7bc3a004d41f582cd6c629956c78f7236eb91d615ca0c9b0c910"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base servant servant-client servant-lucid text - unordered-containers - ]; - executableHaskellDepends = [ - base exceptions http-client servant-client - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stites/gym-http-api#readme"; - description = "REST client to the gym-http-api project"; - license = stdenv.lib.licenses.mit; - }) {}; - "h2c" = callPackage - ({ mkDerivation, base, bytestring, mtl, resourcet, stdenv }: - mkDerivation { - pname = "h2c"; - version = "1.0.0"; - sha256 = "4be2c9d54084175777624770640850aba33d7e4a31e2dc8096c122f737965499"; - libraryHaskellDepends = [ base bytestring mtl resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/h2c"; - description = "Bindings to Linux I2C with support for repeated-start transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hOpenPGP" = callPackage - ({ mkDerivation, aeson, asn1-encoding, attoparsec, base - , base16-bytestring, base64-bytestring, bifunctors, binary - , binary-conduit, bytestring, bzlib, conduit, conduit-extra - , containers, crypto-cipher-types, cryptonite, errors, hashable - , incremental-parser, ixset-typed, lens, memory, monad-loops - , nettle, network-uri, newtype, openpgp-asciiarmor, prettyprinter - , resourcet, semigroups, split, stdenv, text, time - , time-locale-compat, transformers, unliftio-core - , unordered-containers, zlib - }: - mkDerivation { - pname = "hOpenPGP"; - version = "2.7.4.1"; - sha256 = "1aa868310f2c1fe4a768034e8114fe7d5d91479b5f34850c27890537f3419539"; - libraryHaskellDepends = [ - aeson asn1-encoding attoparsec base base16-bytestring - base64-bytestring bifunctors binary binary-conduit bytestring bzlib - conduit conduit-extra containers crypto-cipher-types cryptonite - errors hashable incremental-parser ixset-typed lens memory - monad-loops nettle network-uri newtype openpgp-asciiarmor - prettyprinter resourcet semigroups split text time - time-locale-compat transformers unliftio-core unordered-containers - zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "native Haskell implementation of OpenPGP (RFC4880)"; - license = stdenv.lib.licenses.mit; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.0.1"; - sha256 = "f0aac1af6d8d29b7fc2ffd43efaf5a7a5b00f2ead8dacff180bc3714c591ef8d"; - revision = "2"; - editedCabalFile = "0qscq4d3xwvjhqi1fiky7g12iwbkwn9qrypwzg9lx4p3c5xlwlvn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory filepath tar time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access Hackage's package database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-security" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, Cabal, containers, cryptohash-sha256, directory - , ed25519, filepath, ghc-prim, mtl, network, network-uri, parsec - , pretty, stdenv, tar, template-haskell, time, transformers, zlib - }: - mkDerivation { - pname = "hackage-security"; - version = "0.5.3.0"; - sha256 = "db986e17e9265aa9e40901690815b890b97d53159eb24d0a6cafaa7c18577c21"; - revision = "6"; - editedCabalFile = "1xs2nkzlvkdz8g27yzfxbjdbdadfmgiydnlpn5dm77cg18r495ay"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring Cabal - containers cryptohash-sha256 directory ed25519 filepath ghc-prim - mtl network network-uri parsec pretty tar template-haskell time - transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hackage-security"; - description = "Hackage security library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers - , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths - , haddock-library, stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.20.0"; - sha256 = "f2bc3495fbab581bc03e1a2050c7a0ce849ac97cb19506f5167d49d9d000c609"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring Cabal containers deepseq directory filepath - ghc ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.6.0"; - sha256 = "609f096e7b7d2690fc2302d6a77f6a0e0fefb64ae64e90d90e754dc37f10e740"; - libraryHaskellDepends = [ - base bytestring containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hailgun" = callPackage - ({ mkDerivation, aeson, base, bytestring, email-validate - , exceptions, filepath, http-client, http-client-tls, http-types - , stdenv, tagsoup, text, time, transformers - }: - mkDerivation { - pname = "hailgun"; - version = "0.4.1.8"; - sha256 = "9dcc7367afec6605045246d4959f27a29a54bbdbcec543e6f5ae59b048e2dcc3"; - libraryHaskellDepends = [ - aeson base bytestring email-validate exceptions filepath - http-client http-client-tls http-types tagsoup text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/hailgun"; - description = "Mailgun REST api interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hakyll" = callPackage - ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring - , containers, cryptohash, data-default, deepseq, directory - , file-embed, filepath, fsnotify, http-conduit, http-types - , lrucache, mtl, network-uri, optparse-applicative, pandoc - , pandoc-citeproc, parsec, process, random, regex-tdfa, resourcet - , scientific, stdenv, tagsoup, text, time, time-locale-compat - , unordered-containers, vector, wai, wai-app-static, warp, yaml - }: - mkDerivation { - pname = "hakyll"; - version = "4.12.4.0"; - sha256 = "a187b7a105d6d565f758b726fa421933e112c81559c006600916ab6ad0dad44d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-html blaze-markup bytestring containers - cryptohash data-default deepseq directory file-embed filepath - fsnotify http-conduit http-types lrucache mtl network-uri - optparse-applicative pandoc pandoc-citeproc parsec process random - regex-tdfa resourcet scientific tagsoup text time - time-locale-compat unordered-containers vector wai wai-app-static - warp yaml - ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/hakyll"; - description = "A static website compiler library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamilton" = callPackage - ({ mkDerivation, ad, ansi-wl-pprint, base, containers - , finite-typelits, ghc-typelits-knownnat, hmatrix, hmatrix-gsl - , hmatrix-vector-sized, optparse-applicative, stdenv - , typelits-witnesses, vector, vector-sized, vty - }: - mkDerivation { - pname = "hamilton"; - version = "0.1.0.3"; - sha256 = "3c7623217c8e49cabc6620835e53609e7b7339f39a1523da2467076252addb1b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hamilton#readme"; - description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "handwriting" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, lens, lens-aeson, random, split, stdenv, text - , transformers, wreq - }: - mkDerivation { - pname = "handwriting"; - version = "0.1.0.3"; - sha256 = "7e1b406d19b2f39b34910462dce214c7ca91bb9d78bf9fafb9f906dd44d5beaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers lens lens-aeson split text - transformers wreq - ]; - executableHaskellDepends = [ - base bytestring directory filepath random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ismailmustafa/handwriting-haskell#readme"; - description = "API Client for the handwriting.io API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hapistrano" = callPackage - ({ mkDerivation, aeson, async, base, filepath, formatting, gitrev - , mtl, optparse-applicative, path, path-io, process, stdenv, stm - , time, transformers, yaml - }: - mkDerivation { - pname = "hapistrano"; - version = "0.3.6.1"; - sha256 = "3e09e102708cddafbaeed1c6368ff7aee0fc30cc9a5c9da5f65b7e519205113c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base filepath formatting gitrev mtl path process time transformers - ]; - executableHaskellDepends = [ - aeson async base formatting gitrev optparse-applicative path - path-io stm yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hapistrano"; - description = "A deployment library for Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "happstack-server" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring - , containers, directory, exceptions, extensible-exceptions - , filepath, hslogger, html, monad-control, mtl, network - , network-uri, old-locale, parsec, process, semigroups, sendfile - , stdenv, syb, system-filepath, template-haskell, text, threads - , time, time-compat, transformers, transformers-base - , transformers-compat, unix, utf8-string, xhtml, zlib - }: - mkDerivation { - pname = "happstack-server"; - version = "7.5.1.1"; - sha256 = "614a65dd721bfa74ff4e0090e70c4b5c7dfb1fdb6485218b4ce1c5d50509fd61"; - revision = "1"; - editedCabalFile = "1gs2mzyj1x0ylj72kgjyf2ywi8136iiczg09d6q00halyz66360q"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html bytestring containers directory - exceptions extensible-exceptions filepath hslogger html - monad-control mtl network network-uri old-locale parsec process - semigroups sendfile syb system-filepath template-haskell text - threads time time-compat transformers transformers-base - transformers-compat unix utf8-string xhtml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://happstack.com"; - description = "Web related tools and services"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, Cabal, containers, directory - , filepath, mtl, stdenv - }: - mkDerivation { - pname = "happy"; - version = "1.19.9"; - sha256 = "3e81a3e813acca3aae52721c412cde18b7b7c71ecbacfaeaa5c2f4b35abf1d8d"; - revision = "3"; - editedCabalFile = "0kwlh964nyqvfbm02np8vpc28gbhsby0r65jhz1918rm0wip9izq"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hasbolt" = callPackage - ({ mkDerivation, base, binary, bytestring, connection, containers - , data-binary-ieee754, data-default, hex, network, stdenv, text - , transformers - }: - mkDerivation { - pname = "hasbolt"; - version = "0.1.3.0"; - sha256 = "fd6fc49f57e8c03087103f733c130739a046398b5118b078aad2def31059665d"; - revision = "4"; - editedCabalFile = "02x9q7m7gpk6wdbfyx8h3w28c46zcirgv9jffbjv07rqgki25x8f"; - libraryHaskellDepends = [ - base binary bytestring connection containers data-binary-ieee754 - data-default hex network text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmactep/hasbolt#readme"; - description = "Haskell driver for Neo4j 3+ (BOLT protocol)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.2.7.0"; - sha256 = "ecb5efc0586023f5a0dc861100621c1dbb4cbb2f0516829a16ebac39f0432abf"; - revision = "1"; - editedCabalFile = "197063dpl0wn67dp7a06yc2hxp81n24ykk7klbjx0fndm5n87dh3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashing" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, QuickCheck, stdenv - }: - mkDerivation { - pname = "hashing"; - version = "0.1.0.1"; - sha256 = "e5a4a19c6cd6f0a0adda381db76d608d23f8d303e68f1d744735433f91f49410"; - revision = "2"; - editedCabalFile = "1rwl68jiivw7f2f5cg73sr3dawlbmklnwyiwivrcsihrg4b1z1lq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base bytestring ]; - executableHaskellDepends = [ - array base bytestring mtl QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/hashing"; - description = "A pure haskell library implements several hash algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.1"; - sha256 = "8fd1c7c77c267eae6af01f1d9ca427754fb092cfffc8041cd50764a9144b3cbe"; - revision = "1"; - editedCabalFile = "1yyqnqn85mlw03f2bpvwa1w9gigswk9n30i918myqyxwr595l7rr"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.4.3"; - sha256 = "046d0930bc2dbc57a7cd9ddb5d1e92c7fdb71c6b91b2bbf673f5406843d6b679"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.21.5"; - sha256 = "12d116c6effae4da3f97afaad46faab6766f4a58be2c8fb434f8e0feea4a71e7"; - revision = "1"; - editedCabalFile = "144knmzybslqz8w9cwgl5s4sk1crs9qhynwiqv68wdq67q0s4k80"; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.21.4"; - sha256 = "ba6d345e9566ca7cda979a6c8eda3b786be77f6226b8ad8e5a8006cd3103346f"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, parsec, process, safe, sorted-list, stdenv, stm - , syb, tagsoup, text, transformers, unix-time, unliftio - , unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple parsec process safe sorted-list stm syb tagsoup - text transformers unix-time unliftio unordered-containers vector - versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.0.2"; - sha256 = "d8cdf3122ee384ec440269108fd85ccf207a413015ceeffb2e9bf4313a6addf3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yav/haskell-lexer"; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-spacegoo" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , mtl, pretty, pretty-show, stdenv, text, vector, vector-space - }: - mkDerivation { - pname = "haskell-spacegoo"; - version = "0.2.0.1"; - sha256 = "1eb3faa9a7f6a5870337eeb0bb3ad915f58987dfe4643fe95c91cbb2738ddd3c"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra mtl pretty pretty-show - text vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Client API for Rocket Scissor Spacegoo"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.0"; - sha256 = "b4b4941e8883da32c3f2b93f3ecdd5cff82ff9304cb91e89850b19095c908dbc"; - revision = "1"; - editedCabalFile = "1pnrvh9wzdkhvkkky4rlq1imycl9k76x9rvgq7cmfp8rf1iwqi5q"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-simple" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "haskell-src-exts-simple"; - version = "1.20.0.0"; - sha256 = "b305be88204f70af3b7f2e1feb972cf38f3feafb82781e94909484c5ebbde95c"; - libraryHaskellDepends = [ base haskell-src-exts ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/int-e/haskell-src-exts-simple"; - description = "A simplified view on the haskell-src-exts AST"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.0.3"; - sha256 = "8473e3555080860c2043581b398dbab67319584a568463b074a092fd4d095822"; - revision = "2"; - editedCabalFile = "0dp5v0yd0wgijzaggr22glgjswpa65hy84h8awdzd9d78g2fjz6c"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-ast" = callPackage - ({ mkDerivation, base, classyplate, ghc, mtl, pretty, references - , stdenv, template-haskell, uniplate - }: - mkDerivation { - pname = "haskell-tools-ast"; - version = "1.1.0.2"; - sha256 = "2cf0f51aa551c896634ee2649782ee8994bed7088a14e03961b4bf2a5e6d0149"; - libraryHaskellDepends = [ - base classyplate ghc mtl pretty references template-haskell - uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nboldi/haskell-tools"; - description = "Haskell AST for efficient tooling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-backend-ghc" = callPackage - ({ mkDerivation, base, bytestring, containers, ghc, ghc-boot-th - , haskell-tools-ast, mtl, references, safe, split, stdenv - , template-haskell, transformers, uniplate - }: - mkDerivation { - pname = "haskell-tools-backend-ghc"; - version = "1.1.0.2"; - sha256 = "14fe9a12005f05fac32be4c973e4b08c223bf0d6b2a879e92e190d6bf7230530"; - libraryHaskellDepends = [ - base bytestring containers ghc ghc-boot-th haskell-tools-ast mtl - references safe split template-haskell transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nboldi/haskell-tools"; - description = "Creating the Haskell-Tools AST from GHC's representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-builtin-refactorings" = callPackage - ({ mkDerivation, 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, stdenv, template-haskell - , transformers, uniplate - }: - mkDerivation { - pname = "haskell-tools-builtin-refactorings"; - version = "1.1.0.2"; - sha256 = "8916acba20c47d3091272458a131e38cb8edb26f5dd44cb7793f12ce8661a7f2"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Refactoring Tool for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "haskell-tools-debug"; - version = "1.1.0.2"; - sha256 = "14da03518f3ea1cf1778cbf7f157437a899b86bf06b99b74f8e01502894cdbd2"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Debugging Tools for Haskell-tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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 - , mtl, references, stdenv, transformers, wai, wai-websockets, warp - , websockets - }: - mkDerivation { - pname = "haskell-tools-demo"; - version = "1.1.0.2"; - sha256 = "7deec5cfae29cecb99ee6b57cfd9d37deb0a2f2546263bbc4a5d08ca70375530"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "A web-based demo for Haskell-tools Refactor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-prettyprint" = callPackage - ({ mkDerivation, base, containers, ghc, haskell-tools-ast, mtl - , references, split, stdenv, text, uniplate - }: - mkDerivation { - pname = "haskell-tools-prettyprint"; - version = "1.1.0.2"; - sha256 = "78396c1ac41c5810a0013077738a5ce7bf958201f6703689c0f0746ca3084206"; - libraryHaskellDepends = [ - base containers ghc haskell-tools-ast mtl references split text - uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Pretty printing of Haskell-Tools AST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-refactor" = callPackage - ({ mkDerivation, 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, stdenv - , template-haskell, transformers, uniplate - }: - mkDerivation { - pname = "haskell-tools-refactor"; - version = "1.1.0.2"; - sha256 = "f833e8ca1af652c68b3e3f3f5c3714c509d9748585a004a3c4764f61a2acf389"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Refactoring Tool for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-rewrite" = callPackage - ({ mkDerivation, base, containers, ghc, haskell-tools-ast - , haskell-tools-prettyprint, mtl, references, stdenv - }: - mkDerivation { - pname = "haskell-tools-rewrite"; - version = "1.1.0.2"; - sha256 = "a50009039c4428744f63905b0e3ca599aa4362dbe5c887deb15745bd8848e7ab"; - libraryHaskellDepends = [ - base containers ghc haskell-tools-ast haskell-tools-prettyprint mtl - references - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Facilities for generating new parts of the Haskell-Tools AST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , exceptions, filepath, focus, haskey-btree, list-t, lz4, mtl - , semigroups, stdenv, stm, stm-containers, transformers, unix - , xxhash-ffi - }: - mkDerivation { - pname = "haskey"; - version = "0.3.0.2"; - sha256 = "901c08a8155d8e394a868fe5a4b7318912afda8f91349f870c4384c5ab9944e8"; - libraryHaskellDepends = [ - base binary bytestring containers directory exceptions filepath - focus haskey-btree list-t lz4 mtl semigroups stm stm-containers - transformers unix xxhash-ffi - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey"; - description = "A transactional, ACID compliant, embeddable key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.0"; - sha256 = "90387d9a8e2afb22f9a4ace4b8f3b1a2045b955c1283c70a614abeff2294465a"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-mtl" = callPackage - ({ mkDerivation, base, exceptions, haskey, haskey-btree - , monad-control, mtl, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "haskey-mtl"; - version = "0.3.1.0"; - sha256 = "1ffb00a2901dc19edeeb18299dd1a52a49ca8c25bc04e87555c1bcec90b79294"; - libraryHaskellDepends = [ - base exceptions haskey haskey-btree monad-control mtl transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey"; - description = "A monad transformer supporting Haskey transactions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskintex" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, haskell-src-exts, HaTeX, hint, parsec, process, stdenv - , text, transformers - }: - mkDerivation { - pname = "haskintex"; - version = "0.8.0.0"; - sha256 = "9d4974112f33baf47124a56f87b96892a0a37c10587098f851c71256d15cddd8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath - haskell-src-exts HaTeX hint parsec process text transformers - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://daniel-diaz.github.io/projects/haskintex"; - description = "Haskell Evaluation inside of LaTeX code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , data-default-class, dlist, hashable, hashtables, loch-th, mtl - , placeholders, postgresql-binary, postgresql-libpq, profunctors - , stdenv, text, text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.3.0.3"; - sha256 = "519ac7c3b06dec89fcd4c881328c2b77c8f74ef34faaba2a4395417fcc257407"; - revision = "2"; - editedCabalFile = "14063k0dald0i2cqk70kdja1df587vn8vrzgw3rb62nxwycr0r9b"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras data-default-class dlist - hashable hashtables loch-th mtl placeholders postgresql-binary - postgresql-libpq profunctors text text-builder transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver and a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.3"; - sha256 = "63b4c3da21434bac9a98521cdcfda7815bcebb8829feb889f4050fffd7f06334"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5"; - sha256 = "3a33cdfc9ae253f193afb824c9488051103b4c71316b6db39d51dce27c825d2f"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, base-prelude, bytestring - , bytestring-tree-builder, contravariant, contravariant-extras - , hasql, mtl, stdenv, transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "0.7"; - sha256 = "decb3c5b08f710413ee65861c30766c53dc79d05f388fab6f8e1105e4d907fcf"; - libraryHaskellDepends = [ - base base-prelude bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "A composable abstraction over the retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "haxl" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, exceptions, filepath, ghc-prim, hashable, pretty, stdenv - , stm, text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haxl"; - version = "2.0.1.1"; - sha256 = "59f30d1bde6c70736071ccf3b561776d1a060af4c5a854c66664df1a47e4d6f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq exceptions filepath - ghc-prim hashable pretty stm text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebook/Haxl"; - description = "A Haskell library for efficient, concurrent, and concise data access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hbeanstalk" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, network, stdenv - }: - mkDerivation { - pname = "hbeanstalk"; - version = "0.2.4"; - sha256 = "feaf97fd18fedb3e5abf337e61c98a03108d917d9f87f885c8d02b6b838aac8f"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/scsibug/hbeanstalk/"; - description = "Client for the beanstalkd workqueue service"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.5"; - sha256 = "d250cb0c066ec45aa9b8e9e0df094677f9e7788b01eaf51ab5bc9bbd52fe029f"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/greydot/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6"; - sha256 = "181c3cd7f2be698f903dc9649e5ec9311245ad2b9fed91b61f05d0dd7b7dddb2"; - revision = "3"; - editedCabalFile = "0k6wsm1hwn3vaxdvw8p7cidxg7p8zply2ig4w4qrbpyjhl6dj9x9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.1"; - sha256 = "c7997ee86df43d5d734df63c5e091543bb7fd75a93d530c1857067e27a8b7932"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, exceptions - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, th-lift, time, transformers, transformers-base, unix - , wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "0.6.1"; - sha256 = "d2f94024906af37fed427fa1f03177d9a530078a2e54cfb24d7397da9807e177"; - revision = "5"; - editedCabalFile = "0kwmxjb1y3gk85njacw5wcvmq3bzp1649dbjzgzpiba2w342f7il"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory exceptions lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text th-lift time transformers transformers-base - unix wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Hedgehog will eat all your bugs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.1.0"; - sha256 = "c3569cd8316770115871acf334587350e887b046e35abc0d52a90dd0e6d719f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedis" = callPackage - ({ mkDerivation, async, base, bytestring, bytestring-lexing - , deepseq, errors, HTTP, mtl, network, network-uri, resource-pool - , scanner, stdenv, stm, text, time, tls, unordered-containers - , vector - }: - mkDerivation { - pname = "hedis"; - version = "0.10.4"; - sha256 = "ddf565696a7593a54154d9e3058631be3fd3355fcbbba4d3e750d6a91e374af7"; - revision = "1"; - editedCabalFile = "0fvs832wrcgj41slipbyjsqvlbbfp3czjf7p5slgxfjnb86d4jc8"; - libraryHaskellDepends = [ - async base bytestring bytestring-lexing deepseq errors HTTP mtl - network network-uri resource-pool scanner stm text time tls - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/informatikr/hedis"; - description = "Client library for the Redis datastore: supports full command set, pipelining"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.2"; - sha256 = "50b829508715ba246f095accd1b49f7c5f67380948d349df355bac39f4155923"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hex"; - version = "0.1.2"; - sha256 = "12ee1243edd80570a486521565fb0c9b5e39374f21a12f050636e71d55ec61ec"; - revision = "1"; - editedCabalFile = "0khmrdni6njr4wxgz15yz77l8ar4qm2jj6v0lvfnwqdms4s6i80y"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Convert strings into hexadecimal and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.4"; - sha256 = "937401802ed6593aad8c5acf0ea963d0f1f4473bf72185702b12eb30e52bbe2a"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.5"; - sha256 = "3726e0bcbdbda309b919241d86629625e732fd07d78cc90ad39cb39b51cd595e"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hidden-char" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hidden-char"; - version = "0.1.0.2"; - sha256 = "ea909372a7cc06cda7ee8e9c1a6a5c16be19fef256ad4bd2c0b39e61d940f498"; - revision = "3"; - editedCabalFile = "0f6qghr4i3ar993pjlswdd2rl671lrnxj8740i2yhn89z410vzsa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/hidden-char#readme"; - description = "Provides cross-platform getHiddenChar function"; - license = stdenv.lib.licenses.mit; - }) {}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hierarchical-clustering" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "hierarchical-clustering"; - version = "0.4.6"; - sha256 = "75f17f09b9c38d51a208edee10da2f4706ee784b5cdfe8efc31f7f86bbcdccb1"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hierarchy" = callPackage - ({ mkDerivation, base, exceptions, free, mmorph, monad-control, mtl - , stdenv, transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "hierarchy"; - version = "1.0.2"; - sha256 = "25f90eff98036266e279d5730297e24bdfe27b3151cf155d29415cf7d07b1318"; - libraryHaskellDepends = [ - base exceptions free mmorph monad-control mtl transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/hierarchy#readme"; - description = "Predicated traversal of generated trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.2"; - sha256 = "2afc228104a29aed6b208b1aeba93631e96fdf11efbe68ad036f838f95f8aff2"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.3.10"; - sha256 = "af2b7d5733ab52ca38f0d9aed1ec37304f1d6964caa0fb556b8215858c1d5d9d"; - revision = "1"; - editedCabalFile = "07z0n5rvki3w0kjr190bwv7sq8p3myspv8999ilz9rlsqf5a0324"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hint" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, ghc - , ghc-boot, ghc-paths, mtl, random, stdenv, temporary, unix - }: - mkDerivation { - pname = "hint"; - version = "0.8.0"; - sha256 = "2e702d62c8f56b799d767f3d3707bec12597bc529a051ad90bd5840581551c41"; - libraryHaskellDepends = [ - base directory exceptions filepath ghc ghc-boot ghc-paths mtl - random temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvdan/hint"; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "histogram-fill" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv, vector - }: - mkDerivation { - pname = "histogram-fill"; - version = "0.9.1.0"; - sha256 = "757cbbaacb4ba3bb692582fcd7f87f3a7faf7f9b01a9b4fe7a74fef928a29161"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shimuuar/histogram-fill/"; - description = "Library for histograms creation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , language-javascript, optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.2"; - sha256 = "bec153d2396962c63998eb12d0a2c7c9f7df6f774cb00e41b6cdb1f5a4905484"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers language-javascript text - ]; - executableHaskellDepends = [ - base blaze-builder bytestring containers language-javascript - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat-batteries - , bytestring, cmdargs, containers, csv, data-default, Decimal, Diff - , directory, file-embed, filepath, hashable, haskeline, here - , hledger-lib, HUnit, lucid, megaparsec, mtl, mtl-compat, old-time - , parsec, pretty-show, process, regex-tdfa, safe, shakespeare - , split, stdenv, tabular, temporary, terminfo, text, time - , transformers, unordered-containers, utf8-string, utility-ht - , wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.10"; - sha256 = "f64420f852502e84dfa9374ace1d00a06ecf1641ad9fd3b22d7c2c48c1d5c4d3"; - revision = "1"; - editedCabalFile = "1kj1by80j7f6rzwfccwl2cp53bb3lyivh8a8xnawdyxab1pkyz34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers csv data-default Decimal Diff directory file-embed - filepath hashable haskeline here hledger-lib HUnit lucid megaparsec - mtl mtl-compat old-time parsec pretty-show process regex-tdfa safe - shakespeare split tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers csv data-default Decimal directory file-embed filepath - haskeline here hledger-lib HUnit megaparsec mtl mtl-compat old-time - parsec pretty-show process regex-tdfa safe shakespeare split - tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , Decimal, docopt, either, hledger, hledger-lib, microlens - , microlens-platform, safe, servant-server, servant-swagger, stdenv - , swagger2, text, transformers, wai, wai-extra, warp - }: - mkDerivation { - pname = "hledger-api"; - version = "1.10"; - sha256 = "6e51bf6eb84d600777e4008bc53cea8ab08b103d720c23e04a9954836fbcacab"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web API server for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "7a7f5d437c98e42ba1f1529f2645e5df88d18962ae28b71b8c07e428fe08c1b9"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat-batteries - , blaze-markup, bytestring, cmdargs, containers, csv, data-default - , Decimal, deepseq, directory, extra, filepath, hashtables, HUnit - , megaparsec, mtl, mtl-compat, old-time, parsec, parser-combinators - , pretty-show, regex-tdfa, safe, split, stdenv, tabular, text, time - , transformers, uglymemo, utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.10"; - sha256 = "e18aaf23705f46c432519113148229ff78ddae3dcf41ef784e032bf5cc1943ce"; - revision = "2"; - editedCabalFile = "071bnfgdv665llvggpqbg44kc141jz4ni0j6a1miyyw7wd2dvkix"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat-batteries blaze-markup - bytestring cmdargs containers csv data-default Decimal deepseq - directory extra filepath hashtables HUnit megaparsec mtl mtl-compat - old-time parsec parser-combinators pretty-show regex-tdfa safe - split tabular text time transformers uglymemo utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-ui" = callPackage - ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries - , brick, cmdargs, containers, data-default, directory, filepath - , fsnotify, hledger, hledger-lib, HUnit, megaparsec, microlens - , microlens-platform, pretty-show, process, safe, split, stdenv - , text, text-zipper, time, transformers, vector, vty - }: - mkDerivation { - pname = "hledger-ui"; - version = "1.10.1"; - sha256 = "c7d41f9d2c9f486ab25a9cdb4d89759eae3974f8c4991bf46e3e5ea9bc8690c0"; - revision = "2"; - editedCabalFile = "0igkrj44w3rvadgb7kbi1wwlljyrs4y6awk0mhic4lvnk1slwk6m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal async base base-compat-batteries brick cmdargs - containers data-default directory filepath fsnotify hledger - hledger-lib HUnit megaparsec microlens microlens-platform - pretty-show process safe split text text-zipper time transformers - vector vty - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Curses-style user interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , case-insensitive, clientsession, cmdargs, conduit, conduit-extra - , data-default, directory, filepath, hjsmin, hledger, hledger-lib - , http-client, http-conduit, HUnit, json, megaparsec, mtl - , semigroups, shakespeare, stdenv, template-haskell, text, time - , transformers, wai, wai-extra, wai-handler-launch, warp, yaml - , yesod, yesod-core, yesod-form, yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.10"; - sha256 = "c9dfd130a2430a09672121d8c2e769358c9bc78e7e68118aaf8c2638f24cd4c1"; - revision = "1"; - editedCabalFile = "0zzgc6mjia06fwvjwpzzczh0p9k0a6bi2lib6zq5k1briq4gqblm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring case-insensitive - clientsession cmdargs conduit conduit-extra data-default directory - filepath hjsmin hledger hledger-lib http-client http-conduit HUnit - json megaparsec mtl semigroups shakespeare template-haskell text - time transformers wai wai-extra wai-handler-launch warp yaml yesod - yesod-core yesod-form yesod-static - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlibsass" = callPackage - ({ mkDerivation, base, Cabal, directory, libsass, stdenv }: - mkDerivation { - pname = "hlibsass"; - version = "0.1.7.0"; - sha256 = "62a75c444d8771303c6712e6fd3b3b5fd988773ec61ff06b4ed7e9d92c1c9f6d"; - configureFlags = [ "-fexternalLibsass" ]; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ libsass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hlibsass"; - description = "Low-level bindings to Libsass"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsass;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern - ghc-lib-parser ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.19.0.0"; - sha256 = "52eb2e42edc5839bfd9d2dec6c4fb29997eca737537a06df7b2d09bf6c324d82"; - revision = "1"; - editedCabalFile = "0krx0ds5mcj28y6zpg0r50lljn8681wi4c5lqcdz2c71nhixfq8h"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-backprop" = callPackage - ({ mkDerivation, backprop, base, ghc-typelits-knownnat - , ghc-typelits-natnormalise, hmatrix, hmatrix-vector-sized - , microlens, stdenv, vector, vector-sized - }: - mkDerivation { - pname = "hmatrix-backprop"; - version = "0.1.2.3"; - sha256 = "bd12d7feec08e396f4174dfc35f808bfbf096370fc75aee185827d86881a03f5"; - revision = "1"; - editedCabalFile = "03zrx1kvyz8gn2w2ygd7ql98yimsm3kyrnrr1cc99mz1cm0phnrv"; - libraryHaskellDepends = [ - backprop base ghc-typelits-knownnat ghc-typelits-natnormalise - hmatrix hmatrix-vector-sized microlens vector vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-backprop#readme"; - description = "hmatrix operations lifted for backprop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.7"; - sha256 = "4a0f8b6ea1caefebd30f1e726c94f238d96c0f873bdeb5d920367e8aca7c54bf"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.2"; - sha256 = "f2f3ee02607096a56c7c5c7f1ddff2f7f91ee05211ec2bd659add8208b1505a7"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-special" = callPackage - ({ mkDerivation, base, hmatrix, hmatrix-gsl, stdenv }: - mkDerivation { - pname = "hmatrix-special"; - version = "0.19.0.0"; - sha256 = "1f1f8c7f1700cea53132daecc53ca1a9733d4beac91ae1dcd2a2a03c83c9dcd7"; - libraryHaskellDepends = [ base hmatrix hmatrix-gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Interface to GSL special functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.1.0"; - sha256 = "8b4edc591aa301ee2c4d2f5894ad690db8d88c9d48754f6d13c30d3eacc03b1d"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoopl" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hoopl"; - version = "3.10.2.2"; - sha256 = "097b1316d5f1c8ffe71133223209eb2b095fe13f43dc01d1fe43fd8a545a2b97"; - revision = "2"; - editedCabalFile = "0j6pz4jzhvviyrhhn1j22ikmjvzrg60nzvq26lbpkcb6y4q6rlyx"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hoopl"; - description = "A library to support dataflow analysis and optimization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenpgp-tools" = callPackage - ({ mkDerivation, aeson, alex, array, attoparsec, base - , base16-bytestring, binary, binary-conduit, bytestring, conduit - , conduit-extra, containers, crypto-pubkey, cryptohash, directory - , errors, fgl, graphviz, happy, hOpenPGP, http-client - , http-client-tls, http-types, ixset-typed, lens, monad-loops - , openpgp-asciiarmor, optparse-applicative, prettyprinter - , prettyprinter-ansi-terminal, prettyprinter-convert-ansi-wl-pprint - , resourcet, stdenv, text, time, time-locale-compat, transformers - , unordered-containers, yaml - }: - mkDerivation { - pname = "hopenpgp-tools"; - version = "0.21.2"; - sha256 = "b418dfc81e9fb19216ffe31cdc74c78c054a049d1eb6c01f3a4acbe5c722068c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson array attoparsec base base16-bytestring binary binary-conduit - bytestring conduit conduit-extra containers crypto-pubkey - cryptohash directory errors fgl graphviz hOpenPGP http-client - http-client-tls http-types ixset-typed lens monad-loops - openpgp-asciiarmor optparse-applicative prettyprinter - prettyprinter-ansi-terminal prettyprinter-convert-ansi-wl-pprint - resourcet text time time-locale-compat transformers - unordered-containers yaml - ]; - executableToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "hOpenPGP-based command-line tools"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, openssl - , stdenv - }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.1"; - sha256 = "7031aac15f132057f8013f819774081cd8fc4a14fb076bc3dffb478d66d0abdf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.12"; - sha256 = "44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.8.0.2"; - sha256 = "2fd19796845be73b605ee8830704a6f1f23a80f43731cd36a216fb2b3bb179c8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/hp2pretty"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hpack" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal - , containers, cryptonite, deepseq, directory, filepath, Glob - , http-client, http-client-tls, http-types, pretty, scientific - , stdenv, text, transformers, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hpack"; - version = "0.28.2"; - sha256 = "b9601332bbac2f042947be1f7478ed0c72367e4caa211b779a75dc26cd8180a3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types pretty scientific text transformers unordered-containers - vector yaml - ]; - executableHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types pretty scientific text transformers unordered-containers - vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/hpack#readme"; - description = "An alternative format for Haskell packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "hpqtypes" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, Cabal, containers - , data-default-class, directory, exceptions, filepath, lifted-base - , monad-control, mtl, postgresql, resource-pool, semigroups, stdenv - , text, text-show, time, transformers, transformers-base, vector - }: - mkDerivation { - pname = "hpqtypes"; - version = "1.5.3.0"; - sha256 = "ff25807beee2ce9fa59b823313b6e2fdbd6e575e6e91d885ddee0ebf8b92ffc5"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default-class - exceptions lifted-base monad-control mtl resource-pool semigroups - text text-show time transformers transformers-base vector - ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/hpqtypes"; - description = "Haskell bindings to libpqtypes"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "hprotoc" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , directory, filepath, haskell-src-exts, mtl, parsec - , protocol-buffers, protocol-buffers-descriptor, stdenv - , utf8-string - }: - mkDerivation { - pname = "hprotoc"; - version = "2.4.11"; - sha256 = "93f2e87e8d6fb85464162183b7c9fa4bac09676058f9f7e29cdac63706f3801c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary bytestring containers directory filepath - haskell-src-exts mtl parsec protocol-buffers - protocol-buffers-descriptor utf8-string - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - array base binary bytestring containers directory filepath - haskell-src-exts mtl parsec protocol-buffers - protocol-buffers-descriptor utf8-string - ]; - executableToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hquantlib" = callPackage - ({ mkDerivation, base, containers, hmatrix, hmatrix-gsl - , hmatrix-special, mersenne-random-pure64, parallel, random - , statistics, stdenv, time, vector, vector-algorithms - }: - mkDerivation { - pname = "hquantlib"; - version = "0.0.4.0"; - sha256 = "b7b2b9ce5e8113dd2d54a1dfce34b661620bd5e0dd43516604395276d7c44474"; - revision = "2"; - editedCabalFile = "1wx32kkv1as3rras5b1y3v77abx0sqsam6ssa5s7vm83pncx38y4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers hmatrix hmatrix-gsl hmatrix-special - mersenne-random-pure64 parallel random statistics time vector - vector-algorithms - ]; - executableHaskellDepends = [ - base containers mersenne-random-pure64 parallel time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/paulrzcz/hquantlib.git"; - description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; - license = "LGPL"; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , process, ruby, scientific, stdenv, stm, text - , unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.6"; - sha256 = "dda3b4fb243b612915c8a5c415a95c7d68c0d860901fd01b5d0315b7ccda1519"; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.6.0.0"; - sha256 = "14b80075b17b9bfa517e42156dafa2e2ca8951413126d27cbe5a5942bff85a58"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.3.0"; - sha256 = "3312807260f463dc58b26765379114c144be86a94868ab2091812127902eefc8"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsass" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, filepath - , hlibsass, monad-loops, stdenv, transformers - }: - mkDerivation { - pname = "hsass"; - version = "0.7.0"; - sha256 = "73758e87ba43096c0b3eb9ed7029f30d3a4d602dbe68c97760f89e5165901a57"; - libraryHaskellDepends = [ - base bytestring data-default-class filepath hlibsass monad-loops - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hsass"; - description = "Integrating Sass into Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.7.1"; - sha256 = "4fcd00e85cde989652ab5c6b179610c9514180a00cd7b161ea33ebfec3b8a044"; - revision = "1"; - editedCabalFile = "0w4hrmj7ph5dgarl82xpa0g77ncjdqk0wc9wp771pry98xxihzl8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, mtl, old-time, parsec, stdenv }: - mkDerivation { - pname = "hsemail"; - version = "2"; - sha256 = "f5f08a879444abd1f9a8a3e620d7fc83bc632ae3ba9b545bebdf58d5f4bfa8d9"; - libraryHaskellDepends = [ base mtl old-time parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the RFC2822 Internet Message format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsexif" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, iconv - , stdenv, text, time - }: - mkDerivation { - pname = "hsexif"; - version = "0.6.1.6"; - sha256 = "0f7e14cdec698c4e8e17ec84971ca5a604c9e75a861806dbf7088cdfc706b55d"; - revision = "1"; - editedCabalFile = "1dgcgsmx0k5p3ibfv3n5k0c5p1is2m5zfsd2s6nc6d0pz34d4wl9"; - libraryHaskellDepends = [ - base binary bytestring containers iconv text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/hsexif"; - description = "EXIF handling library in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - }: - mkDerivation { - pname = "hsini"; - version = "0.5.1.2"; - sha256 = "eaa6ae68c6271d5c3187054e702719b3ee7916524ffda27bb328cc9aad9ed8e4"; - revision = "1"; - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - doHaddock = false; - doCheck = false; - description = "ini configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hsinstall"; - version = "1.6"; - sha256 = "061090c68bdcdad5efef879c4fc0e4c67c26d34221c333fe4c9880216635c811"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, network - , network-bsd, old-locale, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.3.1.0"; - sha256 = "7f2364f6c0b9c5b85a257267a335816126ef2471c817a42797a5d3c57acaca5b"; - libraryHaskellDepends = [ - base bytestring containers deepseq network network-bsd old-locale - time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/hslogger/wiki"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "0.9.5.2"; - sha256 = "0e4d26f8a76cbfb219851f33d31417c4a3c8f193123367a0749f047103d8bbe5"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - description = "A Lua language interpreter embedding in Haskell"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "0.3.0.2"; - sha256 = "a22acf0984e7d78955ce76f75e7660f84d50b6b59fc70357d01ccbf2bbc0d861"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.1.2.1"; - sha256 = "aeb384f9743b76360f3779e44065fe297fb60f27519933f203b75bd8c2ba8e2d"; - revision = "1"; - editedCabalFile = "0vajlsd7y6pwa08635q0cx8z5c1c55bk7fvavw7g2vmyvxqjzx6n"; - libraryHaskellDepends = [ base hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-test"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, hspec-core, hspec-discover - , hspec-expectations, QuickCheck, stdenv - }: - mkDerivation { - pname = "hspec"; - version = "2.7.1"; - sha256 = "818cebbcbde8761289902a816f865691e40724babf87e70057ecab204f6619f5"; - libraryHaskellDepends = [ - base hspec-core hspec-discover hspec-expectations QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.0"; - sha256 = "dba7348e75572f7cd79f3f0719ab39973431927f9bb5bec1445e2f8e5b4fa78c"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.7.1"; - sha256 = "2ccc20f27970f753ed2e902c323f4562adaf1a31f4234b3504e02a8a50417323"; - revision = "1"; - editedCabalFile = "0aw68sgz2p63y0vg07c1jx2pr8lmhp5c1ck60dlipyxsa00455i6"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.7.1"; - sha256 = "0b31c29b37d7d446d44b3559f794cd62b09ee5fc3f30862eccd8284e52758764"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.4"; - sha256 = "1bbfd524330be3cb0b27945556d01f48e3005e042ee475cdf6e441ba21b51b0a"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "1.0.0"; - sha256 = "14961ae19fde7104f5099624195d0f21b4759e5e635e79d9e63f9f2affca4eb5"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, async, base, call-stack - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.4.6"; - sha256 = "2b31671bfbfe5df0604516278bb1051db42b1e55dfe474ecd446a6630398bb62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array async base call-stack deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array async base call-stack deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-pg-transact" = callPackage - ({ mkDerivation, base, bytestring, hspec, pg-transact - , postgresql-simple, resource-pool, stdenv, text, tmp-postgres - }: - mkDerivation { - pname = "hspec-pg-transact"; - version = "0.1.0.2"; - sha256 = "a5ec2a978a730500f03c15d16eff7e207a4135ebc63afe4cbca7392ad5f01c0c"; - libraryHaskellDepends = [ - base bytestring hspec pg-transact postgresql-simple resource-pool - text tmp-postgres - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact-hspec#readme"; - description = "Helpers for creating database tests with hspec and pg-transact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.9.0"; - sha256 = "c8fe9ed0a1b77d6ad09b3d9c34e4dc65a2e5f1f0bbc6f7b8e2106d3d7556dfba"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai-json" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, bytestring - , case-insensitive, hspec-wai, stdenv, template-haskell - }: - mkDerivation { - pname = "hspec-wai-json"; - version = "0.9.0"; - sha256 = "a1c5401fa7fc7ffc46950274702a0ef30045568c2d2f5bc528cd6bf26ae28085"; - libraryHaskellDepends = [ - aeson aeson-qq base bytestring case-insensitive hspec-wai - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Testing JSON APIs with hspec-wai"; - license = stdenv.lib.licenses.mit; - }) {}; - "hstatsd" = callPackage - ({ mkDerivation, base, bytestring, mtl, network, stdenv, text }: - mkDerivation { - pname = "hstatsd"; - version = "0.1"; - sha256 = "446779594257c0fa02d5271c997ee0c22f74f7636d89e34394ad87e5bd285824"; - libraryHaskellDepends = [ base bytestring mtl network text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/hstatsd"; - description = "Quick and dirty statsd interface"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hsx-jmacro" = callPackage - ({ mkDerivation, base, hsp, jmacro, mtl, stdenv, text - , wl-pprint-text - }: - mkDerivation { - pname = "hsx-jmacro"; - version = "7.3.8.1"; - sha256 = "f1903d80017381408ae3f7b9d7b2e4d8c193d72ede96a33ce68fe7e276f1af59"; - libraryHaskellDepends = [ - base hsp jmacro mtl text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/"; - description = "hsp+jmacro support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.1"; - sha256 = "86de0d8820a6cb7fe166e046ae00c1bbe37d27885cd3aa701deaca8fdf646016"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsyslog-udp" = callPackage - ({ mkDerivation, base, bytestring, hsyslog, network, stdenv, text - , time, unix - }: - mkDerivation { - pname = "hsyslog-udp"; - version = "0.2.3"; - sha256 = "f03fc4e26fd19f74834bff62891adeee49909326c2a7b9c93a70a9d370f4b6be"; - libraryHaskellDepends = [ - base bytestring hsyslog network text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ThoughtLeadr/hsyslog-udp"; - description = "Log to syslog over a network via UDP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit - , conduit-extra, containers, resourcet, stdenv, text, transformers - , xml-conduit, xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.2"; - sha256 = "05fdbdbf9d7b610bd8d7a67e0036b52b1ec1aec276f3017194e59ee2d661b050"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit conduit-extra containers - resourcet text transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-email-validate" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "html-email-validate"; - version = "0.2.0.0"; - sha256 = "3d2a3ec75b638cec71df57512473052d485dc118aec4662d5a8dae5e95aa6daf"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - description = "Validating an email address against HTML standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.2"; - sha256 = "161a0c9193b4c1279e41b2ce1203ee821e8d6ee2cf755b9f070d68602ed5cee7"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, bytestring - , Cabal, cabal-doctest, containers, hashable, http-types, stdenv - , text, time, time-locale-compat, unordered-containers - , uri-bytestring, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.3.8.1"; - sha256 = "6eeaba4b29a00407cb20b865825b17b8d884c26b09c5bbe7b6e673b4522106b3"; - revision = "1"; - editedCabalFile = "1843bapm2rdkl4941rycryircpqpp7mbal7vgmlikf11f8ws7y7x"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base bytestring containers hashable - http-types text time time-locale-compat unordered-containers - uri-bytestring uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.5.13.1"; - sha256 = "e121b5c676aec29f2a3b92dcbbb8b3f6acfad4ac5985141f35e5b739f75bfc6b"; - revision = "1"; - editedCabalFile = "0b52kmymrflbqlrbp0421f873c48fj5djyizpsb0q7i6f4944vyi"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-openssl" = callPackage - ({ mkDerivation, base, HsOpenSSL, http-client, network, stdenv }: - mkDerivation { - pname = "http-client-openssl"; - version = "0.2.2.0"; - sha256 = "96410d977b70f25208d74ffc31ee00ceab4aa970347ef4f8d5757246c61210aa"; - revision = "1"; - editedCabalFile = "0l2a036ypx1kyfr99fggnrb1kv6x8mp53pxzklka2ccggvl6khx3"; - libraryHaskellDepends = [ base HsOpenSSL http-client network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the OpenSSL library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-client, http-client-tls, http-types, mtl, resourcet, stdenv - , transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.2"; - sha256 = "7596448325d8b3ad31b2100fe6ba4a3447a470a461cfb7fbcc0bc90a32245ec5"; - revision = "1"; - editedCabalFile = "0g6rg8r33q5rmrx5287vjfcqwjacchgzyfc8aqqrhrfz3fq5ll0g"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.8"; - sha256 = "0f4c6348487abe4f9d58e43d3c23bdefc7fd1fd5672effd3c7d84aaff05f5427"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3.1"; - sha256 = "da26db73df1eaebb20df2837b0352cc62a6c151d467bea9442767fd3d51c2a2d"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.7.1.3"; - sha256 = "394ffcfb4f655721d5965870bf9861c324c14d40ed4dc173e926235fe0fe124f"; - revision = "1"; - editedCabalFile = "19py5pspx80gg679p9dzqr3iidflppxc1x4vkldamjkidyi406j8"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-streams" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, Cabal, case-insensitive, directory - , HsOpenSSL, http-common, io-streams, mtl, network, network-uri - , openssl-streams, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "http-streams"; - version = "0.8.6.1"; - sha256 = "b8d71f2753ac7cda35b4f03ec64e4b3c7cc4ec5c2435b5e5237fe863cb687da3"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - case-insensitive directory HsOpenSSL http-common io-streams mtl - network network-uri openssl-streams text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/http-streams/"; - description = "An HTTP client using io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.2"; - sha256 = "523102d7ba8923e1b399cfd2a1c821e858146ecd934fc147c3acd0fd2b2f9305"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, bytestring-builder - , case-insensitive, containers, psqueues, stdenv, stm - }: - mkDerivation { - pname = "http2"; - version = "1.6.3"; - sha256 = "61620eca0f57875a6a9bd24f9cc04c301b5c3c668bf98f85e9989aad5d069c43"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring bytestring-builder case-insensitive - containers psqueues stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library including frames, priority queues and HPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "httpd-shed" = callPackage - ({ mkDerivation, base, network, network-uri, stdenv }: - mkDerivation { - pname = "httpd-shed"; - version = "0.4.0.3"; - sha256 = "b0ff87d81e61f788d3920d952e4469d984742ba49c006df086c159886bf09218"; - revision = "2"; - editedCabalFile = "12y9qf8s0aq4dc80wrvh14cjvvm4mcygrqq72w4z8w9n8mp8jg9p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base network network-uri ]; - doHaddock = false; - doCheck = false; - description = "A simple web-server with an interact style API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.0.3"; - sha256 = "93f3a91a2994588728ae757dcca5104e18a570b3591773aa7f03c524c97599da"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "1.2.0.6"; - sha256 = "54aac2479fec2ecefeb7ff42e659d2d0d1fba125a339eb3df33ed2fb266ff683"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvega" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, vector }: - mkDerivation { - pname = "hvega"; - version = "0.1.0.3"; - sha256 = "0a7759965ad969e2b541f4ea39dc7f9d53442e39a61893edf7446bc3eb8f0542"; - libraryHaskellDepends = [ aeson base text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "Create Vega and Vega-Lite visualizations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, hw-bits, hw-excess, hw-prim - , hw-rankselect-base, stdenv, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.2.0.2"; - sha256 = "1622757f59d5fc789fc27c2311ba5147cd9491ad80d4e517755cb158ae87575d"; - libraryHaskellDepends = [ - base hw-bits hw-excess hw-prim hw-rankselect-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bytestring, hw-int, hw-prim, hw-string-parse - , safe, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.0.3"; - sha256 = "fc0cd24eba480a359db8b6133059102b15f462d467cff5216b5224cd2545d0fc"; - libraryHaskellDepends = [ - base bytestring hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, transformers, unliftio-core - , word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.5"; - sha256 = "047d5abec487bf522050d2a7f318ce9f0e67766a58cf67669d2d6fa7ae8dd701"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time transformers - unliftio-core word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.5"; - sha256 = "5ceaec01c446c5a507e889f514201e4739ea6f1cc22a4c68894bb023257bd931"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.0.2"; - sha256 = "6735d0cd4ee86d5c13d5ea067251c6b1126f7569d78c6241f3147eb114b7a1f6"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.1"; - sha256 = "1127b7cff38319a292ca6d57c8b7a1996bb80b90e86488a0f82a76eba9f91268"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, vector }: - mkDerivation { - pname = "hw-hedgehog"; - version = "0.1.0.2"; - sha256 = "7e6d4418d915b142dc8546679a38a28be00de62683c45ece62478600ecc3653a"; - libraryHaskellDepends = [ base hedgehog vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hedgehog#readme"; - description = "Extra hedgehog functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - , transformers - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.5"; - sha256 = "d3d17aadf474e82bb2d90c2d48cadf18724cbeab08e010bdf250591ce9c5f64f"; - revision = "4"; - editedCabalFile = "1sr5cf1s86mp6nlw1vgj565zsrxmwa134g5003p1834vynyh98zq"; - libraryHaskellDepends = [ - base call-stack hedgehog hspec HUnit transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.3"; - sha256 = "8336a5111638d3298266c9a1458233a09798bfa6d558219d4fe3bdd35d8d4a3f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-ip"; - version = "0.1.0.0"; - sha256 = "3664d0fbbb1fd734b9b3a8d39b1115390ddc1a8a5e48b4ae5d5960d3ba7980bf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, conduit, containers, criterion, dlist - , hw-balancedparens, hw-bits, hw-conduit, hw-diagnostics, hw-mquery - , hw-parser, hw-prim, hw-rankselect, hw-rankselect-base, mmap - , mono-traversable, resourcet, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "0.6.0.0"; - sha256 = "bb8e20e8a035279ee398c6d9162cda3f965d4f96e39c1d363be2456b1feb41d9"; - revision = "2"; - editedCabalFile = "0ygq95nx4sb70l5kfxlsj6rf2b3ry84ixby567n0jk1g0zks3z7s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring conduit containers - dlist hw-balancedparens hw-bits hw-conduit hw-mquery hw-parser - hw-prim hw-rankselect hw-rankselect-base mmap mono-traversable - resourcet text vector word8 - ]; - executableHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring conduit containers - criterion dlist hw-balancedparens hw-bits hw-conduit hw-diagnostics - hw-mquery hw-parser hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable resourcet text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, stdenv }: - mkDerivation { - pname = "hw-mquery"; - version = "0.1.0.1"; - sha256 = "724aa5b0490b57a89fb71b7042a3770f7978a4c975aa3d1b671576b0e83e113d"; - revision = "1"; - editedCabalFile = "0rxp6sqiskbrh30r7fqq2h2nbby9njdm9kj387njrb2xwyvd04m7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-wl-pprint base dlist ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim - , mono-traversable, stdenv, text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.0.0.3"; - sha256 = "dd8417c76ef5da89df2842b42767d825815ec3594c8e80e28e96570d8046c6f2"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim mono-traversable text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, mmap, semigroups, stdenv - , transformers, vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.17"; - sha256 = "66c75a2f8bb723e8d47869ddba537198a5899a7750bd38d8327a48b77dae9ea0"; - libraryHaskellDepends = [ - base bytestring mmap semigroups transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, hw-balancedparens - , hw-bits, hw-prim, hw-rankselect-base, mmap, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.10.0.3"; - sha256 = "aa1d079f56064c649bc820219b55ae16d723faed663283ab73760db4f2f514cb"; - revision = "1"; - editedCabalFile = "1rkni89h3sq02y03phb2bgx4yrx4gly9mzan6r4ziph0qayf09wf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-balancedparens hw-bits hw-prim hw-rankselect-base - vector - ]; - executableHaskellDepends = [ - base directory hw-bits hw-prim hw-rankselect-base mmap vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, hw-bits, hw-int, hw-prim - , hw-string-parse, safe, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.2.1"; - sha256 = "d20a6cab42189cf71a85b355d0ed52167bc2991210c3af76139a2e6229f79360"; - revision = "3"; - editedCabalFile = "1hbbxxzmar0djj4r43nr3ar9nsl659wnq20rw6cp6q974ivlglx2"; - libraryHaskellDepends = [ - base bits-extra hw-bits hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-xml" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, cereal, conduit, containers, deepseq, ghc-prim - , hw-balancedparens, hw-bits, hw-conduit, hw-parser, hw-prim - , hw-rankselect, hw-rankselect-base, lens, mtl, resourcet, stdenv - , transformers, vector, word8 - }: - mkDerivation { - pname = "hw-xml"; - version = "0.1.0.3"; - sha256 = "27a9a8212331c8c91d4a66baf8f0785c4ce90c087c02359bd16dfaeabc627e97"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring cereal conduit - containers deepseq ghc-prim hw-balancedparens hw-bits hw-conduit - hw-parser hw-prim hw-rankselect hw-rankselect-base lens mtl - resourcet transformers vector word8 - ]; - executableHaskellDepends = [ - base bytestring hw-balancedparens hw-bits hw-prim hw-rankselect - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-xml#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hworker" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hedis, stdenv - , text, time, uuid - }: - mkDerivation { - pname = "hworker"; - version = "0.1.0.1"; - sha256 = "34cbcc4db8f190ab0dc02a072adcf1fc75b7beab7e545982872bf265a1223f1d"; - revision = "1"; - editedCabalFile = "0w2bpvfr68n2qipvr8gc5096dain3g2536m4n9kqx1fahf12mwy5"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hedis text time uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dbp/hworker"; - description = "A reliable at-least-once job queue built on top of redis"; - license = stdenv.lib.licenses.isc; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.16"; - sha256 = "0d55e35cc718891d0987b7c8e6c43499efa727c68bc92e88e8b99461dff403e3"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.2.0.1"; - sha256 = "e46614d6bf0390b2a6a1aeeb0771e6d366944da40fb21c12c2f8a94d1f47b4d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-pickle-utils" = callPackage - ({ mkDerivation, base, hxt, mtl, stdenv }: - mkDerivation { - pname = "hxt-pickle-utils"; - version = "0.1.0.3"; - sha256 = "9ddba19f27d9d8c155012da4dd9598fb318cab862da10f14ee4bc3eb5321a9c5"; - revision = "3"; - editedCabalFile = "0d5fg718y7xzw76ip33q0w1liqk70q9074qkd198mjnijxjcrkf3"; - libraryHaskellDepends = [ base hxt mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/silkapp/hxt-pickle-utils"; - description = "Utility functions for using HXT picklers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, safecopy, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.2"; - sha256 = "f5b83cfcc2c9d1e40e04bbc9724428b2655c3b54b26beef714c98dabee5f1048"; - revision = "1"; - editedCabalFile = "1zh47rrwih6933hhq9vd0ly5s42w0bn196znkg9l8q6r6drl7xsf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection safecopy - semigroupoids semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.7.1"; - sha256 = "a25c5073f42896ccf81ff5936f3a42f290730f61da7f225b126ad22ff601b1c0"; - revision = "5"; - editedCabalFile = "00wsp69aqi5i906liqa4sfs0p2yclhr1ihz8y1700b3ymb70lzql"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hyraxAbif" = callPackage - ({ mkDerivation, base, binary, bytestring, directory, filepath - , hscolour, pretty-show, protolude, stdenv, text - }: - mkDerivation { - pname = "hyraxAbif"; - version = "0.2.3.10"; - sha256 = "6be4c3fae205e3c2e16ef25d71c9190cae9be0870edd086f07920f7afa0300f5"; - revision = "2"; - editedCabalFile = "1dwkqlkjg5hbjlwl7cjxmhg1camhlqpaqjrpmkwknscj76hfckvi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring directory filepath protolude text - ]; - executableHaskellDepends = [ - base bytestring hscolour pretty-show protolude text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hyraxbio/hyraxAbif/#readme"; - description = "Modules for parsing, generating and manipulating AB1 files"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal - , cmdargs, containers, directory, filepath, ghc, ghc-boot - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint - , http-client, http-client-tls, ipython-kernel, mtl, parsec - , process, random, shelly, split, stdenv, stm, strict, system-argv0 - , text, transformers, unix, unordered-containers, utf8-string, uuid - , vector - }: - mkDerivation { - pname = "ihaskell"; - version = "0.9.1.0"; - sha256 = "36aab2ee12bb8e761c6e27b7f68b7989a147ef9b12abf4aad74f33f7645ce1e4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cereal cmdargs containers - directory filepath ghc ghc-boot ghc-parser ghc-paths haskeline - haskell-src-exts hlint http-client http-client-tls ipython-kernel - mtl parsec process random shelly split stm strict system-argv0 text - transformers unix unordered-containers utf8-string uuid vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory ghc ipython-kernel - process strict text transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A Haskell backend kernel for the IPython project"; - license = stdenv.lib.licenses.mit; - }) {}; - "ihaskell-hvega" = callPackage - ({ mkDerivation, aeson, base, hvega, ihaskell, stdenv, text }: - mkDerivation { - pname = "ihaskell-hvega"; - version = "0.1.0.3"; - sha256 = "cb91361cbe7489c795254876458ed89bbf01757bbde00bdf93080da1a1e17836"; - libraryHaskellDepends = [ aeson base hvega ihaskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "IHaskell display instance for hvega types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.2"; - sha256 = "98477e742e5f131c8ceae4f2ca451bee3de7135340005252d107fc791edaf932"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv, template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.3"; - sha256 = "208f1f3bdc717f5f953cb7c9935c84d6a6291b7cd5ed8a22fa8567184be33d29"; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, stdenv }: - mkDerivation { - pname = "incremental-parser"; - version = "0.3.2"; - sha256 = "86dfe07bc4ffc94d7e2285d1e86cf01ed04076602668e911515ded25eb40f567"; - libraryHaskellDepends = [ base monoid-subclasses ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indentation-core" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "indentation-core"; - version = "0.0.0.2"; - sha256 = "099a3e3bb82c6af1b99172722bb01e954d1722d468e2d0722415f4f479993fd0"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators core library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indentation-parsec" = callPackage - ({ mkDerivation, base, indentation-core, mtl, parsec, stdenv }: - mkDerivation { - pname = "indentation-parsec"; - version = "0.0.0.2"; - sha256 = "0e37846ef1ea045d6c365be38f2b55ff7dd36e960f21ba28e879137874c8f2d4"; - libraryHaskellDepends = [ base indentation-core mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators for Parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.5.0.0"; - sha256 = "16bcc7ca0c1292e196a9c545df507e20e96f54a94392b775a686312503d9c3d3"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.1.2"; - sha256 = "d896ae5b3919a7a9fecdd9336e8f330d055fbdae4821be04b7c1266ccaa07d10"; - revision = "1"; - editedCabalFile = "198hmw2m3539vmh3s58d33h6vl5d0fqpdms8rp8cwj196diipjlc"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-profunctors" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed-profunctors"; - version = "0.1"; - sha256 = "31dfb4319dff84199344000b1efad75158eeac17ddcbb27f91735e958591bb65"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities for indexed profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.3"; - sha256 = "bda19185f3948a8988a53b1d6b7dc8f6676033c988c1d0d3c2e615fd6e920d09"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.6.0.9"; - sha256 = "3a9e98e6de896cbfe7fcca6de6f0e94261130a0ea2bacccdacdf48f5f05a4277"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.3.6"; - sha256 = "fcbbe3745a125e80dd6d0b4fe9b3a590507cf73dfaa62e115b20a46f0fd53cd9"; - revision = "1"; - editedCabalFile = "0gfikdal67aws20i5r4wg4r0lgn844glykcn3nnmbmyvwsks049l"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.6.1.0"; - sha256 = "d0d8c1510d0d858fb8d939f99a37ec1d2f4eb15ec848ab71fcad9ea8b1ce6e6d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "inline-java" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath, ghc - , jni, jvm, language-java, mtl, process, stdenv, template-haskell - , temporary, text - }: - mkDerivation { - pname = "inline-java"; - version = "0.8.4"; - sha256 = "5b94f54dd74530ae3427217a0d68ac1edf34995b8b23170ea3433c4026e4afb5"; - libraryHaskellDepends = [ - base bytestring Cabal directory filepath ghc jni jvm language-java - mtl process template-haskell temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java#readme"; - description = "Java interop via inline Java code in Haskell modules"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inliterate" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, containers - , haskell-src-exts, lucid, lucid-extras, plotlyhs, stdenv, text - , time - }: - mkDerivation { - pname = "inliterate"; - version = "0.1.0"; - sha256 = "2d96cc64e3b923003668c88fd73c30d5da09a2c9e2fb6af62912f54478d1e39f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html cheapskate containers haskell-src-exts lucid - lucid-extras plotlyhs text time - ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/inliterate"; - description = "Interactive literate programming"; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.1.0"; - sha256 = "d71d126bf455898492e1d2ba18b2ad04453f8b0e4daff3926a67f0560a712298"; - revision = "9"; - editedCabalFile = "02d4zqyb9dbahkpcbpgxylrc5xxc0zbw1awj5w0jyrql2g2b6a5f"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens semigroupoids semigroups text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.2.0.1"; - sha256 = "1f699bf8e95ab90d36725a8a090ad052dbb051cce379fd45a664f561e66ea194"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.2.2"; - sha256 = "ba86628d5c14f31fddccea86eeec122ed992af28d5b7ad964b2f5487605e7fc3"; - revision = "1"; - editedCabalFile = "1684dkh8j2xqsd85bfsmhv3iam37hasjg4x79mvl6xh7scmpfdbw"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolatedstring-perl6" = callPackage - ({ mkDerivation, base, bytestring, Cabal, haskell-src-meta, process - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "interpolatedstring-perl6"; - version = "1.0.1"; - sha256 = "5eadba4ba24c10a8f2a4a1cc48af6eb0f07190d7c0e691a22c5a99fb37367258"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for Perl6-style multi-line interpolated strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.0.3"; - sha256 = "e29794d7bb07e13c0fc3e6a05948862fd5ccd50910b9718e4818d354e26f3049"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.8.1"; - sha256 = "9ce3bf9d31b9ab2296fccc25031fd52e1c3e4abeca5d3bb452a725b586eb7e03"; - revision = "4"; - editedCabalFile = "1qx3q0v13l1zaln9zdk8chxpxhshbz5x0vqm0qda7d1kpv7h6a7r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intro" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , dlist, extra, hashable, mtl, safe, stdenv, text, transformers - , unordered-containers, writer-cps-mtl - }: - mkDerivation { - pname = "intro"; - version = "0.3.2.0"; - sha256 = "c34f815259b405f587b09caa65dc5a464377ed5b5b3b5535d2b4689eca9ece59"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq dlist extra hashable mtl - safe text transformers unordered-containers writer-cps-mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/intro#readme"; - description = "\"Fixed Prelude\" - Mostly total and safe, provides Text and Monad transformers"; - license = stdenv.lib.licenses.mit; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.3"; - sha256 = "d73e5def38da9fdd85def073857aa5f4b1d3b0c2df05c43d58a677cca02d440c"; - revision = "1"; - editedCabalFile = "0sjy375npw6lqcckhyicizzv91v8jh3ca5yjkygiaj22bw5k8c74"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invertible-grammar" = callPackage - ({ mkDerivation, base, bifunctors, containers, mtl, prettyprinter - , profunctors, semigroups, stdenv, tagged, template-haskell, text - , transformers - }: - mkDerivation { - pname = "invertible-grammar"; - version = "0.1.1"; - sha256 = "29900cf54783b8f67449a7fd45e986efaec6270cb31f3815650e9a0406061bef"; - revision = "1"; - editedCabalFile = "0hgssm0vm9d1n6iiz43jnr4pnyb6lxm0f2wyywldf8dnnd2j7qdf"; - libraryHaskellDepends = [ - base bifunctors containers mtl prettyprinter profunctors semigroups - tagged template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/invertible-grammar"; - description = "Invertible parsing combinators framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-choice" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "io-choice"; - version = "0.0.6"; - sha256 = "612b281110d18615000704f24fdb54a3b4401f7a39dcfe358433d7b4c22e1cef"; - libraryHaskellDepends = [ - base lifted-base monad-control template-haskell transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Choice for IO and lifted IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.0.1"; - sha256 = "5dcb3717933197a84f31be74abf545126b3d25eb0e0d64f722c480d3c46b2c8b"; - revision = "2"; - editedCabalFile = "1mcab95d6hm098myh9gp7sh10srigjphgvm8s9pfs7jg5hzghy14"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams-haproxy" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, io-streams, network - , stdenv, transformers - }: - mkDerivation { - pname = "io-streams-haproxy"; - version = "1.0.0.2"; - sha256 = "77814f8258b5c32707a13e0d30ab2e144e7ad073aee821d6def65554024ed086"; - revision = "4"; - editedCabalFile = "06c51a057n5bc9xfbp2m4jz5ds4z1xvmsx5mppch6qfwbz7x5i9l"; - libraryHaskellDepends = [ - attoparsec base bytestring io-streams network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "HAProxy protocol 1.5 support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable - , primitive, stdenv, text, vector - }: - mkDerivation { - pname = "ip"; - version = "1.3.0"; - sha256 = "9e4c869d00cc8348b4648983627fb05f4b4eb4cc6b51ec72523d0419c81aac81"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hashable primitive text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "1.0.0"; - sha256 = "e805be52d77edfb0e71740dbfa57403654cb34929083589d79d44757c01f80f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to generate IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.6"; - sha256 = "919767c06e23f4cb2024d21ee2c8a85ec49d3b48cff95dd43ddc88e03ffc6ceb"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, containers - , cryptonite, directory, filepath, memory, mtl, process, stdenv - , temporary, text, transformers, unordered-containers, uuid - , zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.9.1.0"; - sha256 = "53616435d1fef56a5ba3ad219e9ccf9d8845024b0f2cc5864575440078cc8424"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal containers cryptonite directory - filepath memory mtl process temporary text transformers - unordered-containers uuid zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.0.5"; - sha256 = "27e224e1323cdc56ae3b536283a133e7e2b8051e4c5dfa9505a8bd79992a0c8f"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.1"; - sha256 = "b0a8f935eb3b4613e74efce7a913592f72835194b8977271f35eb09c578b3b52"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-dcc" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, io-streams - , iproute, irc-ctcp, mtl, network, path, safe-exceptions, stdenv - , transformers, utf8-string - }: - mkDerivation { - pname = "irc-dcc"; - version = "2.0.1"; - sha256 = "6408a28733743d3463664677c5e3ad72e46c168799dad458988067039f25d2df"; - revision = "8"; - editedCabalFile = "1ya1bl8pdzbs3gxkq7hsyvkaajf8prrdhr1lx5hm9pi1nqsi879z"; - libraryHaskellDepends = [ - attoparsec base binary bytestring io-streams iproute irc-ctcp mtl - network path safe-exceptions transformers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JanGe/irc-dcc"; - description = "A DCC message parsing and helper library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.5"; - sha256 = "f2cd444b2be68402c773a4b451912817f06d33093aea691b42ebeed3630ff0c8"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ixset-typed" = callPackage - ({ mkDerivation, base, containers, deepseq, safecopy, stdenv, syb - , template-haskell - }: - mkDerivation { - pname = "ixset-typed"; - version = "0.4.0.1"; - sha256 = "a8d3655f4cebf66013363a4456287052391faad76f00f5b4001ba7d11073ac8c"; - revision = "1"; - editedCabalFile = "0kfklsbjn4gmx76vl7vm1s149f13h2p537930yaq8s2671lzc79p"; - libraryHaskellDepends = [ - base containers deepseq safecopy syb template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Efficient relational queries on Haskell sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.4"; - sha256 = "42aeb281fb62a08bbaca4b20801d55879b0688e25a92962158fbd0578bd21405"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.3"; - sha256 = "6bac08ad1a1ff7452a2963272f96f5de0a3df200fb3219dde6ee93e4963dd01c"; - revision = "3"; - editedCabalFile = "0f4gqssh2ayl089zzl8m5rwa66x430dg1q5hfwcfd56r6xr6wi1l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal#readme"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , haskell-src-exts, haskell-src-meta, mtl, parseargs, parsec - , regex-posix, safe, stdenv, syb, template-haskell, text - , unordered-containers, vector, wl-pprint-text - }: - mkDerivation { - pname = "jmacro"; - version = "0.6.15"; - sha256 = "fae43fec6f4ba9ebc1fbd5605fc1b65b1c80bb0869bcfcd80d417e6d82cb6cac"; - revision = "2"; - editedCabalFile = "0r16y3sk22vgrciaadrdzjd768mnh08s019ffgk5jma782nz9v7d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers haskell-src-exts haskell-src-meta - mtl parsec regex-posix safe syb template-haskell text - unordered-containers vector wl-pprint-text - ]; - executableHaskellDepends = [ - aeson base bytestring containers haskell-src-exts haskell-src-meta - mtl parseargs parsec regex-posix safe syb template-haskell text - unordered-containers vector wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuotation library for programmatic generation of Javascript code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring - , containers, contravariant, jmacro, mtl, scientific, split, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "jmacro-rpc"; - version = "0.3.3"; - sha256 = "ee912cdc6970ae6e71874e460eb40206f107371c2764f53777624a483cda1e3f"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-html bytestring containers - contravariant jmacro mtl scientific split text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/gershomb/jmacro"; - description = "JSON-RPC clients and servers using JMacro, and evented client-server Reactive Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro-rpc-snap" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, jmacro - , jmacro-rpc, mtl, snap-core, stdenv - }: - mkDerivation { - pname = "jmacro-rpc-snap"; - version = "0.3"; - sha256 = "48aea4a4ba90532ca105b6b274060a47a1c509b8346e0db1b61365c2a9e8dfeb"; - libraryHaskellDepends = [ - aeson base bytestring containers jmacro jmacro-rpc mtl snap-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/gershomb/jmacro-rpc"; - description = "Snap backend for jmacro-rpc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jni" = callPackage - ({ mkDerivation, base, bytestring, choice, constraints, containers - , cpphs, deepseq, inline-c, jdk, singletons, stdenv - }: - mkDerivation { - pname = "jni"; - version = "0.6.1"; - sha256 = "1f127bb9f8f7f5c5c105f0da8d444dc4926165ef1c6db9487bd54f8dd1dde1fc"; - libraryHaskellDepends = [ - base bytestring choice constraints containers deepseq inline-c - singletons - ]; - librarySystemDepends = [ jdk ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/inline-java/tree/master/jni#readme"; - description = "Complete JNI raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) jdk;}; - "jose" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, concise, containers, cryptonite, lens, memory - , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances - , safe, semigroups, stdenv, template-haskell, text, time - , unordered-containers, vector, x509 - }: - mkDerivation { - pname = "jose"; - version = "0.7.0.0"; - sha256 = "8cd90a1a205c2dd7d8ab5e37caf4889192820128f01f9164aaefc7a91d963914"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups template-haskell - text time unordered-containers vector x509 - ]; - executableHaskellDepends = [ aeson base bytestring lens mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-jose"; - description = "Javascript Object Signing and Encryption and JSON Web Token library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.7.8"; - sha256 = "d3e1693e28d2de4914011a4f573070b02a71c8e40c142c9ab8b00c8629c5f32b"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , pretty, stdenv, syb, text - }: - mkDerivation { - pname = "json"; - version = "0.9.2"; - sha256 = "e6bb16fa791cc3833ae7b459b7e7885c1c2b11b0d294b7e095287c54fa73738e"; - revision = "2"; - editedCabalFile = "093nsqc6nybrmh01kz92xambk7wv3k3m4s3qq076js8kjrmmp4qx"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec pretty syb text - ]; - doHaddock = false; - doCheck = false; - description = "Support for serialising Haskell to and from JSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-autotype" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, filepath - , GenericPretty, hashable, lens, mtl, optparse-applicative, pretty - , process, scientific, stdenv, text, uniplate, unordered-containers - , vector, yaml - }: - mkDerivation { - pname = "json-autotype"; - version = "2.0.0"; - sha256 = "c8f4a45a495e534d51d7c3b045894d586ca6d9d2602ffe3fd6418c84c81c3756"; - revision = "1"; - editedCabalFile = "00wbcq9bx6sq6i5756ja6pf016xbpk2kflq20ncdv76zycxdkqnm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers filepath GenericPretty hashable lens mtl - pretty process scientific text uniplate unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers filepath GenericPretty hashable - lens mtl optparse-applicative pretty process scientific text - uniplate unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Automatic type declaration for JSON input data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.3"; - sha256 = "a0c04b49c0f499070e2eb80784139f9a85729d4fdcfea15f71c099a634e1c623"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, json-rpc-server, mtl - , stdenv, text, unordered-containers, vector, vector-algorithms - }: - mkDerivation { - pname = "json-rpc-client"; - version = "0.2.5.0"; - sha256 = "5349f5c0b0fa8f6c5433152d6effc10846cfb3480e78c5aa99adb7540bcff49c"; - revision = "10"; - editedCabalFile = "19vf7gibvqgcm27b5n0ls4s7wi1kr87crn776ifqc9gbr2l9bfpi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring json-rpc-server mtl text unordered-containers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-client"; - description = "JSON-RPC 2.0 on the client side."; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.5"; - sha256 = "9f917ba4b01e1a439482cda9be9fff865043915067cc26571e3df682a3bf3ac0"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-rpc-server" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, mtl, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-server"; - version = "0.2.6.0"; - sha256 = "169e9997734bd1d7d07a13b5ae0223d5363c43de93b0d5fbb845a598f9eaccf5"; - revision = "7"; - editedCabalFile = "1fjkl0p5glkk01jny6ar62356pmp2a2vf9v1jq67ly3y14dcvywq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-server"; - description = "JSON-RPC 2.0 on the server side."; - license = stdenv.lib.licenses.mit; - }) {}; - "json-schema" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, containers - , generic-aeson, generic-deriving, mtl, scientific, stdenv, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "json-schema"; - version = "0.7.4.2"; - sha256 = "e872038810b6befd18cc6a29d315ad2099f81a112b71fa5a2662070c00636f25"; - revision = "1"; - editedCabalFile = "0pwmh48z54n0mrwzmgff95mwy1jbmy1rwsk5kmddby86f0j5873g"; - libraryHaskellDepends = [ - aeson base base-compat-batteries containers generic-aeson - generic-deriving mtl scientific text time unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Types and type classes for defining JSON schemas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "jvm" = callPackage - ({ mkDerivation, base, bytestring, choice, constraints - , distributed-closure, exceptions, jni, singletons, stdenv, text - , vector - }: - mkDerivation { - pname = "jvm"; - version = "0.4.2"; - sha256 = "70f1d6ecec95fc31e633158fd3e467c92d9165f54e8c4de44211d6759c9874fc"; - libraryHaskellDepends = [ - base bytestring choice constraints distributed-closure exceptions - jni singletons text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java/tree/master/jvm#readme"; - description = "Call JVM methods from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jvm-batching" = callPackage - ({ mkDerivation, base, bytestring, Cabal, distributed-closure - , inline-java, jni, jvm, singletons, stdenv, text, vector - }: - mkDerivation { - pname = "jvm-batching"; - version = "0.1.1"; - sha256 = "b837a1732970467aaa78489c4311a9c701abef87eccc523b9034a2b52f857d1b"; - setupHaskellDepends = [ base Cabal inline-java ]; - libraryHaskellDepends = [ - base bytestring distributed-closure inline-java jni jvm singletons - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java/tree/master/jvm-batching#readme"; - description = "Provides batched marshalling of values between Java and Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jvm-streaming" = callPackage - ({ mkDerivation, base, Cabal, distributed-closure, inline-java, jni - , jvm, jvm-batching, singletons, stdenv, streaming, vector - }: - mkDerivation { - pname = "jvm-streaming"; - version = "0.3.1"; - sha256 = "8d1b7c7e9b142a0e80bb7540082ff3bec0505ce82ea1dcc1f8c277f60215f94d"; - setupHaskellDepends = [ base Cabal inline-java jvm-batching ]; - libraryHaskellDepends = [ - base distributed-closure inline-java jni jvm jvm-batching - singletons streaming vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java/tree/master/jvm-streaming#readme"; - description = "Expose Java iterators as streams from the streaming package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jwt" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cryptonite - , data-default, http-types, memory, network-uri, scientific - , semigroups, stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "jwt"; - version = "0.7.2"; - sha256 = "17967413d21399596a236bc8169d9e030bb85e2b1c349c6e470543767cc20a31"; - revision = "1"; - editedCabalFile = "1q8h94yslw6k6zcjbwx94pnji8dcr2w5n1wzgzfb8hb78w2qr1dm"; - libraryHaskellDepends = [ - aeson base bytestring containers cryptonite data-default http-types - memory network-uri scientific semigroups text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; - description = "JSON Web Token (JWT) decoding and encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, free, invariant, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.2"; - sha256 = "6b727e586f744b96529415eeabc745dfe05feea61f6b6bad90c224c879f4dbd3"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive free invariant mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.0"; - sha256 = "d945ded925216b8f260c62c2fce593631d772bffa1f203550a6b9750ca3a81f1"; - revision = "2"; - editedCabalFile = "1bcc3kh6kndmkqi3vaxp27mg1qb7xbg1h8pgjc1kk1iawnhl930j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kansas-comet" = callPackage - ({ mkDerivation, aeson, base, containers, data-default-class - , scotty, stdenv, stm, text, time, transformers - , unordered-containers - }: - mkDerivation { - pname = "kansas-comet"; - version = "0.4"; - sha256 = "1f1a4565f2e955b8947bafcb9611789b0ccdf9efdfed8aaa2a2aa162a07339e1"; - revision = "18"; - editedCabalFile = "0yxgndvrashc0cp3zv39gjrzw7p53g0k51p13q67nqnpxhh05w2k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base containers data-default-class scotty stm text time - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/kansas-comet/"; - description = "A JavaScript push mechanism based on the comet idiom"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12.1"; - sha256 = "7fcea48187df82c02c159dea07a581cddf371023e6a3c34de7fa69a8ef2315fb"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kleene" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, lattices - , MemoTrie, QuickCheck, range-set-list, regex-applicative, stdenv - , step-function, text, transformers - }: - mkDerivation { - pname = "kleene"; - version = "0"; - sha256 = "c652aecfb2a42fec6b7cc0135fe95764a27fe099c6934071ef5fa55075cd0b02"; - revision = "1"; - editedCabalFile = "1izdmr7a2d7qssnj732m2qc02inm3hrc882x9nyvz68648pvwwsx"; - libraryHaskellDepends = [ - base base-compat-batteries containers lattices MemoTrie QuickCheck - range-set-list regex-applicative step-function text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/kleene"; - description = "Kleene algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "kraken" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, mtl, stdenv - }: - mkDerivation { - pname = "kraken"; - version = "0.1.0"; - sha256 = "335ce7cb85f7d3ed71eb067ad9642d13d2ca1d62ce8670596c8b69aacc27828a"; - revision = "2"; - editedCabalFile = "141qx2fb3dimv20qsl2q1bagwcn9i0r72z2ha1w7191m557in319"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls mtl - ]; - doHaddock = false; - doCheck = false; - description = "Kraken.io API client"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lackey" = callPackage - ({ mkDerivation, base, servant, servant-foreign, stdenv, text }: - mkDerivation { - pname = "lackey"; - version = "1.0.5"; - sha256 = "c3e53667fcdc74b0d6cec072de9fc9440a045927d99a282e5cb3e923efc5b147"; - libraryHaskellDepends = [ base servant servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby clients from Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "lambdabot-core" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , dependent-map, dependent-sum, dependent-sum-template, directory - , edit-distance, filepath, haskeline, hslogger, HTTP, lifted-base - , monad-control, mtl, network, parsec, prim-uniq, random, random-fu - , random-source, regex-tdfa, SafeSemaphore, split, stdenv, syb - , template-haskell, time, transformers, transformers-base, unix - , utf8-string, zlib - }: - mkDerivation { - pname = "lambdabot-core"; - version = "5.1.0.2"; - sha256 = "c104f2294b1a4436c96c17616056335ef91137ff45de837732813515d7c40cd8"; - revision = "2"; - editedCabalFile = "0mxi1r6zmdkywjsl6hzzin0vl8rq327bhdzy60fr6hhl4h5fwww5"; - libraryHaskellDepends = [ - base binary bytestring containers dependent-map dependent-sum - dependent-sum-template directory edit-distance filepath haskeline - hslogger HTTP lifted-base monad-control mtl network parsec - prim-uniq random random-fu random-source regex-tdfa SafeSemaphore - split syb template-haskell time transformers transformers-base unix - utf8-string zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Lambdabot"; - description = "Lambdabot core functionality"; - license = "GPL"; - }) {}; - "lambdabot-irc-plugins" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , lambdabot-core, lifted-base, mtl, network, SafeSemaphore, split - , stdenv, time - }: - mkDerivation { - pname = "lambdabot-irc-plugins"; - version = "5.1.0.1"; - sha256 = "4e50f2430da752ac36e23cf87ce5b2db9e42cf2e76b48447d2fbc882cdeab1ab"; - libraryHaskellDepends = [ - base bytestring containers directory filepath lambdabot-core - lifted-base mtl network SafeSemaphore split time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Lambdabot"; - description = "IRC plugins for lambdabot"; - license = "GPL"; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, directory - , exceptions, filepath, mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.1.1"; - sha256 = "b36009a35c02f7f18b4ba91d9ead7e5b47aef4eb5c0d014d4d60dd0bddfd6548"; - revision = "4"; - editedCabalFile = "0r364limqm570a8xd82wwpcvmcx2j7nfndg5kad022vz2v5n0smz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class directory exceptions filepath - text transformers wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.8.2"; - sha256 = "b729d3b2263b0f029a66c37ae1c05b86b68bad1cde6c0b407bfd5201b91fce15"; - revision = "2"; - editedCabalFile = "074mypdymg7543waq68c72viw912w94v94y1287sp67lzwpyiixd"; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath pretty - process syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2"; - sha256 = "eb319b4d1154f88f4d0f8817c85efad34c14d774c47d4c9193c89c9064cb8695"; - revision = "1"; - editedCabalFile = "099w1lln1vm000sf06wrmq6gya5sx2w4flrlwqz2c8wwvv8c9j9h"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-docker" = callPackage - ({ mkDerivation, base, bytestring, containers, free, megaparsec - , mtl, prettyprinter, split, stdenv, template-haskell, text - , th-lift, time - }: - mkDerivation { - pname = "language-docker"; - version = "6.0.4"; - sha256 = "8111f95648723df0a31fbf0424536e24dbe3a95996c013aed8f1c0a03ac534af"; - revision = "2"; - editedCabalFile = "10f734lnj48wj9g59k2mj3fkdy7ckpi201058mfn3jlm35azv2fr"; - libraryHaskellDepends = [ - base bytestring containers free megaparsec mtl prettyprinter split - template-haskell text th-lift time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hadolint/language-docker#readme"; - description = "Dockerfile parser, pretty-printer and embedded DSL"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "language-ecmascript" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, charset, containers - , data-default-class, Diff, mtl, parsec, QuickCheck, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "language-ecmascript"; - version = "0.19"; - sha256 = "570a4b7bdebf4532e9c059f2afa7575247be2b7f539361995297308c387c658f"; - revision = "2"; - editedCabalFile = "1xj5h5ajybq4pwlw8zsn1lb920km1pcdv20apbpa7pgi39zcpzfd"; - libraryHaskellDepends = [ - ansi-wl-pprint base charset containers data-default-class Diff mtl - parsec QuickCheck template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jswebtools/language-ecmascript"; - description = "JavaScript parser and pretty-printer library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.6.0.11"; - sha256 = "d4756e9bc9a180cb93701e964a3157a03d4db4c7cb5a7b6b196067e587cc6143"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, base-compat, Cabal, deepseq, lens, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.1.0.1"; - sha256 = "f0147300724ac39ce388cd6cd717ac3ccc6ed1884ffaafebb18d0f3021e01acf"; - revision = "1"; - editedCabalFile = "1zv12p4ralrks0517zs52rzmzmsxxkcxkqz7zijfgcsvh6bsmafi"; - libraryHaskellDepends = [ - base base-compat Cabal deepseq lens pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and useful functions to represent and manipulate the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-puppet" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base16-bytestring, bytestring, case-insensitive, containers - , cryptonite, directory, exceptions, filecache, filepath - , formatting, Glob, hashable, hruby, hslogger, hspec, http-api-data - , http-client, lens, lens-aeson, megaparsec, memory, mtl - , operational, optparse-applicative, parallel-io, parsec - , pcre-utils, process, protolude, random, regex-pcre-builtin - , scientific, servant, servant-client, split, stdenv, stm - , strict-base-types, text, time, transformers, unix - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "language-puppet"; - version = "1.3.20.1"; - sha256 = "7aa750993d72e672595b9c6cff04aad557f4f8f8fb89bc0e53d93a73d10e533d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring - case-insensitive containers cryptonite directory exceptions - filecache filepath formatting hashable hruby hslogger hspec - http-api-data http-client lens lens-aeson megaparsec memory mtl - operational parsec pcre-utils process protolude random - regex-pcre-builtin scientific servant servant-client split stm - strict-base-types text time transformers unix unordered-containers - vector yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint base bytestring containers Glob hslogger - http-client lens megaparsec mtl optparse-applicative parallel-io - regex-pcre-builtin strict-base-types text transformers - unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "Tools to parse and evaluate the Puppet DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-carray" = callPackage - ({ mkDerivation, base, carray, lapack-ffi, netlib-carray - , netlib-ffi, stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "lapack-carray"; - version = "0.0.2"; - sha256 = "ca3a3d99016b7428b3781142ca2ab96eb2ad3318257a3dedaa41f8c2e0aa24b7"; - libraryHaskellDepends = [ - base carray lapack-ffi netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-carray/"; - description = "Auto-generated interface to Fortran LAPACK via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.1"; - sha256 = "739b40bdd776a057ab272195f54a8ef76534abd780076f48a02dca356b3270f8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "large-hashable" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytes, bytestring - , containers, scientific, stdenv, strict, template-haskell, text - , time, transformers, unordered-containers, utf8-light, vector - , void - }: - mkDerivation { - pname = "large-hashable"; - version = "0.1.0.4"; - sha256 = "e9c3345d9fa0161f1b809f2c57e00b4c687ebd48ea42623fe480cc85339a628e"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytes bytestring containers scientific - strict template-haskell text time transformers unordered-containers - utf8-light vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/large-hashable"; - description = "Efficiently hash (large) Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.4"; - sha256 = "1c2a8b9cefebc3ce5493071670d9c71e4fc30d6527d6a6c92174ce4c39a0a082"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , semigroupoids, stdenv, tagged, universe-base - , universe-reverse-instances, unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "1.7.1.1"; - sha256 = "797c89a34c6d631f76ff3bf342275f090ebceb705d6ad69c1a4108582b14ddaf"; - revision = "2"; - editedCabalFile = "0qxz4v5pqwvhb79mz4b7wc66r2c0xc9ixfhss4h56jk3vb1hriys"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable semigroupoids tagged - universe-base universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lawful" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "lawful"; - version = "0.1.0.0"; - sha256 = "0056794106bbf7fa4d8d4d943fdc75a39b8a5ac1e18ceac2909183a1a7cc8d04"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/lawful#readme"; - description = "Assert the lawfulness of your typeclass instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.7.7"; - sha256 = "6d2f821ac40ff79e651207ce75cf1427bf107970a738023dbb4f397bf8d0bf7a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Enumerative property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "learn-physics" = callPackage - ({ mkDerivation, base, gloss, gnuplot, hmatrix, not-gloss - , spatial-math, stdenv, vector-space - }: - mkDerivation { - pname = "learn-physics"; - version = "0.6.3"; - sha256 = "304738d5b58842f396739349a2d1cdba73b978f7e7633f78dcda0d93e8280c5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base gloss gnuplot hmatrix not-gloss spatial-math vector-space - ]; - executableHaskellDepends = [ - base gloss gnuplot not-gloss spatial-math - ]; - doHaddock = false; - doCheck = false; - description = "Haskell code for learning physics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat, type-equality - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.18.1"; - sha256 = "3107a3d5165a9762269d7c9e39205d2c4c2aaebc1900ff44a0066c31a492bdd2"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat type-equality - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.3"; - sha256 = "06848a6c7f217c3dd3228633bedc9a73b2cce139c1a6dff61af0994d410a98e0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.0.2"; - sha256 = "4311f035caa39db3a70915a165bcbfb55ad22376085d95a9b4f57c58994702cc"; - revision = "6"; - editedCabalFile = "1pg5v8fnlqw1krgi3d2a03a0zkjjdv5yp5f5z6q4mlb5jldz99a8"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "1.2.3"; - sha256 = "8059e2b7a917e0108861ca795b0adfbb0bf1db5b1bdb55e677256a37d8de0e29"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "1.2.3"; - sha256 = "914f5f077d7bed8a93866ac696e69c35bb8d0fbe81314236288b057941703901"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.2"; - sha256 = "9c275afad37a5064b9a13c6207ee2307f6ccccc3a5517c0fae84524bad65b0e6"; - revision = "1"; - editedCabalFile = "06sbynlrbqb51rn392w1q82qww1f6k8mmw1npgla2wc6s39k4977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-labels" = callPackage - ({ mkDerivation, base, ghc-prim, profunctors, stdenv, tagged }: - mkDerivation { - pname = "lens-labels"; - version = "0.2.0.2"; - sha256 = "9caec8ff8f0272308ee955dce94b1798a237da5a2405eb7c489e4ed6279d43e8"; - libraryHaskellDepends = [ base ghc-prim profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Integration of lenses with OverloadedLabels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-misc" = callPackage - ({ mkDerivation, base, lens, stdenv, tagged, template-haskell }: - mkDerivation { - pname = "lens-misc"; - version = "0.0.2.0"; - sha256 = "59925fe9125e297df0f1afcc8ac0f25de14fd017f7848ac2687ed63850ecd8cb"; - libraryHaskellDepends = [ base lens tagged template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/lens-misc#readme"; - description = "Miscellaneous lens utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.0"; - sha256 = "4954b3ae395661e916c536bfe837c42a1cd8223ea81ffd86b1fdd9b6abfc5142"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-simple" = callPackage - ({ mkDerivation, base, lens-family, lens-family-core - , lens-family-th, mtl, stdenv, transformers - }: - mkDerivation { - pname = "lens-simple"; - version = "0.1.0.9"; - sha256 = "613d99b8074197f8a026a641a9940dd188e0d81e808169f420981a9ca15b832a"; - libraryHaskellDepends = [ - base lens-family lens-family-core lens-family-th mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michaelt/lens-simple"; - description = "simplified import of elementary lens-family combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.3.0.0"; - sha256 = "632232db41f7c49359f37ed541bbbbe99f74d45c1cf583d1081b83af426a439d"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale, stdenv - , text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.0.8"; - sha256 = "582b0a405e39148d3a5046e8ad00c9e217688e60c70393eb36cd651e1991ed4e"; - revision = "1"; - editedCabalFile = "0fyb5wzazhkych0glklcdy2c4nzsk7vy6ijawr4r6qdxmdg01spy"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "libxml-sax" = callPackage - ({ mkDerivation, base, bytestring, libxml2, stdenv, text, xml-types - }: - mkDerivation { - pname = "libxml-sax"; - version = "0.7.5"; - sha256 = "99141784cc0d6c5749f0df618b2d46922391eede09f4f9ccfc36fb58a9c16d51"; - libraryHaskellDepends = [ base bytestring text xml-types ]; - librarySystemDepends = [ libxml2 ]; - libraryPkgconfigDepends = [ libxml2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-libxml/"; - description = "Bindings for the libXML2 SAX interface"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libxml2;}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.1"; - sha256 = "ab05fa889e52ae0cbefcde33a56602e69bd6e656e9d5511c1def7ffc10075862"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.2"; - sha256 = "0e9fbd17cd3e1af6ef1e994e7c14cfd42896e56499864e707f72246b6e2b604e"; - revision = "3"; - editedCabalFile = "0ackkmjfqxyxhy9w03zlqvmi68la9yv4jf0sc8qdhyr5y30ac68s"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.3"; - sha256 = "83d09c355cf7c5d35f179f6f084524f451966ed29beac721f0500ee607822b8c"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "line" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptohash-sha256, http-conduit, http-types, scotty, stdenv, text - , time, transformers, wai - }: - mkDerivation { - pname = "line"; - version = "4.0.1"; - sha256 = "a1dfab5dcd078747920fc61a024eb096a554f465d57c8bc642c155150f41667c"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptohash-sha256 - http-conduit http-types scotty text time transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/utatti/line"; - description = "Haskell SDK for the LINE API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.8"; - sha256 = "5ebd1b99837f2e3c7386bcd2ca425d9c66b09a61409792b141428345fb9edb10"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linked-list-with-iterator" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "linked-list-with-iterator"; - version = "0.1.1.0"; - sha256 = "c6ae37cc9d123afcb92f28fef9c5dae6d3713489bdf7f73ac9af420bb3f11b89"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/CindyLinz/Haskell-linked-list-with-iterator#readme"; - description = "A pure linked list which is mutable through iterators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.0"; - sha256 = "1412db341c574b6a18e2fa23ee5e3ca6f32719409ea602a6215f1fd0aafb73e7"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Work with linux namespaces: create new or enter existing ones"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.1"; - sha256 = "c3438dde9d22e882ccdad091eb9c6f95706e9d564a57d5f845e991e706436773"; - revision = "1"; - editedCabalFile = "0jv0wxxr6rpw9mi3n6jbjqlk403wzycyafrc26vcwkdjaw63ckxb"; - libraryHaskellDepends = [ - base mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , containers, exceptions, llvm-config, llvm-hs-pure, mtl, stdenv - , template-haskell, transformers, utf8-string - }: - mkDerivation { - pname = "llvm-hs"; - version = "6.3.0"; - sha256 = "4d9e74b6ab369d4d3abe8395bda47a395d0c44c9bcbc0be9f94a6a76811b6183"; - revision = "2"; - editedCabalFile = "08rm1y7icxp2bdmv65n5nxg5mkppqpqd3m62n50gk6991kki9qdf"; - setupHaskellDepends = [ base Cabal containers ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers exceptions llvm-hs-pure - mtl template-haskell transformers utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "General purpose LLVM bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "llvm-hs-pretty" = callPackage - ({ mkDerivation, array, base, bytestring, llvm-hs-pure - , prettyprinter, stdenv, text - }: - mkDerivation { - pname = "llvm-hs-pretty"; - version = "0.5.0.0"; - sha256 = "0dca50bf44df9128fe6f4ad0ed09281c1fc4e615ceac390b2197d2f7f8e9259c"; - libraryHaskellDepends = [ - array base bytestring llvm-hs-pure prettyprinter text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/llvm-hs/llvm-hs-pretty"; - description = "A pretty printer for LLVM IR"; - license = stdenv.lib.licenses.mit; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "6.2.1"; - sha256 = "7908a944616107142a804b5e4a9772c12358b3bd78de3ddb91a63d82cdfb3da9"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.0.2"; - sha256 = "819372c454adb5948329d265e5d7e7293970444f396618bc6bd62fbeac687f18"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "locators" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptohash, stdenv - }: - mkDerivation { - pname = "locators"; - version = "0.2.4.4"; - sha256 = "2d6d0940206e285a086ea66c7b5f8b3a082fa629a8d335323dbbf78547e09aa5"; - libraryHaskellDepends = [ base bytestring containers cryptohash ]; - doHaddock = false; - doCheck = false; - description = "Human exchangable identifiers and locators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.7.4.0"; - sha256 = "4067eba80db49eb4509c10770959d0350f9eb9df5e0bde2fbf9024f106dc3f1b"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.12"; - sha256 = "7191cba40b9b348c54171f2b86caabb75a30e52b6d7e4c57321bf5dcdf1f367e"; - revision = "4"; - editedCabalFile = "1z7p87dl1rj0v2gnfwfa7zmgaxccd093hvjkijc56whyg4b4az4y"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-postgres" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , bytestring, deepseq, hpqtypes, http-client, lifted-base, log-base - , mtl, semigroups, split, stdenv, text, text-show, time - , unordered-containers, vector - }: - mkDerivation { - pname = "log-postgres"; - version = "0.7.0.2"; - sha256 = "51c60374838cbd89d027cde9cdf2d8982b4f4152befe76899085520922e5639b"; - revision = "3"; - editedCabalFile = "1m16y1g9vaan5vcm9krqfppwc0zisi005d0ckqbwga3vyyw58lwl"; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring bytestring deepseq - hpqtypes http-client lifted-base log-base mtl semigroups split text - text-show time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (PostgreSQL back end)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logger-thread" = callPackage - ({ mkDerivation, base, fast-logger, protolude, safe-exceptions - , stdenv, stm, text, time - }: - mkDerivation { - pname = "logger-thread"; - version = "0.1.0.2"; - sha256 = "ac0a54001a69cff6f975209c4d9d399fb58ef59bb0ad6ac742c5ffedeac04a2a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base fast-logger protolude safe-exceptions stm text time - ]; - executableHaskellDepends = [ base protolude stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joe9/logger-thread#readme"; - description = "Run FastLogger in a thread and direct all queued messages to it"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base, unliftio-core - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.3"; - sha256 = "996ae52b545d1e86ffd08c25ace247c90cf437ebdbbafd4879f587ad207cf182"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.6.0.2"; - sha256 = "1182b68e8d00279460c7fb9b8284bf129805c07754c678b2a8de5a6d768e161e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dolio/"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "lrucache" = callPackage - ({ mkDerivation, base, containers, contravariant, stdenv }: - mkDerivation { - pname = "lrucache"; - version = "1.2.0.0"; - sha256 = "5f17a9e026e198152d13830a0eae0df21be437c238a3f157f7c188fe27a37616"; - libraryHaskellDepends = [ base containers contravariant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chowells79/lrucache"; - description = "a simple, pure LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.11"; - sha256 = "8ca524b9ca7984a83b18916b0c9dfb79002cb3bbe88f5139f68bfbe46010bf8f"; - revision = "1"; - editedCabalFile = "10k3x9cn4a23kqk909xiv8phkfgagf7p16qlfpr9swn1dn4xasgf"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.1.0.1"; - sha256 = "5cc5e269c313cba6871b70d48825e6b63ae49db91d507b7f9dccc10bf12dcb73"; - revision = "1"; - editedCabalFile = "030mj3yddbia6dkbl8d6mssi42l3z8gs79z50r78gwiif6mh5dny"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid"; - license = stdenv.lib.licenses.mit; - }) {}; - "lxd-client-config" = callPackage - ({ mkDerivation, aeson, base, containers, directory, filepath - , stdenv, text, yaml - }: - mkDerivation { - pname = "lxd-client-config"; - version = "0.1.0.1"; - sha256 = "903852c99bebc0af3cc3a26734056003f9097ada08eb1f361abce097a120afcf"; - libraryHaskellDepends = [ - aeson base containers directory filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-lxd-client-config#readme"; - description = "Read the configuration file of the standard LXD client"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "lz4" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "lz4"; - version = "0.2.3.1"; - sha256 = "98cc62bea1a359201f9e39a7db2457272f996ede25d97a2dbee3a07aa80693f1"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mwotton/lz4hs"; - description = "LZ4 compression for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.6.4"; - sha256 = "72de2b2e27cb36832ec4a66de36f1ba6c53d2abd197b7f0351865b4567db7768"; - revision = "2"; - editedCabalFile = "1h0qq6kxv4kc0j0rmx7rhwhvfg1hc08r10q152km4p8kgshcwlig"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, machines, stdenv }: - mkDerivation { - pname = "machines-binary"; - version = "0.3.0.3"; - sha256 = "60ff456d658ea1a427f32ee5ae1c726e2e7703942bd33edf28b457d753c20652"; - libraryHaskellDepends = [ base binary bytestring machines ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-binary"; - description = "Binary utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-directory" = callPackage - ({ mkDerivation, base, directory, filepath, machines, machines-io - , stdenv, transformers - }: - mkDerivation { - pname = "machines-directory"; - version = "0.2.1.0"; - sha256 = "849c07db6ff6cfd88348d228a7a3f8ccb16e99568230ee0d20faa5670474deb4"; - libraryHaskellDepends = [ - base directory filepath machines machines-io transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-directory"; - description = "Directory (system) utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-io" = callPackage - ({ mkDerivation, base, bytestring, chunked-data, machines, stdenv - , transformers - }: - mkDerivation { - pname = "machines-io"; - version = "0.2.0.13"; - sha256 = "4d579d5e9e94fafcfca91322734263498999d2e2af45c40ff0d1db78f4a8f5d4"; - libraryHaskellDepends = [ - base bytestring chunked-data machines transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-io"; - description = "IO utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "magicbane" = callPackage - ({ mkDerivation, aeson, aeson-qq, attoparsec, base, bytestring - , conduit, conduit-combinators, data-default, data-has, ekg-core - , ekg-wai, envy, errors, exceptions, fast-logger, http-api-data - , http-client, http-client-tls, http-conduit, http-link-header - , http-types, lifted-base, monad-control, monad-logger - , monad-metrics, mono-traversable, mtl, network-uri, raw-strings-qq - , refined, rio, rio-orphans, servant-server, split, stdenv - , string-conversions, text, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers, wai, wai-cli - , wai-middleware-metrics - }: - mkDerivation { - pname = "magicbane"; - version = "0.3.0"; - sha256 = "20d334206f75bc4d569ec6c55991ccda8bdd00b1a27f0e2bb8ed190222ace6c9"; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base bytestring conduit - conduit-combinators data-default data-has ekg-core ekg-wai envy - errors exceptions fast-logger http-api-data http-client - http-client-tls http-conduit http-link-header http-types - lifted-base monad-control monad-logger monad-metrics - mono-traversable mtl network-uri raw-strings-qq refined rio - rio-orphans servant-server split string-conversions text - transformers transformers-base unliftio unliftio-core - unordered-containers wai wai-cli wai-middleware-metrics - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/magicbane#readme"; - description = "A web framework that integrates Servant, RIO, EKG, fast-logger, wai-cli…"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.1.0.0"; - sha256 = "ac09d9c0ac602252d7baef90ef87933b66469f18522e014c475bbe365daa4f69"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7"; - sha256 = "11777bd365251813c512a3e17e0303b30f2a86411a12118751858cbb20dbeaf7"; - revision = "1"; - editedCabalFile = "1apyqnbcsbjfkqc1d6mk74pxl12130r6ijwhj555gddls9g0qdf3"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.6"; - sha256 = "f1a70a23c0866b75d609b2c818b426712d7a2b4256f43a3d5da517e853e279cd"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mapquest-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, goggles, mtl - , req, stdenv, text - }: - mkDerivation { - pname = "mapquest-api"; - version = "0.3.1"; - sha256 = "43339221b91816e8f793a98a4d281285e8e9de8788f13bb30ec345ef855a7b85"; - libraryHaskellDepends = [ - aeson base bytestring exceptions goggles mtl req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mapquest-api"; - description = "Bindings to the MapQuest API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.4"; - sha256 = "c2e3e742be2b4af6ed62be262cab59d2366556e120b1f8856cff6e7ef270fdd4"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "marvin-interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "marvin-interpolate"; - version = "1.1.2"; - sha256 = "d640c3bc2f70e17d1fb23c914a3d19b11f72568fda5d5c52e52c1de2e940eccf"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://marvin.readthedocs.io/en/latest/interpolation.html"; - description = "Compile time string interpolation a la Scala and CoffeeScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , ghc-prim, primitive, stdenv, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.2.2.0"; - sha256 = "6cc1e7eda0db0a420e0183cf5fdb878e100526caf96dabb8a02c82039a1986d7"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq ghc-prim primitive - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq, directory - , filepath, JuicyPixels, massiv, netpbm, process, stdenv, vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.4.0"; - sha256 = "8c118ca171008d92cf4f68a3504e328d6b557afeeb4d4cff9fa9a4cace0b5079"; - libraryHaskellDepends = [ - base bytestring data-default deepseq directory filepath JuicyPixels - massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector - , vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.2.1.0"; - sha256 = "f71b5598de453546396a3f5f7f6ce877fffcc996639b7569d8628cae97da65eb"; - libraryHaskellDepends = [ - base deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Special functions and Chebyshev polynomials"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.4.5"; - sha256 = "2d396f130d675eabaa435caba122fe2b2c1d2dfc5343471131b7392e479b7397"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.0.8"; - sha256 = "5e41aa81abdfd6062dc4607ea7c684b9ac09a286d2ebf76829504acf09260a77"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox-utility" = callPackage - ({ mkDerivation, base, bytestring, hsemail, non-empty, old-time - , parsec, spreadsheet, stdenv, utility-ht - }: - mkDerivation { - pname = "mbox-utility"; - version = "0.0.1"; - sha256 = "e5e009f83c95b20d85c4b39d233b2f32ee15eae08d54edbaa7928848ae15e9f8"; - revision = "1"; - editedCabalFile = "0lhka293xbgsjs7sb3yrck6q7vw4dfdhpmpalc7s9az1mj4l4mjz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring hsemail non-empty old-time parsec spreadsheet - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "List contents of an mbox file containing e-mails"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbtiles" = callPackage - ({ mkDerivation, base, bytestring, directory, monad-control, mtl - , resource-pool, sqlite-simple, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "mbtiles"; - version = "0.6.0.0"; - sha256 = "b8a82f0a1c551a59961449587f031f679dd2f5f082ce45b6f7d88d81f99ad62f"; - libraryHaskellDepends = [ - base bytestring directory monad-control mtl resource-pool - sqlite-simple text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/mbtiles#readme"; - description = "Haskell MBTiles client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbug" = callPackage - ({ mkDerivation, base, bytestring, directory, extra, formatting - , http-client, http-client-tls, mtl, optparse-applicative, process - , scalpel-core, stdenv, tagsoup, text, time, xdg-basedir - }: - mkDerivation { - pname = "mbug"; - version = "1.3"; - sha256 = "21450dc132fa7a30805ba5a72012c9fc4a0560233dc2930e092b63d1bcaf43dd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/iu-guest/mbug"; - description = "download bugs mailboxes"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "med-module" = callPackage - ({ mkDerivation, base, bytestring, stdenv, storable-endian - , transformers, utility-ht - }: - mkDerivation { - pname = "med-module"; - version = "0.1.1"; - sha256 = "f78974fba8f8d17267297b268b84cf7434f51f5d2ad106a461f225f1d873eee3"; - revision = "1"; - editedCabalFile = "05fbglb1f260p2h5x16i3ybkh1r0bks0054jzasam9gv33yv1amw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring storable-endian transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Parse song module files from Amiga MED and OctaMED"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mega-sdist" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , http-conduit, optparse-simple, rio, rio-orphans, stdenv - , tar-conduit, yaml - }: - mkDerivation { - pname = "mega-sdist"; - version = "0.3.3.1"; - sha256 = "9c27f3f84bfdb48ee6c85e17201893a8767f3f5b28d8f282b60ca018522d965c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring conduit conduit-extra http-conduit optparse-simple - rio rio-orphans tar-conduit yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mega-sdist#readme"; - description = "Handles uploading to Hackage from mega repos"; - license = stdenv.lib.licenses.mit; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "6.5.0"; - sha256 = "bebdef43c6b857b8c494de79bcd2399ef712c403ee1353e5481db98b8f7f2f8a"; - revision = "5"; - editedCabalFile = "1gxw58ccng85xk44z3vpw28y3msay9b0848xz435m5hyydqm82si"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.14.18"; - sha256 = "f5458d170a291788ac8da896bb44b0cc84021c99dd596c52adf2f7a7f6c03507"; - revision = "2"; - editedCabalFile = "1kwlgsjxh4ncvc6x9rps82bm55qyzn8lvzg49s4rbyc7vjjsbmx6"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.1"; - sha256 = "f9e398ec0256b065de94f9412de6d164bd6fc425ad64d407d513db232602bb40"; - revision = "2"; - editedCabalFile = "093c8afmcrnbfliz1ykpyc4w40dli2wig0qi0xcwg8445idwp2kg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "messagepack" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , stdenv - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.4"; - sha256 = "939590c05d5b0831b3b4796f2e1a070e290982c92b2009f2aa1ef5f4b05b5d7c"; - revision = "2"; - editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rodrigosetti/messagepack"; - description = "Serialize instance for Message Pack Object"; - license = stdenv.lib.licenses.mit; - }) {}; - "messagepack-rpc" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, messagepack - , network-simple, stdenv - }: - mkDerivation { - pname = "messagepack-rpc"; - version = "0.5.1"; - sha256 = "aa7960644668284e6add36e5c305af2c6d3ebf0a9a2c3fcd62529554a049a0bc"; - revision = "1"; - editedCabalFile = "05p6naaxswmsc3w7k67ydzzwyn60ymp0jbrc0f66p2sajvlnviax"; - libraryHaskellDepends = [ - base bytestring cereal containers messagepack network-simple - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/rodrigosetti/messagepack-rpc"; - description = "Message Pack RPC over TCP"; - license = stdenv.lib.licenses.mit; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microformats2-parser" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base - , base-compat, blaze-html, blaze-markup, bytestring, containers - , data-default, either, errors, html-conduit, lens-aeson, network - , network-uri, options, pcre-heavy, safe, scotty, stdenv, tagsoup - , text, time, transformers, unordered-containers, vector, wai-cli - , wai-extra, xml-lens, xss-sanitize - }: - mkDerivation { - pname = "microformats2-parser"; - version = "1.0.1.9"; - sha256 = "50c71d9cd57991011855ad16759a6d43f56abc0e7424475db5263c5f04e2abd3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base base-compat blaze-markup bytestring - containers data-default either errors html-conduit lens-aeson - network-uri pcre-heavy safe tagsoup text time transformers - unordered-containers vector xml-lens xss-sanitize - ]; - executableHaskellDepends = [ - aeson aeson-pretty base base-compat blaze-html blaze-markup - data-default network network-uri options scotty text wai-cli - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/microformats2-parser"; - description = "A Microformats 2 parser"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.9.1"; - sha256 = "a1401c6f92c142bafea4cf58a1d99cc34af285df808b97f5b64af4bb81fb5648"; - revision = "1"; - editedCabalFile = "0k76wf341lx1w5ays2bar2vd6f9dv9h7wjcnaxps00a6w3c4qpmp"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0"; - sha256 = "f2f28288bfc190127423a452514d35f7b66f9d5625cf6653bb34cb020aa450c5"; - revision = "2"; - editedCabalFile = "1ri98vr3bbx0l9b4vpmcwhf8fm5lgj92kw4g0v3jx6xajwwc5dc8"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, contravariant, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.2"; - sha256 = "b57848cf35305f972f450fb6fb743605a9e82a818f3549f06cdfe5d336c4c9db"; - libraryHaskellDepends = [ base contravariant microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.9.1"; - sha256 = "324b83619921cd0e8210c11be37ec8b1ff7dbc470c1c9acace3171fed17b3c0e"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.1.11.1"; - sha256 = "d3e74f46a72aad12b71d8549a98fbc023fb364766f17d75742fb32fee70bdf50"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.3.10"; - sha256 = "9b7fe59900ee35af9b070d154e9505b9f5c1953a95437c588f00cbe45e8596b4"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "Feature-complete microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.3.4"; - sha256 = "e95040257279155d5a8f537313138216d28f6f7056a1257c60cc0382c2ef9121"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "microspec"; - version = "0.1.0.0"; - sha256 = "e1e4156574d81786e1c8d04ba22e7283001ef3eada3104a99e9c31a45656d343"; - revision = "1"; - editedCabalFile = "0cnfj3v6fzck57bgrsnmgz8a9azvz04pm3hv17fg12xzchmp07cq"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "milena" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, digest, lens - , lifted-base, monad-control, mtl, murmur-hash, network, random - , resource-pool, semigroups, stdenv, transformers, zlib - }: - mkDerivation { - pname = "milena"; - version = "0.5.2.3"; - sha256 = "bcc82c4e546a48553983f4620d313d26518616163ea986c0b30edcd18cec6b68"; - libraryHaskellDepends = [ - base bytestring cereal containers digest lens lifted-base - monad-control mtl murmur-hash network random resource-pool - semigroups transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adamflott/milena.git#readme"; - description = "A Kafka client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.4.14"; - sha256 = "9632c3d54c9741fece0a3ea705d965485a1299ebe5798d2aa7cca2c8e4baaa3e"; - revision = "1"; - editedCabalFile = "14zadyz63gjpf58h6v36w3jwwpxpg86czw19r4211wprqfclvr92"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.8"; - sha256 = "a88b14a27cb03a0193b1d7afdbfcded82f3aff3eec2e20fd3f41794190a08c91"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.1.6.1"; - sha256 = "94677b454b86a47d1b04ef1462873708976546bbb7a3bcc4f3ffe222d98bb844"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "minio-hs" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, directory, filepath, http-client - , http-conduit, http-types, ini, memory, protolude, resourcet - , stdenv, text, time, transformers, unliftio, unliftio-core - , xml-conduit - }: - mkDerivation { - pname = "minio-hs"; - version = "1.2.0"; - sha256 = "311494977fdab5f112807b13d485542c5b57147039063ad57c09bc1367541093"; - configureFlags = [ "-f-live-test" ]; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive conduit - conduit-extra containers cryptonite cryptonite-conduit directory - filepath http-client http-conduit http-types ini memory protolude - resourcet text time transformers unliftio unliftio-core xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minio/minio-hs#readme"; - description = "A Minio Haskell Library for Amazon S3 compatible cloud storage"; - license = stdenv.lib.licenses.asl20; - }) {}; - "minisat-solver" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "minisat-solver"; - version = "0.1"; - sha256 = "c12098dee034afb98b31ce7ac346398b93a3537c11e30e7573d25160120fd37d"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mathstat.dal.ca/~selinger/minisat-solver/"; - description = "High-level Haskell bindings for the MiniSat SAT solver"; - license = stdenv.lib.licenses.mit; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, ghc-prim, minimorph - , stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.4.7.0"; - sha256 = "adc9ac6a2160e87a8a4c4b88087d478ee74dded59d0cf6205a105dc0f778dc82"; - libraryHaskellDepends = [ - base binary containers ghc-prim minimorph text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miso" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , http-types, lucid, network-uri, servant, servant-lucid, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "miso"; - version = "0.21.2.0"; - sha256 = "d52d7950eba48f88e6fe7a08bb797e36c599aa24f790242182fa1acdfa962b18"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data http-types lucid - network-uri servant servant-lucid text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmjio/miso"; - description = "A tasty Haskell front-end framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, convertible, hspec, hspec-smallcheck - , QuickCheck, smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.3.1.4"; - sha256 = "c4ffffea5a5eae0a1fafde3187be1bdf9cd0d166bee0bd502b1aa6cd898dc100"; - libraryHaskellDepends = [ - base convertible hspec hspec-smallcheck QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "716ec75fc8eb573c9c6ab327a9658685f5131eacff69fbbc72289cdd0133e0ff"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers - , data-default-class, deepseq, dlist, email-validate, foldl - , hashable, html-entity-map, lucid, megaparsec, microlens - , microlens-th, modern-uri, mtl, parser-combinators, stdenv, text - , text-metrics, unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.5.6"; - sha256 = "fc036385fd4cea07a490df00d8fe443cc6656a6d090d537d4d5e860564ef1234"; - revision = "7"; - editedCabalFile = "0nmbj8bkkzy7aclmhw92vcqk94ncdvyycaf2kpvdhf056hw0q85i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers data-default-class deepseq - dlist email-validate foldl hashable html-entity-map lucid - megaparsec microlens microlens-th modern-uri mtl parser-combinators - text text-metrics unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, gitrev, lucid - , megaparsec, mmark, mmark-ext, optparse-applicative, stache - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mmark-cli"; - version = "0.0.3.0"; - sha256 = "37d3e98d15ccc036db5e2ec1b8b1e84a20c303ba1821a44ec441e835c43c6159"; - revision = "2"; - editedCabalFile = "0i3gvfgm4bfbdyflhhaf4gdr7cbkw51i330f25rgha9k3s4v59w3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson base bytestring directory gitrev lucid megaparsec mmark - mmark-ext optparse-applicative stache text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-cli"; - description = "Command line interface to MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-ext" = callPackage - ({ mkDerivation, base, foldl, ghc-syntax-highlighter, lucid - , microlens, mmark, modern-uri, skylighting, stdenv, text - }: - mkDerivation { - pname = "mmark-ext"; - version = "0.2.1.0"; - sha256 = "1a02396a80708c60b3aecb668c16a3d0cb890bbfcc4fbf722c9742b75ce23fcd"; - revision = "2"; - editedCabalFile = "0xcjkzaah0npyw87mdsymq4bjwdf988fqmylzgr4kihks1a8d4xs"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base foldl ghc-syntax-highlighter lucid microlens mmark modern-uri - skylighting text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-ext"; - description = "Commonly useful extensions for the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.2"; - sha256 = "c90afd7996c94be2b9a5796a7b94918d198c53b0c1d7a3eaf2982293560c5fbe"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.2.2.0"; - sha256 = "ab4fe551bf8d6306a951ac97592baa083b05e3cab6cb25cecefa50474614b4d1"; - revision = "1"; - editedCabalFile = "08krkwzcaxvi8l8myii0nqyhcb4akmgbgm6q561xwpx692qw8m22"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "moesocks" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring - , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens - , lens-aeson, mtl, network, optparse-applicative, random, stdenv - , stm, strict, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "moesocks"; - version = "1.0.0.44"; - sha256 = "bf35a237dffeaebc82237439fe457d0c423d235a48a69f02c9e616297540e1c8"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfjinjing/moesocks"; - description = "A functional firewall killer"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.30"; - sha256 = "e7ce990978b7395c615441775b64b487ad6cd6f2e4f9787dae732f58ce065480"; - revision = "1"; - editedCabalFile = "0gm3gqbxkj8447js4a672snz0ir78syk890nqdmjb18hsjqy5p6a"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.10"; - sha256 = "a3ac2d043a13d9e9296692dc729a299361b04757690894cac1b6904510a0d975"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-logger-syslog" = callPackage - ({ mkDerivation, base, bytestring, fast-logger, hsyslog - , monad-logger, stdenv, text, transformers - }: - mkDerivation { - pname = "monad-logger-syslog"; - version = "0.1.4.0"; - sha256 = "052c3e13e235e7fb31caecc117e3ab4629e85bbfd3b35ec03f74d732acbc9ccb"; - libraryHaskellDepends = [ - base bytestring fast-logger hsyslog monad-logger text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-logger-syslog"; - description = "syslog output for monad-logger"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, mtl, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.4.1"; - sha256 = "4c00c4aff00c85bfcce0a9a7d96a2a7d08f1efe64b3326e67e47499d5168f11d"; - libraryHaskellDepends = [ - array base containers mtl primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-metrics" = callPackage - ({ mkDerivation, base, clock, ekg-core, exceptions, hashable - , microlens, mtl, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "monad-metrics"; - version = "0.2.1.2"; - sha256 = "38130b74de16bde2862a96245b25135b719488c4fcb803b78db6e95b4e6fbb7f"; - libraryHaskellDepends = [ - base clock ekg-core exceptions hashable microlens mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-metrics#readme"; - description = "A convenient wrapper around EKG metrics"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.4.8"; - sha256 = "f84cdf51908a1c41c3f672be9520a8fdc028ea39d90a25ecfe5a3b223cfeb951"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-recorder" = callPackage - ({ mkDerivation, base, exceptions, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-recorder"; - version = "0.1.1"; - sha256 = "0863eb37dae0a9dc996a73dd7743d0c9fc22b9713d4be4d7c7e49e4e073ca215"; - libraryHaskellDepends = [ - base exceptions monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/monad-recorder"; - description = "Record and replay the results of monadic actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monadlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monadlist"; - version = "0.0.2"; - sha256 = "06bbe82c9fc2a35048788367da74bb5f79c7e6be2ae38eca20f332f8cbc5fdfe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Monadic versions of list functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mongoDB" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , binary, bson, bytestring, conduit, conduit-extra, containers - , cryptohash, data-default-class, hashtables, lifted-base - , monad-control, mtl, network, nonce, parsec, pureMD5, random - , random-shuffle, resourcet, stdenv, stm, tagged, text, time, tls - , transformers, transformers-base - }: - mkDerivation { - pname = "mongoDB"; - version = "2.4.0.0"; - sha256 = "fdb80241825c70d795a1e552b25afc916e58d7755ec31feaf7ab7afdd5aee719"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring binary bson - bytestring conduit conduit-extra containers cryptohash - data-default-class hashtables lifted-base monad-control mtl network - nonce parsec pureMD5 random random-shuffle resourcet stm tagged - text time tls transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mongodb-haskell/mongodb"; - description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.9.0"; - sha256 = "4adf52e3c3ddd3dfd5d570279bccb4b2a66305175c160e440ef36edf809e0005"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "monoid-extras" = callPackage - ({ mkDerivation, base, groups, semigroupoids, semigroups, stdenv }: - mkDerivation { - pname = "monoid-extras"; - version = "0.5"; - sha256 = "c6571ab25a24e4300d507beeb8e534c20b3e530c6bd19c82694f1d6d5d0d4d9c"; - revision = "4"; - editedCabalFile = "0f2lww0qjk3sspj199b88j1zg9nn0cmm0mmsf6j7dd30cdqam76p"; - libraryHaskellDepends = [ base groups semigroupoids semigroups ]; - doHaddock = false; - doCheck = false; - description = "Various extra monoid-related definitions and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "0.4.6.1"; - sha256 = "d097876d8778fc550a071fc5fb564e8969903e8022c5f2dc25697bd8269daea6"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoidal-containers" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "monoidal-containers"; - version = "0.3.1.0"; - sha256 = "44c325aa5a46a624688eefca1a0a3cc818e932a3805ed7749d0693c2c8c5f785"; - libraryHaskellDepends = [ - base containers deepseq hashable lens newtype semigroups - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bgamari/monoidal-containers"; - description = "Containers with monoidal accumulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "morte" = callPackage - ({ mkDerivation, alex, array, base, binary, code-page, containers - , deepseq, Earley, formatting, http-client, http-client-tls - , microlens, microlens-mtl, optparse-applicative, pipes, stdenv - , system-fileio, system-filepath, text, transformers - }: - mkDerivation { - pname = "morte"; - version = "1.6.20"; - sha256 = "7449e92308373c7459f97da2389a26ee1cead0532a7931868b49e9338240a306"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary containers deepseq Earley formatting http-client - http-client-tls microlens microlens-mtl pipes system-fileio - system-filepath text transformers - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - base code-page formatting optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "A bare-bones calculus of constructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mstate" = callPackage - ({ mkDerivation, base, monad-peel, mtl, stdenv, stm }: - mkDerivation { - pname = "mstate"; - version = "0.2.7"; - sha256 = "4508e3e7cc2dec5a0e75ba7dd085c73fdd4f886ac6d1a74cf071816795bb2c17"; - revision = "1"; - editedCabalFile = "0fj78xvvivsci437yh1raz021jh20xaz57f7ri6sxpsch3ghjy8b"; - libraryHaskellDepends = [ base monad-peel mtl stm ]; - doHaddock = false; - doCheck = false; - description = "MState: A consistent State monad for concurrent applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.1.3"; - sha256 = "6458ca53593a31ebce1d94ef8dd4f6a06d050dd7ed32335f6cc6b6e5d3456894"; - revision = "4"; - editedCabalFile = "1mfrx8cpx0502sjv0bmlfkl0h46c4krldg8m89k4fj6iawwg2ab5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multipart" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, stringsearch }: - mkDerivation { - pname = "multipart"; - version = "0.1.3"; - sha256 = "9f60512e7b04c78442bd7c9de621597f6f2c4288b3bc1bb2834d08b5bd2796f4"; - revision = "1"; - editedCabalFile = "037ngpayaisc1jgcxyixy7lx42p2mz950k6wb0pl6dkc951hl88c"; - libraryHaskellDepends = [ base bytestring parsec stringsearch ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/silkapp/multipart"; - description = "HTTP multipart split out of the cgi package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.1"; - sha256 = "75d7785d13e962954affa2ea11488b3d4016d76404c4d6806b818e3893d02ee9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.0"; - sha256 = "018863e578e971e393edc65dd7e0ed92a0e37fc152a47bb379fd8abd59537be0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.0.4"; - sha256 = "9fe9ed0e264bf85420a3086a1af9d6e749ff33c9c59428891dfaaa72b1385157"; - revision = "1"; - editedCabalFile = "1b4wbxkxx0szjgzgn5jc1qap80zx6ispxrd51yxs4z7llv15w5k6"; - libraryHaskellDepends = [ base mwc-random primitive transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability-transition" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, hspec, logging-effect - , mtl, mwc-probability, primitive, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability-transition"; - version = "0.4"; - sha256 = "3e44b6f3f3b2a739776484e7d4ab98ab1d5c7e50bcba53a40d2f0ac96003e768"; - libraryHaskellDepends = [ - base exceptions ghc-prim hspec logging-effect mtl mwc-probability - primitive QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mwc-probability-transition"; - description = "A Markov stochastic transition operator with logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.13.6.0"; - sha256 = "065f334fc13c057eb03ef0b6aa3665ff193609d9bfcad8068bdd260801f44716"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.5"; - sha256 = "49b367d07f6d93fd4cbd08390f83bbf8e40c66156a1d2b0f570b68921e6f3075"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-haskell" = callPackage - ({ mkDerivation, base, binary, binary-ieee754, binary-parsers - , blaze-textual, bytestring, bytestring-lexing, cryptonite - , io-streams, memory, monad-loops, network, scientific, stdenv - , tcp-streams, text, time, tls, vector, wire-streams, word24 - }: - mkDerivation { - pname = "mysql-haskell"; - version = "0.8.3.0"; - sha256 = "e9aef28ccccc0801a1db1c936945a226961334ec11d85905ae58a09a42507aac"; - revision = "1"; - editedCabalFile = "1kpfmrwwdaxjqwbsc6m9imlcfi2vvkz62pin5nrvm1fk17isy69v"; - libraryHaskellDepends = [ - base binary binary-ieee754 binary-parsers blaze-textual bytestring - bytestring-lexing cryptonite io-streams memory monad-loops network - scientific tcp-streams text time tls vector wire-streams word24 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "pure haskell MySQL driver"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-nem" = callPackage - ({ mkDerivation, base, bytestring, io-streams, mysql-haskell - , scientific, stdenv, text, time - }: - mkDerivation { - pname = "mysql-haskell-nem"; - version = "0.1.0.0"; - sha256 = "7a0868b76edc96a7aff7860f96436b9040f6cb9319dd67f68bfd700948721f0d"; - libraryHaskellDepends = [ - base bytestring io-streams mysql-haskell scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lorenzo/mysql-haskell-nem#readme"; - description = "Adds a interface like mysql-simple to mysql-haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-openssl" = callPackage - ({ mkDerivation, base, binary, HsOpenSSL, mysql-haskell, stdenv - , tcp-streams, tcp-streams-openssl, wire-streams - }: - mkDerivation { - pname = "mysql-haskell-openssl"; - version = "0.8.3.0"; - sha256 = "44345ef9b5d98b1fca5089533990b8f4ba67afde7995282c323dacfb44dba55e"; - libraryHaskellDepends = [ - base binary HsOpenSSL mysql-haskell tcp-streams tcp-streams-openssl - wire-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "TLS support for mysql-haskell package using openssl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "named" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "named"; - version = "0.1.0.0"; - sha256 = "e7fa5c63906a3e8db05ead8c64a962045016ef8d450ab0f8579861080b024658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Named parameters (keyword arguments) for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.3.0.0"; - sha256 = "0be38f6a22afb69ddda5a3cae095b51835bdae853256403e97078679a9fba526"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, megaparsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.2"; - sha256 = "b6c8c5eca58ee99f9528ff21386ffa8e7dbc2e02186824cbaf74d795b0c9cc39"; - libraryHaskellDepends = [ - base base-prelude megaparsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-carray" = callPackage - ({ mkDerivation, base, carray, netlib-ffi, stdenv, transformers }: - mkDerivation { - pname = "netlib-carray"; - version = "0.0.1.1"; - sha256 = "9bc702f6d09240400b99d0769aaa0fe6bf32f83b312d33a6e2dd7b75a173beef"; - libraryHaskellDepends = [ base carray netlib-ffi transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-carray/"; - description = "Helper modules for CArray wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, stdenv, storable-complex, transformers }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1"; - sha256 = "505ca55093efdbd71b8b8cbeaa52ce2cbdd5477dc6c35b163e52748772517c32"; - libraryHaskellDepends = [ base storable-complex transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.2"; - sha256 = "846a04bca94be31c779888febc390c64cfba93e40f3a7a2f80ff6a6e44fcc2d7"; - revision = "1"; - editedCabalFile = "1vhwjv5c5gxn9l9982da54nzczbmj8rl09xn8ac7rix0zmmyvl50"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.3.0"; - sha256 = "cf3f08980e8e52190301d33db3b1fe7f02bcf5d276a74a8b8283b79e72bf7d5d"; - revision = "1"; - editedCabalFile = "1j8h6m4cj1ykxrsxmjiyb1c4mv6cawssgb8phl0aijrjn3b79f2b"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "network"; - version = "3.1.1.1"; - sha256 = "d7ef590173fff2ab522fbc167f3fafb867e4ecfca279eb3ef0d137b51f142c9a"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-anonymous-i2p" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions, mtl - , network, network-attoparsec, network-simple, stdenv, text - , transformers, uuid - }: - mkDerivation { - pname = "network-anonymous-i2p"; - version = "0.10.0"; - sha256 = "cff5796c36c1ebbb969e5433538eb3f3979acef9825a7bfb683ed002023fff2c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions mtl network - network-attoparsec network-simple text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; - description = "Haskell API for I2P anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-anonymous-tor" = callPackage - ({ mkDerivation, attoparsec, base, base32string, bytestring - , exceptions, hexstring, network, network-attoparsec - , network-simple, socks, splice, stdenv, text, transformers - }: - mkDerivation { - pname = "network-anonymous-tor"; - version = "0.11.0"; - sha256 = "41aee5b34aaaec6fa47a56cca61fafec22097bda25d13d5baef6b7924e127549"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Haskell API for Tor anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, enclosed-exceptions - , exceptions, lifted-base, monad-control, mtl, network, stdenv - , transformers - }: - mkDerivation { - pname = "network-attoparsec"; - version = "0.12.2"; - sha256 = "9790a9bad286ab1474dadbece3e4b2e1dd068d4ede3847cb73bcd66386bf08f0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring enclosed-exceptions exceptions - lifted-base monad-control mtl network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-attoparsec"; - description = "Utility functions for running a parser against a socket"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-bsd" = callPackage - ({ mkDerivation, base, deepseq, network, stdenv }: - mkDerivation { - pname = "network-bsd"; - version = "2.8.1.0"; - sha256 = "d94961ca15c42c798d19cde540ec12b25cc43435fb95e682399d6c1a02022d4e"; - revision = "3"; - editedCabalFile = "1hc3jdbmpq2wxh82xfx452v2m2l97jbdaqqbmj5nz4lljxa2696r"; - libraryHaskellDepends = [ base deepseq network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-bsd"; - description = "POSIX network database () API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.2"; - sha256 = "ecfd60e162de3993a71906293dcf2ec8bd4c794471eb8dca13746c1d8fd3ad7f"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-house" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "network-house"; - version = "0.1.0.2"; - sha256 = "071fbc22fc516175e78235d9e29ccefd8eec7c3caa2e6de74dddf62cdbffab43"; - libraryHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/network-house"; - description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.2"; - sha256 = "ee259d236312aafc4bd08dfeff2ebe4b4f930b2f5879764e1a6d5675c5105efe"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-multicast" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "network-multicast"; - version = "0.2.0"; - sha256 = "0f3b50abc3a401c20cc6a0ec51a49d2a48e5b467d9fbd63b7cf803165fe975f2"; - revision = "2"; - editedCabalFile = "1hha4vvyrx29d2lwwjl0bfpbaj00k85bd4w83s4hvawqbxqvvhkw"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - description = "Simple multicast library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "network-simple" = callPackage - ({ mkDerivation, base, bytestring, network, safe-exceptions, socks - , stdenv, transformers - }: - mkDerivation { - pname = "network-simple"; - version = "0.4.3"; - sha256 = "0dd5cf1ed308bbe9601dc39026419151f552f386ec5e82417ad4f86cc4539028"; - revision = "2"; - editedCabalFile = "073g0agplvgan62s638w5hcq25biq8f811xhha6drfyxybs6cspn"; - libraryHaskellDepends = [ - base bytestring network safe-exceptions socks transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple"; - description = "Simple network sockets usage patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-simple-tls" = callPackage - ({ mkDerivation, base, bytestring, data-default, network - , network-simple, safe-exceptions, stdenv, tls, transformers, x509 - , x509-store, x509-system, x509-validation - }: - mkDerivation { - pname = "network-simple-tls"; - version = "0.3.1"; - sha256 = "d25f5b0ecf1d11755e01c23b60714910f6091d14d8fac33307613cc4a4887c8a"; - libraryHaskellDepends = [ - base bytestring data-default network network-simple safe-exceptions - tls transformers x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple-tls"; - description = "Simple interface to TLS secured network sockets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.2"; - sha256 = "e795672b43d67ac7bfade72173548ae6bf8208c1890e22aba7809098558f9054"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-inmemory" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , network-transport, stdenv, stm - }: - mkDerivation { - pname = "network-transport-inmemory"; - version = "0.5.2"; - sha256 = "8245d795330157d90ad9de599854d119c6d8938a45ab8c4ec89f3160b2e9ef4e"; - revision = "1"; - editedCabalFile = "1cls49jpl0hs6pviyn1ga8nhsdgsvqg163sprif0pb21xz848d9k"; - libraryHaskellDepends = [ - base bytestring containers data-accessor network-transport stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "In-memory instantiation of Network.Transport"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-tests" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, mtl - , network-transport, random, stdenv - }: - mkDerivation { - pname = "network-transport-tests"; - version = "0.2.4.2"; - sha256 = "cb24c4bf7eed5a381eb21a3efadf8752050845e5d4426a1d2e00f128ea27cbc7"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers mtl network-transport - random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Unit tests for Network.Transport implementations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2"; - sha256 = "b714033abd9a8b0903bcef0d36d0913de2a5003c852f43f97fa688717289e459"; - revision = "1"; - editedCabalFile = "0rbhpa1krcmvv4hsy3h5h8l4vqjk9wckddcz34rfcq0m7zlmsrfz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.3"; - sha256 = "f295f001a86bdbcf759d6b91b9e7ae27cd431ccf41d9b9d34ee1c926b88efe45"; - revision = "1"; - editedCabalFile = "1glnwq1lw7780qgahqvh1qfx6k2ciwmbhc2wcc78v3aa3s954c8v"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "next-ref" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "next-ref"; - version = "0.1.0.2"; - sha256 = "a586f15c17d5d53dd647411d02660dcbfd293f38a75f030d6892a76a2c24789f"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "A concurrency primitive for a slow consumer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3.0.1"; - sha256 = "3fbd074804df96f307ae60a67b13e215b635e80a3505ee5f5b0bb26ad9b5eb03"; - revision = "1"; - editedCabalFile = "1628z42q77xjvwpyx3rifqf6mh4y6ivdl0lkhngxwz8c21bnf7d3"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.2"; - sha256 = "d9a3604c0c140197731895af56413edbf1cf6866f9c0636ece9d8314366dd1e1"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "not-gloss" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, GLUT, OpenGL - , OpenGLRaw, spatial-math, stdenv, time, vector - , vector-binary-instances - }: - mkDerivation { - pname = "not-gloss"; - version = "0.7.7.0"; - sha256 = "4740d1ee04015bca98092f72c11414326d1bd08473aead61f6678773fb8b835f"; - libraryHaskellDepends = [ - base binary bmp bytestring GLUT OpenGL OpenGLRaw spatial-math time - vector vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - description = "Painless 3D graphics, no affiliation with gloss"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.2"; - sha256 = "b9985b8d62569c192d89b20965eed2b98186a67148b667202823c6389b8f15ca"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3.1"; - sha256 = "c9e4b6f20c47ab38faea9a6a230a722f3b50462989d1b0ad1e7bfd1cb8f46114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numhask"; - version = "0.2.3.1"; - sha256 = "33084f2bd2dd37cdc1923745896e39d3a34f8d7b5181dff6577c4605dd7fc111"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "numeric classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-prelude" = callPackage - ({ mkDerivation, base, numhask, protolude, stdenv }: - mkDerivation { - pname = "numhask-prelude"; - version = "0.1.0.1"; - sha256 = "b1f15bcf21f33b25f841d1b6f0c5cbfc2a2837b3bb8962a0082950fa9b8ca25f"; - libraryHaskellDepends = [ base numhask protolude ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "A numeric prelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-range" = callPackage - ({ mkDerivation, adjunctions, base, distributive, numhask-prelude - , protolude, QuickCheck, semigroupoids, stdenv - }: - mkDerivation { - pname = "numhask-range"; - version = "0.2.3.1"; - sha256 = "6c62a172d2d35da7e5cb4ade742e802a4e1b9a21746149cd367d71f95822dcfd"; - libraryHaskellDepends = [ - adjunctions base distributive numhask-prelude protolude QuickCheck - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask-range#readme"; - description = "Numbers that are range representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-test" = callPackage - ({ mkDerivation, base, numhask-prelude, QuickCheck, stdenv, tasty - , tasty-quickcheck - }: - mkDerivation { - pname = "numhask-test"; - version = "0.1.0.0"; - sha256 = "de74c9e8cc66ead2eeffc9062d6f7b57728c9aef834751132e03d5deb17decb3"; - libraryHaskellDepends = [ - base numhask-prelude QuickCheck tasty tasty-quickcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "Laws and tests for numhask"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.2"; - sha256 = "98787dc0dd1757e6ed9c37e7d735b448fb9a9281988d97625292c9d8e16a732b"; - revision = "1"; - editedCabalFile = "0892xm8vyyvl1glg4vniz8r5ydg1nz3zmbpgk5mxdih6wi6nmpy4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nvim-hs" = callPackage - ({ mkDerivation, base, bytestring, cereal, cereal-conduit, conduit - , containers, data-default, deepseq, directory, dyre, filepath - , foreign-store, hslogger, megaparsec, messagepack, mtl, network - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal - , process, resourcet, setenv, stdenv, stm, streaming-commons - , template-haskell, text, time, time-locale-compat, transformers - , transformers-base, unliftio, unliftio-core, utf8-string, void - }: - mkDerivation { - pname = "nvim-hs"; - version = "1.0.0.3"; - sha256 = "e1a8dd50b3b6d6e70972394acc11c26ea71a3e1f9afd2c15a242c3b4f252f61e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cereal cereal-conduit conduit containers - data-default deepseq directory dyre filepath foreign-store hslogger - megaparsec messagepack mtl network optparse-applicative - prettyprinter prettyprinter-ansi-terminal process resourcet setenv - stm streaming-commons template-haskell text time time-locale-compat - transformers transformers-base unliftio unliftio-core utf8-string - void - ]; - executableHaskellDepends = [ base data-default ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "nvim-hs-contrib" = callPackage - ({ mkDerivation, base, bytestring, data-default, directory - , filepath, messagepack, mtl, nvim-hs, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text, time, utf8-string - , yaml - }: - mkDerivation { - pname = "nvim-hs-contrib"; - version = "1.0.0.0"; - sha256 = "bd342ebd086b2825e74908ebe93621d7d06cd6b06f0bb2fdf98c44351f7a1394"; - libraryHaskellDepends = [ - base bytestring data-default directory filepath messagepack mtl - nvim-hs prettyprinter prettyprinter-ansi-terminal text time - utf8-string yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs-contrib"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "o-clock" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "o-clock"; - version = "1.0.0.1"; - sha256 = "d9198d86927002eb7fb9c9ba52afd965719d3a6a1d19818f188d8b06f707bb5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/o-clock"; - description = "Type-safe time library"; - license = stdenv.lib.licenses.mit; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "objective" = callPackage - ({ mkDerivation, base, containers, exceptions, free, hashable - , monad-skeleton, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat, unordered-containers, void - , witherable - }: - mkDerivation { - pname = "objective"; - version = "1.1.2"; - sha256 = "2fcf283ede3f447f2e65ed9c434bb8facef873ba534aa0de29eb5ffefcc86644"; - revision = "1"; - editedCabalFile = "039j3xac9ish0yk4w04bmip6g9p6ndfd9ngh46ya125ms4nhmyj4"; - libraryHaskellDepends = [ - base containers exceptions free hashable monad-skeleton mtl - profunctors template-haskell transformers transformers-compat - unordered-containers void witherable - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/objective"; - description = "Composable objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, parsec, semigroups, stdenv - , template-haskell, text, time, transformers, unixODBC - , unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.2.2"; - sha256 = "659a124883696168daf3cd20403394616a56837c904810073183ce41769e7336"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting parsec - semigroups template-haskell text time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis" = callPackage - ({ mkDerivation, base, HTTP, network, network-uri, stdenv }: - mkDerivation { - pname = "oeis"; - version = "0.3.9"; - sha256 = "8a692c0b898f5d89e607f9593697a24827981a1cfee53045c192084015061b8e"; - revision = "1"; - editedCabalFile = "0rb6l3qblay8aiwaznp35gj7vwmhm87y57wvf3babwrh91s88jaj"; - libraryHaskellDepends = [ base HTTP network network-uri ]; - doHaddock = false; - doCheck = false; - description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.2.0"; - sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "om-elm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , http-types, safe, safe-exceptions, stdenv, template-haskell, text - , unix, wai - }: - mkDerivation { - pname = "om-elm"; - version = "1.0.0.3"; - sha256 = "af10f05a0eed4e17829211f06e79b7c4884dbd5c2736674e9e7680bbe426c744"; - libraryHaskellDepends = [ - base bytestring Cabal containers directory http-types safe - safe-exceptions template-haskell text unix wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/owensmurray/om-elm"; - description = "Haskell utilities for building embedded Elm programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.2"; - sha256 = "753ec628a1fac1f308a4b0e75adee768f962815485e1832a8052ee9af61848a8"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "online" = callPackage - ({ mkDerivation, base, foldl, numhask-prelude, protolude, stdenv - , tdigest, vector, vector-algorithms - }: - mkDerivation { - pname = "online"; - version = "0.3.0.0"; - sha256 = "baadb1cccc0b59547bf9e0829fba1c8079e38a68a925971c07f2b99f674bca14"; - libraryHaskellDepends = [ - base foldl numhask-prelude protolude tdigest vector - vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/online#readme"; - description = "online statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-witness" = callPackage - ({ mkDerivation, base, constraints, hashable, random, stdenv - , template-haskell, transformers, witness - }: - mkDerivation { - pname = "open-witness"; - version = "0.4.0.1"; - sha256 = "0770500d6eeb301fc92d30bec2ccef55b05beb0200125fcbddb6b50836034111"; - libraryHaskellDepends = [ - base constraints hashable random template-haskell transformers - witness - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/open-witness"; - description = "open witnesses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.2"; - sha256 = "2b0655a64ee36d529030df04f09b6fdf63749f64ec3d29b4f1861cf9c69a05e2"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "git://klacansky.com/openexr-write.git"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.1"; - sha256 = "b92f3f5316f18c9e30a95cd59888658384ddd20b628e4cd5fbb647177f52f607"; - revision = "1"; - editedCabalFile = "0j4qra3i7g607axj07d7f0ycj07d889nyw2s04m5wc98blbm5k4j"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.isc; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.1.0"; - sha256 = "1ef36be24b2a1d2aee892891e6c7bd975830c38900dbb96a80e5df95c37c5482"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "openssl-streams" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, io-streams, network - , stdenv - }: - mkDerivation { - pname = "openssl-streams"; - version = "1.2.1.3"; - sha256 = "dc7170e835cf71a132903e2a6ccc976bd2984f9241ea2e4e99a9ece74f868f5f"; - revision = "2"; - editedCabalFile = "1004kgdryflpkp19dv4ikilhcn0xbfc5dsp6v3ib34580pcfj7wy"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL io-streams network - ]; - doHaddock = false; - doCheck = false; - description = "OpenSSL network support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "opml-conduit" = callPackage - ({ mkDerivation, base, case-insensitive, conduit - , conduit-combinators, containers, lens-simple, mono-traversable - , monoid-subclasses, safe-exceptions, semigroups, stdenv, text - , time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "opml-conduit"; - version = "0.6.0.4"; - sha256 = "480b557690aab79e3761ad7f1ba1d44873c3d395d2b27f2d133372a01c535d1d"; - revision = "1"; - editedCabalFile = "160sazqsrmm2755642c5y5i38miiglqb66cy5k0hy4k2jkdmjfbi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base case-insensitive conduit conduit-combinators containers - lens-simple mono-traversable monoid-subclasses safe-exceptions - semigroups text time timerep uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/opml-conduit"; - description = "Streaming parser/renderer for the OPML 2.0 format."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "optics-core" = callPackage - ({ mkDerivation, array, base, containers, indexed-profunctors - , stdenv, transformers - }: - mkDerivation { - pname = "optics-core"; - version = "0.2"; - sha256 = "287ff8c28cba855aa9d247f3ed6d476338039653e99a2f3312f9f5ce51571aa6"; - libraryHaskellDepends = [ - array base containers indexed-profunctors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics as an abstract interface: core definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.15.1.0"; - sha256 = "4db3675fd1e0594afdf079db46f4cd412d483835d703e7c07e1a1a37d6f046f3"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.0"; - sha256 = "80929958606e4a73672b570ba1a23493fbf46268666d14ab5af53623301c398f"; - revision = "3"; - editedCabalFile = "0vszcjmxywblx5z9yvrz8c6yc104jgr1nv0sbv58ansd3rkjlzfn"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, gitrev, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.0"; - sha256 = "838d795faa3de3b426b83df11834bead33d02d7fe89df30300ca05c72e714cbc"; - libraryHaskellDepends = [ - base gitrev optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.3.1"; - sha256 = "1b76a08553d65e62235a9ca8ba001a2620fbee5a2169e4d40e06e28bdf0a27e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "packdeps" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , filepath, optparse-applicative, process, semigroups, split - , stdenv, tar, text, time - }: - mkDerivation { - pname = "packdeps"; - version = "0.4.5"; - sha256 = "17de7170a104434ba1c686a0a279cc43a3841fae89f75636e0e7f8a27bb7da1e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal containers directory filepath split tar text - time - ]; - executableHaskellDepends = [ - base Cabal containers optparse-applicative process semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://packdeps.haskellers.com/"; - description = "Check your cabal packages for lagging dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "palette" = callPackage - ({ mkDerivation, array, base, colour, containers, MonadRandom - , stdenv - }: - mkDerivation { - pname = "palette"; - version = "0.3.0.1"; - sha256 = "f1153525439d18423b73599a545f4f4bfa49fc481d5608c0770e56a0ce7a9c7a"; - libraryHaskellDepends = [ - array base colour containers MonadRandom - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Utilities for choosing and creating color schemes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , binary, blaze-html, blaze-markup, bytestring, Cabal - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doctemplates, exceptions, filepath, Glob - , haddock-library, hslua, hslua-module-text, HTTP, http-client - , http-client-tls, http-types, JuicyPixels, mtl, network - , network-uri, pandoc-types, parsec, process, random, safe - , scientific, SHA, skylighting, split, stdenv, syb, tagsoup - , temporary, texmath, text, time, unix, unordered-containers - , vector, xml, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.2.1"; - sha256 = "fe037f5fbb62fb27e7b1dbddfbd0aa45ea6e9fcdaff1f2203f7484c245b211b7"; - revision = "2"; - editedCabalFile = "05i037qlzh7akshv0ph7lk565x3sl91x227ls9jh71m2hhslyslf"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring binary blaze-html - blaze-markup bytestring case-insensitive cmark-gfm containers - data-default deepseq directory doctemplates exceptions filepath - Glob haddock-library hslua hslua-module-text HTTP http-client - http-client-tls http-types JuicyPixels mtl network network-uri - pandoc-types parsec process random safe scientific SHA skylighting - split syb tagsoup temporary texmath text time unix - unordered-containers vector xml yaml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share - mv $data/*/*/man $out/share/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-citeproc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , Cabal, containers, data-default, directory, filepath, hs-bibutils - , mtl, old-locale, pandoc, pandoc-types, parsec, rfc5051, setenv - , split, stdenv, syb, tagsoup, text, time, unordered-containers - , vector, xml-conduit, yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.14.8"; - sha256 = "f4a3c160688ab26afb2d1cdb64494b5282532d375c6c6278a90d3b4d8d35adff"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base bytestring containers data-default directory filepath - hs-bibutils mtl 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 pandoc - pandoc-types syb text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.17.5.2"; - sha256 = "0b5f1b93f252b769ccfae04e5ccd18fe32f45094cbcb32b6c29d50989ba1f742"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://johnmacfarlane.net/pandoc"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pango" = callPackage - ({ mkDerivation, array, base, Cabal, cairo, containers, directory - , filepath, glib, gtk2hs-buildtools, mtl, pango, pretty, process - , stdenv, text - }: - mkDerivation { - pname = "pango"; - version = "0.13.5.0"; - sha256 = "bf59b9273134e5d1c9c648a253e5a766cd1ef51afc2216175bce21a15b6d49e8"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal filepath gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base cairo containers directory glib mtl pretty process text - ]; - libraryPkgconfigDepends = [ pango ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Pango text rendering engine"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) pango;}; - "papillon" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, monads-tf - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "papillon"; - version = "0.1.0.6"; - sha256 = "2b5a614c8792ab3e36fae53f5303a9e62b78b896da1752d65b8ebf7b98ea1ac8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring monads-tf template-haskell transformers - ]; - executableHaskellDepends = [ - base directory filepath monads-tf template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; - description = "packrat parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, ghc-prim, stdenv - }: - mkDerivation { - pname = "parallel"; - version = "3.2.2.0"; - sha256 = "170453a71a2a8b31cca63125533f7771d7debeb639700bdabdd779c34d8a6ef6"; - revision = "1"; - editedCabalFile = "0a3kn7arck8f2gwm8cwfkplsw4q9v9j6ifbhj1l3bmclmkwcckcj"; - libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.8"; - sha256 = "7b789204c15d0c478db3d133f349a6970b5509fc6af655faedc03c7426dcf7d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Full-featured command-line argument parsing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.13.0"; - sha256 = "7861ae437a6177ee7c08899432fd8c062e7c110361da48a9f9e88263fd4d80f1"; - revision = "2"; - editedCabalFile = "032sizm03m2vdqshkv4sdviyka05gqf8gs6r4hqf9did177i0qnm"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.1"; - sha256 = "03162e40cde50253529fa452165b681d5064d03ad07992800702156adfb6254d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, binary, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.9"; - sha256 = "81e52fc9d71b587a8034015344e9162c59975750094f930a47933e5603d305e4"; - libraryHaskellDepends = [ - attoparsec base base-orphans binary charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-order" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "partial-order"; - version = "0.1.2.1"; - sha256 = "e37dc77f4b8852b1c96fe9b8b06db41aa00d06c5ce7f0c1c5bea15ea462ac397"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/haskell-partial-order"; - description = "Provides typeclass suitable for types admitting a partial order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell - }: - mkDerivation { - pname = "path"; - version = "0.6.1"; - sha256 = "4b8bd85a13395b4240c639b9cf804371854d5dac69158f661068bd3089a25e59"; - revision = "2"; - editedCabalFile = "05pgmg0w1mfwcmx9ad4p09xqxld8njhgwmgq38v7pr58czvmd6ks"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.3.3"; - sha256 = "2aec05914a7569f221cf73e25070fea5fad8125a9a93845e8d614a1c291e35bd"; - revision = "3"; - editedCabalFile = "1h9hsibbflkxpjl2fqamqiv3x3gasf51apnmklrs9l9x8r32hzcc"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcf-font" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector, zlib - }: - mkDerivation { - pname = "pcf-font"; - version = "0.2.2.0"; - sha256 = "8a67d04240a7668e669414d1b4f531d290c79a63198e0ecf02cb0339bff098ef"; - libraryHaskellDepends = [ - base binary bytestring containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font"; - description = "PCF font parsing and rendering library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcf-font-embed" = callPackage - ({ mkDerivation, base, bytestring, pcf-font, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "pcf-font-embed"; - version = "0.1.2.0"; - sha256 = "c55d51ee6f959c9c05bb9d9adac3aad1cd87b2bba3cca7d3667d67f1a230fd51"; - libraryHaskellDepends = [ - base bytestring pcf-font template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font-embed"; - description = "Template Haskell for embedding text rendered using PCF fonts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, entropy, primitive, random - , stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.5"; - sha256 = "de43ff8805f9e0ffd4cd6b4f2fed8c9cfa9ab45c0fd42374636ac7a5567840a4"; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.0.4"; - sha256 = "02c97e39263d18fd26aa63d52c88c4bfbb5c3f66ab40564552e7f11d5d889e75"; - libraryHaskellDepends = [ base bytestring ]; - libraryPkgconfigDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perf" = callPackage - ({ mkDerivation, base, containers, deepseq, foldl, rdtsc, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "perf"; - version = "0.4.1.0"; - sha256 = "881d50dc3603ba7008807ab03247a321bb1f9377da192135922a536c1d1201fc"; - libraryHaskellDepends = [ - base containers deepseq foldl rdtsc text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/perf#readme"; - description = "Low-level run time measurement"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.4"; - sha256 = "6d3abe73d61cf691bb1b5a412fa8a6d8fcc5cb3070176041ad8953b63ca5f8f9"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-types-HDBC-pg" = callPackage - ({ mkDerivation, base, bytestring, convertible, dlist, HDBC - , persistable-record, relational-query, relational-query-HDBC - , stdenv, text-postgresql - }: - mkDerivation { - pname = "persistable-types-HDBC-pg"; - version = "0.0.3.5"; - sha256 = "955c73edd056e1ecb6a3543d726070c3f219a67017ef18ac9ae75711f63cec2f"; - libraryHaskellDepends = [ - base bytestring convertible dlist HDBC persistable-record - relational-query relational-query-HDBC text-postgresql - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC and Relational-Record instances of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, blaze-markup, bytestring, conduit, containers - , fast-logger, haskell-src-meta, http-api-data, monad-logger, mtl - , old-locale, path-pieces, resource-pool, resourcet, scientific - , silently, stdenv, tagged, template-haskell, text, time - , transformers, unliftio-core, unordered-containers, vector, void - }: - mkDerivation { - pname = "persistent"; - version = "2.8.2"; - sha256 = "696bb279259e307778dc7fbd49565c48a66429f14e793a41a13cfae0968c1ec0"; - revision = "2"; - editedCabalFile = "1y7gm3qcgizy42kf0h9hzjf27kl11dbfwvi72ggkw00apjsp9hnn"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html blaze-markup - bytestring conduit containers fast-logger haskell-src-meta - http-api-data monad-logger mtl old-locale path-pieces resource-pool - resourcet scientific silently tagged template-haskell text time - transformers unliftio-core unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-iproute" = callPackage - ({ mkDerivation, aeson, aeson-iproute, base, bytestring - , http-api-data, iproute, path-pieces, persistent, stdenv, text - }: - mkDerivation { - pname = "persistent-iproute"; - version = "0.2.3"; - sha256 = "f595a11ceaa1c19e11d6f4fc58ec2834eb100791ae82626912115f1d79edbfaa"; - revision = "1"; - editedCabalFile = "1jly9db968q5j5ly75f77hwxrhky3s6xx8ydgsjn5cdr9rc4iz8k"; - libraryHaskellDepends = [ - aeson aeson-iproute base bytestring http-api-data iproute - path-pieces persistent text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/persistent-iproute"; - description = "Persistent instances for types in iproute"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.8.1"; - sha256 = "80cc29f8fa90503a13c348e14f10dd0883f17837ca72a5cd5b2884fdb286e654"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , io-streams, monad-logger, mysql-haskell, network, persistent - , persistent-template, resource-pool, resourcet, stdenv, text, time - , tls, transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-mysql-haskell"; - version = "0.4.2"; - sha256 = "a31845b8a67dff3b811f0b6687f58b54fa77fda60fe952a528e3522cbbb35b04"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "A pure haskell backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.8.2.0"; - sha256 = "f2f3c80b9f1d5ae494492204f3170e33ff3a5792b9675748839de6309d082f49"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-refs" = callPackage - ({ mkDerivation, base, containers, mtl, ref-fd, stdenv - , transformers - }: - mkDerivation { - pname = "persistent-refs"; - version = "0.4"; - sha256 = "46b310e034e23993e7da740d388e06e410483ada05cbcc8c0a4953ee19f8d0d3"; - libraryHaskellDepends = [ - base containers mtl ref-fd transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/persistent-refs"; - description = "Haskell references backed by an IntMap for persistence and reversibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, old-locale, persistent, resource-pool - , resourcet, sqlite, stdenv, text, time, transformers - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.8.2"; - sha256 = "e6faf5d17132dc7e36c932dcd88cf66e680fe75a4341f8ed83551bf2e5ae0bb2"; - revision = "1"; - editedCabalFile = "10ck5x420iq1mqy51hywbml84q3hhfgd02mscjnpsp0n2g1j3v0j"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - old-locale persistent resource-pool resourcet text time - transformers unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers - , ghc-prim, http-api-data, monad-control, monad-logger, path-pieces - , persistent, stdenv, tagged, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.5.4"; - sha256 = "4cae740ce92f98cb3ae9e092e740753394d5687b887399ee5f87af7f3c730a01"; - revision = "4"; - editedCabalFile = "08yb4kcmpqmm50lwrbmavd0zhgg6p7bl8dy026xw644cazrzcvr1"; - libraryHaskellDepends = [ - aeson aeson-compat base bytestring containers ghc-prim - http-api-data monad-control monad-logger path-pieces persistent - tagged template-haskell text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.1.0.1"; - sha256 = "598236369ee1228a3a76b4f0d5830d652a90ddbc0f98fdde064ad979a1abc97d"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "Another postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.2"; - sha256 = "e28b6fe85222adf1247d5870ab47c68c3d25df3f9ceda104bfb64e1414a92466"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "picosat" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "picosat"; - version = "0.1.4"; - sha256 = "5a6d9fae04a77a95a8c92ec6dd76302010b726d8c934dc8d8bbabc82851e9039"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/haskell-picosat"; - description = "Bindings to the PicoSAT solver"; - license = stdenv.lib.licenses.mit; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pinboard" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-client - , http-client-tls, http-types, monad-logger, mtl, network - , profunctors, random, safe-exceptions, stdenv, text, time - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pinboard"; - version = "0.9.12.10"; - sha256 = "bac98d28d29f47d39ca15f0b406f438fb2797841a21edfd1cdf8d54bdb64b049"; - libraryHaskellDepends = [ - aeson base bytestring containers http-client http-client-tls - http-types monad-logger mtl network profunctors random - safe-exceptions text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonschoning/pinboard"; - description = "Access to the Pinboard API"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.9"; - sha256 = "5c4cda351f9cf59376832baaeb857db25bd4990fd78c4b061aca0bde47271acb"; - revision = "3"; - editedCabalFile = "0ydjr0vw09spamifvv5r2y46s1x26mnijb7bbpdkz7lwa71jxn6r"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-category" = callPackage - ({ mkDerivation, base, lens, mtl, pipes, pipes-extras, stdenv }: - mkDerivation { - pname = "pipes-category"; - version = "0.3.0.0"; - sha256 = "4711d889ed2bf7244bbbc292af5746e0378d72a09929aa1e668056e7f0180701"; - libraryHaskellDepends = [ base lens mtl pipes pipes-extras ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-category#readme"; - description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.12"; - sha256 = "4343c67710e2fcd8987c537389773358150559bf06e86d96b1097c15ae81589d"; - revision = "2"; - editedCabalFile = "1c06nypirrd76jg5y508517smxh3izy98y6kj89k79kbpi5rncbj"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.15"; - sha256 = "02a9633ac912fd48e9a5ca0e6b48a6e9541ce59d11243096ca6af6b25701cbb3"; - revision = "1"; - editedCabalFile = "0xrd5zwkr1c7lswzi91gxl3ndra8y9g2b4j00sszyy3w187a2zwi"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fluid" = callPackage - ({ mkDerivation, base, constraints, lens, lifted-async - , monad-control, pipes, semigroups, stdenv, stm, these - , transformers, transformers-base - }: - mkDerivation { - pname = "pipes-fluid"; - version = "0.6.0.1"; - sha256 = "105d8e8df7e731e2d272a22891eb68db1ca3ec9f425b67af77c5d91e3f032f06"; - libraryHaskellDepends = [ - base constraints lens lifted-async monad-control pipes semigroups - stm these transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-fluid#readme"; - description = "Reactively combines Producers so that a value is yielded as soon as possible"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.12"; - sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7"; - revision = "1"; - editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.5"; - sha256 = "49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055"; - revision = "1"; - editedCabalFile = "015psgj5wl67p0qdc00nrn717gv354gii70c57n1px5j81b0z5cl"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-misc" = callPackage - ({ mkDerivation, base, clock, Decimal, lens, mmorph, mtl, pipes - , pipes-category, pipes-concurrency, semigroups, stdenv, stm - , transformers - }: - mkDerivation { - pname = "pipes-misc"; - version = "0.5.0.0"; - sha256 = "4e2e7e396ee0c659ae3742388d06b69e3b5146a5563cd3f4ba56f9a1febb8d26"; - libraryHaskellDepends = [ - base clock Decimal lens mmorph mtl pipes pipes-category - pipes-concurrency semigroups stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-misc#readme"; - description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network" = callPackage - ({ mkDerivation, base, bytestring, exceptions, network - , network-simple, pipes, pipes-safe, stdenv, transformers - }: - mkDerivation { - pname = "pipes-network"; - version = "0.6.5"; - sha256 = "74a461153a2f650e9e15037002b6d9177b132f409e3204824655ffbb939dc795"; - libraryHaskellDepends = [ - base bytestring exceptions network network-simple pipes pipes-safe - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network"; - description = "Use network sockets together with the pipes library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network-tls" = callPackage - ({ mkDerivation, base, bytestring, network, network-simple - , network-simple-tls, pipes, pipes-network, pipes-safe, stdenv, tls - , transformers - }: - mkDerivation { - pname = "pipes-network-tls"; - version = "0.3"; - sha256 = "a2694a6b15d71a8cae898dd8e6a085a4e1ae317c40f2752ceed2b991dfb6bab2"; - libraryHaskellDepends = [ - base bytestring network network-simple network-simple-tls pipes - pipes-network pipes-safe tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network-tls"; - description = "TLS-secured network connections support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-random" = callPackage - ({ mkDerivation, base, mwc-random, pipes, stdenv, vector }: - mkDerivation { - pname = "pipes-random"; - version = "1.0.0.4"; - sha256 = "542a07e7d7aafa87201c1f00c4e98ac8f59707f776ea03b1f6f117273608659e"; - revision = "2"; - editedCabalFile = "0czw2qfi05d5kbnwzhzr75j1ag6hfbn9nvbjyifdjradfzjxl2s9"; - libraryHaskellDepends = [ base mwc-random pipes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/pipes-random"; - description = "Producers for handling randomness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.2.9"; - sha256 = "17f16403794a2517eb283dd8b34a17c3485143b7fb66870d0a305294815a1898"; - revision = "2"; - editedCabalFile = "1crpzg72nahmffw468d31l23bw3wgi0p3w7ad2pv3jxhy1432c71"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plot-light" = callPackage - ({ mkDerivation, base, blaze-markup, blaze-svg, colour, containers - , exceptions, histogram-fill, mtl, scientific, stdenv, text, time - , vector - }: - mkDerivation { - pname = "plot-light"; - version = "0.4.3"; - sha256 = "abbc116ff80d1e7ee0ed4dd0ba90baf907da7f347fa678767ff9402714399fbb"; - libraryHaskellDepends = [ - base blaze-markup blaze-svg colour containers exceptions - histogram-fill mtl scientific text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/plot-light"; - description = "A lightweight plotting library, exporting to SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2"; - sha256 = "85fb0446b3e92267357dc52b770da90b222b85337f3db593e0350021d1e53259"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/filopodia/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.12"; - sha256 = "f54c63584ace968381de4a06bd7328b6adc3e1a74fd336e18449e0dd7650be15"; - revision = "1"; - editedCabalFile = "18daiyj3009wx0bhr87fbgy7xfh68ss9qzn6k3lgmh1z9dfsryrd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.2"; - sha256 = "3a5b51356c2c0844ac085d9ad073851d46426a09ffb59bcbfb8e072de4bd1fbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "portable-lines" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "portable-lines"; - version = "0.1"; - sha256 = "5053f5bc42d4362062e0ec55dd111b0f6611be280c7f871876732853f4b824d1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Alternative 'lines' implementation that understands CR-LF and CR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.1.1"; - sha256 = "fb00b37b213e00369ae17145ed8487ac0bfe295f35b3ef24afaba76f9dbf36a0"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.2"; - sha256 = "cea053c79ef1505c30518db7b9fb2ee68c9e2915d48b22f01f8eb9a9b49f06f9"; - revision = "1"; - editedCabalFile = "0hilyfb2gjh471ia2g8mwjs56ykrgl0qd06vpigwhc493ia7a9mv"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.14"; - sha256 = "73decc70c9fc349d0162c253eb0e92a1add5964c28ef89abfe30e97f1184d572"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.5.4.0"; - sha256 = "f5d11ae7907307a1a32d62add9ed88cccf4dc7a25c0c1f3f36e0975d44f73a77"; - revision = "1"; - editedCabalFile = "18g85a8icp21bjl38phwla25qv78y96vcisq5v1vwmz59m2n5k4h"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable postgresql-libpq scientific - template-haskell text time transformers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-migration" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash - , directory, postgresql-simple, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-simple-migration"; - version = "0.1.12.0"; - sha256 = "98f8b2eab06474e63c76b2d048d6a08d818d086b66e84caa27f3f0a368445da3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple time - ]; - executableHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ameingast/postgresql-simple-migration"; - description = "PostgreSQL Schema Migrations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-queue" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, monad-control - , pg-transact, postgresql-simple, random, stdenv, stm, text, time - , transformers - }: - mkDerivation { - pname = "postgresql-simple-queue"; - version = "1.0.1"; - sha256 = "330b69c54e075104171758117e714b7da6c740dff8ca09fbe33bd3ab854e5a3f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions monad-control pg-transact - postgresql-simple random stm text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgresql-queue#readme"; - description = "A PostgreSQL backed queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-url" = callPackage - ({ mkDerivation, base, network-uri, postgresql-simple, split - , stdenv - }: - mkDerivation { - pname = "postgresql-simple-url"; - version = "0.2.1.0"; - sha256 = "1307f57cde2bd7f6d795a860deab53d3d64043f51af31e3114dee516ef7ee9c9"; - revision = "2"; - editedCabalFile = "1nb1ks6hdfn16389f2yhf37qhjqd2y5wjc1dcp9bjhzd787z7ypr"; - libraryHaskellDepends = [ - base network-uri postgresql-simple split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/postgresql-simple-url"; - description = "Parse postgres:// url into ConnectInfo"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-transactional" = callPackage - ({ mkDerivation, base, monad-control, mtl, postgresql-simple - , stdenv - }: - mkDerivation { - pname = "postgresql-transactional"; - version = "1.1.1"; - sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; - libraryHaskellDepends = [ - base monad-control mtl postgresql-simple - ]; - doHaddock = false; - doCheck = false; - description = "a transactional monad on top of postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-typed" = callPackage - ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring - , containers, cryptonite, haskell-src-meta, HDBC, memory, network - , old-locale, postgresql-binary, scientific, stdenv - , template-haskell, text, time, utf8-string, uuid - }: - mkDerivation { - pname = "postgresql-typed"; - version = "0.5.3.0"; - sha256 = "b3c01c0821e96a83163f919aff86aba603f13d10ff5245680f4c4e488531f82a"; - libraryHaskellDepends = [ - aeson array attoparsec base binary bytestring containers cryptonite - haskell-src-meta HDBC memory network old-locale postgresql-binary - scientific template-haskell text time utf8-string uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dylex/postgresql-typed"; - description = "PostgreSQL interface with compile-time SQL type checking, optional HDBC backend"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.2"; - sha256 = "d2aaacbe069a5dac61cee677c68eb34d74afa09c59d90d43e2fa07a6c5869fec"; - revision = "1"; - editedCabalFile = "1la186z2np3nv06p0485xwg342gyjp7a2ikg73qs7mbg086352zs"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.1"; - sha256 = "7bdc875d5b7265a87f06866dc00da69edcd4ae36ea9687c8c6e643833ffb40d4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-extras"; - version = "0.4.0.3"; - sha256 = "09bb087f0870a353ec1e7e1a08017b9a766d430d956afb88ca000a6a876bf877"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/prelude-extras"; - description = "Higher order versions of Prelude classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "present" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "present"; - version = "4.1.0"; - sha256 = "bae8b334817a31572cc0e771f40e89b976e72b2b55d0955e4e198502dd8a427b"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/present"; - description = "Make presentations for data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.0"; - sha256 = "ff9a5f2023d6a4454f06cc395726b4cac3f9d0ea03759b14ccf7d62df79e9c7a"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.7"; - sha256 = "382b6ef4a78e4059611b5c86674ad72a6bfce821e8852da4f00b628cfbbc272f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, containers, mtl, parsec - , stdenv, text, transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "2.1.0.1"; - sha256 = "9aa92eea9cd76e4623fda6759a9f0ccf9e8e3accf1c2dd4b483bfac7ae5cd3d1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base containers mtl parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.2.3.1"; - sha256 = "e56c49d1099aaeafe0b982ef9e60cb7194fd987c4b659a8d7bcde380d3b8784f"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.2.1"; - sha256 = "e7653e0ba87cc06553a50e4780dde81c5dd156196c0199511d03d972e5517fcf"; - revision = "1"; - editedCabalFile = "133n28la2dxhpvm5zbarcf0yc9hpl97lkjds3wxzgl7irfyk9w7n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible pretty-printer"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-convert-ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-convert-ansi-wl-pprint"; - version = "1.1"; - sha256 = "b8982d38776249d3d29a4ede426a27a02f7cbb6843722b5ec8ede18d032fa60c"; - revision = "1"; - editedCabalFile = "1c4zcscmvq0vbdgnp7n0avv8si5jshl4kw2qd1lqmhr28kj8x45f"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base prettyprinter - prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prim-uniq" = callPackage - ({ mkDerivation, base, dependent-sum, primitive, stdenv }: - mkDerivation { - pname = "prim-uniq"; - version = "0.1.0.1"; - sha256 = "fb059785133fe5ecaa57c6c840192f252c4c5a1a598160d5704ac2a83e895aff"; - libraryHaskellDepends = [ base dependent-sum primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/prim-uniq"; - description = "Opaque unique identifiers in primitive state monads"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.6.3.0"; - sha256 = "cddeff804e0f577f1be0179d5d145dfc170f8bfb66f663b9fba67104a45d9555"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "probability" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "probability"; - version = "0.2.5.2"; - sha256 = "0f2b8c734eca6b079109948a28d85733543d5cea1dea2d5a1369f52ffc4a3415"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers random transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; - description = "Probabilistic Functional Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.3"; - sha256 = "1ef93a2cacbaf1fb2ae713f2d0d869593d4a5b8605eff38108877cbbfb51c1bb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, stdenv, tagged, transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.5.1"; - sha256 = "1d3741957d3187c033342e0b9ca3ba302e936c69bb402b89e4b1c60ae1d9b15a"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "prometheus-client" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, clock - , containers, mtl, stdenv, stm, transformers, utf8-string - }: - mkDerivation { - pname = "prometheus-client"; - version = "0.3.0"; - sha256 = "5f28c40b864d4773d019725e9f0dd7c06610c676250c8f1126e511d72348d05b"; - libraryHaskellDepends = [ - atomic-primops base bytestring clock containers mtl stm - transformers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/prometheus-haskell"; - description = "Haskell client library for http://prometheus.io."; - license = stdenv.lib.licenses.asl20; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, deepseq, lens-family, lens-labels, parsec - , pretty, stdenv, text, transformers, void - }: - mkDerivation { - pname = "proto-lens"; - version = "0.3.1.0"; - sha256 = "87bf1aa7d7754ca06ccbfb0daf4a77de53345c1d098e0fa17018ee00c2b994ab"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class deepseq - lens-family lens-labels parsec pretty text transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.2"; - sha256 = "110d42ecdc1ac385d01f91794ab22f15477f195f44a7e6d1d099742fd03b1989"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-combinators" = callPackage - ({ mkDerivation, base, Cabal, data-default-class, lens-family - , proto-lens-protoc, stdenv, transformers - }: - mkDerivation { - pname = "proto-lens-combinators"; - version = "0.1.0.11"; - sha256 = "ebb21b0b69bc117fcec32b2472954507c7332f5025f348967998bedde05e59c4"; - setupHaskellDepends = [ base Cabal proto-lens-protoc ]; - libraryHaskellDepends = [ - base data-default-class lens-family proto-lens-protoc transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Utilities functions to proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.4"; - sha256 = "f053140fddc73b7450f897536c0da196d6236b353ba5ed029c9e3db5b864c5b6"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-protoc, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.3.0.1"; - sha256 = "8a19053eabdff8e84b65181dd1beb4fafe5a84bae5af1bb3b32d043d0ef56018"; - setupHaskellDepends = [ base Cabal proto-lens-protoc ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-protoc text - ]; - libraryToolDepends = [ protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers - , data-default-class, deepseq, directory, filepath - , haskell-src-exts, lens-family, lens-labels, pretty, process - , proto-lens, protobuf, stdenv, temporary, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.3.1.2"; - sha256 = "a7425e4fa6fd996cf7f5dbf028b56597aaf6b333882e8161af8cd5f205bd1e97"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal containers data-default-class deepseq - directory filepath haskell-src-exts lens-family lens-labels pretty - process proto-lens temporary text - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers data-default-class deepseq filepath - haskell-src-exts lens-family proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal - , data-binary-ieee754, deepseq, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "protobuf"; - version = "0.2.1.2"; - sha256 = "b3c871918a665f0543fde247ab8af61c4fc451103140d34bf652c0d5fc4d17de"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal data-binary-ieee754 deepseq mtl - text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/protobuf"; - description = "Google Protocol Buffers via GHC.Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.1.0"; - sha256 = "9029d395f099aa7ce510a9e0eb0b2c21e5b4ecaa2b242d5a1753de6b93abcdc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-buffers" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , directory, filepath, mtl, parsec, stdenv, syb, utf8-string - }: - mkDerivation { - pname = "protocol-buffers"; - version = "2.4.11"; - sha256 = "47cb492a1d2b3ee7d1c8dc7d7b8c1656c754968854bd0caf29cf70c2f38d81e8"; - libraryHaskellDepends = [ - array base binary bytestring containers directory filepath mtl - parsec syb utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-buffers-descriptor" = callPackage - ({ mkDerivation, base, bytestring, containers, protocol-buffers - , stdenv - }: - mkDerivation { - pname = "protocol-buffers-descriptor"; - version = "2.4.11"; - sha256 = "a090bdc834cf4351ebabf15e2eed31877104f6e93900f8da8f350810c1d7681a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers protocol-buffers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.1"; - sha256 = "49982332f18246c9f46dc8f9500dcbd92a445d17124b4acd084568c14ac6a131"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.0.1.0"; - sha256 = "b5cc9a15e7910ecb449d3bbb142b809fa34bee2079e772ca63d4bb975a41ada0"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.2"; - sha256 = "685d0cf34b63482be84b785561009b8229327233ae311550d20d66b47b0f457c"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3"; - sha256 = "534d4d425f2834b39689e2af301bd5ff81d1619e65664a5efd797a0c88dbeb26"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psql-helpers" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv }: - mkDerivation { - pname = "psql-helpers"; - version = "0.1.0.0"; - sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; - libraryHaskellDepends = [ base postgresql-simple ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/psql-helpers#readme"; - description = "A small collection of helper functions to generate postgresql queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.0"; - sha256 = "4cf3628884015b091471e4425f5414207fd547cf71d9546e9b7318d857624fea"; - revision = "1"; - editedCabalFile = "0ncag4p7v41x5disbvkwzmv0c7ifc85lmjljzvf8d33arh7b08bj"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "publicsuffix" = callPackage - ({ mkDerivation, base, filepath, stdenv, template-haskell }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20180513"; - sha256 = "b51f193089fbdadeaecf062047b377e597ef6d72caff13e62d8a88f4c3870973"; - libraryHaskellDepends = [ base filepath template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; - description = "The publicsuffix list exposed as proper Haskell types"; - license = stdenv.lib.licenses.mit; - }) {}; - "pure-zlib" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , bytestring-builder, containers, fingertree, stdenv - }: - mkDerivation { - pname = "pure-zlib"; - version = "0.6.4"; - sha256 = "eb679aecb3fa310d28a31549cf83c29fba6f6e3c78bcdea82c9e22db36dc3017"; - revision = "1"; - editedCabalFile = "0mskig3fppav6f6x34vl5fxsih2hndiqvbdxz24hmr1dzkpnfvq1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base base-compat bytestring bytestring-builder containers - fingertree - ]; - executableHaskellDepends = [ base base-compat bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GaloisInc/pure-zlib"; - description = "A Haskell-only implementation of zlib / DEFLATE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qnap-decrypt" = callPackage - ({ mkDerivation, base, binary, bytestring, cipher-aes128, conduit - , conduit-extra, crypto-api, directory, filepath - , optparse-applicative, stdenv, streaming-commons, tagged - , utf8-string - }: - mkDerivation { - pname = "qnap-decrypt"; - version = "0.3.2"; - sha256 = "da930b2e821d3a1de08e6f85262793d4cbdd0d63dca017c7b2e3ad63ed6501e3"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qnap-decrypt#readme"; - description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickbench" = callPackage - ({ mkDerivation, base, containers, directory, docopt, pretty-show - , process, safe, split, stdenv, tabular, time - }: - mkDerivation { - pname = "quickbench"; - version = "1.0"; - sha256 = "8bfe252e50a683346e753db312e9542f8d43256947ab215fcfd24af03787b926"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory docopt pretty-show process safe split - tabular time - ]; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/quickbench#readme"; - description = "quick & easy benchmarking of command-line programs"; - license = "GPL"; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, splitmix, stdenv, tagged, text, time, time-compat - , transformers, transformers-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.22"; - sha256 = "5d65bf81895b7af2d36f105d0b3afa5600b0bce0a14809c93d7ca87672ca5a91"; - revision = "2"; - editedCabalFile = "1ia5fjhpg7rz793552v88gv2iqx7hl9mi2g09m0llasy1cpzc9jr"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific splitmix tagged text time - time-compat transformers transformers-compat unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.0.4"; - sha256 = "808eb5966a97bd38a3992b280428a0b289ccb46c38397ea8e34661d1e1ec4414"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "quicklz" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "quicklz"; - version = "1.5.0.11"; - sha256 = "0d0b23370a848efa86da80f835d036f468cdb1b201809351116945729b5b699f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/thoughtpolice/hs-quicklz"; - description = "QuickLZ compression for ByteStrings"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens-simple, process, stdenv - , text - }: - mkDerivation { - pname = "rainbow"; - version = "0.30.0.2"; - sha256 = "be021eb05bc3e6a00b4fc10e1af941afa0c0a69ab83e5204e8455cfd5c0f5ec7"; - libraryHaskellDepends = [ - base bytestring lens-simple process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-simple, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.20.0.0"; - sha256 = "937f61d2fbc7b41f065cec9bb9d6550b54346e52b788d30f73ef78cf8545b61f"; - libraryHaskellDepends = [ - base bytestring containers lens-simple rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rakuten" = callPackage - ({ mkDerivation, aeson, base, bytestring, connection, constraints - , data-default-class, extensible, http-api-data, http-client - , http-client-tls, http-types, lens, req, stdenv, text - }: - mkDerivation { - pname = "rakuten"; - version = "0.1.1.5"; - sha256 = "eabffe5e897403bc4b3171d17589907f60aab65a25a9aa26b5a670f0562e1913"; - libraryHaskellDepends = [ - aeson base bytestring connection constraints data-default-class - extensible http-api-data http-client http-client-tls http-types - lens req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/rakuten#readme"; - description = "The Rakuten API in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.1"; - sha256 = "33a826fd04068902acb62b04cb88c5a0c47e483b88053be9f6de1d64911f0eb4"; - revision = "1"; - editedCabalFile = "0gk5hcx1j06rklfd2cv63kh5dzjk8hr184riam784c7s9zg3s9a4"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-fu" = callPackage - ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops - , mtl, random-shuffle, random-source, rvar, stdenv, syb - , template-haskell, transformers, vector - }: - mkDerivation { - pname = "random-fu"; - version = "0.2.7.0"; - sha256 = "b6b3a4b3ede34991d26e0447f90b14fa66af61f376fa0aed2e0899fdc879b0c4"; - libraryHaskellDepends = [ - base erf log-domain math-functions monad-loops mtl random-shuffle - random-source rvar syb template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random number generation"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-source" = callPackage - ({ mkDerivation, base, flexible-defaults, mersenne-random-pure64 - , mtl, mwc-random, random, stateref, stdenv, syb, template-haskell - , th-extras - }: - mkDerivation { - pname = "random-source"; - version = "0.3.0.6"; - sha256 = "f3dfec3aef0614ff856abbba018f3bc3446295157895ea09a015737d67205b73"; - libraryHaskellDepends = [ - base flexible-defaults mersenne-random-pure64 mtl mwc-random random - stateref syb template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Generic basis for random number generators"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3"; - sha256 = "e51b393d2c09e3c2b0c21523389a48ce8e6090413abdfff1c623815c76cc96df"; - revision = "1"; - editedCabalFile = "00ddj7if8lcrqf5c882m4slm15sdwcghz7d2fz222c7jcw1ahvdr"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rank2classes" = callPackage - ({ mkDerivation, base, distributive, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "rank2classes"; - version = "1.1.0.1"; - sha256 = "7c24a53f447fde044a071f0a7bda225a0e2ae76e800daf4b4a3c9fedadea82c7"; - libraryHaskellDepends = [ - base distributive template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/grampa/tree/master/rank2classes"; - description = "standard type constructor class hierarchy, only with methods of rank 2 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.2"; - sha256 = "02db61c98e6e550824e8d9813efe5e97293843e39e1c00e88837061b61a017c4"; - revision = "1"; - editedCabalFile = "19i9wlk951d85dqnmbgrnz0fg4xcw7cbv9cs2h8b440lycj3p4cv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, stdenv - , text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "1.0.5"; - sha256 = "993ce9a8d58619802d286e3be152e295cb38c9dba85ffa0904ed6044972bc52a"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, stdenv, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "1.0.3"; - sha256 = "04558e3e91e873080810f4441940293ef0874cf2b330bdb4518000307120732e"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratio-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ratio-int"; - version = "0.1.2"; - sha256 = "efe86052c5979261d9aa6861c6297205ee0b60e1b36de191d20485e823c9781a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RaphaelJ/ratio-int"; - description = "Fast specialisation of Data.Ratio for Int."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rattletrap" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits - , bytestring, containers, filepath, http-client, http-client-tls - , stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "rattletrap"; - version = "4.1.2"; - sha256 = "62cdbb4d34e5b90ab7a2e3bcf2114990e40f9f7c7bce9cebb6b5cce05a67aa7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/rattletrap#readme"; - description = "Parse and generate Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest, fail - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.3"; - sha256 = "e10cbd0bd02adf8bfa7c709b66b5fc611c6765f8d97dc54a02b9963f08f2809f"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base fail ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rdf" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, dlist, fgl - , stdenv, text, transformers - }: - mkDerivation { - pname = "rdf"; - version = "0.1.0.2"; - sha256 = "889d93b6f54c791e62cd93ec404bb171d7e3bdbba0a085a4c7f4e4d2f3b51f6f"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq dlist fgl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/traviswhitaker/rdf"; - description = "Representation and Incremental Processing of RDF Data"; - license = stdenv.lib.licenses.mit; - }) {}; - "rdtsc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "rdtsc"; - version = "1.3.0.1"; - sha256 = "54c9a925f68d6c60b405e92f9d3bd9ebfc25cce0c72d2313a6c7e1b7cc2ed950"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgrabmueller/rdtsc"; - description = "Binding for the rdtsc machine instruction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.2"; - sha256 = "6906d80ed6834162f74ceb056230f7b1d1cd3423f05f67c65107b1493c8fd561"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rebase" = callPackage - ({ mkDerivation, base, base-prelude, bifunctors, bytestring - , containers, contravariant, contravariant-extras, deepseq, dlist - , either, fail, hashable, mtl, profunctors, scientific - , semigroupoids, semigroups, stdenv, stm, text, time, transformers - , unordered-containers, uuid, vector, void - }: - mkDerivation { - pname = "rebase"; - version = "1.2.4"; - sha256 = "ca6be557b4437d43d25133c566024c7bbf66b625b0b035a3ad8affeb381650bd"; - libraryHaskellDepends = [ - base base-prelude bifunctors bytestring containers contravariant - contravariant-extras deepseq dlist either fail hashable mtl - profunctors scientific semigroupoids semigroups stm text time - transformers unordered-containers uuid vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rebase"; - description = "A more progressive alternative to the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, filepath, stdenv }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.1.4"; - sha256 = "9dd32e7c89f4ac9480035639c2b17da32b90ad7501c2501843270d67db4c43d6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, comonad, free, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.0.3"; - sha256 = "db207037a5a89eb0002df1fe878d8b84bf20bc4703ad4a86e856613fa89ca09f"; - revision = "3"; - editedCabalFile = "05fvpi3dc44h2a097fb9cq1jqdjq2b3sdf5hzfn9g00bid37bb5q"; - libraryHaskellDepends = [ - base base-orphans comonad free template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Generalized bananas, lenses and barbed wire"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.3"; - sha256 = "7186733767405984c1eda96b18908f458b379f116a1589cd66f4319fe8458e27"; - revision = "1"; - editedCabalFile = "1v0r75wkaahxdv4y0sqgcikvgwymiz12fa8nkk59n1g4x9nng9wb"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ref-fd" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "ref-fd"; - version = "0.4.0.1"; - sha256 = "e416f1afba149e3af9cbe1011381d0b89609c240d812127bd03b8a922a5f6037"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - description = "A type class for monads with references using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "references" = callPackage - ({ mkDerivation, array, base, containers, directory, either - , filepath, instance-control, mtl, stdenv, template-haskell, text - , transformers, uniplate - }: - mkDerivation { - pname = "references"; - version = "0.3.3.1"; - sha256 = "bc07606d36639148374e7a29a67ac489c7a0ed02655311b5d633a144a746c10e"; - libraryHaskellDepends = [ - array base containers directory either filepath instance-control - mtl template-haskell text transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/references"; - description = "Selectors for reading and updating data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refined" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, prettyprinter - , stdenv, template-haskell, these, transformers - }: - mkDerivation { - pname = "refined"; - version = "0.2.3.0"; - sha256 = "664abf6de7c010416cfe2666c61b910c155dae1652f2662690c2add8c5c384f5"; - revision = "1"; - editedCabalFile = "0nxkm2igfx6d650jkimw53pn2vhmv5x2xmffp3nyzf2178z15hy4"; - libraryHaskellDepends = [ - base containers exceptions mtl prettyprinter template-haskell these - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/refined"; - description = "Refinement types with static and runtime checking"; - license = stdenv.lib.licenses.mit; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.4"; - sha256 = "f22fc478d43a36ec3d6c48c57ec53636c0bf936f3733b9a2b34e1a2e6351c44d"; - revision = "1"; - editedCabalFile = "05ibi4ivvh87d96xl09yh0day08p5www5vp568mvn2dp37rxyngc"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3"; - sha256 = "6659a2cc1c8137d77ef57f75027723b075d473354d935233d98b1ae1b03c3be6"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-applicative-text" = callPackage - ({ mkDerivation, base, regex-applicative, stdenv, text }: - mkDerivation { - pname = "regex-applicative-text"; - version = "0.1.0.1"; - sha256 = "b093051f80865d257da2ded8ad1b566927b01b3d2f86d41da2ffee4a26c4e2d9"; - revision = "4"; - editedCabalFile = "0ykzppl1v6k70idjl73m4w161f6lsax89v1gp100y4xgipf3yijj"; - libraryHaskellDepends = [ base regex-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/regex-applicative-text#readme"; - description = "regex-applicative on text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "regex-base"; - version = "0.93.2"; - sha256 = "20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278"; - revision = "2"; - editedCabalFile = "0dks3m5xwcjqqlyyg7abh12ci3ap5qn6wz3bz80kr6rcfgk0fhvd"; - libraryHaskellDepends = [ array base bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.1"; - sha256 = "d57cb1a5a4d66753b18eaa37a1621246f660472243b001894f970037548d953b"; - revision = "1"; - editedCabalFile = "0yg34p0rkql07y6rs6l70zlk8x51lra9vabkin921l581k6br498"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.94.4"; - sha256 = "8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0"; - revision = "1"; - editedCabalFile = "0jk29n0may65ghixlx1wwfmfcabsm730y8ppry1qy4naywhi1vs7"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.94.4.8.8.35"; - sha256 = "0bd1b695de953ba4b6e6e0de007021c346cb2a6c8e09356fbcd34f8a79d2ea78"; - revision = "1"; - editedCabalFile = "0r29q3fwlji0vxypk0pywrqgrqz84ryd0n5zmk44bgy2k534mk6c"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre-text" = callPackage - ({ mkDerivation, array, base, bytestring, regex-base - , regex-pcre-builtin, regex-tdfa-text, stdenv, text - }: - mkDerivation { - pname = "regex-pcre-text"; - version = "0.94.0.1"; - sha256 = "17991ed7b00da5cfb2efa0cefac16f9e0452fc794fe538d26d5cc802f0d8e9bd"; - libraryHaskellDepends = [ - array base bytestring regex-base regex-pcre-builtin regex-tdfa-text - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/regex-pcre-text"; - description = "Text-based PCRE API for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.95.2"; - sha256 = "56019921cd4a4c9682b81ec614236fea816ba8ed8785a1640cd66d8b24fc703e"; - revision = "2"; - editedCabalFile = "1zrlwmmrb3x3r3af1r42xwhwspzfgnzh4dw1158523sndsg8qn08"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl - , parsec, regex-base, stdenv - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.2.3.1"; - sha256 = "8aaaeeecf050807c7c514d4dd1763ac63bd121782de5a0847bef5d48a095ea50"; - revision = "1"; - editedCabalFile = "120083w1shqbs5czdwswpbr1h7200ckzcspdjqxdrm054z8zccyc"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim mtl parsec regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa-text" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa-text"; - version = "1.0.0.3"; - sha256 = "38d77a0d225c306c52c6d4eed12d11d05a4bc4194d547cb9a7a9b6f5a8792001"; - revision = "1"; - editedCabalFile = "00swglzmdw30g4bn47z6j71all0djjb2hjm7bkfl7pza4wv14wpv"; - libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; - doHaddock = false; - doCheck = false; - description = "Text interface for regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.12.1.0"; - sha256 = "33d12441a13c0480b40ca6377413e40b96141fb7da6205e8510adf49201dadd5"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-query-HDBC" = callPackage - ({ mkDerivation, base, containers, convertible, dlist, HDBC - , HDBC-session, names-th, persistable-record, product-isomorphic - , relational-query, relational-schemas, sql-words, stdenv - , template-haskell, th-data-compat, transformers - }: - mkDerivation { - pname = "relational-query-HDBC"; - version = "0.7.1.1"; - sha256 = "b30acd65cf9fc42e28188018435137ae29ef491b82e4dc5ece7c434b3a9eff51"; - libraryHaskellDepends = [ - base containers convertible dlist HDBC HDBC-session names-th - persistable-record product-isomorphic relational-query - relational-schemas sql-words template-haskell th-data-compat - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC instance of relational-query and typed query interface for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-record" = callPackage - ({ mkDerivation, base, persistable-record - , persistable-types-HDBC-pg, product-isomorphic, relational-query - , relational-query-HDBC, stdenv - }: - mkDerivation { - pname = "relational-record"; - version = "0.2.2.0"; - sha256 = "0bbd2663c394a39a7b3d9bcd257d91e3312be7f3c8df562b6868e82c0b96b3da"; - libraryHaskellDepends = [ - base persistable-record persistable-types-HDBC-pg - product-isomorphic relational-query relational-query-HDBC - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Meta package of Relational Record"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.6.2"; - sha256 = "5522efa683c5da8c37b09d2ebc636bc8d60804ed2372912ca7cc80793e45a7b0"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relude" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, mtl, stdenv, stm, text, transformers - , unordered-containers, utf8-string - }: - mkDerivation { - pname = "relude"; - version = "0.1.1"; - sha256 = "4025b7bc1b6722baced938f459183ec42fb10d5cca5d5b3b8418eb9c5aa3900c"; - revision = "1"; - editedCabalFile = "18vil2wa8xzpf0y5r5zdfylsqmphlappzc7a2ac9lmxngfkbzwyc"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable mtl stm text - transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/relude"; - description = "Custom prelude from Kowainik"; - license = stdenv.lib.licenses.mit; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "repa" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "repa"; - version = "3.4.1.4"; - sha256 = "43607a5de4b89b8e58bfcbc261445d89fa40b685d43952797704b80d09e5a39e"; - revision = "3"; - editedCabalFile = "17hxj42cm82sac42by78jgbjjn5r3qv7n4919llaq17a2k1np0sw"; - libraryHaskellDepends = [ - base bytestring ghc-prim QuickCheck template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "High performance, regular, shape polymorphic parallel arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, haskeline, mtl, process, stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.1.7.0"; - sha256 = "503a035d8a380ac21c532e48c0f47006ff1c20ed9683f4906fdb304b4b9e55de"; - libraryHaskellDepends = [ base containers haskeline mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, data-default-class - , http-api-data, http-client, http-client-tls, http-types - , monad-control, mtl, retry, stdenv, text, time, transformers - , transformers-base - }: - mkDerivation { - pname = "req"; - version = "1.1.0"; - sha256 = "87cd886d295e2df38baebd63045be306e07bb910cf11aed9a1a734ac5dc04e22"; - revision = "1"; - editedCabalFile = "1qb458sldda1msrx8hyp31a5ybny2kdymsxhmsyk9i9c5gk0qqib"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection data-default-class http-api-data - http-client http-client-tls http-types monad-control mtl retry text - time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-url-extra" = callPackage - ({ mkDerivation, aeson, base, data-default-class, modern-uri, req - , stdenv, text - }: - mkDerivation { - pname = "req-url-extra"; - version = "0.1.0.0"; - sha256 = "b3de266ad49fb3c03ff26d589d89f81ddea7f319900b07e59843e57986d37d84"; - revision = "2"; - editedCabalFile = "0srj9fcbm9y8ddqgs8wc6caxamhgnic54y8qpxwnqdxrggdfkk67"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base modern-uri req ]; - executableHaskellDepends = [ - aeson base data-default-class modern-uri req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/req-url-extra#readme"; - description = "Provides URI/URL helper functions for use with Req"; - license = stdenv.lib.licenses.mit; - }) {}; - "require" = callPackage - ({ mkDerivation, base, bytestring, megaparsec, stdenv, text - , universum - }: - mkDerivation { - pname = "require"; - version = "0.2.1"; - sha256 = "a2b79c763f85ac22a436104c11cf5a467da48f59623027fe03c5e22a594dc131"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring megaparsec text universum - ]; - executableHaskellDepends = [ - base bytestring megaparsec text universum - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/require#readme"; - description = "Scrap your qualified import clutter"; - license = stdenv.lib.licenses.asl20; - }) {}; - "reroute" = callPackage - ({ mkDerivation, base, deepseq, hashable, http-api-data, hvect, mtl - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "reroute"; - version = "0.5.0.0"; - sha256 = "b998bb94720d9a9a1f6bc8f91f60f22d8f55dec364c4cb27838fe7333e7987f2"; - revision = "2"; - editedCabalFile = "1lyrm0ca4a9312b26a5gsi1s9vr6b6vlizwblc49h33hviy78q1k"; - libraryHaskellDepends = [ - base deepseq hashable http-api-data hvect mtl text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/Spock"; - description = "abstract implementation of typed and untyped web routing"; - license = stdenv.lib.licenses.mit; - }) {}; - "resolv" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , containers, stdenv - }: - mkDerivation { - pname = "resolv"; - version = "0.1.1.1"; - sha256 = "49b12ed2b175cca3f885c06ca6906cde1245c02b6f98f2a95fc20d6a8ae40772"; - revision = "3"; - editedCabalFile = "0r1i7zrnynqxd3nzq4cz9648s3dmj29w63mcip57620d0fimyghm"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring containers - ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the libresolv standard library routines"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.2"; - sha256 = "1323425aba3827479eb3588efaf7608b12a083327d64ec814f02863c3673cbe5"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rest-stringmap" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, hxt - , json-schema, stdenv, tostring, unordered-containers - }: - mkDerivation { - pname = "rest-stringmap"; - version = "0.2.0.7"; - sha256 = "62d4644f5f7e4ad85688feafaea48b577907a382729f11e1c1fde21a98215450"; - libraryHaskellDepends = [ - aeson base containers hashable hxt json-schema tostring - unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Maps with stringy keys that can be transcoded to JSON and XML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, data-default-class, exceptions, ghc-prim - , random, stdenv, transformers - }: - mkDerivation { - pname = "retry"; - version = "0.7.7.0"; - sha256 = "3ccbc27a08ad0c7291342140f417cef11c2b11886586cc2bd870fa1e80cbd16c"; - libraryHaskellDepends = [ - base data-default-class exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.4"; - sha256 = "615daa230eabc781eff1d3ce94c42fc5ba6188dbeb115a233328454b02c1b3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rhine" = callPackage - ({ mkDerivation, base, containers, dunai, free, stdenv, time - , transformers - }: - mkDerivation { - pname = "rhine"; - version = "0.4.0.1"; - sha256 = "d21b320095c36c43a76b76f5f510089854e73e18304bbb27fa04e1b782c1b503"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers dunai free time transformers - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Functional Reactive Programming with type-level clocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "riak" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bifunctors, binary - , blaze-builder, bytestring, containers, data-default-class - , deepseq, enclosed-exceptions, exceptions, hashable - , mersenne-random-pure64, monad-control, network, protocol-buffers - , pureMD5, random, resource-pool, riak-protobuf, semigroups, stdenv - , stm, text, time, transformers, transformers-base - , unordered-containers, vector - }: - mkDerivation { - pname = "riak"; - version = "1.1.2.5"; - sha256 = "c752fee9859c0c45daae4e0a3c6a231c625b25983781109823d9229a4dc5c7d2"; - libraryHaskellDepends = [ - aeson async attoparsec base bifunctors binary blaze-builder - bytestring containers data-default-class deepseq - enclosed-exceptions exceptions hashable mersenne-random-pure64 - monad-control network protocol-buffers pureMD5 random resource-pool - riak-protobuf semigroups stm text time transformers - transformers-base unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/riak-haskell-client/riak-haskell-client"; - description = "A Haskell client for the Riak decentralized data store"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "riak-protobuf" = callPackage - ({ mkDerivation, array, base, parsec, protocol-buffers - , protocol-buffers-descriptor, stdenv - }: - mkDerivation { - pname = "riak-protobuf"; - version = "0.23.0.0"; - sha256 = "5dcbd06bdb66a1e43881a62a44d92e47d3f16f9ea1b4d53e4a92622faecdca33"; - libraryHaskellDepends = [ - array base parsec protocol-buffers protocol-buffers-descriptor - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/riak-haskell-client/riak-haskell-client"; - description = "Haskell types for the Riak protocol buffer API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.5.0"; - sha256 = "ef5ca46633c2cb3cc4e5c4fef32e0311a2be70dd60aad1d2216a940b89429018"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-orphans" = callPackage - ({ mkDerivation, base, exceptions, fast-logger, monad-control - , monad-logger, resourcet, rio, stdenv, transformers-base - }: - mkDerivation { - pname = "rio-orphans"; - version = "0.1.1.0"; - sha256 = "7e8d2c6df6e7afdbca5b344c6e57c754e2d6b9c0cfb4f00e1df88dad1bd48b4e"; - libraryHaskellDepends = [ - base exceptions fast-logger monad-control monad-logger resourcet - rio transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "Orphan instances for the RIO type in the rio package"; - license = stdenv.lib.licenses.mit; - }) {}; - "rng-utils" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv }: - mkDerivation { - pname = "rng-utils"; - version = "0.3.0"; - sha256 = "0886acb1e0ae6c6ad5f594a9d4d57ea5af69c566ccc5763d0b7c690963e946ba"; - libraryHaskellDepends = [ base bytestring random ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/soostone/rng-utils"; - description = "RNG within an IORef for convenient concurrent use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rss-conduit" = callPackage - ({ mkDerivation, atom-conduit, base, conduit, conduit-combinators - , containers, dublincore-xml-conduit, lens-simple, safe - , safe-exceptions, singletons, stdenv, text, time, timerep - , uri-bytestring, vinyl, xml-conduit, xml-types - }: - mkDerivation { - pname = "rss-conduit"; - version = "0.4.2.2"; - sha256 = "fa9eb0c33bfeb68f41c849ab759ec539abd59199d66e69fcc4ad60e9921a5fe1"; - revision = "3"; - editedCabalFile = "1fay2p90wx49b2yky0r6x70az3f0c1b2hwy3rzayza8am2i5r0bn"; - libraryHaskellDepends = [ - atom-conduit base conduit conduit-combinators containers - dublincore-xml-conduit lens-simple safe safe-exceptions singletons - text time timerep uri-bytestring vinyl xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parser/renderer for the RSS standard"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "runmemo" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "runmemo"; - version = "1.0.0.1"; - sha256 = "ba5ef3177f8fe5f443808e44f62d03b23ac19bbef7f708e40532031a3505d689"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/runmemo"; - description = "A simple memoization helper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rvar" = callPackage - ({ mkDerivation, base, MonadPrompt, mtl, random-source, stdenv - , transformers - }: - mkDerivation { - pname = "rvar"; - version = "0.2.0.3"; - sha256 = "d78aaf2ffdba182dda95d1692fec7abc5d77fa371120618a397b5675438c6bc0"; - revision = "1"; - editedCabalFile = "1ifwwjlhc3l8ycjmmarw6v1nm7jxpgqw2ly0q35idlj0jc0nbxn6"; - libraryHaskellDepends = [ - base MonadPrompt mtl random-source transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random Variables"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "s3-signer" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, byteable - , bytestring, case-insensitive, cryptohash, http-types, stdenv - , time, utf8-string - }: - mkDerivation { - pname = "s3-signer"; - version = "0.5.0.0"; - sha256 = "d73671d5bda0f5f627bbd876916341985c281c3572e6f8406cdf2f14ed9188e4"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder byteable bytestring - case-insensitive cryptohash http-types time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmjio/s3-signer"; - description = "Pre-signed Amazon S3 URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.17"; - sha256 = "79c5c41e7151906969133ea21af9f7e8d25c18315886e23d0bdf6faa8b537e5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-foldable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe-foldable"; - version = "0.1.0.0"; - sha256 = "ca7f2ecc0e799c239df8ce56e8592fb8b8264c229ab4e1c66e0f821d299007d1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/safe-foldable#readme"; - description = "Safe wrappers for null-partial Foldable operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-money" = callPackage - ({ mkDerivation, aeson, base, binary, cereal, constraints, deepseq - , hashable, stdenv, store, text, vector-space, xmlbf - }: - mkDerivation { - pname = "safe-money"; - version = "0.6"; - sha256 = "f9fccbbce2b81d8b54c920156ed9b77298598a7242bad98216e959a677b20fd1"; - configureFlags = [ "-f-serialise" ]; - libraryHaskellDepends = [ - aeson base binary cereal constraints deepseq hashable store text - vector-space xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/safe-money"; - description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , old-time, stdenv, template-haskell, text, time, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.9.4.1"; - sha256 = "1476c8c135baaca93ba232495b8d2a86047954e7f4439eafa28ee0763a500e84"; - libraryHaskellDepends = [ - array base bytestring cereal containers old-time template-haskell - text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.2"; - sha256 = "fd989db905f3e1d742b9fcb9501d6483ffa82620e287cf51b62e0d6d2caaa308"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.6"; - sha256 = "32c8bb50cc20360cb48751d810cac117a6b4fb83c39cf50287c61ef13c90f7ed"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "sandi" = callPackage - ({ mkDerivation, base, bytestring, conduit, exceptions, stdenv - , stringsearch - }: - mkDerivation { - pname = "sandi"; - version = "0.4.2"; - sha256 = "2bc1fc4f8e71009adc9f38304f63684f2795c31077670214147f261bd2bc7337"; - libraryHaskellDepends = [ - base bytestring conduit exceptions stringsearch - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/sandi"; - description = "Data encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sandman" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , optparse-applicative, process, stdenv, text, unix-compat - }: - mkDerivation { - pname = "sandman"; - version = "0.2.0.1"; - sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory filepath optparse-applicative - process text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/sandman#readme"; - description = "Manages Cabal sandboxes to avoid rebuilding packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.1"; - sha256 = "f639656fc21925c45f3f55769b9fb7a90699e943376a725e215a5deea473b3e4"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Send textual messages to a Handle in a thread-friendly way"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring - , basic-prelude, binary, binary-conduit, bytestring, conduit - , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops - , resourcet, stdenv, template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.3.17"; - sha256 = "e6d1b1e709fdabe34e837bf494ead4215bcd05f9afe905fdb4828a973ac09dff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson base basic-prelude binary-conduit bytestring conduit - conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "scalendar" = callPackage - ({ mkDerivation, base, containers, stdenv, text, time }: - mkDerivation { - pname = "scalendar"; - version = "1.2.0"; - sha256 = "f5c85e8da39e7eb22068032c4c5c32751ebbed61d0ee9679cadac904dde163ac"; - libraryHaskellDepends = [ base containers text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/scalendar"; - description = "A library for handling calendars and resource availability over time"; - license = stdenv.lib.licenses.mit; - }) {}; - "scalpel" = callPackage - ({ mkDerivation, base, bytestring, curl, data-default, scalpel-core - , stdenv, tagsoup, text - }: - mkDerivation { - pname = "scalpel"; - version = "0.5.1"; - sha256 = "20df66433570a2ca754f14058a47fb00519d9a75bb822fc3fd1769a83c608b0d"; - libraryHaskellDepends = [ - base bytestring curl data-default scalpel-core tagsoup text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scalpel-core" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, fail - , regex-base, regex-tdfa, stdenv, tagsoup, text, vector - }: - mkDerivation { - pname = "scalpel-core"; - version = "0.5.1"; - sha256 = "8c05b86853b737fbed4144dc9c7bbb7743525c305f9529f59776df97bfe229a9"; - libraryHaskellDepends = [ - base bytestring containers data-default fail regex-base regex-tdfa - tagsoup text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.2"; - sha256 = "3a020d68a0372a5211c72e55eeb299738ea608d17184bc68f74d31ebe667a5e9"; - revision = "1"; - editedCabalFile = "1mf7sia243x1cf23kxsrq3qrlrabrs2j8pk8y9m9pq5rg4kvvdq7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.2"; - sha256 = "1dd86f545e415baa6780fef3be8b3a68d8267e5c042972ef9990dc02a47d9da2"; - revision = "2"; - editedCabalFile = "02b8rnj9ram7865xhmlp9wn0f3h2mqnhl9p8wymswv27h6g7xya8"; - configureFlags = [ "-f-hpc-coveralls" ]; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.4.1.0"; - sha256 = "21a569c0c19f8ff2bbe1cf1d3eb32f65e8143806de353cedd240df5e9d088b5c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.4+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "search-algorithms" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "search-algorithms"; - version = "0.3.0"; - sha256 = "4a9d03c97abfd83fae582e4c3425a105b8649b8e69a2c1e170dbbabd8820db10"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/devonhollowood/search-algorithms#readme"; - description = "Common graph search algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, exceptions, hashable, mtl - , psqueues, stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "selda"; - version = "0.2.0.0"; - sha256 = "d226aff054c80864ffab2b50898a6109d0d8adeaee42f06074d4831a1a692ad1"; - revision = "1"; - editedCabalFile = "13iq6f81g5xicc2bb2xxxdhmbh5lkspcmq4bjcszp481z9v4kw3x"; - libraryHaskellDepends = [ - base bytestring exceptions hashable mtl psqueues text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-postgresql" = callPackage - ({ mkDerivation, base, bytestring, exceptions, postgresql-libpq - , selda, stdenv, text - }: - mkDerivation { - pname = "selda-postgresql"; - version = "0.1.7.2"; - sha256 = "ff781255b5faa9e9197fd3d298e8e11f81c13a0f01d072c72028003563fee51b"; - revision = "1"; - editedCabalFile = "08f2xdfpmbwhrwkjaqfmd9k25c3xn3p477d7a1mnnn7kf7328782"; - libraryHaskellDepends = [ - base bytestring exceptions postgresql-libpq selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "PostgreSQL backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-sqlite" = callPackage - ({ mkDerivation, base, direct-sqlite, directory, exceptions, selda - , stdenv, text - }: - mkDerivation { - pname = "selda-sqlite"; - version = "0.1.6.0"; - sha256 = "c67ba89114a82ece42b7e478bcf480ae0241cefb41e2e9b340a268f9f08be390"; - revision = "2"; - editedCabalFile = "198pg9i0lfx3fwf7b7cw0x5kial6vbf0dqwh18jnh7na3pyn1jr6"; - libraryHaskellDepends = [ - base direct-sqlite directory exceptions selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "SQLite backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "semialign" = callPackage - ({ mkDerivation, base, base-compat, containers, hashable - , semigroupoids, stdenv, tagged, these, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "semialign"; - version = "1.1"; - sha256 = "f3e218bf7fb3ea8145dbf1051e3460e99a0d4064f0e76238595f996858e287d8"; - libraryHaskellDepends = [ - base base-compat containers hashable semigroupoids tagged these - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Align and Zip type-classes from the common Semialign ancestor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.3.4"; - sha256 = "00d2e48973c3ab0a5d52616728ed63d0509454c8328148f698720014d7c58964"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable tagged template-haskell transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.5"; - sha256 = "ab2a96af6e81e31b909c37ba65f436f1493dbf387cfe0de10b6586270c4ce29d"; - revision = "1"; - editedCabalFile = "1inqcxrzzs8xz60pvbmznyi6g6xwzpxv7p6dqlcwariz31grzvs1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, stdenv, text }: - mkDerivation { - pname = "semver"; - version = "0.3.3.1"; - sha256 = "36d3369706836d60f3bc517f30c6860734481866363723904b8768823b6bc8b1"; - libraryHaskellDepends = [ attoparsec base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.9"; - sha256 = "102fdf6db8c00f5a5981c6eed5acba1368a2d79b2970ce5b22ceb180aa0fdc42"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , Cabal, cabal-doctest, case-insensitive, http-api-data, http-media - , http-types, mmorph, mtl, natural-transformation, network-uri - , singleton-bool, stdenv, string-conversions, tagged, text, vault - }: - mkDerivation { - pname = "servant"; - version = "0.14.1"; - sha256 = "a7fa2f19dd8af4deec873290c29fac46cdfe716347cc44fcc0949a83b7577420"; - revision = "1"; - editedCabalFile = "1n9lwm77w0xi6jzqrhyn6akf71z140wngj4s5x2zkndq8wmg4rg4"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bytestring case-insensitive - http-api-data http-media http-types mmorph mtl - natural-transformation network-uri singleton-bool - string-conversions tagged text vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-JuicyPixels" = callPackage - ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant - , servant-server, stdenv, wai, warp - }: - mkDerivation { - pname = "servant-JuicyPixels"; - version = "0.3.0.4"; - sha256 = "7b02f00ac8b78ffda49a96f2d1f39619ec19f244822d177928e75cd533cb9981"; - revision = "1"; - editedCabalFile = "185ym0ac6gx7f98pd92ykc1ib305lswzjzvykly4ij9vk85jn0ax"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-media JuicyPixels servant - ]; - executableHaskellDepends = [ - base JuicyPixels servant servant-server wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/servant-JuicyPixels"; - description = "Servant support for JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "servant-auth"; - version = "0.3.2.0"; - sha256 = "7bb4d5118c072cb3845aaba4287b2d5e34e5ccca96916895456a828bf7a9418b"; - revision = "2"; - editedCabalFile = "06jpxqz5444k19p1n4i4yf2pvql37w9ngssp1grxl42dxk2bcg94"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "Authentication combinators for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-client" = callPackage - ({ mkDerivation, base, bytestring, containers, servant - , servant-auth, servant-client-core, stdenv, text - }: - mkDerivation { - pname = "servant-auth-client"; - version = "0.3.3.0"; - sha256 = "490ac57150b59c567ef567120a6704cfc2184f7be8e6edaab26ad818dee5b3df"; - revision = "3"; - editedCabalFile = "1kzyqd9hg7xld5s8qpm76l9ym48z81j6ycdwp3lb0f1p2d3aagcd"; - libraryHaskellDepends = [ - base bytestring containers servant servant-auth servant-client-core - text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-client/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-docs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, servant - , servant-auth, servant-docs, stdenv, text - }: - mkDerivation { - pname = "servant-auth-docs"; - version = "0.2.10.0"; - sha256 = "adf3c33ce4134a78ae7a5c06092ea5812c99d4b942ff2dd685995eb3b2b53e48"; - revision = "4"; - editedCabalFile = "1dvwkaihrm7dc2zdrqqvc0j7zmij487klrmsggsdiid7y68nyrqh"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens servant servant-auth servant-docs text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-docs/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-server" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, bytestring-conversion, case-insensitive, cookie - , crypto-api, data-default-class, entropy, http-api-data - , http-types, jose, lens, monad-time, mtl, servant, servant-auth - , servant-server, stdenv, tagged, text, time, unordered-containers - , wai - }: - mkDerivation { - pname = "servant-auth-server"; - version = "0.4.0.1"; - sha256 = "c996e07c49366da5adad29964ef3139a2fe4e3b8a196c54d1f62311fa065cda4"; - revision = "1"; - editedCabalFile = "0l35r80yf1i3hjwls9cvhmzrjkgxfs103qcb1m650y77w1h3xr9p"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - bytestring-conversion case-insensitive cookie crypto-api - data-default-class entropy http-api-data http-types jose lens - monad-time mtl servant servant-auth servant-server tagged text time - unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-server/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-swagger" = callPackage - ({ mkDerivation, base, lens, servant, servant-auth, servant-swagger - , stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-auth-swagger"; - version = "0.2.10.0"; - sha256 = "50a783639eb882fd5047d69245f7770817658814d8c409b547ebdddae05acd12"; - revision = "3"; - editedCabalFile = "087faa5bg2hlxyhg7jzy2jj4fzs3dkp0znsbabrharcvdlkpqj1r"; - libraryHaskellDepends = [ - base lens servant servant-auth servant-swagger swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-swagger/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.8"; - sha256 = "46ea88550123d765b2d09073370d0530a51878e7fdf2cf20b070be1f2f10ae94"; - revision = "2"; - editedCabalFile = "1cfla60vn4kk5gb7fawlp34jr2k6b2fprysq05561wdfv990x4bj"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-media - , http-types, profunctors, servant, servant-checked-exceptions-core - , servant-client, servant-client-core, servant-docs, servant-server - , stdenv, tagged, text, wai, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions"; - version = "2.0.0.0"; - sha256 = "a7f282857e56d5d1a59d055cf1936cab96a2cdc2f94a79ff736f7ef1cf56f688"; - revision = "1"; - editedCabalFile = "0h18x8gimmczgml4rj74kx3463pwrsyxl2vnd13ra5hj0q44d683"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-media http-types profunctors - servant servant-checked-exceptions-core servant-client - servant-client-core servant-docs servant-server tagged text wai - world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-media - , http-types, profunctors, servant, servant-docs, stdenv, tagged - , text, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions-core"; - version = "2.0.0.0"; - sha256 = "aad3513403241bb06aadc605e6af88a5f3aaa0f1f208aafed6d69e15a23ab248"; - revision = "1"; - editedCabalFile = "1q2y4cri4h33cfdpgz95dczhvhmyrqajm7k6ypl3b8rw953qlzy7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-media http-types profunctors - servant servant-docs tagged text world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers - , exceptions, http-client, http-media, http-types, monad-control - , mtl, semigroupoids, servant-client-core, stdenv, stm, text, time - , transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.14"; - sha256 = "c6860bd46c2ee52412cc8c080091a9d8da28d5e44a47cba468e6eee34f01224b"; - revision = "3"; - editedCabalFile = "1rjjqxyyf51bjq8li8yilng5pjd9a5n3d8zniqmfw3hys6dz8n8g"; - libraryHaskellDepends = [ - base base-compat bytestring containers exceptions http-client - http-media http-types monad-control mtl semigroupoids - servant-client-core stm text time transformers transformers-base - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "automatical derivation of querying functions for servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, base, base-compat, base64-bytestring, bytestring - , containers, exceptions, free, generics-sop, http-api-data - , http-media, http-types, network-uri, safe, servant, stdenv, text - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.14.1"; - sha256 = "c24e7b6d1a9d6b33ca35fcea671791f5dbb381fe49f19497a0467a43f954d761"; - revision = "2"; - editedCabalFile = "02pvrccfwvvy53gma56jcqnbia3pm1pncyghdkjp519bwff9iwvb"; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - free generics-sop http-api-data http-media http-types network-uri - safe servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-dhall" = callPackage - ({ mkDerivation, base, base-compat, bytestring, dhall, http-media - , megaparsec, prettyprinter, servant, stdenv, text - }: - mkDerivation { - pname = "servant-dhall"; - version = "0.1.0.1"; - sha256 = "940eca05ad268137082478009c752c6333c0b1d92e57b13770046eeaac8b31fb"; - revision = "3"; - editedCabalFile = "13mq4pwffxqpjirb6rfhzd2xqhm0xyycl98h6kf4j0ic38g3saz1"; - libraryHaskellDepends = [ - base base-compat bytestring dhall http-media megaparsec - prettyprinter servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant Dhall content-type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, control-monad-omega, hashable, http-media - , http-types, lens, servant, stdenv, string-conversions, text - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.2"; - sha256 = "6b280a8d97d295933f5b4a5442b0c54567299bcc8dd62b7c2890864af7ddd4f4"; - revision = "6"; - editedCabalFile = "0w9yi4rmfq4irmnia9rl9pb66ix086ic9nd0grspnk54ib7970cl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - control-monad-omega hashable http-media http-types lens servant - string-conversions text unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-elm" = callPackage - ({ mkDerivation, base, elm-export, lens, servant, servant-foreign - , stdenv, text, wl-pprint-text - }: - mkDerivation { - pname = "servant-elm"; - version = "0.5.0.0"; - sha256 = "d9d96eeaf209f93791f3c81a5b2afad7be443f9af29f362ec17661436895b950"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base elm-export lens servant servant-foreign text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mattjbray/servant-elm#readme"; - description = "Automatically derive Elm functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-exceptions" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-media, http-types - , mtl, servant, servant-server, stdenv, text, wai, warp - }: - mkDerivation { - pname = "servant-exceptions"; - version = "0.1.1"; - sha256 = "652b9fdc463200ebb8c2b2e0757f9d90662408bf45a657b3f719d0a36d34abe1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base exceptions http-media http-types mtl servant - servant-server text wai - ]; - executableHaskellDepends = [ - aeson base exceptions http-types servant-server text warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ch1bo/servant-exceptions#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.11.1"; - sha256 = "659cb1033b022869bb5b725cfbb82c02ab0424ca9130e4aeb2fb6bb2d0489805"; - revision = "4"; - editedCabalFile = "1alal6ps1lwl8yd2vwkpmkn4a69blr1ws2cba7mc7a2w63lg1pyz"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-github-webhook" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, github, github-webhooks, http-types, memory, servant - , servant-server, stdenv, string-conversions, text, transformers - , unordered-containers, wai - }: - mkDerivation { - pname = "servant-github-webhook"; - version = "0.4.1.0"; - sha256 = "8bbe9bfe7b7f256fd3e40bcbf36ab9a11ba68aadacac85f5e8a850c8f569cf6c"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite github - github-webhooks http-types memory servant servant-server - string-conversions text transformers unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tsani/servant-github-webhook"; - description = "Servant combinators to facilitate writing GitHub webhooks"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-js" = callPackage - ({ mkDerivation, base, base-compat, charset, lens, servant - , servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-js"; - version = "0.9.3.2"; - sha256 = "02e0ec27a44a1e5794aacfbf745a815a68854d077e7d056d3e2f17d4812867dc"; - revision = "3"; - editedCabalFile = "0j5kmqzhkyb1wmvyxz0r20473myzp9bqcdgjbi8i4k1lfvcjsigq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat charset lens servant servant-foreign text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatically derive javascript functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv, text }: - mkDerivation { - pname = "servant-lucid"; - version = "0.8.1"; - sha256 = "6671d5d5e29b05911bb8855f42168839c2dbb8ee113a10cef6dd372fc267113d"; - revision = "1"; - editedCabalFile = "0jna96jy6nmhk6w5zxdd3qn3vlrnhnvh4s3f2bqkn3c0had5py7d"; - libraryHaskellDepends = [ base http-media lucid servant text ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.4"; - sha256 = "d9d6392461f57324208e3a227c88e81da35686a38d5d1f783afc673a0c77059c"; - revision = "3"; - editedCabalFile = "13sbgnzr0yfrbrbvzc6v66lxrgvg3pb7h9alvmg77kmm95gmx8mm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pandoc" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-media - , lens, pandoc-types, servant-docs, stdenv, string-conversions - , text, unordered-containers - }: - mkDerivation { - pname = "servant-pandoc"; - version = "0.5.0.0"; - sha256 = "12d709fced47bb3e017b83dcc5dafb1186720e5318c1b5ebeb886d4439540463"; - libraryHaskellDepends = [ - base bytestring case-insensitive http-media lens pandoc-types - servant-docs string-conversions text unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Use Pandoc to render servant API documentation"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-ruby" = callPackage - ({ mkDerivation, base, casing, servant-foreign, stdenv, text }: - mkDerivation { - pname = "servant-ruby"; - version = "0.8.0.2"; - sha256 = "a6c6dcfed8fddb73ad2fd7d5bac2b842a432ff4797d2b007c461a4acee030786"; - libraryHaskellDepends = [ base casing servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joneshf/servant-ruby#readme"; - description = "Generate a Ruby client from a Servant API with Net::HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, Cabal, cabal-doctest, containers, exceptions - , filepath, http-api-data, http-media, http-types, monad-control - , mtl, network, network-uri, resourcet, servant, stdenv - , string-conversions, tagged, text, transformers, transformers-base - , transformers-compat, wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.14.1"; - sha256 = "024010b1ef238099d4e8dc1cf000bb5de5bbed149d305506088156308dafddba"; - revision = "1"; - editedCabalFile = "028vqbmqkc9gjsk34n74ssi0xfn085v26zdvpixgfi5yd7cvfg03"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - filepath http-api-data http-media http-types monad-control mtl - network network-uri resourcet servant string-conversions tagged - text transformers transformers-base transformers-compat wai - wai-app-static word8 - ]; - executableHaskellDepends = [ aeson base servant text wai warp ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.2.0"; - sha256 = "5bec0129407580bde3b5bc49fc75737c916b6eaf0ea421bf72f5bf029342741b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming" = callPackage - ({ mkDerivation, base, http-types, servant, stdenv }: - mkDerivation { - pname = "servant-streaming"; - version = "0.3.0.0"; - sha256 = "980d486577658697891360479195ed493859e2279f76334101a45c880f7c5a4c"; - revision = "3"; - editedCabalFile = "04mc3k97sk0r90m8ca34gqpb2bz8yljp3j613xx7xz90sffqc1hq"; - libraryHaskellDepends = [ base http-types servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming#readme"; - description = "Servant combinators for the 'streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming-client" = callPackage - ({ mkDerivation, base, bytestring, http-media, http-types - , resourcet, servant, servant-client-core, servant-streaming - , stdenv, streaming - }: - mkDerivation { - pname = "servant-streaming-client"; - version = "0.3.0.0"; - sha256 = "42e2b229fa37538466dafa1992ab735c8342801dc07e1fff2706d460345770c0"; - revision = "1"; - editedCabalFile = "07xkgnhi8aspnqms5gx67ssw5m595gda8yqypdg2q59wwc6ib68d"; - libraryHaskellDepends = [ - base bytestring http-media http-types resourcet servant - servant-client-core servant-streaming streaming - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming#readme"; - description = "Client instances for the 'servant-streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming-server" = callPackage - ({ mkDerivation, base, bytestring, http-media, http-types - , resourcet, servant, servant-server, servant-streaming, stdenv - , streaming, streaming-wai, wai - }: - mkDerivation { - pname = "servant-streaming-server"; - version = "0.3.0.0"; - sha256 = "c6e0a846e0156e097bb6a60710009fb4935241a3e7ce5b12b867ae094d1f5053"; - revision = "1"; - editedCabalFile = "1xfx22a83xwq2bzv7gm3z9drd5hiq6wz7yyvfpjz1c2dcicwflvm"; - libraryHaskellDepends = [ - base bytestring http-media http-types resourcet servant - servant-server servant-streaming streaming streaming-wai wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming-server#readme"; - description = "Server instances for the 'servant-streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal - , cabal-doctest, hspec, http-media, insert-ordered-containers, lens - , QuickCheck, servant, singleton-bool, stdenv, swagger2, text - , unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.6"; - sha256 = "fc1c88d8767c408c3fc3f507f10b44420f44a4e3ea77a4af61f94686c408a6bf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring hspec http-media - insert-ordered-containers lens QuickCheck servant singleton-bool - swagger2 text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate Swagger specification for your servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.0.3.13.2"; - sha256 = "b6dcb349d845e5a4fa357cb358f44814f30ba23129abd64cb41bda959e629352"; - revision = "2"; - editedCabalFile = "0sz08w56f7p74saass6xdzmbpyk78hpa9d79kkd2nclwinajpkgr"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3.1"; - sha256 = "ab379f8dec934c573c62c72ad49cc04c7e3c77a93fb8f375cfa965836eaa9616"; - revision = "1"; - editedCabalFile = "10p5yjzvfdn764mszlsx49kb55ygzi5m2mq32l9m91imvj1926b1"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-tracing" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, bytestring-lexing - , containers, hashable, http-api-data, http-client, lifted-base - , monad-control, mtl, random, servant, servant-server, stdenv, text - , time, transformers, unordered-containers, wai, warp - }: - mkDerivation { - pname = "servant-tracing"; - version = "0.1.0.2"; - sha256 = "3edf2e58c60b6624a81c57bbc606889d779ba0cc57fc785240cb353f9caaea62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring bytestring-lexing containers hashable - http-api-data http-client lifted-base monad-control mtl random - servant servant-server text time unordered-containers wai - ]; - executableHaskellDepends = [ - async base bytestring containers http-client lifted-base - monad-control mtl servant servant-server text transformers wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/haskell-opentracing-light#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-websockets" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, conduit - , exceptions, resourcet, servant-server, stdenv, text, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-websockets"; - version = "1.1.0"; - sha256 = "63384c89db83bd03e00f2f6796c391fc133ffb3c2bc72976778d476ed82f0a51"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring conduit exceptions resourcet - servant-server text wai wai-websockets warp websockets - ]; - executableHaskellDepends = [ - aeson base conduit servant-server text wai warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/moesenle/servant-websockets#readme"; - description = "Small library providing WebSocket endpoints for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.0"; - sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "22"; - editedCabalFile = "1mi52j2c7960k0qmxqd7238yxgbccb0xgfj3ahh0zfckficn9bk7"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serverless-haskell" = callPackage - ({ mkDerivation, aeson, aeson-casing, aeson-extra, amazonka-core - , amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive - , http-types, iproute, lens, stdenv, text, time, unix - , unordered-containers - }: - mkDerivation { - pname = "serverless-haskell"; - version = "0.6.7"; - sha256 = "a9ca87d11b16021d9de98ab982f9311fe7e02731010570bd61e7bdf046e3645c"; - libraryHaskellDepends = [ - aeson aeson-casing aeson-extra amazonka-core amazonka-kinesis - amazonka-s3 base bytestring case-insensitive http-types iproute - lens text time unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seek-oss/serverless-haskell#readme"; - description = "Deploying Haskell code onto AWS Lambda using Serverless"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "servius" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , cmark-gfm, http-types, shakespeare, stdenv, text, wai - , wai-app-static - }: - mkDerivation { - pname = "servius"; - version = "1.2.3.0"; - sha256 = "72c4b63e85df0cb51935bec85e31d44c6ee5cafd0015bd5e6ff44286e9e18b27"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base blaze-builder blaze-html bytestring cmark-gfm http-types - shakespeare text wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/servius#readme"; - description = "Warp web server with template rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "ses-html" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, byteable - , bytestring, cryptohash, HsOpenSSL, http-streams, stdenv, tagsoup - , time - }: - mkDerivation { - pname = "ses-html"; - version = "0.4.0.0"; - sha256 = "cff76ee03b538e69a3d107cd63d577210cf0f9879d470bf55519e887e2a8a08f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html byteable bytestring cryptohash - HsOpenSSL http-streams tagsoup time - ]; - doHaddock = false; - doCheck = false; - description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "set-cover" = callPackage - ({ mkDerivation, base, containers, enummapset, psqueues, semigroups - , stdenv, utility-ht - }: - mkDerivation { - pname = "set-cover"; - version = "0.0.9"; - sha256 = "afebfd20c00ff68cd99c7e457d15542003228a56d98af63565549a77852f73e1"; - revision = "2"; - editedCabalFile = "1jpg9iyq0mymdbq392nfmicwfmcmq5mg688ndmhvjx08ljdl54ha"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers enummapset psqueues semigroups utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/set-cover/"; - description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.8"; - sha256 = "6dd148e47714707c311d20af606284ab392392a84ffb71da4004010e67d5b969"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/IchUndNichtDu/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sexp-grammar" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , happy, invertible-grammar, prettyprinter, recursion-schemes - , scientific, semigroups, stdenv, text, utf8-string - }: - mkDerivation { - pname = "sexp-grammar"; - version = "2.0.1"; - sha256 = "babe1c38e7ce20c6158b12ebf3cc31a2ca5c777ba37ebee40315fa0360ecdf7e"; - libraryHaskellDepends = [ - array base bytestring containers deepseq invertible-grammar - prettyprinter recursion-schemes scientific semigroups text - utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/sexp-grammar"; - description = "Invertible grammar combinators for S-expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, filepath, hashable, js-flot, js-jquery, primitive, process - , random, stdenv, time, transformers, unix, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.16.4"; - sha256 = "b732a3a46ceb3b4545a78c3733e0a7904763e7cd3ee8bf4fe2e1e91f2c9b1436"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath hashable - js-flot js-jquery primitive process random time transformers unix - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra filepath hashable - js-flot js-jquery primitive process random time transformers unix - unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake-language-c" = callPackage - ({ mkDerivation, base, data-default-class, fclabels, process, shake - , split, stdenv, unordered-containers - }: - mkDerivation { - pname = "shake-language-c"; - version = "0.12.0"; - sha256 = "661e350179e55c930c3c36f53853db2bc2697d88c5265049085cea09f5aa1ab0"; - libraryHaskellDepends = [ - base data-default-class fclabels process shake split - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/samplecount/shake-language-c"; - description = "Utilities for cross-compiling with Shake"; - license = stdenv.lib.licenses.asl20; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.19"; - sha256 = "b434eccf29718171a1082d62497e00d3f29105c03c5bdae7dd8bf01f6fab3640"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, lifted-async, lifted-base - , monad-control, mtl, process, stdenv, system-fileio - , system-filepath, text, time, transformers, transformers-base - , unix, unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.8.1"; - sha256 = "de8814879c7a5e7f1f7f0d9c56c1dfee30d6d63ba1140946e5ed158dd75e6e08"; - revision = "1"; - editedCabalFile = "0crf0m077wky76f5nav2p9q4fa5q4yhv5l4bq9hd073dzdaywhz0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions lifted-async lifted-base monad-control mtl process - system-fileio system-filepath text time transformers - transformers-base unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shortcut-links" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "shortcut-links"; - version = "0.4.2.0"; - sha256 = "1e6b75c5e94fddf9e2e665821ac70f5083e5d40d1fd55813e94943ce02335027"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/shortcut-links"; - description = "Link shortcuts for use in text markup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.0.0"; - sha256 = "22c45747c79055b5310c1da2af717bffded65ea39479c61783f8c1a22e953086"; - revision = "2"; - editedCabalFile = "003ry21snn1b9ip5c1z62hzdy24ckbbb5zf637nxcf9qj07z2xsz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "show-prettyprint" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, prettyprinter, stdenv - , trifecta - }: - mkDerivation { - pname = "show-prettyprint"; - version = "0.2.2"; - sha256 = "f07d860b9bb4176a4e46038c5100ecf07d443daa1b15455ca4c2bd4d10e9af55"; - libraryHaskellDepends = [ - ansi-wl-pprint base prettyprinter trifecta - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/show-prettyprint#readme"; - description = "Robust prettyprinter for output of auto-generated Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siggy-chardust" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "siggy-chardust"; - version = "1.0.0"; - sha256 = "9f730c3cc04ea629e0b655bfff66f83e146eb3b9f0908d5dc00b4c558d5f5a43"; - revision = "1"; - editedCabalFile = "1lknm1jr6h5qpixc727aj3zbmj4ia21r9lb8gzj50iildgmfk33b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/siggy-chardust#readme"; - description = "Rounding rationals to significant digits and decimal places"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5"; - sha256 = "cef625635053a46032ca53b43d311921875a437910b6568ded17027fdca83839"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv }: - mkDerivation { - pname = "simple-cmd"; - version = "0.1.1"; - sha256 = "a90e03f95d0a44c4bdd2c4d21486b857a7f3c33ccf68ffddab79fa3fea512f79"; - libraryHaskellDepends = [ base directory filepath process ]; - doHaddock = false; - doCheck = false; - description = "Simple String-based process commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.30"; - sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.4.0.8"; - sha256 = "8ae47c628cb87096533ae44f6489dda98ea320ee5ee521cf7a41cc1e81c1334a"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simplest-sqlite" = callPackage - ({ mkDerivation, base, bytestring, exception-hierarchy, sqlite - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "simplest-sqlite"; - version = "0.1.0.0"; - sha256 = "5f0bdee8a4ba2b5dea03ff8ecfc91827602624a91d62eb2b4ce90b4d57005d6e"; - libraryHaskellDepends = [ - base bytestring exception-hierarchy template-haskell text - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "comming soon"; - description = "Simplest SQLite3 binding"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sqlite;}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, dec, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.5"; - sha256 = "405dd57dea92857c04f539c3394894c40c8103ea0c4f3f0fdbfbd8acccde899f"; - revision = "1"; - editedCabalFile = "1g2dchvp5clg3hfdrp7hf5pbl9kcyhqhnqxqxd7n861nfd661wqd"; - libraryHaskellDepends = [ base dec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.2"; - sha256 = "8f8169b013a5e4725be9682bf413019cdaf6e020455839612c145ba6849e9cf1"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, mtl, stdenv, syb - , template-haskell, text, th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.4.1"; - sha256 = "5d7a200c814a5f1ac16db04456fdafbdea39fc0ee6c934a9ef7bcd2d6da2f9cf"; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "size-based" = callPackage - ({ mkDerivation, base, dictionary-sharing, stdenv, template-haskell - , testing-type-modifiers - }: - mkDerivation { - pname = "size-based"; - version = "0.1.2.0"; - sha256 = "779ff6c45476d20ffd2ad7327b44cefaaf0436ed89f43b2967761c0b58a4151a"; - revision = "1"; - editedCabalFile = "0kax1ypjyglkn6iff1x4yz12y7f2n249m95xvdhrc63hsa4xlcqv"; - libraryHaskellDepends = [ - base dictionary-sharing template-haskell testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - description = "Sized functors, for size-based enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, skylighting-core, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "skylighting"; - version = "0.7.4"; - sha256 = "e298417c8044e7e3f2c79bdef23ad7f30ae66855ebd8f545ae5a939a83d82c70"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe skylighting-core text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, stdenv, text, transformers - , utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.7.4"; - sha256 = "80ba354586b80cde6b1756c6eefe13f324cc6c0e22c793be53fe15cb126e8dab"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe text transformers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slack-web" = callPackage - ({ mkDerivation, aeson, base, containers, errors, http-api-data - , http-client, http-client-tls, megaparsec, mtl, servant - , servant-client, servant-client-core, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "slack-web"; - version = "0.2.0.7"; - sha256 = "3d2996e1881357449ddb5ce98a59424d612ea45d076ddc1a02182ed28462a8c9"; - libraryHaskellDepends = [ - aeson base containers errors http-api-data http-client - http-client-tls megaparsec mtl servant servant-client - servant-client-core text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jpvillaisaza/slack-web"; - description = "Bindings for the Slack web API"; - license = stdenv.lib.licenses.mit; - }) {}; - "slave-thread" = callPackage - ({ mkDerivation, base, base-prelude, list-t, mmorph - , partial-handler, stdenv, stm-containers, transformers - }: - mkDerivation { - pname = "slave-thread"; - version = "1.0.2"; - sha256 = "e47120598dd65ebee33253911a31518021323a5ccfa52588e13c44fd5f5b4b13"; - libraryHaskellDepends = [ - base base-prelude list-t mmorph partial-handler stm-containers - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/slave-thread"; - description = "A principal solution to ghost threads and silent exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.5"; - sha256 = "9020e67895a57bde02d7df2c0af06a4c769eff56d48b6a830f6d803df891aea4"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.9"; - sha256 = "d3cafbc34a5d03363ddd41e59bd681168cd2d0aa8be4678db9ae1904ad202a4f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smtp-mail" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , bytestring, cryptohash, filepath, mime-mail, network, stdenv - , text - }: - mkDerivation { - pname = "smtp-mail"; - version = "0.1.4.6"; - sha256 = "86dacbef87a2519222a1165b49401a437887a249f5bfd63a99702198dad214bc"; - revision = "1"; - editedCabalFile = "1lvzami2vzrkgz5na71k1yi7346xdarxm0sbi6alq3wbpj1raakq"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring bytestring - cryptohash filepath mime-mail network text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jhickner/smtp-mail"; - description = "Simple email sending via SMTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-blaze" = callPackage - ({ mkDerivation, base, blaze-html, snap-core, stdenv }: - mkDerivation { - pname = "snap-blaze"; - version = "0.2.1.5"; - sha256 = "b36e35bd4ba3087b3de92702e488ba6570675719243b5dbdf4eae0b819988841"; - libraryHaskellDepends = [ base blaze-html snap-core ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/snap-blaze"; - description = "blaze-html integration for Snap"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-core" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , case-insensitive, containers, directory, filepath, hashable - , HUnit, io-streams, lifted-base, monad-control, mtl, network - , network-uri, old-locale, random, readable, regex-posix, stdenv - , text, time, transformers, transformers-base, unix-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "snap-core"; - version = "1.0.3.2"; - sha256 = "4c4398476fe882122ce8adc03f69509588d071fc011f50162cd69706093dd88c"; - revision = "3"; - editedCabalFile = "0wlhn33r7c9g7j23y006ddq9d87lkmianvvfrbl8jd8mvjvj2gfa"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder case-insensitive - containers directory filepath hashable HUnit io-streams lifted-base - monad-control mtl network network-uri old-locale random readable - regex-posix text time transformers transformers-base unix-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "Snap: A Haskell Web Framework (core interfaces and types)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-server" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , bytestring-builder, case-insensitive, clock, containers, filepath - , HsOpenSSL, io-streams, io-streams-haproxy, lifted-base, mtl - , network, old-locale, openssl-streams, snap-core, stdenv, text - , time, unix, unix-compat, vector - }: - mkDerivation { - pname = "snap-server"; - version = "1.1.0.0"; - sha256 = "249ea390a4e54899b310c0dd13b91af007a2b685bd0d9769c3e208dd914d7c6f"; - revision = "3"; - editedCabalFile = "0a9d3nqb5rvgm25nak68lp6yj9m6cwhbgdbg5l7ib5i2czcg7yjh"; - configureFlags = [ "-fopenssl" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring bytestring-builder - case-insensitive clock containers filepath HsOpenSSL io-streams - io-streams-haproxy lifted-base mtl network old-locale - openssl-streams snap-core text time unix unix-compat vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "A web server for the Snap Framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snappy" = callPackage - ({ mkDerivation, base, bytestring, snappy, stdenv }: - mkDerivation { - pname = "snappy"; - version = "0.2.0.2"; - sha256 = "0565df326a87c6ea67f8fb638e01acb0562cabd16a67fc6f9ea9cd191de8cd91"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ snappy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/snappy"; - description = "Bindings to the Google Snappy library for fast compression/decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) snappy;}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-openssl" = callPackage - ({ mkDerivation, base, configurator, data-default, HsOpenSSL - , http-client, http-client-openssl, soap, stdenv, text - }: - mkDerivation { - pname = "soap-openssl"; - version = "0.1.0.2"; - sha256 = "2008547f4fd22063479ce1cd1c483db926f5f08a2ff6fb0c60fb2f0f7d42830f"; - revision = "1"; - editedCabalFile = "1b3aivn9jfaax00id7x4cqvpmd6lgynslchlry0qsmq1lj466cdf"; - libraryHaskellDepends = [ - base configurator data-default HsOpenSSL http-client - http-client-openssl soap text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using openssl bindings)"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socket-activation" = callPackage - ({ mkDerivation, base, network, stdenv, transformers, unix }: - mkDerivation { - pname = "socket-activation"; - version = "0.1.0.2"; - sha256 = "b99e7b4f296cd462aac84e5bb61fb02953e2080d1351e9e10a63d35dc34eb43b"; - revision = "1"; - editedCabalFile = "0bvm8ik8fp0v5gjw6q4h767zgs1i4ydckdypvqa85sarc985hkmp"; - libraryHaskellDepends = [ base network transformers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddfisher/haskell-socket-activation"; - description = "systemd socket activation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, basement, bytestring, cereal, network - , stdenv - }: - mkDerivation { - pname = "socks"; - version = "0.6.1"; - sha256 = "734447558bb061ce768f53a0df1f2401902c6bee396cc96ce627edd986ef6a73"; - libraryHaskellDepends = [ - base basement bytestring cereal network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3.1"; - sha256 = "70a6ab47d1e16271332574667dd30f77eefb331a6e7dda4e959f48ac3359aa45"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3.1"; - sha256 = "cde9c76515588257fddece108376537bcda7698d0107bf0386b968ea5189ec38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparkle" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, choice - , constraints, distributed-closure, filepath, inline-java, jni, jvm - , jvm-streaming, process, regex-tdfa, singletons, stdenv, streaming - , temporary, text, unix, vector, zip-archive - }: - mkDerivation { - pname = "sparkle"; - version = "0.7.4"; - sha256 = "7858c1b4627f01dc144b984d6b841d29365f8d73ef436d07ce83c8e782d0999c"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal inline-java jvm-streaming ]; - libraryHaskellDepends = [ - base binary bytestring choice constraints distributed-closure - inline-java jni jvm jvm-streaming singletons streaming text vector - ]; - executableHaskellDepends = [ - base bytestring filepath process regex-tdfa temporary text unix - zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/sparkle#readme"; - description = "Distributed Apache Spark applications in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "spatial-math" = callPackage - ({ mkDerivation, base, binary, cereal, ghc-prim, lens, linear - , stdenv, TypeCompose - }: - mkDerivation { - pname = "spatial-math"; - version = "0.5.0.1"; - sha256 = "c91cf29157c2a3425f40afdd6fb763f2fc4299eb4c32725ac64d2ba568c2a410"; - libraryHaskellDepends = [ - base binary cereal ghc-prim lens linear TypeCompose - ]; - doHaddock = false; - doCheck = false; - description = "3d math including quaternions/euler angles/dcms and utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, leancheck, stdenv }: - mkDerivation { - pname = "speculate"; - version = "0.3.5"; - sha256 = "706cb2ac18b2d646bc20cc80135bad10e30bd0096ab479308cd110077035ea44"; - libraryHaskellDepends = [ base cmdargs containers leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speculation" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, stm, transformers }: - mkDerivation { - pname = "speculation"; - version = "1.5.0.3"; - sha256 = "73bf641a87e0d28a2ba233922db936e0776c3dc24ed421f6f963f015e2eb4d3f"; - libraryHaskellDepends = [ base ghc-prim stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/speculation"; - description = "A framework for safe, programmable, speculative parallelism"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "sphinx" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , network, stdenv, text, text-icu, xml - }: - mkDerivation { - pname = "sphinx"; - version = "0.6.0.2"; - sha256 = "76a977c6ce6e71c220bd5fed7acd0be500c2a1b5c8d081a29564a8e37ba7a6df"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 network text text-icu - xml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/haskell-sphinx-client"; - description = "Haskell bindings to the Sphinx full-text searching daemon"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.3"; - sha256 = "fce462557f490c6c3d264ca70ef98a2c644ba341a71e6ee9f87ee7f3e7ab0acc"; - revision = "1"; - editedCabalFile = "178d81ksnmgppbd09ci53r88iyacn3phy55v5i4ybfz5d8rfjpa5"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spoon" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "spoon"; - version = "0.3.1"; - sha256 = "b9b350b6730e34c246bbf7e228a86b3d4925b52c95542f7676d719ef2a9881d4"; - revision = "1"; - editedCabalFile = "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Catch errors thrown from pure computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.8"; - sha256 = "646716e795f3cd82f0277ffb672eca26a03f6897d85da3c267ee04cf4dc4a765"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.2"; - sha256 = "3f6a5a0cf8f8aaf452caa2389db54e09494be3fd9dce111fbf06df2b7eddeb38"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual - , bytestring, containers, direct-sqlite, Only, semigroups, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "sqlite-simple"; - version = "0.4.16.0"; - sha256 = "60d2a188d1967ebc0d3ec9175776c45a6e1e6e7a4d44567548cb7fe6961d30de"; - revision = "1"; - editedCabalFile = "123bykwxl3p6918bjxv073ksf8k1hn6s0rlph934h18400n51fdf"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-textual bytestring containers - direct-sqlite Only semigroups template-haskell text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nurpax/sqlite-simple"; - description = "Mid-Level SQLite client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple-errors" = callPackage - ({ mkDerivation, base, parsec, sqlite-simple, stdenv, text }: - mkDerivation { - pname = "sqlite-simple-errors"; - version = "0.6.1.0"; - sha256 = "5101f84a6d74d658398cc4ef557ad3c6158d53e9c948301cc47ed0cc3eaa716f"; - libraryHaskellDepends = [ base parsec sqlite-simple text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/sqlite-simple-errors"; - description = "Wrapper around errors from sqlite-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "squeal-postgresql" = callPackage - ({ mkDerivation, aeson, base, binary-parser, bytestring - , bytestring-strict-builder, deepseq, generics-sop, lifted-base - , mmorph, monad-control, mtl, network-ip, postgresql-binary - , postgresql-libpq, profunctors, resource-pool, scientific, stdenv - , text, time, transformers, transformers-base, uuid-types, vector - }: - mkDerivation { - pname = "squeal-postgresql"; - version = "0.3.2.0"; - sha256 = "98b22c9e3278e6b00feb4c6c449d1daad498ba3a4c16aa588cf3b192c5804b08"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary-parser bytestring bytestring-strict-builder - deepseq generics-sop lifted-base mmorph monad-control mtl - network-ip postgresql-binary postgresql-libpq profunctors - resource-pool scientific text time transformers transformers-base - uuid-types vector - ]; - executableHaskellDepends = [ - base bytestring generics-sop mtl text transformers - transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/morphismtech/squeal"; - description = "Squeal PostgreSQL Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "1.2.1"; - sha256 = "6bfbdd2755c606f7b146243db1eefc2f49c720264ba9072a9d170a1bbdbc113b"; - revision = "8"; - editedCabalFile = "0jz9cg3w71nvxc4y6hrwjayxl2291q5xm5r4qrhz1ag1lvzk26yn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stack" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, async - , attoparsec, base, base64-bytestring, bindings-uname, bytestring - , Cabal, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, deepseq, directory, echo, exceptions, extra - , file-embed, filelock, filepath, fsnotify, generic-deriving - , hackage-security, hashable, hpack, hpc, http-client - , http-client-tls, http-conduit, http-types, memory, microlens - , mintty, monad-logger, mono-traversable, mtl, mustache - , neat-interpolation, network-uri, open-browser - , optparse-applicative, path, path-io, persistent - , persistent-sqlite, persistent-template, pretty, primitive - , process, project-template, regex-applicative-text, resourcet - , retry, rio, semigroups, split, stdenv, stm, store, store-core - , streaming-commons, tar, template-haskell, temporary, text - , text-metrics, th-reify-many, time, tls, transformers - , typed-process, unicode-transforms, unix, unix-compat, unliftio - , unordered-containers, vector, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "stack"; - version = "1.7.1"; - sha256 = "19c4f2e02975bb797a339cfe2893c9e1f40241a910da45be34c5c2f05d62329f"; - revision = "10"; - editedCabalFile = "1985lm9m6pm9mi4h4m2nrn9v2rnnfh14slcnqgyxy6k934xqvg35"; - configureFlags = [ - "-fdisable-git-info" "-fhide-dependency-versions" - "-fsupported-build" - ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath ]; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - executableHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - preCheck = "export HOME=$TMPDIR"; - postInstall = '' - exe=$out/bin/stack - mkdir -p $out/share/bash-completion/completions - $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack - ''; - homepage = "http://haskellstack.org"; - description = "The Haskell Tool Stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "fd569cd27cfd62fb9d3e544e222450ec2734c44a3293994f35a26af982ce3d93"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "state-codes" = callPackage - ({ mkDerivation, aeson, base, shakespeare, stdenv, text }: - mkDerivation { - pname = "state-codes"; - version = "0.1.3"; - sha256 = "1667dc977607fc89a0ca736294b2f0a19608fbe861f03f404c3f8ee91fd0f4a1"; - libraryHaskellDepends = [ aeson base shakespeare text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acamino/state-codes#README"; - description = "ISO 3166-2:US state codes and i18n names"; - license = stdenv.lib.licenses.mit; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statestack" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "statestack"; - version = "0.2.0.5"; - sha256 = "f4eadcf9b08c14cb084436f81e16edf78d6eeda77a3f93e38ba5d7e263ea5f66"; - revision = "3"; - editedCabalFile = "0s9v88gcc5wnfj4c6xq86asadmh4y8z8ycv2wz5nwfwfazfgzcy3"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simple State-like monad transformer with saveable and restorable state"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-canvas" = callPackage - ({ mkDerivation, base, double-conversion, free, mtl, stdenv, text - }: - mkDerivation { - pname = "static-canvas"; - version = "0.2.0.3"; - sha256 = "370824df08cedef2aacbbc8b855fd5cd3c80cfcc07ae2931e0f25397a61dd749"; - revision = "1"; - editedCabalFile = "1z3mi5z590xxmipd5fxylcmf39rrwvmwva2rkk6km1nxb5kfasl7"; - libraryHaskellDepends = [ base double-conversion free mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeffreyrosenbluth/static-canvas"; - description = "DSL to generate HTML5 Canvas javascript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - , vector - }: - mkDerivation { - pname = "static-text"; - version = "0.2.0.3"; - sha256 = "599d7a3e432f37128aa6d5ffa985bea7d35961698fc0df7c1cba7e3875413da1"; - libraryHaskellDepends = [ - base bytestring template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/static-text#readme"; - description = "Lists, Texts, ByteStrings and Vectors of statically known length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, base, base-orphans, binary, deepseq, erf - , math-functions, monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.14.0.2"; - sha256 = "3495df2da42c9fcc5b594b97f16c02353bfd6616d6e134ac031dac389d7a4778"; - revision = "2"; - editedCabalFile = "1bx70yqkn62ii17fjv3pig4hklrzkqd09zj67zzjiyjzmn04fir3"; - libraryHaskellDepends = [ - aeson base base-orphans binary deepseq erf math-functions monad-par - mwc-random primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.2"; - sha256 = "3bf41af8950ecf0ac5645634fdd233f941a904c6c56222ff4efb03f5d17043e8"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "stm"; - version = "2.4.5.1"; - sha256 = "6cf0c280062736c9980ba1c2316587648b8e9d4e4ecc5aed16a41979c0a3a3f4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Software_transactional_memory"; - description = "Software Transactional Memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.1"; - sha256 = "e80e5be72a4564fa45e1e27f91c0984e12d2a736d0ceb9594350d573efee1442"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-containers" = callPackage - ({ mkDerivation, base, base-prelude, focus, hashable, list-t - , primitive, stdenv, transformers - }: - mkDerivation { - pname = "stm-containers"; - version = "0.2.16"; - sha256 = "69042f06647cdc69e1ecf83863d88d67acd377f631d8a15966df67245152502f"; - libraryHaskellDepends = [ - base base-prelude focus hashable list-t primitive transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-containers"; - description = "Containers for STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2.1"; - sha256 = "e8e687268c86a6b635e7ee08415f31921d4a46eed267fe573a57981ec00d8419"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-stats" = callPackage - ({ mkDerivation, base, containers, stdenv, stm, template-haskell - , time - }: - mkDerivation { - pname = "stm-stats"; - version = "0.2.0.0"; - sha256 = "0a4f39b1e9fffe50d6dfaa9c0b04977e510fae8b6bd3d7abb7076e8aa8f01345"; - libraryHaskellDepends = [ - base containers stm template-haskell time - ]; - doHaddock = false; - doCheck = false; - description = "retry statistics for STM transactions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.5"; - sha256 = "461ed69edf8d68cdadd8d0c6159e9c2fef71d1a440c6feded0b07c77d9113461"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.2"; - sha256 = "ab076f15c47a2a324a2119c8feee0a78e1d2af488d0d24b7113b4bb7eee47c06"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-endian" = callPackage - ({ mkDerivation, base, byteorder, stdenv }: - mkDerivation { - pname = "storable-endian"; - version = "0.2.6"; - sha256 = "3743ac8f084ed3187b83f17b4fac280e77c5df01f7910f42b6a1bf09d5a65489"; - revision = "1"; - editedCabalFile = "12f8sscsvsarlwz3p6kk9vbvqsbyhs8lhafgn9h7c0z6pz1amrya"; - libraryHaskellDepends = [ base byteorder ]; - doHaddock = false; - doCheck = false; - description = "Storable instances with endianness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "store" = callPackage - ({ mkDerivation, array, async, base, base-orphans - , base64-bytestring, bifunctors, bytestring, containers - , contravariant, cryptohash, deepseq, directory, filepath, free - , ghc-prim, hashable, hspec, hspec-smallcheck, integer-gmp - , lifted-base, monad-control, mono-traversable, network, primitive - , resourcet, safe, semigroups, smallcheck, stdenv, store-core, syb - , template-haskell, text, th-lift, th-lift-instances, th-orphans - , th-reify-many, th-utilities, time, transformers - , unordered-containers, vector, void - }: - mkDerivation { - pname = "store"; - version = "0.5.0"; - sha256 = "32ee23c58cf8fbc6250dc38d719baffb90b668da9217612ea45728e9f61579c7"; - libraryHaskellDepends = [ - array async base base-orphans base64-bytestring bifunctors - bytestring containers contravariant cryptohash deepseq directory - filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp - lifted-base monad-control mono-traversable network primitive - resourcet safe semigroups smallcheck store-core syb - template-haskell text th-lift th-lift-instances th-orphans - th-reify-many th-utilities time transformers unordered-containers - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "store-core" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, primitive, stdenv - , text, transformers - }: - mkDerivation { - pname = "store-core"; - version = "0.4.4"; - sha256 = "5baecf8c074ff8dca4633630adc979696d7e8ee0a58e143e4d6d0f5c79f30991"; - libraryHaskellDepends = [ - base bytestring ghc-prim primitive text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast and lightweight binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.24.4"; - sha256 = "8afe606e3eed9ef81f5fb350950c52616ca9191cdf339bfc2666e1b789cf8f58"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl - , semigroups, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.2.0"; - sha256 = "5a6b7744695a2651e9835789a7c4ce48dbd5f13ee99f35f63261f9501ce1cd11"; - revision = "2"; - editedCabalFile = "0cfxibcf0lkzbbyxl96dpnmacxv39ljwrlr3935bxykihr83j9xf"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl semigroups transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, streaming - , streaming-bytestring - }: - mkDerivation { - pname = "streaming-attoparsec"; - version = "1.0.0"; - sha256 = "ff28925269ed98f03ef10a482980030dd7c8ef4c05ef6e32d147db9331df6102"; - revision = "2"; - editedCabalFile = "07hqs8nn1rhsqckqmw46yp19kd0vk35q139al6yq0k1dzpvsrcsx"; - libraryHaskellDepends = [ - attoparsec base bytestring streaming streaming-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-attoparsec"; - description = "Attoparsec integration for the streaming ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-bytestring" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl - , resourcet, stdenv, streaming, transformers, transformers-base - }: - mkDerivation { - pname = "streaming-bytestring"; - version = "0.1.6"; - sha256 = "c1d723fc9676b85f62f9fc937d756af61d81f69c9c6591e5d38c9b09b7a253d3"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions mmorph mtl resourcet streaming - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-bytestring"; - description = "effectful byte steams, or: bytestring io done right"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.1.0"; - sha256 = "d8d1fe588924479ea7eefce8c6af77dfb373ee6bde7f4691bdfcbd782b36d68d"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming-wai" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, http-types - , stdenv, streaming, wai - }: - mkDerivation { - pname = "streaming-wai"; - version = "0.1.1"; - sha256 = "35b4182386cc1d23731b3eac78dda79a1b7878c0b6bd78fd99907c776dbfaf30"; - libraryHaskellDepends = [ - base bytestring bytestring-builder http-types streaming wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jb55/streaming-wai"; - description = "Streaming Wai utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, containers, exceptions - , heaps, lockfree-queue, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.3.0"; - sha256 = "33d4b3d03e6e7b66a25c3259b0c80a51a0366e6bfb35686eeacb2d8cb831576b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base containers exceptions heaps lockfree-queue - monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streamproc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "streamproc"; - version = "1.6.2"; - sha256 = "e76effaaff83e6a066df949415db109b405bda0aaeb95f0710906c65892584f2"; - revision = "1"; - editedCabalFile = "19c51gks028x8mnywkx1nz0s6bwn2mxs5ddmaj2q8n9l5pvfkcgs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/streamproc"; - description = "Stream Processer Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.3"; - sha256 = "02d934ec5053d3d42031798e5a3cd25547ccde5973d562f9fc943d635d9956c0"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, Cabal, process, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.2"; - sha256 = "9757cad387856a313729caffe0639215a10be7d72b09c44bcab9e55ee2a8c218"; - revision = "1"; - editedCabalFile = "1flc6mr1nnv8mx69cy1ilwk5gxsidcns82vjdg8dcs8z5axg95kp"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.0"; - sha256 = "4d7daffe1d58671af5111c7179905653d692884cac21f09061768a5a6354e6b8"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , http-client, http-client-tls, http-types, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "strive"; - version = "5.0.6"; - sha256 = "67a4db92a419f027e4af0545f8ecb72089eff138c008da0e91e5eb650d4aee36"; - libraryHaskellDepends = [ - aeson base bytestring data-default gpolyline http-client - http-client-tls http-types template-haskell text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/strive#readme"; - description = "A client for the Strava V3 API"; - license = stdenv.lib.licenses.mit; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.1"; - sha256 = "df60ac419775ad96959338c7f14e93a3d47b82728234df206b0145d33694aa41"; - revision = "2"; - editedCabalFile = "1v9gmnj17cm4p491rizvw9xdj255lk1y24gz6s8bqcz56sdb4d4s"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stylish-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , file-embed, filepath, haskell-src-exts, mtl, optparse-applicative - , semigroups, stdenv, strict, syb, yaml - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.9.2.0"; - sha256 = "db9f10056a949ad361b5fe3c6fc189601eec2c0058ff2b705ebe68e043b5229b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl semigroups syb yaml - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl optparse-applicative strict syb yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jaspervdj/stylish-haskell"; - description = "Haskell code prettifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-builder" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hashable, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "svg-builder"; - version = "0.1.1"; - sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc"; - revision = "2"; - editedCabalFile = "100nmkgcm1ncv4mkr1xcsa7bb3z6zx0lfayk8innd4hm62xsvhj3"; - libraryHaskellDepends = [ - base blaze-builder bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diagrams/svg-builder.git"; - description = "DSL for building SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.3"; - sha256 = "29e5154e3992413ef13a4c50407b9753df2e60f9fddaae03b5475e77a8d8db6a"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, bytestring - , Cabal, cabal-doctest, containers, generics-sop, hashable - , http-media, insert-ordered-containers, lens, mtl, network - , scientific, stdenv, template-haskell, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.2.2"; - sha256 = "82d352881041baaaa1ed63cc3262953df101dad5e401272dc62ee346b3ab6eca"; - revision = "3"; - editedCabalFile = "187jl8slpyr6blcxnhdp7wf85ab54pgqnbl11n816xg6fyqy7ylk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson base base-compat-batteries bytestring containers generics-sop - hashable http-media insert-ordered-containers lens mtl network - scientific template-haskell text time transformers - transformers-compat unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swish" = callPackage - ({ mkDerivation, base, containers, directory, filepath, hashable - , intern, mtl, network-uri, old-locale, polyparse, semigroups - , stdenv, text, time - }: - mkDerivation { - pname = "swish"; - version = "0.9.2.1"; - sha256 = "ef43bedf12c4f9c9b379a8aa00f339d9487769e4388a57ff108f16cb1f8c3f7f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers directory filepath hashable intern mtl network-uri - old-locale polyparse semigroups text time - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home"; - description = "A semantic web toolkit"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7"; - sha256 = "b8757dce5ab4045c49a0ae90407d575b87ee5523a7dd5dfa5c9d54fcceff42b5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.4"; - sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1.1"; - sha256 = "e5b4ee185f30a64d854fb02291f7bdf60f8846f1fcc3d67ebc6ab1f61e74ee88"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "tagged"; - version = "0.8.6"; - sha256 = "ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd"; - revision = "2"; - editedCabalFile = "1y8z8hmm846z7h3wqncpi0d4zhsnkwf08q0wchivkjw8di7ahz0z"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.2"; - sha256 = "916dd7fdd15452f3d760c345e023ce99496806b813ab01b03ff1b240bbd50210"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagshare" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "d2314bae2e6820700f2a61db9c9f7976e1b53547a49cdd3352bdf29ac3856ce0"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "TagShare - explicit sharing with tags"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.7"; - sha256 = "9980f28169dd0ee8d9e0a65d553044d9bb24c6f2c7e5f6cf0a53dbd25cf1ec25"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagstream-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, conduit-extra, data-default, resourcet - , stdenv, text, transformers, xml-conduit - }: - mkDerivation { - pname = "tagstream-conduit"; - version = "0.5.5.3"; - sha256 = "b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring case-insensitive conduit - conduit-extra data-default resourcet text transformers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yihuang/tagstream-conduit"; - description = "streamlined html tag parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.0"; - sha256 = "c89d697b6472b739db50e61201251fcaf8a8f5b595b1d9a488d395d7d5ce4b68"; - revision = "1"; - editedCabalFile = "1lydbwsmccf2av0g61j07bx7r5mzbcfgwvmh0qwg3a91857x264x"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.2.5"; - sha256 = "43ed3d6cdad9b0b33bd4ec16a969618847df9aa335d46e5135896c9cf8a4d33e"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - , wcwidth - }: - mkDerivation { - pname = "tasty"; - version = "1.1.0.4"; - sha256 = "3b4e3fa2c7dce8452c2636e5fe22323919461f52e905c132aae8dc12f10beebf"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix wcwidth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-ant-xml" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, ghc-prim, mtl, stdenv, stm, tagged, tasty - , transformers, xml - }: - mkDerivation { - pname = "tasty-ant-xml"; - version = "1.1.4"; - sha256 = "a88aee8127f424155d8cb0237b9c378cfba935579fb2d51fe5d0c009d2d20f6c"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving ghc-prim mtl - stm tagged tasty transformers xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-ant-xml"; - description = "Render tasty output to XML for Jenkins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "1.2.0.7"; - sha256 = "8c0bbf8636fa8c00c450d051278ee7ba81488cd90a84bca4e285d29cb85ae6f1"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.1"; - sha256 = "be6c5b384614a592fb056e2e4f7806416aa37f114db77d0f8986938ba7cc1d3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "http://git.coop/lwm/tasty-discover"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.1"; - sha256 = "519a5c0d2ef9dd60355479f11ca47423133364f20ad3151f3c8b105313405ac4"; - revision = "1"; - editedCabalFile = "1b3fn7d3zwhhwm3gp8cmmsdcrvn9dhshd665xrx1mk6cmy4m8k16"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.2"; - sha256 = "04103d2a2fd6acc8f66b67d943060e88a2ea36b799502bf3e76c2726a15c714c"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-hedgehog"; - version = "0.2.0.0"; - sha256 = "5a107fc3094efc50663e4634331a296281318b38c9902969c2d2d215d754a182"; - revision = "6"; - editedCabalFile = "0d7s1474pvnyad6ilr5rvpama7s468ya9ns4ksbl0827z9vvga43"; - libraryHaskellDepends = [ base hedgehog tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/tasty-hedgehog"; - description = "Integration for tasty and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.5"; - sha256 = "db0cdcf71d534cfa32a1698f1eb6be03192af09a5dd63177b697bc4ca8b81154"; - revision = "3"; - editedCabalFile = "14198y7w9y4h36b6agzmsyappkhz4gmmi6nlzj137z5siwic7igm"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.1"; - sha256 = "8f903bef276ef503e4ef8b66a1e201c224588e426bc76f7581480f66d47b7048"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10"; - sha256 = "10fd30cef4a0c2cefb70afecef5adcee1f32f0fd287f108321458fbfd6d7266f"; - revision = "1"; - editedCabalFile = "1ndkkywcqgb2wj339vgckjv5915da5kd4ixlkaww9fsba3qsrnwx"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.12"; - sha256 = "9eba31a2b0ca4857ed7cea15f6da7a6a9224419f1499e5f11b0cd68e3ef8cc68"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-stats" = callPackage - ({ mkDerivation, base, containers, directory, process, stdenv, stm - , tagged, tasty, time - }: - mkDerivation { - pname = "tasty-stats"; - version = "0.2.0.4"; - sha256 = "a64d018056c746efde87e830ff2e7bcd0b65b6582de96d493ca706ea0325447c"; - libraryHaskellDepends = [ - base containers directory process stm tagged tasty time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/tasty-stats#readme"; - description = "Collect statistics of your Tasty testsuite"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, io-streams - , network, pem, stdenv, tls, x509, x509-store, x509-system - }: - mkDerivation { - pname = "tcp-streams"; - version = "1.0.1.0"; - sha256 = "77d812e5db567875ca26c2682ceddf4bcf825d90dd10dcb171279bd7e96e4861"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class io-streams network pem tls x509 - x509-store x509-system - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "One stop solution for tcp client and server with tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system - , io-streams, network, stdenv, tcp-streams - }: - mkDerivation { - pname = "tcp-streams-openssl"; - version = "1.0.1.0"; - sha256 = "c3e7588ba7348fac87a9dcc531909f90bb3b4a1c01da9eb871a918d02b146afe"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL HsOpenSSL-x509-system io-streams network - tcp-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "Tcp streams using openssl for tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2.1"; - sha256 = "d46e38067c4d064f3c9c77219f570ba4e9dbbd7273a5edc4860610cde4afb84e"; - revision = "4"; - editedCabalFile = "0830zzgbf5xffa1yqwcvy4xm1wzzydvy5wmy3sqk3a5n85v295by"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "teardown" = callPackage - ({ mkDerivation, base, prettyprinter, rio, stdenv, typed-process - , unliftio - }: - mkDerivation { - pname = "teardown"; - version = "0.5.0.0"; - sha256 = "50eac07b244bd2d662731929e8b1785df3e8a5014b4bb62f6e843e33e896395c"; - libraryHaskellDepends = [ - base prettyprinter rio typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-teardown#readme"; - description = "Build safe and composable teardown sub-routines for resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "telegram-bot-simple" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron - , hashable, http-api-data, http-client, http-client-tls - , monad-control, mtl, pretty-show, profunctors, servant - , servant-client, split, stdenv, stm, template-haskell, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "telegram-bot-simple"; - version = "0.2.0"; - sha256 = "8a8cc572880a792d1ed722bd0ac961892d79113c9fa1b2fbdf3019f98f904ea9"; - revision = "1"; - editedCabalFile = "1li6b3m9glhfg8agr9h0mrbxpr8zr46l57mzjfdqndm248ddbklv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring cron hashable http-api-data - http-client http-client-tls monad-control mtl pretty-show - profunctors servant servant-client split stm template-haskell text - time transformers unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring cron hashable http-api-data - http-client http-client-tls monad-control mtl pretty-show - profunctors servant servant-client split stm template-haskell text - time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fizruk/telegram-bot-simple#readme"; - description = "Easy to use library for building Telegram bots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.5"; - sha256 = "c9f678d4ec30599172eb887031f0bce2012b532daeb713836bd912bff64eee59"; - revision = "1"; - editedCabalFile = "1vmpk70h1594h9s216d3ngkb399fpny1d3sh4gg0vrc75p4as68d"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-feat" = callPackage - ({ mkDerivation, base, QuickCheck, size-based, stdenv - , testing-type-modifiers - }: - mkDerivation { - pname = "testing-feat"; - version = "1.1.0.0"; - sha256 = "1904d31ddce611474e8c836582efbca1ae7d1c7dc76083cf4300e8e0eeff58ec"; - libraryHaskellDepends = [ - base QuickCheck size-based testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JonasDuregard/testing-feat"; - description = "Functional Enumeration of Algebraic Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.11.1.1"; - sha256 = "c6f5a6dc010d23c2c38dc4fbc62d7c36d3d1c80d5ceb6a0e4b472b8278f4dbeb"; - revision = "1"; - editedCabalFile = "0740lpg42r0wdj9hm9gvnzrjka9mqpkzazx2s3qnliiigy39zk96"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq, ghc-prim - , integer-gmp, stdenv - }: - mkDerivation { - pname = "text"; - version = "1.2.3.1"; - sha256 = "8360624d5d01f278da320eebd16fd5d6f366b7f876d0ad424041d58e5e1147a6"; - revision = "2"; - editedCabalFile = "0ax6h9mvs4567nzi936jkd8f94bi8jnxis4wikjzyaxqfwm5zc6f"; - configureFlags = [ "-f-integer-simple" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq ghc-prim integer-gmp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/text"; - description = "An efficient packed Unicode text type"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "text-builder"; - version = "0.5.4.3"; - sha256 = "5058f50cc5814c7dc59d82f38347d6d8db8d42e5801156a0fa5611c2d7889ef5"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.13"; - sha256 = "ec174c30333548e21b045554329e6332d54bc355d96e0951ea3ea524463a2a34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.1"; - sha256 = "c6e26888d2751b78e3102747d0bccedeee4002a1eb6c76dd1fe6c3836b5082e8"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5"; - sha256 = "8f0c01a6a15b4314c2d47ab5f0772d176ec38f1c1fe190b9fa7db5149a6c4a0b"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.2"; - sha256 = "b3f2b867d14c7c2586ea580028606b6662293ad080726d5241def937e5e31167"; - revision = "2"; - editedCabalFile = "106p7c0399zxdlh9f9qkgy7g2gp3bxqdpy6m6lnfhzi0pm5y8mks"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, contravariant - , generic-deriving, ghc-boot-th, ghc-prim, integer-gmp, nats - , semigroups, stdenv, tagged, template-haskell, text - , th-abstraction, th-lift, transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "3.7.4"; - sha256 = "3efb643349e288f0d92dc2fd26a76d38d08686e827db1d99df707932c9b91e19"; - revision = "3"; - editedCabalFile = "1r2g3g0bcl7xgxw35bhp6a9n1rdz3bf1qhiqb2hhjscmm2szq3jd"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers contravariant generic-deriving - ghc-boot-th ghc-prim integer-gmp nats semigroups tagged - template-haskell text th-abstraction th-lift transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show-instances" = callPackage - ({ mkDerivation, base, base-compat-batteries, bifunctors, binary - , containers, directory, ghc-boot-th, haskeline, hoopl, hpc - , old-locale, old-time, pretty, random, semigroups, stdenv, tagged - , template-haskell, terminfo, text, text-show, time, transformers - , transformers-compat, unix, unordered-containers, vector, xhtml - }: - mkDerivation { - pname = "text-show-instances"; - version = "3.6.5"; - sha256 = "14b3f03f14b61bcbb633bf6c95eb279221e5d97b30b27b114f298c1a06c49242"; - revision = "2"; - editedCabalFile = "1lqvwm9ciazk13jabyr81rl4hsmwksjmks7ckxrdgz3jk201yr6i"; - libraryHaskellDepends = [ - base base-compat-batteries bifunctors binary containers directory - ghc-boot-th haskeline hoopl hpc old-locale old-time pretty random - semigroups tagged template-haskell terminfo text text-show time - transformers transformers-compat unix unordered-containers vector - xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show-instances"; - description = "Additional instances for text-show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-zipper" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text, vector }: - mkDerivation { - pname = "text-zipper"; - version = "0.10.1"; - sha256 = "9afaeb93d55b0bb6d0d6f495e3ff0789a60d0dee57fb6103f52e4c05ae64b14b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base deepseq text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/text-zipper/"; - description = "A text editor zipper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.0.2"; - sha256 = "9a817090cb91f78424affc3bfb6a7ea65b520087b779c9fd501fc9779e654cda"; - revision = "1"; - editedCabalFile = "062rvn5ba3x5fjhnqs8lid6mra3vqz5ikaixck1mlmafkqmxhvw9"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.3.1.0"; - sha256 = "4b9e1bcc6ec3d897fb09c3d7fa2f37f0672d5370e0e3e49809886da81fe001b9"; - revision = "1"; - editedCabalFile = "1c0sy614vfcdvshn0z09nzfiq89v5if31yvvpxzrivrdy9gf912s"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.0.2.7"; - sha256 = "13aaff2410e39e518f6de74a5bdd20de0e0139fc4af2c344e7c282cf63fa4e7a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, syb - , template-haskell, th-expand-syns, th-lift, th-orphans - }: - mkDerivation { - pname = "th-desugar"; - version = "1.8"; - sha256 = "bb4d1f1f4f63b77f8b0fdb545f0fd90a4183c80f4bb61edc2052d64e877b7a59"; - revision = "1"; - editedCabalFile = "13jvl6ijxjwbd7df0cq5pnijs3wrs8x5r9ykyyj180dak66909wd"; - libraryHaskellDepends = [ - base containers mtl syb template-haskell th-expand-syns th-lift - th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.4.0"; - sha256 = "cc0f52d1364ace9ba56f51afd9106a5fe01ed3f5ae45c958c1b0f83be0a6f906"; - revision = "1"; - editedCabalFile = "1zbdg3hrqv7rzlsrw4a2vjr3g4nzny32wvjcpxamlvx77b1jvsw9"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.7.11"; - sha256 = "d53cd1479d3cf35c513095f3954eee539e73c55266cec5f1fa0a82d53f30238c"; - revision = "1"; - editedCabalFile = "0whppp0p9df3fphv6pyg8f70bnm2kpyb3ylznknrklsl5vn2c49d"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mboes/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, th-lift, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.11"; - sha256 = "1da46afabdc73c86f279a0557d5a8f9af1296f9f6043264ba354b1c9cc65a6b8"; - revision = "1"; - editedCabalFile = "03jdc34ms54dphjd69w3md3vj1gf0r975rc946iiw3png5z1myk2"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text th-lift vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-nowq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, time }: - mkDerivation { - pname = "th-nowq"; - version = "0.1.0.2"; - sha256 = "0112f4385eb0856fd186b43a491c6538331d74ca6f86d5dfef4d15ae86e438e5"; - libraryHaskellDepends = [ base template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/th-nowq#readme"; - description = "Template Haskell splice that expands to current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.6"; - sha256 = "7745e6b93a73cbc0a6aa0da0a7b7377f0be4fffb4fd311e5502de199ec1dd469"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-printf" = callPackage - ({ mkDerivation, ansi-wl-pprint, attoparsec, base, charset - , containers, stdenv, template-haskell, text, transformers - , trifecta, utf8-string - }: - mkDerivation { - pname = "th-printf"; - version = "0.5.1"; - sha256 = "86921f308a9446da5fa0e87b25c2f397d4ab8c85df56d9750c91fdb1ee48f135"; - libraryHaskellDepends = [ - ansi-wl-pprint attoparsec base charset containers template-haskell - text transformers trifecta utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pikajude/th-printf"; - description = "Compile-time printf"; - license = stdenv.lib.licenses.mit; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.5"; - sha256 = "af1b2e7e39e029d8c9a20efdd7b49d4d15616ac360adddc7a09560b9a223359c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.8"; - sha256 = "cecaae187df911de515d08929e1394d6d6f7ce129795be8189a6b10d3734fe43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-utilities" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , primitive, stdenv, syb, template-haskell, text, th-orphans - }: - mkDerivation { - pname = "th-utilities"; - version = "0.2.0.1"; - sha256 = "65c64cee69c0d9bf8d0d5d4590aaea7dcf4177f97818526cbb3fac20901671d6"; - libraryHaskellDepends = [ - base bytestring containers directory filepath primitive syb - template-haskell text th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/th-utilities#readme"; - description = "Collection of useful functions for use with Template Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, assoc, base, base-compat, binary, deepseq - , hashable, QuickCheck, semigroupoids, stdenv, unordered-containers - }: - mkDerivation { - pname = "these"; - version = "1.0.1"; - sha256 = "79cc1ee35d268c5871f585681c649daded2ffe5fc657c3db87a9b2f38a8917cc"; - revision = "1"; - editedCabalFile = "0923r86fnmgpx0msm68aszirh2n19nn5bccgjxfh2146jw4z7w3z"; - libraryHaskellDepends = [ - aeson assoc base base-compat binary deepseq hashable QuickCheck - semigroupoids unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.0"; - sha256 = "e8879653bbe54b5134eed23186f98688c4e9819ce9ef4f2e2d01d0f1ae219a18"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.2"; - sha256 = "d648e01631189036a386d91de22f2b862e830ad0625b1f6096b347974f465294"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads-extras" = callPackage - ({ mkDerivation, base, stdenv, stm, threads }: - mkDerivation { - pname = "threads-extras"; - version = "0.1.0.2"; - sha256 = "4defab98b8a767b9580413d530e6823e53f6169671e53b6f8b6bfea89fde2575"; - libraryHaskellDepends = [ base stm threads ]; - doHaddock = false; - doCheck = false; - description = "Extends the threads package with a bounded thread group"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threepenny-gui" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, containers - , data-default, deepseq, exceptions, file-embed, filepath, hashable - , safe, snap-core, snap-server, stdenv, stm, template-haskell, text - , transformers, unordered-containers, vault, vector, websockets - , websockets-snap - }: - mkDerivation { - pname = "threepenny-gui"; - version = "0.8.3.0"; - sha256 = "c661b206987d6c85821e6b5206c563e3182138dfddda62cda454b8cd34536a9c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default deepseq - exceptions file-embed filepath hashable safe snap-core snap-server - stm template-haskell text transformers unordered-containers vault - vector websockets websockets-snap - ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Threepenny-gui"; - description = "GUI framework that uses the web browser as a display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "through-text" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, stdenv, text - }: - mkDerivation { - pname = "through-text"; - version = "0.1.0.0"; - sha256 = "933225da128906e61865ccd1da73463781b890d742cbb38f52524d94ac19b4cd"; - revision = "4"; - editedCabalFile = "1clc4g6rg5970654fd596ygly79axkhyzn773by1wi4grvhw96fi"; - libraryHaskellDepends = [ base bytestring case-insensitive text ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/bergmark/through-text"; - description = "Convert textual types through Text without needing O(n^2) instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "tibetan-utils" = callPackage - ({ mkDerivation, base, composition-prelude, either, megaparsec - , stdenv, text, text-show - }: - mkDerivation { - pname = "tibetan-utils"; - version = "0.1.1.5"; - sha256 = "38007ff5e5ae38bbd68ff2ee6fd850bedb0da2e81891736146494ba1448f7825"; - revision = "2"; - editedCabalFile = "17zyhdxwnq85kr60bnxirmyvw3b1679j5mhm3i30ri65896pjdwf"; - libraryHaskellDepends = [ - base composition-prelude either megaparsec text text-show - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vmchale/tibetan-utils#readme"; - description = "Parse and display tibetan numerals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.5"; - sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-manager" = callPackage - ({ mkDerivation, auto-update, base, stdenv }: - mkDerivation { - pname = "time-manager"; - version = "0.0.0"; - sha256 = "90a616ed20b2119bb64f78f84230b6798cde22a35e87bc8d9ee08cdf1d90fcdb"; - libraryHaskellDepends = [ auto-update base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Scalable timer"; - license = stdenv.lib.licenses.mit; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.0"; - sha256 = "4e50d40f13f8e6c5175be22b91586f909607ecb631f8209ff45bce2031bb3c24"; - revision = "3"; - editedCabalFile = "0im963wjcmwf6ii9a00mbi8lhmx5cy7cs6rmp0qi2j2jddba78j2"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tintin" = callPackage - ({ mkDerivation, base, clay, containers, data-has, directory - , frontmatter, inliterate, lucid, optparse-generic, process - , require, stdenv, temporary, text, universum, yaml - }: - mkDerivation { - pname = "tintin"; - version = "1.9.2"; - sha256 = "980e579fe87722837fb1417b0c8a47d9ed982cae1ab5129fd1521594553a2dde"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base clay containers data-has directory frontmatter inliterate - lucid process require temporary text universum yaml - ]; - libraryToolDepends = [ require ]; - executableHaskellDepends = [ - base optparse-generic require universum - ]; - executableToolDepends = [ require ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/tintin#readme"; - description = "A softer alternative to Haddock"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.14.1"; - sha256 = "d13e96117dfcedc861185bee5d1d130a92bce7876cc1ffd041ace2426820df07"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, memory, mtl, network - , stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.4.1"; - sha256 = "bbead1afc0b808bd5cff7bddaeae84ade37f18bbe72bd78d45a2fa4ac41908f8"; - revision = "1"; - editedCabalFile = "0qk07miindqvynhgsqj8jjk1d6i95lbgwipanwnn4vh1707z8xhv"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class memory mtl network transformers x509 x509-store - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, time, tls, x509, x509-store, x509-system - , x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.5"; - sha256 = "a345c4863bf923829d73abb8e2b706dab8058b12cdf73859d3860eaf7223eb9b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem time tls - x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, clock, psqueues, stdenv, tls }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.0.2"; - sha256 = "c586ccfd8da578ed2174352bea1952f55fe38023e476f851d7f0ed428aa57567"; - libraryHaskellDepends = [ auto-update base clock psqueues tls ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, base, bytestring, directory, network - , postgresql-simple, process, stdenv, temporary, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "0.1.1.1"; - sha256 = "2c5d557c53f60179d5e5e8c7fb6e393ff703e45b55c126359b308ab7a82be863"; - libraryHaskellDepends = [ - base bytestring directory network postgresql-simple process - temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres for testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, hashable, megaparsec, mtl - , parser-combinators, stdenv, text, time, transformers - , unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "0.3.1"; - sha256 = "fc8560bb6c5127c9a3bcfeea5a4046ed5652e1bdd6675266b4a08ad12366ef4e"; - revision = "1"; - editedCabalFile = "0pxc2065zjvsw3qwxhj2iw4d08f4j6y40nr51k6nxkz1px855gyk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base hashable megaparsec mtl parser-combinators text time - transformers unordered-containers - ]; - executableHaskellDepends = [ base text time unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "TOML parser"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "topograph" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, containers - , stdenv, vector - }: - mkDerivation { - pname = "topograph"; - version = "1"; - sha256 = "a7a95e00518d1c52dcf5261b0be4776012122032fdbdeae0bdf41ce38a92a76e"; - revision = "2"; - editedCabalFile = "0sci2p1spsh7as4n7mp1hb4pwiq4wd69p60c71kwx56wpwiglp9i"; - libraryHaskellDepends = [ - base base-compat base-orphans containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/topograph"; - description = "Directed acyclic graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.2"; - sha256 = "dc06228b7b8a546f9d257b4fe2b369fc2cb279240bbe4312aa8f47bb2752e4be"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-lift" = callPackage - ({ mkDerivation, base, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "transformers-lift"; - version = "0.2.0.1"; - sha256 = "0bd8bf23fb29874daf9ff990bf25035e21208cfa292f9f18e8cfdb0b4b1ee09d"; - revision = "3"; - editedCabalFile = "0rkbjlpn460gn93qr0l7025ggkgj46j6pkcil6m2chkzk91cpk9i"; - libraryHaskellDepends = [ - base transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - description = "Ad-hoc type classes for lifting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.0.0"; - sha256 = "65a220f1652b68269dfe8cc283a6e9292941eb12bdbd79344e073ba766191fbb"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, containers, generics-sop, hashable - , MemoTrie, parsec, parsers, pretty, QuickCheck, scientific, stdenv - , tagged, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.0.1"; - sha256 = "bfe23e4c17c0cdbffa9f159b7adaaeb20e48575b3b5bda591c5e025118213b11"; - revision = "6"; - editedCabalFile = "1wyhygrpqphxzzwlrk6nl4h5xbyx6zi0y34i1nxvsy726fl5idai"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - containers generics-sop hashable MemoTrie parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base - , blaze-builder, blaze-html, blaze-markup, bytestring, Cabal - , cabal-doctest, charset, comonad, containers, deepseq, fingertree - , ghc-prim, hashable, lens, mtl, parsers, profunctors, reducers - , semigroups, stdenv, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "2"; - sha256 = "53972fe9d206eab6ae1a654fe8c57274f01b373b0c8b3882ef01e962226af643"; - revision = "4"; - editedCabalFile = "0xbwyvwl6f2zylk60f2akwgq03qv49113xil7b1z1s3vlwbn5aj1"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html - blaze-markup bytestring charset comonad containers deepseq - fingertree ghc-prim hashable lens mtl parsers profunctors reducers - semigroups transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.1.2.0"; - sha256 = "86b8749e708fd288a874d23ebeb9ff5e3a584ada13bc22c3a9b596418bd57063"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple" = callPackage - ({ mkDerivation, base, OneTuple, stdenv }: - mkDerivation { - pname = "tuple"; - version = "0.3.0.2"; - sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624"; - libraryHaskellDepends = [ base OneTuple ]; - doHaddock = false; - doCheck = false; - description = "Various functions on tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.1.0"; - sha256 = "f6e18d0f444993c959eaa7d1aca87993c779b929260b1c6dd823715d3e736043"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, system-fileio, system-filepath, temporary, text, time - , transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.12"; - sha256 = "b3686fca906a1bf14a153b6c201d0affa71091a7fe095326bacf11a39f7e4c41"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm system-fileio - system-filepath temporary text time transformers unix unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-equality" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-equality"; - version = "1"; - sha256 = "4728b502a211454ef682a10d7a3e817c22d06ba509df114bb267ef9d43a08ce8"; - revision = "1"; - editedCabalFile = "13lsff17dxz852f5bhjz8d1by704rzvwr67qqfc5dz5s7xc28qyk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hesselink/type-equality"; - description = "Data.Type.Equality compat package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, double-conversion, ghc-prim - , stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.4.0.1"; - sha256 = "e3992f60601f8624a13cb686d400f9be843e33c20223a2ce7af51e85f3bc92ad"; - libraryHaskellDepends = [ - base bytestring double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.1.0.4"; - sha256 = "dbbcedf368c23c46abac04f157cb4f2c812099a4f75d606b24f1ac1116d40b74"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.3.0.1"; - sha256 = "aecd1a319efc13eb42b73b489cf374f94bf126f19fdc28b2f5cd6f73dda3a241"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.3.0"; - sha256 = "c0dea5591a4730d151d5c146685d0fa3db1f390d2a63be70a981209e58de6648"; - revision = "1"; - editedCabalFile = "05mg8cggrdvplb7l3rgdfrn2rnrbxx394qi37n0ldfr6v3jirf0p"; - libraryHaskellDepends = [ - async base bytestring process stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typelits-witnesses" = callPackage - ({ mkDerivation, base, constraints, reflection, stdenv }: - mkDerivation { - pname = "typelits-witnesses"; - version = "0.3.0.3"; - sha256 = "4edd4aff3f49961a1eb87130c4d36c39f4cc81d411ff20100ef5f33fd74d191d"; - libraryHaskellDepends = [ base constraints reflection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/typelits-witnesses"; - description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; - license = stdenv.lib.licenses.mit; - }) {}; - "typenums" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "typenums"; - version = "0.1.2"; - sha256 = "f470f56551e1c899ae7b733ee58ca71bc69017d93d33ac8a47b99b0a348f499c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adituv/typenums#readme"; - description = "Type level numbers using existing Nat functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typography-geometry" = callPackage - ({ mkDerivation, base, containers, parallel, polynomials-bernstein - , stdenv, vector - }: - mkDerivation { - pname = "typography-geometry"; - version = "1.0.0.1"; - sha256 = "edaeafb60126be19f0e4fdda54be89b92317dd03b59e9d8b6f119064c1642ad7"; - libraryHaskellDepends = [ - base containers parallel polynomials-bernstein vector - ]; - doHaddock = false; - doCheck = false; - description = "Drawings for printed text documents"; - license = "GPL"; - }) {}; - "tz" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-default - , deepseq, stdenv, template-haskell, time, tzdata, vector - }: - mkDerivation { - pname = "tz"; - version = "0.1.3.1"; - sha256 = "0b54729c7b60e90e00ee8e78190d4e86b3fb02d24ef4e393383df800faccfff9"; - libraryHaskellDepends = [ - base binary bytestring containers data-default deepseq - template-haskell time tzdata vector - ]; - doHaddock = false; - doCheck = false; - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; - homepage = "https://github.com/nilcons/haskell-tz"; - description = "Efficient time zone handling"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20180501.0"; - sha256 = "85d864557ef05f3b0d7e0e72f166bfc8eb617a7fbfcb4fc223989d6ceadcdf5a"; - revision = "1"; - editedCabalFile = "19iqfzmh8xvd3cqlr1lp673232gk59z335xqbv18d4yy5qxc2fj0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unbound-generics" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, contravariant - , deepseq, exceptions, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "unbound-generics"; - version = "0.3.4"; - sha256 = "6abb810768abba05320b79289a918095b79987aad39d22991bf4d19b1cfce805"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers contravariant deepseq exceptions mtl - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lambdageek/unbound-generics"; - description = "Support for programming with names and binders using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unfoldable" = callPackage - ({ mkDerivation, base, containers, ghc-prim, one-liner, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "unfoldable"; - version = "0.9.6"; - sha256 = "cd90eae9ba258cfaf2554b4946c9b60def83c92548bbeb7269fec97a8657eaa1"; - revision = "2"; - editedCabalFile = "08rx8ci2jpa77q1dl4lghlyhd27if990ic9kaz30hczsazlzi44b"; - libraryHaskellDepends = [ - base containers ghc-prim one-liner QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/unfoldable"; - description = "Class of data structures that can be unfolded"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unfoldable-restricted" = callPackage - ({ mkDerivation, base, constraints, containers, hashable, stdenv - , transformers, unfoldable, unit-constraint, unordered-containers - }: - mkDerivation { - pname = "unfoldable-restricted"; - version = "0.0.3"; - sha256 = "0b19287719453617f3883863f32be75ba62aad68151cb79aea3a5fa90dc7836e"; - libraryHaskellDepends = [ - base constraints containers hashable transformers unfoldable - unit-constraint unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "An alternative to the Unfoldable typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1.1"; - sha256 = "6fdbaa2f45e191c4226b305b4f56a1c43149eb4e253b0a3ebf80ab77e9b5f8c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.3"; - sha256 = "3f2e33277ce6e2e3d8644fd68d945a799ff86d0cbefee05cf3441c29a1769c21"; - revision = "1"; - editedCabalFile = "0sw9kn147kbgp0x9823hwiqn1yiyfxqkrchk34lsjfx2lq3igrzv"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-jp/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.4"; - sha256 = "829eaccba7d2e3d642d0cf60bbab403a6a5673db64284c02abf3ee3e8d5c0852"; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union" = callPackage - ({ mkDerivation, base, deepseq, hashable, profunctors, stdenv - , tagged, vinyl - }: - mkDerivation { - pname = "union"; - version = "0.1.2"; - sha256 = "63e9dc2901a7d857e278445ca2b03bb869ecb01264206a14319d073e39dd8ec4"; - revision = "4"; - editedCabalFile = "09b6wqnmv4g2pnjzl5k90yp78jcif8pk40c0spdrbr2vr5766clj"; - libraryHaskellDepends = [ - base deepseq hashable profunctors tagged vinyl - ]; - doHaddock = false; - doCheck = false; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "uniq-deep"; - version = "1.1.0.0"; - sha256 = "f8953f91cbf90c5073ca90d4e9235dbe0a399ff811709d051b037a8a7db0d38e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep"; - description = "uniq-deep"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe" = callPackage - ({ mkDerivation, stdenv, universe-instances-base - , universe-instances-extended, universe-instances-trans - , universe-reverse-instances - }: - mkDerivation { - pname = "universe"; - version = "1.0"; - sha256 = "1f80e4788d348d53e39a32c8514940418a71c49c5423eb70b94e1786d94ff9a7"; - libraryHaskellDepends = [ - universe-instances-base universe-instances-extended - universe-instances-trans universe-reverse-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Classes for types where we know all the values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "universe-base"; - version = "1.0.2.1"; - sha256 = "07c48350afacdc0b5569f72e3d6a27a8ff3c208b7a6f22d00e149a201798bb51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types and some helper functions for enumerating them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.0"; - sha256 = "a21150ee3bb71283522a573bf092c8d96b2e28a95336a95505aa4c2a067dd212"; - revision = "2"; - editedCabalFile = "0c9zxmifhy2qjvsikgm168n8k8ka8ia88ldy8qjqkz5pqknlr9sj"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-extended" = callPackage - ({ mkDerivation, adjunctions, base, comonad, stdenv - , universe-instances-base, void - }: - mkDerivation { - pname = "universe-instances-extended"; - version = "1.0.0.1"; - sha256 = "665b272701b16a6bb8d40a5396aa1dcb038f002452ebdc29d353e3be2070c997"; - revision = "3"; - editedCabalFile = "1f7mzwn97kmnm1p1hscz5mzly700q2pw5awwdzzsxfkxv3law7xn"; - libraryHaskellDepends = [ - adjunctions base comonad universe-instances-base void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from select extra packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers, universe-base - , universe-instances-base - }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.0.0.1"; - sha256 = "0d047cf1eb4af9f2052f44f487e7d2d44c86f51b54a3cc1fc5243ad816e8310e"; - revision = "1"; - editedCabalFile = "0dcwgbgmbkjwzbxlncpl1b5hgjrmkl73djknjkhbnh02pysbwv69"; - libraryHaskellDepends = [ - base mtl transformers universe-base universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-instances-base - }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.0"; - sha256 = "e9d41cbf26eabd77587fddf69493d7ad23028303d1c1d1d2ee1de1bf3d3e8d49"; - revision = "2"; - editedCabalFile = "0cpnsip1iakwkgnwnd21gwrc8qbifzpff6agjwm34jgkq9j646k8"; - libraryHaskellDepends = [ - base containers universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, type-operators, unordered-containers - , utf8-string, vector - }: - mkDerivation { - pname = "universum"; - version = "1.2.0"; - sha256 = "37a10c85d0b4812a9687846cdfe20a61eb102839318149ad036d8c1be47e8518"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - type-operators unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, deepseq, directory, filepath, process - , stdenv, stm, time, transformers, unix, unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.8.1"; - sha256 = "bf796b2cb10be12fd736723faebd093e5298d5ec11a3b77b99ec762beacf68a3"; - revision = "1"; - editedCabalFile = "1zx2h1mnjcjszjdchg17gqrnj3d56x46947jm92snmdjw8x231wg"; - libraryHaskellDepends = [ - async base deepseq directory filepath process stm time transformers - unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.2.0"; - sha256 = "24c38b3d610ca2642ed496d1de3d7b6b398ce0410aa0a15f3c7ce636ba8f7a78"; - revision = "2"; - editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "d8faaf0c23ed143942ba7948616c73134c78e02aa4cf252605c73fb2412876ef"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.1"; - sha256 = "64bd16bed1eca66d844cbc9dfb90a7ffda5b24572066765cf61b3d8d28a1c1fc"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-templater" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, charset - , containers, dlist, HTTP, mtl, parsers, stdenv, template-haskell - , text, time, trifecta, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "uri-templater"; - version = "0.3.1.0"; - sha256 = "21e665ff2600b3de42b6ad01ef342b6165859dc6e66897f84a9075649f1c49c2"; - revision = "1"; - editedCabalFile = "0vl1nv40yzns9fnaz6h34x72vpfaaws8f0zm8qlr82333pxg2scw"; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring charset containers dlist HTTP mtl - parsers template-haskell text time trifecta unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/uri-templater"; - description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.0"; - sha256 = "90bf89265f5ae94d55e395e199a1b9205d4c56720f1edf9390644c2dc88252fb"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-postgresql-simple" = callPackage - ({ mkDerivation, base, bytestring, mtl, postgresql-simple, stdenv - , text, time, users, uuid - }: - mkDerivation { - pname = "users-postgresql-simple"; - version = "0.5.0.2"; - sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100"; - libraryHaskellDepends = [ - base bytestring mtl postgresql-simple text time users uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A PostgreSQL backend for the users package"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-test" = callPackage - ({ mkDerivation, base, hspec, stdenv, text, users }: - mkDerivation { - pname = "users-test"; - version = "0.5.0.1"; - sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e"; - libraryHaskellDepends = [ base hspec text users ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "Library to test backends for the users library"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "util"; - version = "0.1.11.0"; - sha256 = "8bc5a5f56cc94f17bf9460efb47e79f430c98adddaf646be22fe78980207119b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1"; - sha256 = "70455a22637983dbcf7a688ff80c05bb8bf2690d9e4523d6ca4ebcef77abb921"; - revision = "1"; - editedCabalFile = "1x1g4nannz81j1h64l1m3ancc96zc57d1bjhj1wk7bwn1xxbi5h3"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.7.0.0"; - sha256 = "ae2409c221d5c9839fb4991ab1123f3747bacd94aab583388c4e5585125f3177"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.2"; - sha256 = "fac03d29cf3d6f72c288111b68feb3c656574a1ac616b49f40426a9daf0e1d04"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.3.0.2"; - sha256 = "62e1a00e9cc12af6451d4484f392d593a628687a7ff78996f1982ee6d2ed912f"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.3.1.0"; - sha256 = "39096c06200f3ce670c89d557def5dbdd0ba3f608bdc7587b057c2344b3f20b2"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.3.0.2"; - sha256 = "979cda9b9fce257e4793c53e869076cbb41b9516f6a7cef2ea3edca84dc5e146"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.2"; - sha256 = "8132aa43307c7dcb29718b5c1ef7c2b8e0d1fb6f650c0b117b99397c34da8dc1"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.1.0"; - sha256 = "edd3f26e97ea07593c3995002a7ef7670f0306bfc31213f6b49ffe1a6fbc4264"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.2"; - sha256 = "51b24adef82f272a1060d5d0dffaa2eb1e54c0016c7dcd75631e5916df45e265"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.2"; - sha256 = "50547e85c80e42a90143b816b41389cca1e0fccacd8d620a09142cf65b36181b"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.2"; - sha256 = "95dc31e68630951d6971ad5b425e88d492c7400ccd4937a42252d464d89c564c"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.2"; - sha256 = "a7cc60182c9c5c25fa64d1073c1da61e79686fea6d2b2a9cf55690e61b83ce78"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "valor" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "valor"; - version = "0.1.0.0"; - sha256 = "04ce514f40ef954cdd4b45acb6b2bf6228a30e905fdce0b671df3bf789d6bae6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reygoch/valor#readme"; - description = "Simple general structured validation library"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.2"; - sha256 = "9e00e52ec0b054cfb9b1e44d8ce2eefb499cc1dcd4bcdd0d434b370d635e551c"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, deepseq - , distributive, fin, hashable, lens, semigroupoids, stdenv - }: - mkDerivation { - pname = "vec"; - version = "0.1"; - sha256 = "be54ef0a53ff4f27a7a0f14b249d1fd47ede63c085d4c68962db24bf4ba3e054"; - revision = "3"; - editedCabalFile = "093q5qlhlia12ckhvax322lyy3sb554pg46ghabvsvx8znixw2hh"; - libraryHaskellDepends = [ - adjunctions base base-compat deepseq distributive fin hashable lens - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.1.2"; - sha256 = "3b6e27683f6f20b37b8a35d0fab9e34b57dad72ac64cb16f428726780d4011bd"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.7.0.4"; - sha256 = "af618cf0b6e1a1fa681539ab4f73f0c5525531a1b2ac2d6e2034999d5e44ca55"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/vector-algorithms/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.5"; - sha256 = "8cd36bdc1dcb15651d26eb13b984f23066b2793c2e26d6028b7769a250913f51"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.6"; - sha256 = "c8562d4d5daecbebc175c5895ecc1e2796dd3dfe4a66430fcdcd8fe582baa219"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, deepseq, distributive - , finite-typelits, indexed-list-literals, primitive, stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.0.4.0"; - sha256 = "64be9a8eb50a7ee912b2f7429fc1eb9184283a2b09a9d19fbc6de3e90bf3b9e5"; - revision = "1"; - editedCabalFile = "0vahkbzg745h8v2qby6q3k7f3ifqi8737pw4dqzps1qacnamwcmy"; - libraryHaskellDepends = [ - adjunctions base deepseq distributive finite-typelits - indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.13"; - sha256 = "0291d5778378acbbb1d6709ba57238f3d6ad551b8b2c6ca2b8177e68f748d617"; - revision = "2"; - editedCabalFile = "1p9vibym0ggr1rjyak0wphswdl4vik2b2w85afgvyj9zn32w28bw"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.6"; - sha256 = "be87d4a6f1005ee2d0de6adf521e05c9e83c441568a8a8b60c79efe24ae90235"; - revision = "1"; - editedCabalFile = "1bpxdliw7jmks1rkmb8hbr7hng3niz1pfc6n3s8ndj1acrksmfmv"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vectortiles" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , mtl, protocol-buffers, protocol-buffers-descriptor, stdenv, text - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "vectortiles"; - version = "1.4.0"; - sha256 = "393cc4f3d0f16c8cbf3c1fda99a6823463d4a855b77babae41249d4175e915c0"; - revision = "1"; - editedCabalFile = "1nlkhmfcvlzi96nzq8cpbqw5akrjahnrhl460q07vq6iyhibvf87"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable mtl protocol-buffers - protocol-buffers-descriptor text transformers unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/vectortiles"; - description = "GIS Vector Tiles, as defined by Mapbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.2.3.0"; - sha256 = "8b4ce5ab48aab17b6752dec4efba259964b7084ce10330198ae3ff7ea090f264"; - libraryHaskellDepends = [ base binary data-default-class deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.4.0.1"; - sha256 = "af46d833929f36757e0a50a733b06aa7fce72663c73d3a944f3752faadccec64"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/versions"; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "viewprof" = callPackage - ({ mkDerivation, base, brick, containers, directory, ghc-prof, lens - , scientific, stdenv, text, vector, vector-algorithms, vty - }: - mkDerivation { - pname = "viewprof"; - version = "0.0.0.23"; - sha256 = "864d242f8080ebdda7b4b3ac4b827703a0630111fd34615f9a1adafd2dddb15b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base brick containers directory ghc-prof lens scientific text - vector vector-algorithms vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/viewprof"; - description = "Text-based interactive GHC .prof viewer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vinyl" = callPackage - ({ mkDerivation, array, base, ghc-prim, stdenv }: - mkDerivation { - pname = "vinyl"; - version = "0.8.1.1"; - sha256 = "d03a3c53026b91160b30f4f65db1e29bed157ca67f676674488218d7cfd48f3f"; - revision = "1"; - editedCabalFile = "0mb694y03r185r0p473zh6bl4j0l4na9km0r3x8czjil7x9yb0vr"; - libraryHaskellDepends = [ array base ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Extensible Records"; - license = stdenv.lib.licenses.mit; - }) {}; - "vivid" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hashable, MonadRandom, mtl, network, process, random - , random-shuffle, split, stdenv, stm, time, transformers - , utf8-string, vivid-osc, vivid-supercollider - }: - mkDerivation { - pname = "vivid"; - version = "0.3.0.2"; - sha256 = "00e0941c018fc467424d10a94ed568b48bf1fd226cd81a00ced319817d79bb99"; - libraryHaskellDepends = [ - base bytestring containers directory filepath hashable MonadRandom - mtl network process random random-shuffle split stm time - transformers utf8-string vivid-osc vivid-supercollider - ]; - doHaddock = false; - doCheck = false; - description = "Sound synthesis with SuperCollider"; - license = "GPL"; - }) {}; - "vivid-osc" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, stdenv, time }: - mkDerivation { - pname = "vivid-osc"; - version = "0.3.0.0"; - sha256 = "a728f85c60f6b8361d6b973f45c854485a2b061431869934df72c172a4884a94"; - libraryHaskellDepends = [ base binary bytestring cereal time ]; - doHaddock = false; - doCheck = false; - description = "Open Sound Control encode/decode"; - license = "GPL"; - }) {}; - "vivid-supercollider" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, split, stdenv - , utf8-string, vivid-osc - }: - mkDerivation { - pname = "vivid-supercollider"; - version = "0.3.0.0"; - sha256 = "83b79ebc06b4e6db34c91c850191e11488e108b4bf64aa85110c3a389cc4d395"; - libraryHaskellDepends = [ - base binary bytestring cereal split utf8-string vivid-osc - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of SuperCollider server specifications"; - license = "GPL"; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.2"; - sha256 = "d3fffe66a03e4b53db1e459edf75ad8402385a817cae415d857ec0b03ce0cf2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.21"; - sha256 = "5a79b8b5f3a2ead0db01cfbc34e145cfa8ff36315f0bb075e6d364ae0a937a5b"; - revision = "1"; - editedCabalFile = "18dyham92ksdvglmn8h955h6rq3pkyxi6bcgxg7jp3iwryz4zkja"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2.1"; - sha256 = "fef72486e3a9e01f564abfb680f6eac9b553f8195cae8ed903d960da55380815"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.6.2"; - sha256 = "d0b0a566be61ef4c8f800922a71dbc4de64287f8f73782b1461cd5d294c1dc3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cli" = callPackage - ({ mkDerivation, ansi-terminal, base, http-types, monads-tf - , network, options, socket-activation, stdenv, stm - , streaming-commons, unix, wai, wai-extra, warp, warp-tls - }: - mkDerivation { - pname = "wai-cli"; - version = "0.1.1"; - sha256 = "0643ebd8cbd4fcedd2076450b635d020aa2101b26e80f69ade10acd2c3252862"; - libraryHaskellDepends = [ - ansi-terminal base http-types monads-tf network options - socket-activation stm streaming-commons unix wai wai-extra warp - warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/wai-cli"; - description = "Command line runner for Wai apps (using Warp) with TLS, CGI, socket activation & graceful shutdown"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.6"; - sha256 = "cac61023184404ba5abf8d3739e51c4862561ba56f829f6f5e69dd64216aa986"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , iproute, network, old-locale, resourcet, stdenv - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.24.3"; - sha256 = "41e8f93ff03947623f5b447c71806f07819e1006f8267c84fd050e89fbafc439"; - revision = "1"; - editedCabalFile = "16gcs6ppr46vkf534nqir1b9rf63yhxnvyjp8lvk5pawmavgg3j1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types iproute network old-locale - resourcet streaming-commons text time transformers unix unix-compat - vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.2.4"; - sha256 = "0e9d9c61310890380dc87807ba1285bc1ab185914be6367ea4bb0a05d3df2900"; - revision = "1"; - editedCabalFile = "1mjxbzw3a5wybcp8s4x05rx91p2qaabpfci6w2k6p6nw4rjvfijv"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, case-insensitive - , fast-logger, http-types, network, stdenv, unix, unix-time, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.2"; - sha256 = "8dd4ff875d9ac2c115f5d45cc4375635a6c3e55a75c632ff3781d1fb086eb470"; - libraryHaskellDepends = [ - base byteorder bytestring case-insensitive fast-logger http-types - network unix unix-time wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching-lru" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , lrucache, stdenv, text, wai, wai-middleware-caching - }: - mkDerivation { - pname = "wai-middleware-caching-lru"; - version = "0.1.0.0"; - sha256 = "377dc842f5ad77b98e8a817e092c891ccfd0da978fb9f69a380f001a95da28d3"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types lrucache text wai - wai-middleware-caching - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-lru#readme"; - description = "Initial project template from stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, text, transformers, void, wai, wai-conduit - }: - mkDerivation { - pname = "wai-middleware-consul"; - version = "0.1.0.2"; - sha256 = "d89d5a5bf0b08cf4fcd300d9e16c351a146119c34a9f31949498a874699c0763"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/wai-middleware-consul"; - description = "Wai Middleware for Consul"; - license = stdenv.lib.licenses.mit; - }) {}; - "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 - , stdenv, 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 = "1136b61a6ce7729093664b63a4ab70de73e356d34b0c7a8114b639b18626b058"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Middleware and utilities for using Atlassian Crowd authentication"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-metrics" = callPackage - ({ mkDerivation, base, ekg-core, http-types, stdenv, text, time - , wai - }: - mkDerivation { - pname = "wai-middleware-metrics"; - version = "0.2.4"; - sha256 = "e73685a748f0ba6d16956b500cdc23f3802f794f5259a3d6b8a5b885e928ec74"; - libraryHaskellDepends = [ base ekg-core http-types text time wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Helkafen/wai-middleware-metrics"; - description = "A WAI middleware to collect EKG request metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.2"; - sha256 = "0be4e9fd5252d526334e4e5885a2a75269aaaad560282b5c383c49e4d855befc"; - revision = "2"; - editedCabalFile = "17vq38dh7x1kqzfwla1s0rldd5hzm5mcrx49sjlzy8b66gd2n3ac"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-travisci" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptonite, http-types, stdenv, text, transformers, vault, wai - }: - mkDerivation { - pname = "wai-middleware-travisci"; - version = "0.1.0"; - sha256 = "bbc9f2fea4c0ee3d9a73fd13dd1a2a7ef85fc294bd311ed519c1e41a1fada828"; - revision = "2"; - editedCabalFile = "0j1k2y75gwbny72zf5nrwzanh7sn2plscnrjd4hw5npccxi4dchx"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptonite http-types text - transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/wai-middleware-travisci"; - description = "WAI middleware for authenticating webhook payloads from Travis CI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-predicates" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, case-insensitive, cookie, http-types - , singletons, stdenv, text, transformers, vault, vector, wai - }: - mkDerivation { - pname = "wai-predicates"; - version = "0.10.0"; - sha256 = "b7b3f6d147bbbf7a959c84235d0533763eda8fc4973b42f131fd47fe8ffbd7c2"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion case-insensitive - cookie http-types singletons text transformers vault vector wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/wai-predicates/"; - description = "WAI request predicates"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, cookie, data-default - , entropy, postgresql-simple, resource-pool, stdenv, text, time - , transformers, wai, wai-session - }: - mkDerivation { - pname = "wai-session-postgresql"; - version = "0.2.1.2"; - sha256 = "39d570dd99b4dc38e7803b60b4da4bc804244ed83b3fb250a6e2191a1419ac83"; - libraryHaskellDepends = [ - base bytestring cereal cookie data-default entropy - postgresql-simple resource-pool text time transformers wai - wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hce/postgresql-session#readme"; - description = "PostgreSQL backed Wai session store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-transformers" = callPackage - ({ mkDerivation, base, exceptions, extractable-singleton - , monad-control-aligned, stdenv, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "wai-transformers"; - version = "0.1.0"; - sha256 = "17a330c80bad8a95add5d6efb0a12c774c197a2d19f83e6b9dc08ab73d8c8592"; - libraryHaskellDepends = [ - base exceptions extractable-singleton monad-control-aligned - transformers wai wai-websockets websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/wai-transformers#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, time-manager, unix - , unix-compat, vault, wai, word8 - }: - mkDerivation { - pname = "warp"; - version = "3.2.28"; - sha256 = "872b4d7e56c5454e87f0f4f612318cda37fc3bfb3a62ad3f72625dc6a21a5c70"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - time-manager unix unix-compat vault wai word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.4.3"; - sha256 = "84cd511e32019ba5bef07b0e8a3550b2da06d534bf3df1673d14a5ec4a12f29d"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv - , streaming-commons, unix, wai, warp, warp-tls - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.5"; - sha256 = "b856932108364220abbba3cdebc86740a9b7436684f39936c6dda6a8d6ed73ac"; - libraryHaskellDepends = [ - base bytestring network streaming-commons unix wai warp warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , data-default-class, stdenv, transformers - }: - mkDerivation { - pname = "wave"; - version = "0.1.5"; - sha256 = "250a08b0c36870fb7fd0de7714818784eed0c4ff74377746dc1842967965fe0f"; - revision = "2"; - editedCabalFile = "0zs0mw42z9xzs1r935pd5dssf0x10qbkhxlpfknv0x75n2k0azzj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers data-default-class transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wcwidth" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "wcwidth"; - version = "0.0.2"; - sha256 = "ffc68736a3bbde3e8157710f29f4a99c0ca593c41194579c54a92c62f6c12ed8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/wcwidth/"; - description = "Native wcwidth"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-plugins" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, stm, text }: - mkDerivation { - pname = "web-plugins"; - version = "0.2.9"; - sha256 = "e63bfd7f666b40c7ff962a070c64dc5bef4a5c490af745fa7ee8f964284a7a50"; - libraryHaskellDepends = [ base containers mtl stm text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/clckwrks/web-plugins"; - description = "dynamic plugin system for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, mtl, parsec, split, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "web-routes"; - version = "0.27.14.2"; - sha256 = "af8b349c5d17de1d1accc30ab0a21537414a66e9d9515852098443e1d5d1f74a"; - libraryHaskellDepends = [ - base blaze-builder bytestring exceptions ghc-prim http-types mtl - parsec split text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; - description = "portable, type-safe URL routing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-hsp" = callPackage - ({ mkDerivation, base, hsp, stdenv, text, web-routes }: - mkDerivation { - pname = "web-routes-hsp"; - version = "0.24.6.1"; - sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; - libraryHaskellDepends = [ base hsp text web-routes ]; - doHaddock = false; - doCheck = false; - description = "Adds XMLGenerator instance for RouteT monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, stdenv, text, wai - , web-routes - }: - mkDerivation { - pname = "web-routes-wai"; - version = "0.24.3.1"; - sha256 = "8e1fd187686452af39929bc6b6a31319001859930744e22e2eee1fa9ad103049"; - libraryHaskellDepends = [ - base bytestring http-types text wai web-routes - ]; - doHaddock = false; - doCheck = false; - description = "Library for maintaining correctness of URLs within an application"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web3" = callPackage - ({ mkDerivation, aeson, async, base, basement, bytestring, cereal - , cryptonite, data-default, exceptions, generics-sop, http-client - , machines, memory, mtl, parsec, stdenv, tagged, template-haskell - , text, transformers - }: - mkDerivation { - pname = "web3"; - version = "0.7.3.0"; - sha256 = "af821da95766fcfc74a2dd3cfac867e651443011c2c8251dfad46f63f314c5b9"; - libraryHaskellDepends = [ - aeson async base basement bytestring cereal cryptonite data-default - exceptions generics-sop http-client machines memory mtl parsec - tagged template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/airalab/hs-web3#readme"; - description = "Ethereum API for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, data-default-class, directory, directory-tree - , exceptions, filepath, http-client, http-types, lifted-base - , monad-control, network, network-uri, scientific, stdenv - , temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.8.5"; - sha256 = "a8167a8b147411a929e81727a77bc31fcd7d93424442268913fb522e1932c1be"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webex-teams-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "webex-teams-api"; - version = "0.2.0.0"; - sha256 = "7756e38bd54d4dae1f70e7343259438f98bf58ff484ebc1c798166904178a40b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, data-default - , http-client, optparse-applicative, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-conduit"; - version = "0.2.0.0"; - sha256 = "0d7c7db689092656653d687adadeb92669b647b1d7adc2493d8ca08a87742e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base conduit webex-teams-api ]; - executableHaskellDepends = [ - base bytestring conduit data-default http-client - optparse-applicative text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Conduit wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-pipes" = callPackage - ({ mkDerivation, base, bytestring, data-default, http-client - , optparse-applicative, pipes, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-pipes"; - version = "0.2.0.0"; - sha256 = "77fad574346613e4989997852ca5972185a6321290caa718ce081be985a33100"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base pipes webex-teams-api ]; - executableHaskellDepends = [ - base bytestring data-default http-client optparse-applicative pipes - text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Pipes wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, containers - , entropy, network, random, SHA, stdenv, streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.5.2"; - sha256 = "912d256bce5d460f9185e843c9fa31c772602e6275e980bbd96e4ebda48b4c71"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive containers entropy network - random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "websockets-snap" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams - , mtl, snap-core, snap-server, stdenv, websockets - }: - mkDerivation { - pname = "websockets-snap"; - version = "0.10.3.0"; - sha256 = "b34a40583a2111bb44233b728095fac38b8de1ab74c027fc4ee92a65af373be4"; - libraryHaskellDepends = [ - base bytestring bytestring-builder io-streams mtl snap-core - snap-server websockets - ]; - doHaddock = false; - doCheck = false; - description = "Snap integration for the websockets library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.8"; - sha256 = "26204eeabb0cdce707548b3be451b1947567b0a13bcfe28bbdd7f48340c09cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.12"; - sha256 = "fdc8b86edac17d57a56a04f149f796f55bfffa04e3c8d32afeedf5775252827f"; - libraryHaskellDepends = [ - base deepseq mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.0.6"; - sha256 = "1d8c0998b70af7b850a9d22642a50c6334ec47acdb8a31a90de7533d4b6b7c78"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wikicfp-scraper" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scalpel-core, stdenv - , text, time - }: - mkDerivation { - pname = "wikicfp-scraper"; - version = "0.1.0.9"; - sha256 = "9e3cfd6dae669c34c8037cfc0996f371799297f4d08588702399413d8a4242e2"; - libraryHaskellDepends = [ - attoparsec base bytestring scalpel-core text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wikicfp-scraper"; - description = "Scrape WikiCFP web site"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.3"; - sha256 = "22bc0e4bd9dff23fb50869d3f3df67571cf428c7feaae6aba0b51adb09dc83b6"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.6"; - sha256 = "496dc4068050ff1e7fc585c6cced0b7633c0a82d6bdac6efc436b6d15b651d37"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wire-streams" = callPackage - ({ mkDerivation, base, binary, binary-parsers, bytestring - , io-streams, stdenv - }: - mkDerivation { - pname = "wire-streams"; - version = "0.1.1.0"; - sha256 = "96dffb70c08c89589881c96f199d271b55e4a5b3cc5be0f3e24e101858e2fb27"; - revision = "1"; - editedCabalFile = "1j7gpk3k82h0kxnhpv40jmnqxpnr0v0m4lj6bhpga81vlmznr088"; - libraryHaskellDepends = [ - base binary binary-parsers bytestring io-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/wire-streams"; - description = "Fast binary io-streams adapter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "withdependencies" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, profunctors - , stdenv - }: - mkDerivation { - pname = "withdependencies"; - version = "0.2.4.2"; - sha256 = "ff51ed5d94ec0051d61458ef38264e0c21119606377d27cc0d9a5a8ae32bf312"; - libraryHaskellDepends = [ - base conduit containers mtl profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/withdependencies"; - description = "Run computations that depend on one or more elements in a stream"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "witherable" = callPackage - ({ mkDerivation, base, base-orphans, containers, hashable, stdenv - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "witherable"; - version = "0.2"; - sha256 = "9ddb5a2b02fe0f7950742461dfabc9fc4aba245eddeec6afa9e1cd35fa16ea2d"; - libraryHaskellDepends = [ - base base-orphans containers hashable transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/witherable"; - description = "filterable traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.2"; - sha256 = "4ba12c726d60688b8173db3891aa1dce7f57c6364c40ba2f1c2c8d16404bd30b"; - revision = "1"; - editedCabalFile = "15vwynd5v6xm92dxkxf125grd8sv599n5bnj92qqmhlc89psxhxk"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.1"; - sha256 = "6b662b244b2e318a2923dc7057d707369a29ea4a0e721b4710eac7239cc727af"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Pretty printer with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "cb76b445aa338cae075d149e752e53cf30e2480827eff4c157957b013f48b815"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "wl-pprint-extras" = callPackage - ({ mkDerivation, base, containers, nats, semigroupoids, semigroups - , stdenv, text, utf8-string - }: - mkDerivation { - pname = "wl-pprint-extras"; - version = "3.5.0.5"; - sha256 = "a9c21a85a729191fc422938a1f785d61be52f3a2923d8d79dade9b21e8e98d8f"; - libraryHaskellDepends = [ - base containers nats semigroupoids semigroups text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/wl-pprint-extras/"; - description = "A free monad based on the Wadler/Leijen pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-terminfo" = callPackage - ({ mkDerivation, base, bytestring, containers, nats, semigroups - , stdenv, terminfo, text, transformers, wl-pprint-extras - }: - mkDerivation { - pname = "wl-pprint-terminfo"; - version = "3.7.1.4"; - sha256 = "3cdaba571fc3f8c51e39d14773b23f0f8237bb2d33dbaf9230a98d4b2f388d20"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers nats semigroups terminfo text - transformers wl-pprint-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/wl-pprint-terminfo/"; - description = "A color pretty printer with terminfo support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-text" = callPackage - ({ mkDerivation, base, base-compat, stdenv, text }: - mkDerivation { - pname = "wl-pprint-text"; - version = "1.2.0.0"; - sha256 = "40dd4c2d2b8a2884616f3a240f01143d0aadd85f5988e5ee55a59ba6b2487c3c"; - libraryHaskellDepends = [ base base-compat text ]; - doHaddock = false; - doCheck = false; - description = "A Wadler/Leijen Pretty Printer for Text values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word-wrap" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "word-wrap"; - version = "0.4.1"; - sha256 = "eb72f91947c0c62cb862feb33cad9efdc5e720f456fa9ca68ef8ac9d1ec42c97"; - revision = "1"; - editedCabalFile = "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/word-wrap/"; - description = "A library for word-wrapping"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "0.1.0.0"; - sha256 = "737685799cdd97c2178c749a60906d15548b040570b90f1bbb4f259ba0e756a5"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.2.1"; - sha256 = "b3d069b38d709becdd5ebc75859ff46833419d25f6168367e672243f29491237"; - revision = "1"; - editedCabalFile = "0kicf24sa2afxw258h2rrshb6sbi9vvjsl6n1736gp6ryglpw60v"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq-stringless" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string, wreq - }: - mkDerivation { - pname = "wreq-stringless"; - version = "0.5.9.1"; - sha256 = "502cd16163ff3356f5477ed7ab1b67147aa6bb445238055450df12b69697f235"; - libraryHaskellDepends = [ base bytestring text utf8-string wreq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/j-keck/wreq-stringless#readme"; - description = "Simple wrapper to use wreq without Strings"; - license = stdenv.lib.licenses.mit; - }) {}; - "writer-cps-full" = callPackage - ({ mkDerivation, base, stdenv, writer-cps-lens, writer-cps-morph - , writer-cps-mtl, writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-full"; - version = "0.1.0.0"; - sha256 = "ba51df5149470be6d70fd179f2af4cae30824a3a63528f1549a97f57610a5e95"; - revision = "1"; - editedCabalFile = "01zizhxk6kk5z3sqv5r7dp2yxbv5q87h5wgb5kbss60ncf042661"; - libraryHaskellDepends = [ - base writer-cps-lens writer-cps-morph writer-cps-mtl - writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-full#readme"; - description = "WriteT and RWST monad transformers (Reexport with all dependencies)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-lens" = callPackage - ({ mkDerivation, base, lens, profunctors, stdenv, transformers - , writer-cps-mtl, writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-lens"; - version = "0.1.0.1"; - sha256 = "2d6b8b6f4f86dcb3cc75bdd25d4ab186d09c2859023f3a6ef2171576b0d306ef"; - libraryHaskellDepends = [ - base lens profunctors transformers writer-cps-mtl - writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/writer-cps-lens#readme"; - description = "Lens instances for the stricter CPS WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-morph" = callPackage - ({ mkDerivation, base, mmorph, stdenv, writer-cps-transformers }: - mkDerivation { - pname = "writer-cps-morph"; - version = "0.1.0.2"; - sha256 = "e91d07b7dce83973c8ad8f489e161ea8092bd3c7d161f4e57cddeedd2f3fd5d8"; - revision = "1"; - editedCabalFile = "0dqpbpaidwa7ahk0n7pv397mv7ncr26p3vcrjh1xzl6vk26bdah5"; - libraryHaskellDepends = [ base mmorph writer-cps-transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/writer-cps-morph#readme"; - description = "MFunctor instance for CPS style WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-mtl" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-mtl"; - version = "0.1.1.5"; - sha256 = "1557f5a4ee9d320f62acd0aee99164774327bdb3578e1f63dd695cc839de5627"; - libraryHaskellDepends = [ - base mtl transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-mtl#readme"; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-transformers" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "writer-cps-transformers"; - version = "0.1.1.4"; - sha256 = "d6f08b4e20399cec93d8f61fd99c2fbaf0abb67364c4a9f713c5fdab110185fd"; - revision = "1"; - editedCabalFile = "16pqi3zraghvmrimdikfpf92w00w9a8zh7av2150mp0ib6dny31a"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-transformers#readme"; - description = "WriteT and RWST monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ws" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-uri, base - , bytestring, exceptions, haskeline, mtl, network - , optparse-applicative, stdenv, strict, text, vector, websockets - , wuss - }: - mkDerivation { - pname = "ws"; - version = "0.0.4"; - sha256 = "d88080c45551cccb8e8de012795852d9ca3c98b97519f2b2e81118d18f3a5f02"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec-uri base bytestring exceptions haskeline mtl - network text websockets wuss - ]; - executableHaskellDepends = [ - async attoparsec attoparsec-uri base bytestring exceptions - haskeline mtl network optparse-applicative strict text vector - websockets wuss - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/ws#readme"; - description = "A simple CLI utility for interacting with a websocket"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.10"; - sha256 = "097c1186006e8a4168a7ba868d6bffb0cbbb80052e8f552de9cda23572a59550"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.4"; - sha256 = "279c8ac27b11c1cc6694699f0394cf6eb84af98287d7550cf6acdb83418ea1ee"; - revision = "1"; - editedCabalFile = "0p9zzzj118n8ymacj6yp7nkf22d09mj31wnzc1alq26w2ybcrifz"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.6"; - sha256 = "6a276f595cf91c9688129cad4c9c6be9c349ffc0de22300eeb3dfa6a2b6e7635"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.10"; - sha256 = "761c9d77322528259b690508e829cb360feb1fc542951a99f3af51ae980e45d7"; - revision = "1"; - editedCabalFile = "1isap8v1gh31q4pj3gn155ya8nd1da0a5a3cryqh4yhf0ivbwl0w"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, hspec, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.4"; - sha256 = "5a2a56d969a6410b65150bc4254f343c6bbe585e60eb4890d2bc0ac6c1f334eb"; - revision = "1"; - editedCabalFile = "08xip42hqa21w3klaw41z5s6rdh82wq0gcysqmwvyzbkldgd7pj8"; - libraryHaskellDepends = [ - array base bytestring deepseq hspec mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xenstore" = callPackage - ({ mkDerivation, base, bytestring, cereal, mtl, network, stdenv }: - mkDerivation { - pname = "xenstore"; - version = "0.1.1"; - sha256 = "c2b538c9ce6716f4a1b4c0cb63ed5c6e5ee3e69e80dbb7826ee7f5392f45e874"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring cereal mtl network ]; - doHaddock = false; - doCheck = false; - description = "Xenstore client access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xhtml" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "xhtml"; - version = "3000.2.2.1"; - sha256 = "5cc869013ecc07ff68b3f873c0ab7f03b943fd7fa16d6f8725d4601b2f9f6924"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/xhtml"; - description = "An XHTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.1"; - sha256 = "097711246a78389bdde19484d422ffb2248d46ab62248e4ca653c50e12ff0928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xlsx" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search - , bytestring, conduit, containers, data-default, deepseq, errors - , extra, filepath, lens, mtl, network-uri, old-locale, safe, stdenv - , text, time, transformers, vector, xeno, xml-conduit, zip-archive - , zlib - }: - mkDerivation { - pname = "xlsx"; - version = "0.7.2"; - sha256 = "b2560467ea5639d7bbd97ecf492f2e2cc9fa34e0b05fc5d55243304bbe7f1103"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary-search bytestring conduit - containers data-default deepseq errors extra filepath lens mtl - network-uri old-locale safe text time transformers vector xeno - xml-conduit zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qrilka/xlsx"; - description = "Simple and incomplete Excel file parser/writer"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3.1"; - sha256 = "8d743ff8e489dc52fd256b18b75c21689945cfcb52481f5ca0aa6df50178a3e2"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, resourcet, stdenv, text - , transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.8.0.1"; - sha256 = "980b2f13ab8f54d8c2cbf92d186d5fac6c6ead42197c6687bd81e2fea2afef9c"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq resourcet text - transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-parse" = callPackage - ({ mkDerivation, base, conduit, conduit-parse, containers - , exceptions, parsers, stdenv, text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-parse"; - version = "0.3.1.2"; - sha256 = "c1aae117720128195dbbf2ce196271e4ca2973163c6a03a1b0ead3b32f936308"; - revision = "1"; - editedCabalFile = "0jnnr4z3c6rq2dz0ldiic5zwkrp36igf6gip11qrm9ss2pk9khbl"; - libraryHaskellDepends = [ - base conduit conduit-parse containers exceptions parsers text - xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/xml-conduit-parse"; - description = "Streaming XML parser based on conduits"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0"; - sha256 = "7bcec0aad83e72c2870efd3327553b3d78f6332cf01c12ad4b67c02f499015a3"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-isogen" = callPackage - ({ mkDerivation, base, deepseq, dom-parser, lens, mtl, QuickCheck - , semigroups, stdenv, template-haskell, text, xml-conduit - , xml-conduit-writer - }: - mkDerivation { - pname = "xml-isogen"; - version = "0.3.0"; - sha256 = "9f812d7bb5dd280e62f5013fd77af27e3710fb1a76dcf7a12f0abbfae5400a17"; - libraryHaskellDepends = [ - base deepseq dom-parser lens mtl QuickCheck semigroups - template-haskell text xml-conduit xml-conduit-writer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/xml-isogen"; - description = "Generate XML-isomorphic types"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.1.6.3"; - sha256 = "4dd7f1a91fbb12ae52d5a14badd9f38c0f0d7556f08ee77d79a67cc546dcb1e8"; - revision = "2"; - editedCabalFile = "1phba1j6ggxfsq4ivhd5wibzw1b9hwppqmgichyj3xg9z3widmnl"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlbf" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "xmlbf"; - version = "0.4.1"; - sha256 = "189a02e8b54c3576c3a919799def7b83c0e602b222264901c644c941c34fdc75"; - revision = "1"; - editedCabalFile = "0j5yvsz0ib5w80wp1gc0li376adw8l861xvf5paa2hdq55jkxvi6"; - libraryHaskellDepends = [ - base bytestring containers text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlbf-xeno" = callPackage - ({ mkDerivation, base, bytestring, html-entities, stdenv, text - , unordered-containers, xeno, xmlbf - }: - mkDerivation { - pname = "xmlbf-xeno"; - version = "0.1.1"; - sha256 = "6c1c4e419240c1e480d5543e89883cd2a356c1bb470a452f935424a80367dd32"; - libraryHaskellDepends = [ - base bytestring html-entities text unordered-containers xeno xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "xeno backend support for the xmlbf library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.6"; - sha256 = "b385eea5652c798b701c627dce8b327c3d6cbfd8c92e1e18e7118862d4d0e2b4"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/haskell-xss-sanitize#readme"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql" = callPackage - ({ mkDerivation, base, stdenv, yeshql-core, yeshql-hdbc }: - mkDerivation { - pname = "yeshql"; - version = "4.1.0.1"; - sha256 = "c4c590682d6581cf49893bdcd3c2d0e4046d81240a7f5abd7bcaa17037c29db6"; - libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-core" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, parsec - , stdenv, template-haskell - }: - mkDerivation { - pname = "yeshql-core"; - version = "4.1.0.2"; - sha256 = "c0db2a2f415846236e9c38a652dc38e56f2a68baa72b61bdf5c5238f1b6317fe"; - libraryHaskellDepends = [ - base containers convertible filepath parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (core)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-hdbc" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, HDBC - , parsec, stdenv, template-haskell, yeshql-core - }: - mkDerivation { - pname = "yeshql-hdbc"; - version = "4.1.0.2"; - sha256 = "f4ac521c6970d9a06d321e9f2b1143e6901c9875314281505aafcda3bd0352dc"; - libraryHaskellDepends = [ - base containers convertible filepath HDBC parsec template-haskell - yeshql-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (HDBC backend)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , conduit, data-default-class, directory, fast-logger, monad-logger - , resourcet, semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, transformers, unix, unordered-containers - , wai, wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0"; - sha256 = "8a242ffe1df10bc2c5dffb6e255ad21b11e96a9c4794bac20504b67f973da773"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring conduit - data-default-class directory fast-logger monad-logger resourcet - semigroups shakespeare streaming-commons template-haskell text - transformers unix unordered-containers wai wai-extra wai-logger - warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-alerts" = callPackage - ({ mkDerivation, alerts, base, blaze-html, blaze-markup, safe - , stdenv, text, yesod-core - }: - mkDerivation { - pname = "yesod-alerts"; - version = "0.1.2.0"; - sha256 = "8e52c8a7ec9cdbe7cdc06f39ea4e27b852be0391cf78652e349f0f2c169b146f"; - libraryHaskellDepends = [ - alerts base blaze-html blaze-markup safe text yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/yesod-alerts#readme"; - description = "Alert messages for the Yesod framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, bytestring, conduit, conduit-extra, containers - , cryptonite, data-default, email-validate, file-embed, http-client - , http-client-tls, http-conduit, http-types, memory, network-uri - , nonce, persistent, random, safe, shakespeare, stdenv - , template-haskell, text, time, transformers, unliftio - , unliftio-core, unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.5"; - sha256 = "b9dd963473a4d18d6a6921c0c321d86c77f264d8be2849b4aadcfa8f3ac337b3"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory network-uri nonce persistent random safe shakespeare - template-haskell text time transformers unliftio unliftio-core - unordered-containers wai yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, fb, http-conduit - , resourcet, shakespeare, stdenv, text, time, transformers - , unliftio, wai, yesod-auth, yesod-core, yesod-fb - }: - mkDerivation { - pname = "yesod-auth-fb"; - version = "1.9.1"; - sha256 = "11c836c7f17fa7d6f6ed93ef6037889832e75162cf3773398d7687c26287c88c"; - libraryHaskellDepends = [ - aeson base bytestring conduit fb http-conduit resourcet shakespeare - text time transformers unliftio wai yesod-auth yesod-core yesod-fb - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-auth-fb"; - description = "Authentication backend for Yesod using Facebook"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7"; - sha256 = "65b9a941a9eb87421dfc57f817a7e4dd46bb204b0f27438084f7417805434f1c"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , bytestring, Cabal, conduit, conduit-extra, containers - , data-default-class, directory, file-embed, filepath, fsnotify - , http-client, http-client-tls, http-reverse-proxy, http-types - , network, optparse-applicative, parsec, process, project-template - , resourcet, say, shakespeare, split, stdenv, stm - , streaming-commons, tar, template-haskell, text, time - , transformers, transformers-compat, unix-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.3"; - sha256 = "e4db295b4c651c205a1730df38501c217d9b600f3dbc1eea21d5fa47e832aedc"; - revision = "4"; - editedCabalFile = "1iw9m3z6m4n9dlwamf1kwr7pp2wpk6awf1m63zjkgw5j4vwxlcpg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec base base64-bytestring blaze-builder bytestring Cabal - conduit conduit-extra containers data-default-class directory - file-embed filepath fsnotify http-client http-client-tls - http-reverse-proxy http-types network optparse-applicative parsec - process project-template resourcet say shakespeare split stm - streaming-commons tar template-haskell text time transformers - transformers-compat unix-compat unliftio unordered-containers wai - wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , byteable, bytestring, case-insensitive, cereal, clientsession - , conduit, conduit-extra, containers, cookie, deepseq, fast-logger - , http-types, monad-logger, mtl, parsec, path-pieces, primitive - , random, resourcet, rio, shakespeare, stdenv, template-haskell - , text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.8.1"; - sha256 = "324592dce23bfc372892258540701a61aa722a33fdb7a820400c46193ebb0f4f"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup byteable bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq fast-logger http-types monad-logger mtl - parsec path-pieces primitive random resourcet rio shakespeare - template-haskell text time transformers unix-compat unliftio - unordered-containers vector wai wai-extra wai-logger warp word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-csp" = callPackage - ({ mkDerivation, attoparsec, base, case-insensitive - , mono-traversable, network-uri, semigroups, stdenv, syb - , template-haskell, text, wai, yesod, yesod-core - }: - mkDerivation { - pname = "yesod-csp"; - version = "0.2.4.0"; - sha256 = "e05d31857d6d0e8aececdd83b6a896267ecab2c29426d559e3dafb259eac92a5"; - libraryHaskellDepends = [ - attoparsec base case-insensitive mono-traversable network-uri - semigroups syb template-haskell text wai yesod yesod-core - ]; - doHaddock = false; - doCheck = false; - description = "Add CSP headers to Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-eventsource" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, stdenv, transformers - , wai, wai-eventsource, wai-extra, yesod-core - }: - mkDerivation { - pname = "yesod-eventsource"; - version = "1.6.0"; - sha256 = "6fceeca34d5e80c8a0d65ab95fab3c53807d1f18eb506abdef67a8f70d0e418b"; - libraryHaskellDepends = [ - base blaze-builder conduit transformers wai wai-eventsource - wai-extra yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Server-sent events support for Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, crypto-api, fb - , http-client-tls, http-conduit, stdenv, text, wai, yesod-core - }: - mkDerivation { - pname = "yesod-fb"; - version = "0.5.0"; - sha256 = "de375004c12e89eec47738d60465c7c63b5f0c7bfc3591c70a35522fdc0841db"; - libraryHaskellDepends = [ - aeson base bytestring conduit crypto-api fb http-client-tls - http-conduit text wai yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-fb"; - description = "Useful glue functions between the fb library and Yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, text, time, transformers, wai, xss-sanitize - , yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.3"; - sha256 = "40d7d85039fb2bb3081f695cfed4a6d4f8adac413d86dd11ccfc948b677e9b97"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare text time - transformers wai xss-sanitize yesod-core yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form-bootstrap4" = callPackage - ({ mkDerivation, base, stdenv, text, yesod-core, yesod-form }: - mkDerivation { - pname = "yesod-form-bootstrap4"; - version = "1.0.2"; - sha256 = "98695338541fab09f27c4df2083ed15f257307d315b0c084e227a265bb99c878"; - libraryHaskellDepends = [ base text yesod-core yesod-form ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-form-bootstrap4#readme"; - description = "renderBootstrap4"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrepo" = callPackage - ({ mkDerivation, base, directory, http-types, process, stdenv - , temporary, text, unliftio, wai, yesod-core - }: - mkDerivation { - pname = "yesod-gitrepo"; - version = "0.3.0"; - sha256 = "b03c67c506bc3fc402cb41759d69f2c3159af47959cbd964cb6531996084981e"; - libraryHaskellDepends = [ - base directory http-types process temporary text unliftio wai - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yesod-gitrepo#readme"; - description = "Host content provided by a Git repo"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, gitrev, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.0.0"; - sha256 = "df9f374e6099e55eb62cc273451605ce8746785a293e76115d25002355fee052"; - revision = "1"; - editedCabalFile = "1b0df34lz569gnwbbz0p20dml6bi2nbva9wfdsxyvva0dhvxjaz5"; - libraryHaskellDepends = [ - aeson base gitrev template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.6.1.0"; - sha256 = "6d0b97592d74ca45e204f1876fb113a4830c5f35612b876175169af3d2f79615"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-paginator" = callPackage - ({ mkDerivation, base, blaze-markup, path-pieces, persistent, safe - , stdenv, text, transformers, uri-encode, yesod-core - }: - mkDerivation { - pname = "yesod-paginator"; - version = "1.1.0.1"; - sha256 = "6e241fb7e55debfe3b674e62faeb02967abb982cd77295847085423d23230b90"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-markup path-pieces persistent safe text transformers - uri-encode yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pbrisbin/yesod-paginator"; - description = "A pagination approach for yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0.1"; - sha256 = "748acc0a08e371548920a1b5e2e8b2c95b95014becd63acf259712d306a9bd4f"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-recaptcha2" = callPackage - ({ mkDerivation, base, classy-prelude-yesod, http-conduit, stdenv - , yesod-auth - }: - mkDerivation { - pname = "yesod-recaptcha2"; - version = "0.2.4"; - sha256 = "2848ecd3fd581cb3beba406640417add2def248c1fc7f20b6ba6a62d220181ab"; - libraryHaskellDepends = [ - base classy-prelude-yesod http-conduit yesod-auth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-recaptcha2#readme"; - description = "yesod recaptcha2"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, conduit, containers, cryptonite - , cryptonite-conduit, css-text, data-default, directory, file-embed - , filepath, hashable, hjsmin, http-types, memory, mime-types - , process, stdenv, template-haskell, text, transformers - , unix-compat, unordered-containers, wai, wai-app-static - , yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0.1"; - sha256 = "abe7e802f5efd064823b827074fea3613f4ba46115afedb5e2d96f919dcfa0c9"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder bytestring - conduit containers cryptonite cryptonite-conduit css-text - data-default directory file-embed filepath hashable hjsmin - http-types memory mime-types process template-haskell text - transformers unix-compat unordered-containers wai wai-app-static - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html - , bytestring, case-insensitive, conduit, containers, cookie - , hspec-core, html-conduit, http-types, HUnit, network, pretty-show - , semigroups, stdenv, text, time, transformers, wai, wai-extra - , xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.5.1"; - sha256 = "523f2f1f8e38a83824433b5c03382f196c8d9f2512e1979650962eb9ac211520"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-html bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit network pretty-show semigroups text time - transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-text-markdown" = callPackage - ({ mkDerivation, aeson, base, markdown, persistent, shakespeare - , stdenv, text, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-text-markdown"; - version = "0.1.10"; - sha256 = "3cee8b3d8d84f30e8b825076d650afb05e79ebd22f34a21fc7ad7f45e1637ddc"; - libraryHaskellDepends = [ - aeson base markdown persistent shakespeare text yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - description = "Yesod support for Text.Markdown."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0.1"; - sha256 = "86c947aa0354c8b98ec7364b51df2ba98ac7c8e184d6ebfcf4bfb9b2e8c381cc"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai-websockets websockets - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-language" = callPackage - ({ mkDerivation, alex, array, base, binary, containers - , data-default, hashable, microlens-platform, oo-prototypes - , pointedlist, regex-base, regex-tdfa, stdenv, template-haskell - , transformers-base, unordered-containers - }: - mkDerivation { - pname = "yi-language"; - version = "0.17.1"; - sha256 = "4aee628b278e9d6b2b2e92a8974696ce6de10c30ef137ababb709bdca193b69e"; - libraryHaskellDepends = [ - array base binary containers data-default hashable - microlens-platform oo-prototypes pointedlist regex-base regex-tdfa - template-haskell transformers-base unordered-containers - ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/yi#readme"; - description = "Collection of language-related Yi libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.5"; - sha256 = "30020283ef7b241787bae810b1f563bd2c7a6ada69a582b8d7cc020365015f91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.4"; - sha256 = "38cdc62d9673b8b40999de69da2ec60dab7a65fb1c22133ecd54e0a2ec61d5d5"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.7.0"; - sha256 = "58d4504ee607cb681fc3da2474ed92afaefdb2dc34752b145aa9f746ab29079f"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.1.0"; - sha256 = "65942d6a2ccef6d2b78183f250a6d8b6c04d081ab3df1f39215de0a76a26d9dc"; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, Cabal, containers - , digest, directory, filepath, mtl, pretty, stdenv, text, time - , unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.3.3"; - sha256 = "988adee77c806e0b497929b24d5526ea68bd3297427da0d0b30b99c094efc84d"; - revision = "1"; - editedCabalFile = "0z0s2abc9bywapjrs8frgz6qdnc0yfc9ac9lyj2p5y2r61jp3y2k"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.1.1"; - sha256 = "b88ce2ad46b218a7f0f31ffe02f61105c0ad2b35bf3a171a8e44f8727590d2f2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, profunctors - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.2.5"; - sha256 = "2d127772564655df0cb99d5191b91a555797e66e535d0b8b4f5ed4d54097c085"; - revision = "3"; - editedCabalFile = "0y0klc2jaj611cjvmqi95dyj9yvribf9xhibn1andrz5rs6ysz3p"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2"; - sha256 = "0dcc7d925769bdbeb323f83b66884101084167501f11d74d21eb9bc515707fed"; - revision = "1"; - editedCabalFile = "1wihqz5arcv5hylwpvjh5ajny88wbys5kas8ic1bchi5k19nvkfa"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.0.0"; - sha256 = "0875840799d987cf8f8dd5e0a7686978084b3088c07123e66f6f88561f474bff"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebookexperimental/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ztail" = callPackage - ({ mkDerivation, array, base, bytestring, filepath, hinotify - , process, regex-posix, stdenv, time, unix, unordered-containers - }: - mkDerivation { - pname = "ztail"; - version = "1.2.0.2"; - sha256 = "a14341d51da6dbef9f0edcdefe185dbd7726880ec4e230855fb9871de7c07717"; - revision = "1"; - editedCabalFile = "0d0cpgb0v849zxl12c2gkm3x4nmyfycka1pcfix43lawx62rky8s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base bytestring filepath hinotify process regex-posix time - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Multi-file, colored, filtered log tailer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/ghc844.nix b/generated/stable/stack2nix/ghc844.nix deleted file mode 100644 index f905d2e..0000000 --- a/generated/stable/stack2nix/ghc844.nix +++ /dev/null @@ -1,41551 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc844 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.2"; - sha256 = "b8364da380f5f1d85d13e427851a153be2809e1838d16393e37566f34b384b87"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Agda" = callPackage - ({ mkDerivation, alex, array, async, base, binary, blaze-html - , boxes, bytestring, Cabal, containers, data-hash, deepseq - , directory, EdisonCore, edit-distance, emacs, equivalence - , filemanip, filepath, geniplate-mirror, gitrev, happy, hashable - , hashtables, haskeline, ieee754, mtl, murmur-hash, pretty, process - , regex-tdfa, stdenv, stm, strict, template-haskell, text, time - , transformers, unordered-containers, uri-encode, zlib - }: - mkDerivation { - pname = "Agda"; - version = "2.5.4.2"; - sha256 = "f645add8a47a35da3f37757204fa9c80aeb0993d628fc2057fa343e92e579b1f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal filemanip filepath process ]; - libraryHaskellDepends = [ - array async base binary blaze-html boxes bytestring containers - data-hash deepseq directory EdisonCore edit-distance equivalence - filepath geniplate-mirror gitrev hashable hashtables haskeline - ieee754 mtl murmur-hash pretty process regex-tdfa stm strict - template-haskell text time transformers unordered-containers - uri-encode zlib - ]; - libraryToolDepends = [ alex happy ]; - executableHaskellDepends = [ base directory filepath process ]; - executableToolDepends = [ emacs ]; - doHaddock = false; - doCheck = false; - postInstall = '' - files=("$data/share/ghc-"*"/"*"-ghc-"*"/Agda-"*"/lib/prim/Agda/"{Primitive.agda,Builtin"/"*.agda}) - for f in "''${files[@]}" ; do - $out/bin/agda $f - done - for f in "''${files[@]}" ; do - $out/bin/agda -c --no-main $f - done - $out/bin/agda-mode compile - ''; - homepage = "http://wiki.portal.chalmers.se/agda/"; - description = "A dependently typed functional programming language and proof assistant"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "Allure" = callPackage - ({ mkDerivation, async, base, containers, enummapset, filepath - , LambdaHack, optparse-applicative, random, stdenv - , template-haskell, text, transformers, zlib - }: - mkDerivation { - pname = "Allure"; - version = "0.8.3.0"; - sha256 = "6b83013281da6ccc5f0bf4c483a53acdbff7679c7234a1dfa57261c45a8cf8fb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - async base containers enummapset filepath LambdaHack - optparse-applicative random template-haskell text transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://allureofthestars.com"; - description = "Near-future Sci-Fi roguelike and tactical squad game"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "BiobaseNewick" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, cereal - , cereal-text, cmdargs, containers, fgl, ForestStructures - , QuickCheck, stdenv, text, text-binary, vector - }: - mkDerivation { - pname = "BiobaseNewick"; - version = "0.0.0.2"; - sha256 = "6432f684a75fd8a2cea59a5359a59f48020ead19119efaed7018ecae726d13bd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/choener/BiobaseNewick"; - description = "Newick file format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "2.2.0.1"; - sha256 = "02b5301304df73cea3c7d544b5026b228141dc3ac1d5b08c9a206f99aa330a7b"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChasingBottoms" = callPackage - ({ mkDerivation, base, containers, mtl, QuickCheck, random, stdenv - , syb - }: - mkDerivation { - pname = "ChasingBottoms"; - version = "1.3.1.5"; - sha256 = "60f43e0956459606e3432ab528bada79503f928c9fa26e52deaea8961613d341"; - libraryHaskellDepends = [ - base containers mtl QuickCheck random syb - ]; - doHaddock = false; - doCheck = false; - description = "For testing partial and infinite values"; - license = stdenv.lib.licenses.mit; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ClustalParser" = callPackage - ({ mkDerivation, base, cmdargs, either-unwrap, parsec, stdenv, text - , vector - }: - mkDerivation { - pname = "ClustalParser"; - version = "1.2.3"; - sha256 = "fed67bdcb9d89d871b02f556e5a294d0ea6fd05576f92621a8797abff4325a72"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec text vector ]; - executableHaskellDepends = [ base cmdargs either-unwrap ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing Clustal tools output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.3"; - sha256 = "24f49c63bd603b7757569ac0f5842ac30dea2bfcce64d157162a952e576e3991"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DRBG" = callPackage - ({ mkDerivation, base, bytestring, cereal, cipher-aes128 - , crypto-api, cryptohash-cryptoapi, entropy, mtl, parallel - , prettyclass, stdenv, tagged - }: - mkDerivation { - pname = "DRBG"; - version = "0.5.5"; - sha256 = "21df3202486cc83c7cc3f867cb139eac9a3f69bd91b5f6b016ae026e03c33bfd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal cipher-aes128 crypto-api - cryptohash-cryptoapi entropy mtl parallel prettyclass tagged - ]; - doHaddock = false; - doCheck = false; - description = "Deterministic random bit generator (aka RNG, PRNG) based HMACs, Hashes, and Ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.3.4"; - sha256 = "77b7daec5a79ade779706748f11b4d9b8f805e57a68e7406c3b5a1dee16e0c2f"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.12.1.0"; - sha256 = "731493be9cb960c3159458dc24b1a217d6f26e1f46a840bef880accd04d5bd1d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "EdisonAPI" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "EdisonAPI"; - version = "1.3.1"; - sha256 = "95a3b8d01599520a50456219b5a2e9f7832bcddaaeb8e94ce777bd87a4a6b56e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://rwd.rdockins.name/edison/home/"; - description = "A library of efficient, purely-functional data structures (API)"; - license = stdenv.lib.licenses.mit; - }) {}; - "EdisonCore" = callPackage - ({ mkDerivation, array, base, containers, EdisonAPI, mtl - , QuickCheck, stdenv - }: - mkDerivation { - pname = "EdisonCore"; - version = "1.3.2.1"; - sha256 = "73c6014d07107a9ed21df76a59f70c9d68d64ac84cced35f7b628f1d792cf239"; - libraryHaskellDepends = [ - array base containers EdisonAPI mtl QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://rwd.rdockins.name/edison/home/"; - description = "A library of efficient, purely-functional data structures (Core Implementations)"; - license = stdenv.lib.licenses.mit; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Fin" = callPackage - ({ mkDerivation, alg, base, foldable1, natural-induction, peano - , stdenv, universe-base - }: - mkDerivation { - pname = "Fin"; - version = "0.2.7.0"; - sha256 = "c331fecbdac3f80567c89beb85faaa2bdc1d4a056c56b38b1f18f856056b4970"; - libraryHaskellDepends = [ - alg base foldable1 natural-induction peano universe-base - ]; - doHaddock = false; - doCheck = false; - description = "Finite totally-ordered sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FloatingHex" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "FloatingHex"; - version = "0.4"; - sha256 = "b277054db48d2dec62e3831586f218cbe0a056dec44dbc032e9a73087425a24c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Read and write hexadecimal floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.4"; - sha256 = "43d3878154d543a337b0cc45f40dcd57153e47fca39122bac0e5ed81b6bc5b3d"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ForestStructures" = callPackage - ({ mkDerivation, base, containers, fgl, QuickCheck, stdenv - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "ForestStructures"; - version = "0.0.0.2"; - sha256 = "fe74067fee601844de5c839a115f2bd75d4a1be9f0ee8ec42c0150bcf886693f"; - libraryHaskellDepends = [ - base containers fgl QuickCheck unordered-containers vector - vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/choener/ForestStructures"; - description = "Tree- and forest structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.2.1.0"; - sha256 = "31c022e0ad63f259ff9fa582a235924786e929a95b52efae10a3d29fef7cb6a6"; - revision = "2"; - editedCabalFile = "0xlby7483dv33c13f44kkvmai186g72jhxmcq8749s1hyxi6fqnb"; - libraryHaskellDepends = [ base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.14"; - sha256 = "5cf8f7700a6b6ac33e39b2d7bd300679a245ff7c1498eb423901134f9d302106"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.9.3"; - sha256 = "3a77853eba3700c5346cd6d4008302e70dca93a7e8ac0d679cf41b16c7a4c9e8"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HCodecs" = callPackage - ({ mkDerivation, array, base, bytestring, QuickCheck, random - , semigroups, stdenv - }: - mkDerivation { - pname = "HCodecs"; - version = "0.5.1"; - sha256 = "a724616b79ac12c2d661dc3f54cfa0e7d530d1ba3eafa1e6c3e7116e035a3143"; - libraryHaskellDepends = [ - array base bytestring QuickCheck random semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; - description = "A library to read, write and manipulate MIDI, WAVE, and SoundFont2 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC" = callPackage - ({ mkDerivation, base, bytestring, containers, convertible, mtl - , old-time, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "HDBC"; - version = "2.4.0.2"; - sha256 = "670757fd674b6caf2f456034bdcb54812af2cdf2a32465d7f4b7f0baa377db5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers convertible mtl old-time text time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdbc/hdbc"; - description = "Haskell Database Connectivity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC-mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, HDBC, mysqlclient - , openssl, stdenv, time, utf8-string, zlib - }: - mkDerivation { - pname = "HDBC-mysql"; - version = "0.7.1.0"; - sha256 = "81c985d4a243c965930fb412b3175ca799ba66985f8b6844014fd600df1da7cf"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring HDBC time utf8-string ]; - librarySystemDepends = [ mysqlclient openssl zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ryantm/hdbc-mysql"; - description = "MySQL driver for HDBC"; - license = "LGPL"; - }) {inherit (pkgs) mysqlclient; inherit (pkgs) openssl; -inherit (pkgs) zlib;}; - "HDBC-session" = callPackage - ({ mkDerivation, base, HDBC, stdenv }: - mkDerivation { - pname = "HDBC-session"; - version = "0.1.2.0"; - sha256 = "aa057f18bbc9d2f9876152246682f546c9cf140192515c7c23b5be2fccc296e3"; - libraryHaskellDepends = [ base HDBC ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Bracketed connection for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HPDF" = callPackage - ({ mkDerivation, array, base, base64-bytestring, binary, bytestring - , containers, errors, mtl, random, stdenv, vector, zlib - }: - mkDerivation { - pname = "HPDF"; - version = "1.4.10"; - sha256 = "de2bfddd93eeef2129a2378e8dce486d086bec3c48ee2a1bf1a5fb01581607d4"; - revision = "1"; - editedCabalFile = "1djn0a9rk3qrbz31bxj115r65p28fi3wzcrkrnjvzibl3450pq30"; - libraryHaskellDepends = [ - array base base64-bytestring binary bytestring containers errors - mtl random vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.alpheccar.org"; - description = "Generation of PDF documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSet" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, stdenv }: - mkDerivation { - pname = "HSet"; - version = "0.0.1"; - sha256 = "eba93be5a76581585ae33af6babe9c2718fae307d41989cd36a605d9b0e8d16a"; - libraryHaskellDepends = [ base containers hashable hashtables ]; - doHaddock = false; - doCheck = false; - description = "Faux heterogeneous sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.0.3.22"; - sha256 = "8dac8a583c762675f2d64138303618f017d6be95d59e60774ea7cbfc040dab04"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.13.2.5"; - sha256 = "365af323c6254ec5c33745e1d42ceeba0940992a43f523608c4dc64d7c49aece"; - revision = "1"; - editedCabalFile = "0l18mp06jjwpjbnvj548naas1xhnc46c8l0pbgzi3bm6siq5hhv6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.12"; - sha256 = "a3ff6a9c93771079121083f1691188fe45f84380118e0f76bc4578153c361990"; - revision = "2"; - editedCabalFile = "1gw6xzp1n4gsqwnbfr29ds8v4wpk78b2bha8i108dqav97viwm8c"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaTeX" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, matrix - , parsec, QuickCheck, stdenv, text, transformers, wl-pprint-extras - }: - mkDerivation { - pname = "HaTeX"; - version = "3.19.0.0"; - sha256 = "1fd977a582f44a62dafe32ad72acde8c0c01b0ae0ce5f7d6bbc4d91b68e24749"; - libraryHaskellDepends = [ - base bytestring containers hashable matrix parsec QuickCheck text - transformers wl-pprint-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; - description = "The Haskell LaTeX library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet" = callPackage - ({ mkDerivation, array, base, base64-string, bytestring, cryptohash - , mime-mail, mtl, network, old-time, pretty, stdenv, text - }: - mkDerivation { - pname = "HaskellNet"; - version = "0.5.1"; - sha256 = "3245d31ad76f9f9013a2f6e2285d73ed37376eeb073c100b9a6d19e87f0ca838"; - revision = "1"; - editedCabalFile = "12p3v58jhr54yzsmqgza3rbrp19w2iq5m43g568hcx20n7zwzwjk"; - libraryHaskellDepends = [ - array base base64-string bytestring cryptohash mime-mail mtl - network old-time pretty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/HaskellNet"; - description = "Client support for POP3, SMTP, and IMAP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet-SSL" = callPackage - ({ mkDerivation, base, bytestring, connection, data-default - , HaskellNet, network, stdenv, tls - }: - mkDerivation { - pname = "HaskellNet-SSL"; - version = "0.3.4.0"; - sha256 = "83ae92547fd5d52b5b74402101ec254423abeac0c0725e14a112d6ffc843040f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring connection data-default HaskellNet network tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dpwright/HaskellNet-SSL"; - description = "Helpers to connect to SSL/TLS mail servers with HaskellNet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, strict - , template-haskell, terminal-size, text, transformers, uniplate - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "Hoed"; - version = "0.5.1"; - sha256 = "a8f6dc9717e15642f00cd84a8d1030ac6a7c7870f7015e380bd728a843c3f4e7"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MaartenFaddegon/Hoed"; - description = "Lightweight algorithmic debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.15"; - sha256 = "cebdceef21d8f00feaa3dcc31b18fc960bbfeaec1326ece1edeb56d4cc54b545"; - revision = "1"; - editedCabalFile = "0bkcw2pjfgv1bhgkrpncvwq9czfr7cr4ak14n0v8c2y33i33wk5z"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsOpenSSL-x509-system" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, stdenv, unix }: - mkDerivation { - pname = "HsOpenSSL-x509-system"; - version = "0.1.0.3"; - sha256 = "5bdcb7ae2faba07a374109fea0a1431ae09d080f8574e60ab7a351b46f931f92"; - libraryHaskellDepends = [ base bytestring HsOpenSSL unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/HsOpenSSL-x509-system"; - description = "Use the system's native CA certificate store with HsOpenSSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.1.1"; - sha256 = "3b0959a9f1357b12aff50bda88e3af6e13ba0787758209c68a60fb6e88755e50"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "IPv6DB" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, fast-logger - , hedis, http-types, IPv6Addr, mtl, optparse-applicative, stdenv - , text, unordered-containers, vector, wai, wai-logger, warp - }: - mkDerivation { - pname = "IPv6DB"; - version = "0.3.1"; - sha256 = "96354eb278fe7de771fb7fd9f29dbe6f328a0497526dc85f066eca65c7074418"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hedis http-types IPv6Addr mtl text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring fast-logger hedis http-types IPv6Addr mtl - optparse-applicative text unordered-containers vector wai - wai-logger warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://ipv6db.cybervisible.com"; - description = "A RESTful microService for IPv6-related data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.1.0"; - sha256 = "133676b9e01008b9d9bfeb5dbf3f51aabdc53b3a334588e68a8b6f5089ab873c"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.2.9.5"; - sha256 = "849c6cf4a613f906f7e553a1baefe9c0dc61c13b41a5f5b9605cf80e328cc355"; - revision = "1"; - editedCabalFile = "0s6i5f2cpm29b88zjrs1na699v9kvfsbcvr25z6vyr6bi6mmxdfm"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-blp" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, directory - , filepath, hashable, JuicyPixels, optparse-simple, stdenv - , text-show, unordered-containers, vector - }: - mkDerivation { - pname = "JuicyPixels-blp"; - version = "0.1.1.0"; - sha256 = "7d2f9e45580ff26a7a15b2fefb7e6582d5a32d7e84f34b99f856ae6451ea8c6d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base binary bytestring hashable JuicyPixels text-show - vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath JuicyPixels optparse-simple - text-show unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/NCrashed/JuicyPixels-blp#readme"; - description = "BLP format decoder/encoder over JuicyPixels library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.3.0"; - sha256 = "c5a03a9747bcd984924d6f7c9b4771188e297df82160e7d667ea8f4f671b0e22"; - revision = "3"; - editedCabalFile = "1xr4vjhzjw3ynibb6693dhcz2jbvbx4yg2bir8w2s98n37gwsxd7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LambdaHack" = callPackage - ({ mkDerivation, assert-failure, async, base, base-compat, binary - , bytestring, containers, deepseq, directory, enummapset, filepath - , ghc-prim, hashable, hsini, keys, miniutter, optparse-applicative - , pretty-show, random, sdl2, sdl2-ttf, stdenv, stm - , template-haskell, text, time, transformers, unordered-containers - , vector, vector-binary-instances, zlib - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.8.3.0"; - sha256 = "5a9b23a893ba809d8f7ff1ef810d4d542fcd7419876aef4208cf237a3662076c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-prim hashable hsini keys - miniutter optparse-applicative pretty-show random sdl2 sdl2-ttf stm - text time transformers unordered-containers vector - vector-binary-instances zlib - ]; - executableHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-prim hashable hsini keys - miniutter optparse-applicative pretty-show random stm - template-haskell text time transformers unordered-containers vector - vector-binary-instances zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://lambdahack.github.io"; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6"; - sha256 = "c1cdec79a5f585a5839eea26a2afe6a37aab5ed2f402a16e7d59fe9a4e925a9a"; - revision = "2"; - editedCabalFile = "1mca2r4gjznqdh4kck5cjkn53isgkhvkf3ri09qsn7nsssvgki0g"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JohnLato/listlike"; - description = "Generic support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.9"; - sha256 = "1d6045b8fdf7b89ed6b495e535613f5091cdfc9cdfe05a862207e76ce205f794"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MissingH" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath - , hslogger, HUnit, mtl, network, old-locale, old-time, parsec - , process, random, regex-compat, stdenv, time, unix - }: - mkDerivation { - pname = "MissingH"; - version = "1.4.1.0"; - sha256 = "49ecd2df3ad45d6da64a984e506cd0e2ca02c238a743d757feeea8c4cddce0ca"; - revision = "2"; - editedCabalFile = "1k7d8cgvpmln4imcrfpj4c02n3c5l1gkd5hs4hnar9ln0qh61cfx"; - libraryHaskellDepends = [ - array base containers directory filepath hslogger HUnit mtl network - old-locale old-time parsec process random regex-compat time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/missingh"; - description = "Large utility library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadPrompt" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "MonadPrompt"; - version = "1.0.0.5"; - sha256 = "b012cbbe83650f741c7b7f6eafcc89dec299b0ac74a758b6f3a8cdfc5d3bbeda"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - description = "MonadPrompt, implementation & examples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.1"; - sha256 = "abda4a297acf197e664695b839b4fb70f53e240f5420489dc21bcf6103958470"; - revision = "3"; - editedCabalFile = "0fiblwmwk48d1g9j99qrcg1ak904csgfb86y80d1nl2vr782cq6w"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4.1"; - sha256 = "262c29f630a761356454c2a382d149230ea2e621c95102b3d3b30427d7c0cd57"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Network-NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, convertible - , exceptions, hslogger, monad-loops, monad-peel, mstate, mtl - , network, NineP, regex-posix, stateref, stdenv, transformers - }: - mkDerivation { - pname = "Network-NineP"; - version = "0.4.4"; - sha256 = "fe2b0a7eadcf9329f0865564324052324770de035f1d5caa67a5bd5b634c3b85"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers convertible exceptions hslogger - monad-loops monad-peel mstate mtl network NineP regex-posix - stateref transformers - ]; - doHaddock = false; - doCheck = false; - description = "High-level abstraction over 9P protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OneTuple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "OneTuple"; - version = "0.2.2"; - sha256 = "d82e702485bcbdefbda0d12b6a250d318a269572ee58d63b60eee531e56624dc"; - revision = "3"; - editedCabalFile = "0m3a9fj2h0v529q3i1kq1jfbdj68wxsmhq65hgx2rwjpgb8cqf0z"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Singleton Tuple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.4"; - sha256 = "3989f6c4fe437843551004dd011c4308bf63d787ae4fbb8ce71d44b1b0b1f118"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.2.2"; - sha256 = "4cba40fe8eecee67c8251556b4c05d9e98256c11d49c20e914f8232bfae67da7"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.1.0"; - sha256 = "6b0745f6d421f658b57c13bfdbae014c0aa6871a98e11e98908d4a04461f1cf5"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, random, stdenv - , template-haskell, tf-random, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.11.3"; - sha256 = "488c5652139da0bac8b3e7d76f11320ded298549e62db530938bfee9ca981876"; - revision = "2"; - editedCabalFile = "12c3jgdfh57b1cxfsm2qjvpjp3w8v2gxyakkhqlvliraidqq93jy"; - libraryHaskellDepends = [ - base containers deepseq random template-haskell tf-random - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.3.0"; - sha256 = "eee76dc7f9dd2d2cdeb014af728ff56f2f5d2908212bd3bb8c5e89f5c6485333"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.4"; - sha256 = "986efe76aad9a8530d4826b8c0f8034866f37b8d645ea34a9849edca9357c58d"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SCalendar" = callPackage - ({ mkDerivation, base, containers, stdenv, text, time }: - mkDerivation { - pname = "SCalendar"; - version = "1.1.0"; - sha256 = "4971bf6df45953434088ba50d0e17dcc49a0e4c2dd37ad06385c1f87d87b348d"; - libraryHaskellDepends = [ base containers text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.researchgate.net/publication/311582722_Method_of_Managing_Resources_in_a_Telecommunication_Network_or_a_Computing_System"; - description = "This is a library for handling calendars and resource availability based on the \"top-nodes algorithm\" and set operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "STMonadTrans" = callPackage - ({ mkDerivation, array, base, mtl, stdenv }: - mkDerivation { - pname = "STMonadTrans"; - version = "0.4.3"; - sha256 = "574fd56cf74036c20d00a09d815659dbbb0ae51c8103d00c93cd9558ad3322db"; - revision = "1"; - editedCabalFile = "09kqrv9a4yhsdpix49h9qjw0j2fhxrgkjnfrnyxg1nspmqrvl50m"; - libraryHaskellDepends = [ array base mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad transformer version of the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SVGFonts" = callPackage - ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg - , bytestring, cereal, cereal-vector, containers, data-default-class - , diagrams-core, diagrams-lib, directory, parsec, split, stdenv - , text, vector, xml - }: - mkDerivation { - pname = "SVGFonts"; - version = "1.7"; - sha256 = "da3ccd65e0963473df035f4543b56dfc84b45edca540990050e5de444fa431cd"; - revision = "1"; - editedCabalFile = "1w687f4lk4l07wqgldhpg7ycid0fs099x8vrylcxqdgfrzmm04dg"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base blaze-markup blaze-svg bytestring cereal - cereal-vector containers data-default-class diagrams-core - diagrams-lib directory parsec split text vector xml - ]; - doHaddock = false; - doCheck = false; - description = "Fonts from the SVG-Font format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SafeSemaphore" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "SafeSemaphore"; - version = "0.10.1"; - sha256 = "21e5b737a378cae9e1faf85cab015316d4c84d4b37e6d9d202111cef8c4cef66"; - revision = "1"; - editedCabalFile = "1k61gqgfh6n3sj8ni8sfvpcm39nqc2msjfxk2pgmhfabvv48w5hv"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/SafeSemaphore"; - description = "Much safer replacement for QSemN, QSem, and SampleVar"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SegmentTree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "SegmentTree"; - version = "0.3"; - sha256 = "6188c1b1276d7fa0391098a563df73dd522d20b57dc5321fe3418a9e3ca84fc1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data structure for querying the set (or count) of intervals covering given point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ShellCheck" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, mtl, parsec, process, QuickCheck, regex-tdfa, stdenv - }: - mkDerivation { - pname = "ShellCheck"; - version = "0.5.0"; - sha256 = "2b9430736f48de17a60c035546a6a969c14392521bec30119e1c869017d3307c"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson base bytestring containers directory mtl parsec process - QuickCheck regex-tdfa - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory mtl parsec QuickCheck - regex-tdfa - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.shellcheck.net/"; - description = "Shell script analysis tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "21df2193bf1216d55a0d43691182125993eeadc6f097eaf5eb995c23f2016b13"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spock" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, containers - , cryptonite, focus, hashable, http-types, hvect, list-t - , monad-control, mtl, reroute, resource-pool, resourcet, Spock-core - , stdenv, stm, stm-containers, text, time, transformers - , transformers-base, unordered-containers, vault, wai - }: - mkDerivation { - pname = "Spock"; - version = "0.13.0.0"; - sha256 = "8a73a3ddeb8982cd7c10f650e9adbfec2f6abac8da3a912bdb3025dc8d731ad0"; - revision = "1"; - editedCabalFile = "1glpfh1w9zahfwi4nc7kbxd429ni9xwvx3cd880mi3zdixlz4ghn"; - libraryHaskellDepends = [ - base base64-bytestring bytestring containers cryptonite focus - hashable http-types hvect list-t monad-control mtl reroute - resource-pool resourcet Spock-core stm stm-containers text time - transformers transformers-base unordered-containers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.spock.li"; - description = "Another Haskell web framework for rapid development"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spock-core" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, containers, cookie, directory, hashable - , http-api-data, http-types, hvect, monad-control, mtl, old-locale - , reroute, resourcet, stdenv, stm, superbuffer, text, time - , transformers, transformers-base, unordered-containers, vault, wai - , wai-extra, warp - }: - mkDerivation { - pname = "Spock-core"; - version = "0.13.0.0"; - sha256 = "5ecabd42a48c1930ca37f9ec02192b7cdf2cf2f49aba5b4d7f7a0d8d25d85162"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive containers - cookie directory hashable http-api-data http-types hvect - monad-control mtl old-locale reroute resourcet stm superbuffer text - time transformers transformers-base unordered-containers vault wai - wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.spock.li"; - description = "Another Haskell web framework for rapid development"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.1.1.1"; - sha256 = "eb6436516ab2d5e3d3e070b5a1595c4dceea760a58a9cc8d23dad5f6008f2223"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Strafunski-StrategyLib" = callPackage - ({ mkDerivation, base, directory, mtl, stdenv, syb, transformers }: - mkDerivation { - pname = "Strafunski-StrategyLib"; - version = "5.0.1.0"; - sha256 = "a018c7420289a381d2b491a753f685b9d691be07cea99855cc5c8e05d5a9a295"; - revision = "2"; - editedCabalFile = "1g9ksfgcz8fjasn78zq7w1yw9wk87i4gd5i0pf31gnf4l3963yz8"; - libraryHaskellDepends = [ base directory mtl syb transformers ]; - doHaddock = false; - doCheck = false; - description = "Library for strategic programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TypeCompose" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "TypeCompose"; - version = "0.9.14"; - sha256 = "56034f7917c7464e3be93754c36302d91b8d750f84f6ed7af146f94c4fd05a57"; - revision = "1"; - editedCabalFile = "1pxg6az5vkl0zvs3zdvvvnhxqawd9fkkd44jmzzzyyibppgni6x4"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/TypeCompose"; - description = "Type composition classes & instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9"; - sha256 = "10138e863d8c6f860aad1755a6f1a36949cc02d83e5afacf6677fb3999f10db9"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque-tests" = callPackage - ({ mkDerivation, abstract-deque, array, base, containers, HUnit - , random, stdenv, test-framework, test-framework-hunit, time - }: - mkDerivation { - pname = "abstract-deque-tests"; - version = "0.3"; - sha256 = "5f17fb4cc26559f81c777f494622907e8927181175eaa172fb6adbf14b2feba5"; - libraryHaskellDepends = [ - abstract-deque array base containers HUnit random test-framework - test-framework-hunit time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A test-suite for any queue or double-ended queue satisfying an interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "active" = callPackage - ({ mkDerivation, base, lens, linear, semigroupoids, semigroups - , stdenv, vector - }: - mkDerivation { - pname = "active"; - version = "0.2.0.13"; - sha256 = "5d9a141d58bcefbf699ed233a22309ded671c25ed64bcee11a663d00731280fb"; - revision = "9"; - editedCabalFile = "1xq08xn26v3zi3fz1y5lhb1q2xv1d413wdg4pibi98n98nc2ypxz"; - libraryHaskellDepends = [ - base lens linear semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "Abstractions for animation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.5"; - sha256 = "9c5e754b1f0ff83490bcc30f5dfa8504de5a34ab8f7be03ac232882940dc8d60"; - revision = "5"; - editedCabalFile = "0yzyfqhsafzaqzj8wmjrj5ghm6jwbxya3wxc9sjl59j9q20jc4nq"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "aern2-mp" = callPackage - ({ mkDerivation, base, convertible, hspec, integer-logarithms, lens - , mixed-types-num, QuickCheck, regex-tdfa, rounded, stdenv - , template-haskell - }: - mkDerivation { - pname = "aern2-mp"; - version = "0.1.3.1"; - sha256 = "758b01846bf21c90aad334867fb29e3115d4b174ac68bd9286ab7ddc7467d1bf"; - libraryHaskellDepends = [ - base convertible hspec integer-logarithms lens mixed-types-num - QuickCheck regex-tdfa rounded template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Multi-precision ball (interval) arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aern2-real" = callPackage - ({ mkDerivation, aern2-mp, aeson, base, bytestring, containers - , convertible, hspec, lens, mixed-types-num, QuickCheck, random - , stdenv, stm, transformers - }: - mkDerivation { - pname = "aern2-real"; - version = "0.1.1.0"; - sha256 = "25e0428536b401d5a06fd3b169025747663359595b3cfcdb56a042be81d002eb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aern2-mp aeson base bytestring containers convertible hspec lens - mixed-types-num QuickCheck stm transformers - ]; - executableHaskellDepends = [ - aern2-mp base mixed-types-num QuickCheck random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Exact real numbers via Cauchy sequences and MPFR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, contravariant, deepseq, dlist, ghc-prim, hashable - , primitive, scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers contravariant - deepseq dlist ghc-prim hashable primitive scientific tagged - template-haskell text th-abstraction time time-compat - unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.1.0.5"; - sha256 = "cfec563dc6822f035858a7190153d8818c200be565806b43b70f198bf5410577"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.9"; - sha256 = "e043941ba761c13a3854fc087521b864b56b2df874154e42aedb67b2a77f23c8"; - revision = "2"; - editedCabalFile = "1y07skwfg22z37fvjmqcpcl1yz1kx2zn4zz3n1bfghk7740c4gyd"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.5"; - sha256 = "61d9dd60b6c19dd5aa350b85083ebed3eab8d8611893db1279e55e43d7c7fbcf"; - revision = "1"; - editedCabalFile = "0a29nph4a1ny365nhsxlm73mk6zgaam4sfx6knzqjy8dxp1gkj48"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-extra" = callPackage - ({ mkDerivation, aeson, aeson-compat, attoparsec - , attoparsec-iso8601, base, base-compat-batteries, bytestring - , containers, deepseq, exceptions, hashable, parsec - , recursion-schemes, scientific, stdenv, template-haskell, text - , these, time, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-extra"; - version = "0.4.1.1"; - sha256 = "d48a65d976cbf496c8e5e9c927118ffcc878d6a83adf2fc9cebd418186d6fdf8"; - revision = "4"; - editedCabalFile = "0ja5vr9w22wyknkjyl7w43frdfdfnxphvrai1b18lhinjqcd9bl5"; - libraryHaskellDepends = [ - aeson aeson-compat attoparsec attoparsec-iso8601 base - base-compat-batteries bytestring containers deepseq exceptions - hashable parsec recursion-schemes scientific template-haskell text - these time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-extra#readme"; - description = "Extra goodies for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.3"; - sha256 = "a6b6ca511483bc9de72c2c640a9f871fe8d329811fb8b87d0a664c4394e223cf"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-iproute" = callPackage - ({ mkDerivation, aeson, base, iproute, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "aeson-iproute"; - version = "0.2"; - sha256 = "ee4d53338bfdc4a6ce0039dea24e797a0ff1e22c312b31be2e73ddc0bddf268f"; - libraryHaskellDepends = [ - aeson base iproute text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/aeson-iproute"; - description = "Aeson instances for iproute types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.4"; - sha256 = "b20e23905c395d7b61fce6c5f6343758e3753a2dbee61800d3e15e753ac7c452"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.2"; - sha256 = "6db252c94601efcb1ce395de0084ccf931a3525339ccdca011a740e7b11cc152"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-typescript" = callPackage - ({ mkDerivation, aeson, base, containers, interpolate, mtl, stdenv - , template-haskell, text, th-abstraction, unordered-containers - }: - mkDerivation { - pname = "aeson-typescript"; - version = "0.1.1.0"; - sha256 = "77a3b10384383f0188feef57015a896e89bac9882df4c83bed765f70b77aa46b"; - revision = "1"; - editedCabalFile = "1y5baadwfpyszd78dfbcln93ypg7ai6qvbdz7r95ili8p0vwikbk"; - libraryHaskellDepends = [ - aeson base containers interpolate mtl template-haskell text - th-abstraction unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/codedownio/aeson-typescript#readme"; - description = "Generate TypeScript definition files from your ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alarmclock" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, time - , unbounded-delays - }: - mkDerivation { - pname = "alarmclock"; - version = "0.5.0.2"; - sha256 = "2574a30897a9a63f09ba97a51f1aead1baeade3cd8b4b063a74d5bb8fa73d64c"; - libraryHaskellDepends = [ - async base clock stm time unbounded-delays - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/davecturner/alarmclock"; - description = "Wake up and perform an action at a certain time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.0.0"; - sha256 = "52418ed3abfff15e802506e5fb45f56d38eee020cb01af3f0acfe163c470ca68"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.4"; - sha256 = "d58e4d708b14ff332a8a8edad4fa8989cb6a9f518a7c6834e96281ac5f8ff232"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.9.0"; - sha256 = "98724f959ada2387e94cc17a7bdc39eb868d8ef291daa12b82535b517eedb470"; - libraryHaskellDepends = [ base util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebra" = callPackage - ({ mkDerivation, adjunctions, array, base, containers, distributive - , mtl, nats, semigroupoids, semigroups, stdenv, tagged - , transformers, void - }: - mkDerivation { - pname = "algebra"; - version = "4.3.1"; - sha256 = "25982f929b6f9930ad4df7b2c4084da473178a6e1f33ccc556ec96ee6f541224"; - revision = "2"; - editedCabalFile = "1yrqg6p9p7vfzv8gjbcvln5gd221kslg6zvn5d1722wfa06g4g1j"; - libraryHaskellDepends = [ - adjunctions array base containers distributive mtl nats - semigroupoids semigroups tagged transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/algebra/"; - description = "Constructive abstract algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebraic-graphs" = callPackage - ({ mkDerivation, array, base, base-compat, containers, deepseq, mtl - , stdenv - }: - mkDerivation { - pname = "algebraic-graphs"; - version = "0.2"; - sha256 = "887ae448ff4ea7af9cfd0d4242c1505346df0ea3919e587d20c05a603e2ada65"; - libraryHaskellDepends = [ - array base base-compat containers deepseq mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/alga"; - description = "A library for algebraic graph construction and transformation"; - license = stdenv.lib.licenses.mit; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1.1"; - sha256 = "6348f63e2858df9c0b516053c7c5111139936faea6edf7cf400b8fba6cca94d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alternators" = callPackage - ({ mkDerivation, base, lens, mmorph, mtl, newtype-generics, stdenv - , stm, transformers - }: - mkDerivation { - pname = "alternators"; - version = "1.0.0.0"; - sha256 = "44395b8b42193fdd78f94fd9f62560bfa69aef345a0fb2602df0d8d3613fd339"; - libraryHaskellDepends = [ - base lens mmorph mtl newtype-generics stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/alternators#readme"; - description = "Handy functions when using transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , stdenv, text, time, transformers, transformers-base - , transformers-compat, void - }: - mkDerivation { - pname = "amazonka"; - version = "1.6.0"; - sha256 = "3721892c87946c12bbd87ddba38d9e244aa962db190d8897c16a264c4f3fc41c"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-apigateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-apigateway"; - version = "1.6.0"; - sha256 = "56e63ecfbd8358d0d2766e08f8f2b08362bb435c1059a5791964089dbab75ae8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon API Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-application-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-application-autoscaling"; - version = "1.6.0"; - sha256 = "5536a7d1c24cd5907b85bd743df5989d91cb3325602944062c9c640178a61df7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-appstream" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-appstream"; - version = "1.6.0"; - sha256 = "eb90692b932d62c4e7006d661b8022c4dd9f7d4dcc07e5499eceae14b33747df"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon AppStream SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-autoscaling"; - version = "1.6.0"; - sha256 = "1b52132b23ef899937d20cef595d9f8757f85861d142616bcb5ee0ba8ed5f8d3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-budgets" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-budgets"; - version = "1.6.0"; - sha256 = "ccc692856a7f7ddfba573cde6506108a30a59f641748ecc787aece894d7ce4b7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Budgets SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-certificatemanager" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-certificatemanager"; - version = "1.6.0"; - sha256 = "1fdf93c685a1b348a851b793b170a0a2282b06dc65a91c016d4756ea5726aa6a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Certificate Manager SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudformation" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudformation"; - version = "1.6.0"; - sha256 = "15e2c82574906a13d390f68f5a57a83f4bbfc37fb9ce590c9f73e00dcafa8335"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFormation SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudfront" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudfront"; - version = "1.6.0"; - sha256 = "956a60988ff3b9bef042bf523b63c882cd7b2c386483cc3f1d1d8534aad334a2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFront SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudhsm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudhsm"; - version = "1.6.0"; - sha256 = "e4227038a39486e8c390198997571ca1b14ebf5e15fec1146169da7378a41b5f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudHSM SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch"; - version = "1.6.0"; - sha256 = "dd17345576acd8f44fd3af82f07b00fdce0781abbd51ab2df827fa48528c6394"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch-domains"; - version = "1.6.0"; - sha256 = "24f0d36f9aeed5041fd893b8a0d60e5df6f31c8a126cead4652115c6b28f7ca7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch Domain SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudtrail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudtrail"; - version = "1.6.0"; - sha256 = "d9d99df96ac2e46321e0da7d1797f12472ee32011f126d2881a2f19aa7491c24"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudTrail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch"; - version = "1.6.0"; - sha256 = "25c812b364b22d96d082e3598cd75d988cb8e3decdb8e3291a0deb9714dbee51"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-events" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-events"; - version = "1.6.0"; - sha256 = "13fb5e436fc4c534d6e01c47ef23f589c01042f8a9d7efb622e89bd8f5d2ec4d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Events SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-logs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-logs"; - version = "1.6.0"; - sha256 = "80e4e74af0fb29f5ecc04f4d956ba0e9950f7936c858c1ff84461b62ca87ee7d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Logs SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codebuild" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codebuild"; - version = "1.6.0"; - sha256 = "fdbf43578e0aa54c616b2daf8b442b32a8765b62da0c3b7f6b1df95f4e55a0ab"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeBuild SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codecommit" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codecommit"; - version = "1.6.0"; - sha256 = "8a2f2630bfabd3c71fdb811a9bbafefb058ce085ad18c1756a82f59bdd682415"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeCommit SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codedeploy" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codedeploy"; - version = "1.6.0"; - sha256 = "3315b99ab8851acb5ae1251344474e0ec03796e9fd59f1d18278abc7add3c2df"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeDeploy SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codepipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codepipeline"; - version = "1.6.0"; - sha256 = "c46eea221931601ced439454d3a3fe0030acccbb776bf153182010ca8f2ec043"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodePipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-identity" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-identity"; - version = "1.6.0"; - sha256 = "3aac30e210d3fc0f45166b6211c4c61eb7cc4480fb550f106cd6206c8dc9b6d5"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-idp" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-idp"; - version = "1.6.0"; - sha256 = "a98989c8ca10bb938fb4f27803920462fc8f88d7104cebb5106b9e3728e81fff"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity Provider SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-sync" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-sync"; - version = "1.6.0"; - sha256 = "5fde10d8e1f31e676433dfd32d061739d805a076ee58abd9c05d8faba36cf435"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Sync SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-config" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-config"; - version = "1.6.0"; - sha256 = "5cb03ebc049efbccfb48ab926e08f0e9824880bb349129601f724679fe42c9cd"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Config SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite, deepseq - , exceptions, hashable, http-client, http-conduit, http-types, lens - , memory, mtl, resourcet, scientific, semigroups, stdenv, tagged - , text, time, transformers, transformers-compat - , unordered-containers, xml-conduit, xml-types - }: - mkDerivation { - pname = "amazonka-core"; - version = "1.6.0"; - sha256 = "afe1c5b74aadc0222419bd792688fd179e4f5693aeb75b74232f770fff093dc9"; - libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Core data types and functionality for Amazonka libraries"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-datapipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-datapipeline"; - version = "1.6.0"; - sha256 = "1b212dd70864ef1ccc45e3a7deca936e0e1803c97aacefc34fad966fd85f3ae5"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Data Pipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-devicefarm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-devicefarm"; - version = "1.6.0"; - sha256 = "d81b74b8b0c254a487ce464b1d6f0679d774bd42daf32312867e4dd37e35c569"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Device Farm SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-directconnect" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-directconnect"; - version = "1.6.0"; - sha256 = "8d85b9ce865eac817610a3a1db2e28100ff0069b85f41c4359a6aa5978533832"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Direct Connect SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-discovery" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-discovery"; - version = "1.6.0"; - sha256 = "7bc67ad76b1413c2aebe48324d56b2e6f4279db6e7d4951e93bdaa5329199213"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Discovery Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dms"; - version = "1.6.0"; - sha256 = "a75f19dc2a7642840a97a135f24cd9120d3f5a81ad924aad6a46c514fba180f3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Database Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ds"; - version = "1.6.0"; - sha256 = "06fa338938aee62f81f93755cdc7039515dc0c6b32bb7c0bac33d7c92066d389"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Directory Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb"; - version = "1.6.0"; - sha256 = "33f54ee4f898972f1539a00e65a851bb940c8d26058d63ddfcd07fbca57f9a3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb-streams"; - version = "1.6.0"; - sha256 = "b3f832ddf70e95232cb79d71633276aa65c72e51c6c553118b4bc9db3a48e57f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB Streams SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ec2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ec2"; - version = "1.6.0"; - sha256 = "2221c2c4e188aac9f0c9e4bb2e0bce65eb21102e6199c3783c20f3797da955cc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Compute Cloud SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecr"; - version = "1.6.0"; - sha256 = "42088ad4b4d4c01b87267a372fec706f57db4db19b27c06a3c6826ef62ef8450"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Registry SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecs"; - version = "1.6.0"; - sha256 = "309535abe8359475b3430488c84c398ed8d25a05321101c725e4a04d5f4cde3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-efs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-efs"; - version = "1.6.0"; - sha256 = "268456294406d63eb49422027226af8ef15ce08dc2095be9a6657bf9bf41afbb"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic File System SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticache" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticache"; - version = "1.6.0"; - sha256 = "e4a74a2ce2d89534fd738c429dc9a0ee7564ee3539bd93488eba211176763969"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon ElastiCache SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticbeanstalk" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticbeanstalk"; - version = "1.6.0"; - sha256 = "c1dc065763475b705aabf61086546bcd312e6802dbb328775b9777e682b2386a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Beanstalk SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticsearch"; - version = "1.6.0"; - sha256 = "3429fcae1c6fec5ebbc8acf1597532615b39def394d2296d641614c0225f3083"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elasticsearch Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elastictranscoder" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elastictranscoder"; - version = "1.6.0"; - sha256 = "ab12a7c97e09cd1a60e81525e793f5f7b84799f8f9968a2b62bae8b9c9f3c10a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Transcoder SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elb"; - version = "1.6.0"; - sha256 = "59c974009a2c26f7d267ae9736c71893a82ae69c19f344b87b4e3afd19f97e4d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elbv2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elbv2"; - version = "1.6.0"; - sha256 = "2a53d35e29b613ac7261a3202023cb8221607fd8df5f034c572d6aa751c622c9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-emr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-emr"; - version = "1.6.0"; - sha256 = "e9a07458ee61feadeff2e98fc83c1542320d5b97744225304dc1cc568ad9774f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic MapReduce SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-gamelift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-gamelift"; - version = "1.6.0"; - sha256 = "ebcdbd4a43c8d02dc0a0d7302f4b27c8e106a783e910c5cdaa68a7a7ee775ffc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon GameLift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glacier" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glacier"; - version = "1.6.0"; - sha256 = "5307434d1fbddfba54b56ceb5eea2e5dfa3ece05b9353e61a998788af3e0f913"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glacier SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-health" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-health"; - version = "1.6.0"; - sha256 = "c216b18e93e998ff04b00a5fc3ab6df8d36ef95d4b9988587eceb837615ba67b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Health APIs and Notifications SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iam" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iam"; - version = "1.6.0"; - sha256 = "a335813a795c3d28400b95b94f1b14ada3e621e83d07cb9fd9c7e7edb285905d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Identity and Access Management SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-importexport" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-importexport"; - version = "1.6.0"; - sha256 = "0951f2bcd74e24c687ab39a044cfc9334b68fdb3c885d54693c918a1c97dcd04"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-inspector" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-inspector"; - version = "1.6.0"; - sha256 = "bcef005e38e63b742c1d7c63de84f582a447042a19ea611b1b617751f3cce13e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Inspector SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot"; - version = "1.6.0"; - sha256 = "180b2169c97bd021e5f013cc72b64fe701270a7a5000950e20fa6373d38a26d0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot-dataplane" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot-dataplane"; - version = "1.6.0"; - sha256 = "aee63bc0e6eca4cc4f76f7c8aa5e20f97e3f98268160006099014c66f4a88742"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT Data Plane SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis"; - version = "1.6.0"; - sha256 = "549e41d29e46ff6aa485676436cb7cf15d2d37c2d0c62e6358b9b12b92e22f38"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-analytics"; - version = "1.6.0"; - sha256 = "7efb5438596ef4541ebca35e4b87adf3c989bf88032be2d2e617bb14a7f685ee"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-firehose" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-firehose"; - version = "1.6.0"; - sha256 = "120545cdc888c031290b2f8a6745b911ebc6e2e5c077005067683118d197549c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Firehose SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kms"; - version = "1.6.0"; - sha256 = "7aa5333583b494d0a5585f78ead67833a7e72942b264673ee8b91d7be89e8e99"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Key Management Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lambda" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lambda"; - version = "1.6.0"; - sha256 = "649626896a7572979c5628e9406eb9be090106b7468473455e77aa59cec99b06"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lambda SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lightsail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lightsail"; - version = "1.6.0"; - sha256 = "741b4c6aff2f0e08fe9868aa858708a8ab36f95859bc0a9eecfdd9bd2060aceb"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lightsail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-analytics"; - version = "1.6.0"; - sha256 = "4d6c0db0e9c17b5131c6b03cd27bc53fbddb144c3910d46639edfdccbecd5d6a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Commerce Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-metering" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-metering"; - version = "1.6.0"; - sha256 = "672de14acac579673c8c3cf032c3806554355cc84ae1b61882a589af2afb5f77"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Metering SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ml" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ml"; - version = "1.6.0"; - sha256 = "9dc12d7b71a72ea720efe9de60668ab904adddfdfbe9c422f5ebda940a556dfe"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Machine Learning SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks"; - version = "1.6.0"; - sha256 = "9a4372339b8ec556331b0198b5faf74bd8116f0816176aa8626d31f3b372d918"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks-cm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks-cm"; - version = "1.6.0"; - sha256 = "4f9e9b755f70fffd15cea08d0dfef5dc23ee4f822471f8e89f4d9b2f77a748f4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks for Chef Automate SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-pinpoint" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-pinpoint"; - version = "1.6.0"; - sha256 = "b0f8cdaabd9f357d5a687999ce83c7670f43023507ab9b25e94bc717f916b005"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Pinpoint SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-polly" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-polly"; - version = "1.6.0"; - sha256 = "773edcfa2628cb9e616b9f1f5fab461cd6f0e5822dafa43fef4403c54e958ad0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Polly SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rds"; - version = "1.6.0"; - sha256 = "c793613c53773b3ba8c5db1fa342e68c25fcada39f8557c6ed39feb05f1bc24d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Relational Database Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-redshift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-redshift"; - version = "1.6.0"; - sha256 = "426ab96936e8d42ed85b31f076d99304148a6eb0896edbe90c6b1e570a90b329"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Redshift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rekognition" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rekognition"; - version = "1.6.0"; - sha256 = "462e427021e5362747b155ba4f77e4c1d99d794087dca273697fae93aff532a8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Rekognition SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv, text }: - mkDerivation { - pname = "amazonka-route53"; - version = "1.6.0"; - sha256 = "68ef773bd9c44b28cb6166d86e3e499d9d32581915548ba08670f5cb1caa6317"; - libraryHaskellDepends = [ amazonka-core base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-route53-domains"; - version = "1.6.0"; - sha256 = "f75bfe2f5f57c7367412479f3406cabcafa11a1436dd19f9a00ead6932e1a5ea"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 Domains SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-s3" = callPackage - ({ mkDerivation, amazonka-core, base, lens, stdenv, text }: - mkDerivation { - pname = "amazonka-s3"; - version = "1.6.0"; - sha256 = "eca18ebbd0df13a78768d9665827c7624282f76d512b3cf8f0f22a3afd463f47"; - libraryHaskellDepends = [ amazonka-core base lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Storage Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sdb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sdb"; - version = "1.6.0"; - sha256 = "b9c28b21326fdb78a0acee0968188ffb6fb156c7fe0faf688a2ec83d3f5fbdfd"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon SimpleDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-servicecatalog" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-servicecatalog"; - version = "1.6.0"; - sha256 = "11f8df3b1b2b43ec636eb5a428c43c8534eae9d9554071298688005bcb46f264"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Service Catalog SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ses" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ses"; - version = "1.6.0"; - sha256 = "778d32e738faae3fd1a7e12a67dddce063c0480740b95e1a58b5c23dc052bd02"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Email Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-shield" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-shield"; - version = "1.6.0"; - sha256 = "b983a85b2b5a617bc3cbc911bc8d00a3fbf199ddd5dee67bdb3882b23747ebf4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Shield SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sms"; - version = "1.6.0"; - sha256 = "fc4d359d2988d7604780a5eca5b3371d3d3034180e96d2cbc6148559f0cda47f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Server Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-snowball" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-snowball"; - version = "1.6.0"; - sha256 = "534b30fe9205ba1edf8b1c5c4f4f91dccbe124f95a599f5efdf0cc4cd502ee25"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export Snowball SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sns" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sns"; - version = "1.6.0"; - sha256 = "1d16b548031359ed593b14d172e7880847934e76bbedf535d014674414e37573"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Notification Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sqs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sqs"; - version = "1.6.0"; - sha256 = "743838707d28707095700afdf2d875ff34c5fe1d90b214f5a7e48be04c900433"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Queue Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ssm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ssm"; - version = "1.6.0"; - sha256 = "11218249760a2d06cfd5ad2b41bf67233b6178f86e2ab979c199088a5a1c701a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Systems Manager (SSM) SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-stepfunctions" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-stepfunctions"; - version = "1.6.0"; - sha256 = "99ac8e545d28d7d765e180a26572d216f88d1e6ab9a2cd0f0a874992fa89acbf"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Step Functions SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-storagegateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-storagegateway"; - version = "1.6.0"; - sha256 = "6f06376650f03107ebd13a622b77b1983da91c6030927e2d10afb4040b48b43d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Storage Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sts" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sts"; - version = "1.6.0"; - sha256 = "36056b67d6f97a5b137f7ae35f39fb5417c61991333347129ed3e77f79a99a12"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Security Token Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-support" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-support"; - version = "1.6.0"; - sha256 = "7f434aef975f2817d4b9d7aa1c6055d788988e817fdb5c8fae20a787f26853e9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Support SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-swf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-swf"; - version = "1.6.0"; - sha256 = "1f0e437ba9c1511f46c64df16ae4551667fee39ade3c32f251f9e34b2255aa90"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Workflow Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-test" = callPackage - ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, process, resourcet, stdenv, tasty, tasty-hunit - , template-haskell, temporary, text, time, unordered-containers - , yaml - }: - mkDerivation { - pname = "amazonka-test"; - version = "1.6.0"; - sha256 = "46a8b77900370524a487f2ca0490473e23d0155664db2461c5504678d275dd28"; - libraryHaskellDepends = [ - aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types process - resourcet tasty tasty-hunit template-haskell temporary text time - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Common functionality for Amazonka library test-suites"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-waf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-waf"; - version = "1.6.0"; - sha256 = "880b9ec52be2d8fb0f5711d1e5357b0ce566e98b775e3bb7921e8f4295bbb980"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WAF SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-workspaces" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-workspaces"; - version = "1.6.0"; - sha256 = "56cf348d8c519a4db23693e81cccf822975ec5b37e74dda54f9f020415c91c84"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WorkSpaces SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-xray" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-xray"; - version = "1.6.0"; - sha256 = "8f510075361aa600cd7759763f4de55aed07b8a7cce65eb445dfcf9f475590f0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon X-Ray SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.18.1"; - sha256 = "4678e2eb976df97e27cacbc4b1feafeb5a1800a9779b0a36666f04804f43e248"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.8.2"; - sha256 = "90a7324811e7da0d0aecd66454b1622e3b1ee22ed09bbdae379c0ff079d2fa90"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.8.2"; - sha256 = "a630721bd57678c3bfeb6c703f8249e434cbf85f40daceec4660fb8c6725cb3e"; - revision = "2"; - editedCabalFile = "0xq83bwya8mfijp3dn9zfsqbbkl1wpzfjcmnkw8a06icjh9vg458"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "2bd198b97077090476f8f512a7c03f3ab4147a6df51cf8cd22b5145c37b2ccda"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.7"; - sha256 = "f6de4f1d1332d665057a9fd1af6b805f66cf04299b03f53696f3c9db4f7ff21f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.5.0.0"; - sha256 = "1f5fb9b53f5750c5c73e36f93a708189e15f7300cd2fb95da77ba87a215b74af"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.3"; - sha256 = "8f71d0b77152edb048e9f75c72a82b9d7ae1b15432fc011610fe9f1b83225b18"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.1"; - sha256 = "d837f716d9e73d68a53a17321f0433dd9ffe71df24d550aed6a34ec1c2ad2ea2"; - revision = "1"; - editedCabalFile = "1sd3s1ibn5dmgwzlqwshj7im4lmgpfzcv43ax6lpp9bdmxa6lmz9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, containers, exact-pi, ghc-prim - , integer-gmp, integer-logarithms, mtl, random, stdenv, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.7.0.0"; - sha256 = "8b33049122c6194d61467b3685294c2c0029a3e877f481598f4b21b7285e030c"; - revision = "3"; - editedCabalFile = "1s0jm2y0jhfrj7af80csckiizkfq5h0v4zb92mkwh1pkfi763fha"; - configureFlags = [ "-f-llvm" ]; - libraryHaskellDepends = [ - array base containers exact-pi ghc-prim integer-gmp - integer-logarithms mtl random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-list" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "arrow-list"; - version = "0.7"; - sha256 = "33f836f23648aa2cea11533f7a9941127c397eecdca105b2084dded9e039d5d8"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/silkapp/arrow-list"; - description = "List arrows for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.5"; - sha256 = "1e863bfd363f6c3760cc80f2c0d422e17845a9f79fe006030db202ecab5aaf29"; - revision = "1"; - editedCabalFile = "0vsw8rd6fxd87rx3jyh3bb96sjd7ag0mrlylhkcmgaps2ma8sw5b"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.4"; - sha256 = "c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.2"; - sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1-types"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.1"; - sha256 = "da5dde1bcf42e4f48f5f23dbf3a890a2904ecaf86df3d75e365e071b924afe29"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.1"; - sha256 = "8f0b86022a1319d3c1c68655790da4b7f98017982e27ec3f3dbfe01029d39027"; - revision = "2"; - editedCabalFile = "130rc6icx3h471qs417lkw9b2pfn27xd009liw58cmdk66zscizp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-conduit" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, conduit-combinators - , lens-simple, mono-traversable, parsers, safe-exceptions, stdenv - , text, time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "atom-conduit"; - version = "0.5.0.1"; - sha256 = "8c88c5c77567753b56163bfa596f50a9cfdde28796e66bb194ca6d9057e831cd"; - libraryHaskellDepends = [ - base blaze-builder conduit conduit-combinators lens-simple - mono-traversable parsers safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parser/renderer for the Atom 1.0 standard (RFC 4287)."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.2"; - sha256 = "67f8872e0c1e634d819a967365eb4ad514e9b2cde967fbc710da7cdc4d17d933"; - revision = "1"; - editedCabalFile = "0gdcd84x2s4jiry0was74rzv9l53an1q6ad8jiaj37fr4fim0wcc"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.6"; - sha256 = "d4634b777ea8df551bc619125b6240047c74b6454c1a3caaad10496a39d443f7"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.2"; - sha256 = "dd93471eb969172cc4408222a3842d867adda3dd7fb39ad8a4df1b121a67d848"; - revision = "4"; - editedCabalFile = "1vz6jz7cwd80sryabpa99hccamgccjf2l7907wjblbs7dy66a8cb"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.1"; - sha256 = "8da5ca8ae483bbb8dacfae3a888fa9438f55f84f8605e7c769091ee5b6555629"; - libraryHaskellDepends = [ attoparsec base ip ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.1.0"; - sha256 = "499ffbd2d39e79cc4fda5ad0129dbf94fdb72a84aa932dfe2a5f5c5c02074142"; - revision = "1"; - editedCabalFile = "1rjhscmczgs1bwyqx7lvkm8py3ylxjd2797mrzgnq60fvm292750"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.4"; - sha256 = "4e032ccaa65f96edac79556431ade75ad400371d0a5c19aeed6a7adbd3d2f1f3"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, http-conduit, http-types - , network-uri, resourcet, stdenv, tagstream-conduit, text - , transformers, unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.4"; - sha256 = "3fd566dbfdf75d81ad1bebd19facb9f01509ead6e27d9aed802404ecde932fb8"; - revision = "1"; - editedCabalFile = "0ipbmf633c0kmcwwb7d51ac8s4220nfyk5xghhq66mpgna77j2c2"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers http-conduit http-types network-uri resourcet - tagstream-conduit text transformers unordered-containers - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6"; - sha256 = "d26d9f10fd57e06fa2af066df65e578ff3ec7541efc3e6648b29a743b13f8375"; - revision = "1"; - editedCabalFile = "1fxwn8bn6qs8dhxq0q04psq7zp1qvw1b6g3vmsclgyj9p7kr77ms"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.4"; - sha256 = "5e96c151024e8bcaf4eaa932e16995872b2017f46124b967e155744d9580b425"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "autoexporter"; - version = "1.1.13"; - sha256 = "7bb6fbf567f56a5a3ec53036fe82aa8e17452c46778a34e9dd00477e5cdcaf16"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, data-binary-ieee754, entropy, fail - , hashable, mtl, pure-zlib, scientific, semigroups, stdenv, tagged - , template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "avro"; - version = "0.3.5.1"; - sha256 = "c805534d4829dba8055985284a07436cb77481dfc4554d91937d8b0f864afc90"; - revision = "1"; - editedCabalFile = "07h4502vdr0ybxqv1hcwrnm1f4bhblbdmh3n58hb198jx91rlfpf"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - data-binary-ieee754 entropy fail hashable mtl pure-zlib scientific - semigroups tagged template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/avro#readme"; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "avwx" = callPackage - ({ mkDerivation, attoparsec, base, HTTP, lens, optparse-applicative - , parsers, pretty-show, stdenv, text - }: - mkDerivation { - pname = "avwx"; - version = "0.3.0.2"; - sha256 = "b4299cc4e05a4c94f53d06f05b30baac1e15c59663b59afd1dd32417a280fb0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; - executableHaskellDepends = [ - base optparse-applicative pretty-show text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.hcesperer.org/posts/2016-09-20-avwx.html"; - description = "Parse aviation weather reports"; - license = stdenv.lib.licenses.mit; - }) {}; - "backprop" = callPackage - ({ mkDerivation, base, containers, deepseq, microlens, primitive - , reflection, simple-reflect, stdenv, transformers, vector, vinyl - }: - mkDerivation { - pname = "backprop"; - version = "0.2.5.0"; - sha256 = "aa2dbe41de6aa015cd3c0d9edb21ab24254d19b9205fbc440fc2a6cbccae6bf5"; - libraryHaskellDepends = [ - base containers deepseq microlens primitive reflection - simple-reflect transformers vector vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://backprop.jle.im"; - description = "Heterogeneous automatic differentation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bank-holidays-england" = callPackage - ({ mkDerivation, base, containers, stdenv, time }: - mkDerivation { - pname = "bank-holidays-england"; - version = "0.1.0.8"; - sha256 = "3219472077c4093809dc7c986b693aee2b76c12d44b6063d1b7055af3aa9672a"; - libraryHaskellDepends = [ base containers time ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/davecturner/bank-holidays-england"; - description = "Calculation of bank holidays in England and Wales"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "barrier" = callPackage - ({ mkDerivation, base, blaze-svg, bytestring, stdenv - , template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "barrier"; - version = "0.1.1"; - sha256 = "6395da01eea1984c7bcc85c624b1b5dfbe0b6b764adeed7b04c9fa4d8de91ed9"; - revision = "1"; - editedCabalFile = "167akvi72l47gcqbq5609m24469pq0xmv0kjbmivnrxs796gh890"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-svg bytestring template-haskell text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/philopon/barrier"; - description = "Shields.io style badge generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.10.5"; - sha256 = "990aea21568956d44ab018c5dbfbaea014b9a0d5295d29ca7550149419a6fb41"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.10.1"; - sha256 = "15578bafe45db81f7c7ad33253b2b047dab9b6df4ca7ca57f541d64084f113c9"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.2"; - sha256 = "2a8062385e5d5dee418428a22c72b9391557bc1fe2f93bd643f7754b36b9eb01"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.3"; - sha256 = "e3cc66e99d6c83aac548c4d8e6a166e5bd9cf557947cde49161026d0341267fe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.2.4"; - sha256 = "a2f841430fec32edba778b74bde83bf0170ada7c5e2e59d7187c8f06d92dcca9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.2"; - sha256 = "193654ed9bd9e7f20163c9b70bab32d33010be50a5e1e8e2258229faf32a608c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, QuickCheck, stdenv - , text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1"; - sha256 = "74019bd11f8012ae5ccc88c206bc5a8024f7605130099aabbac012073160e440"; - revision = "4"; - editedCabalFile = "0yfhy4a9n67l9w3amqrzzy79q47yyj6qbv5i5lqym5z7ygwmlzn6"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.8"; - sha256 = "c7f41b97f2b0a71804c3c7d760047dc9adc9734e789084ca1198c4764ce192a4"; - revision = "2"; - editedCabalFile = "0d1cw4nyp2r2cd9kw4k3a2nq10hbq28108zsfrkdq1gbs7pcf7j3"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation#readme"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "beam-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist, free - , ghc-prim, hashable, microlens, mtl, network-uri, stdenv, tagged - , text, time, vector-sized - }: - mkDerivation { - pname = "beam-core"; - version = "0.7.2.2"; - sha256 = "1231aedb995f40758924ad39d3476a51b3a186e5e849f3d4b284860838500f98"; - revision = "1"; - editedCabalFile = "1fvds5arsm0h81fw4rf5fsg5sa9jfqn350amhhc247f0hhjy3csf"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist free ghc-prim hashable - microlens mtl network-uri tagged text time vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "http://travis.athougies.net/projects/beam.html"; - description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-migrate" = callPackage - ({ mkDerivation, aeson, base, beam-core, bytestring, containers - , deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable - , haskell-src-exts, mtl, parallel, pqueue, pretty, scientific - , stdenv, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "beam-migrate"; - version = "0.3.2.1"; - sha256 = "2d195926ead3ed550e5efddd32f87f4cc93a5bad6ac8c2906478387ed0f39373"; - revision = "1"; - editedCabalFile = "1ghg6n0dj63i0am7wh0cg95hwyf29gnkm0llrw3wb5pj8f7937gv"; - libraryHaskellDepends = [ - aeson base beam-core bytestring containers deepseq dependent-map - dependent-sum free ghc-prim hashable haskell-src-exts mtl parallel - pqueue pretty scientific text time unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://travis.athougies.net/projects/beam.html"; - description = "SQL DDL support and migrations support library for Beam"; - license = stdenv.lib.licenses.mit; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.12"; - sha256 = "a6376f4741588201ab6e5195efb1e9921bc0a899f77a5d9ac84a5db32f3ec9eb"; - revision = "1"; - editedCabalFile = "0sk6vkjwk7g1diwah67ifj7s69qvwi52ngaijkfx5prn0vz24ldn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bencode" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, parsec - , stdenv - }: - mkDerivation { - pname = "bencode"; - version = "0.6.0.0"; - sha256 = "3b8efdfecee9bc486d9bcdbb633b7128ca235360f102478a7e0f8c895281f68a"; - revision = "1"; - editedCabalFile = "0nvph7frmrra9k57v01saxgnhf1ma3m8qzwj1i53pswssfnj41mv"; - libraryHaskellDepends = [ - base binary bytestring containers parsec - ]; - doHaddock = false; - doCheck = false; - description = "Parser and printer for bencoded data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bhoogle" = callPackage - ({ mkDerivation, base, brick, bytestring, containers, directory - , filepath, hoogle, lens, process, protolude, stdenv, text, time - , typed-process, vector, vty - }: - mkDerivation { - pname = "bhoogle"; - version = "0.1.3.5"; - sha256 = "c9e57081ae65d50c68ec6ad583ffe7bcaa79589dcc743ebce153f030034f2fbe"; - revision = "2"; - editedCabalFile = "0jwfw2xa55ysfxyzp5n2pf2vq753iagpmvg9xnj69nv6ly9whfp7"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base brick bytestring containers directory filepath hoogle lens - process protolude text time typed-process vector vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrevdm/bhoogle#readme"; - description = "Simple terminal GUI for local hoogle"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.6"; - sha256 = "ccb2afe613b76786a6ac355515bc6bbf27459952c2692e33ea730f9901b3daca"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.3.3"; - sha256 = "73829355c7bcbd3eedba22a382a04a3ab641702b00828790ec082ec2db3a8ad1"; - libraryHaskellDepends = [ base containers exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-bits" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "binary-bits"; - version = "0.5"; - sha256 = "16534a018a4754d8d1eab051711c23fb741f41a0d141b289001c52824b5be794"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Bit parsing/writing on top of binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3.1"; - sha256 = "0480c3ff498bdbba6913ee8ad70d4828cf7a766bf9336a3ed8eb73676c46d29f"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ext" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, data-binary-ieee754, errors, exceptions - , monad-control, monad-loops, mono-traversable, mtl, scientific - , stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "binary-ext"; - version = "2.0.4"; - sha256 = "6e58e19bde26d6f271916ceb43a28903136e28cf7868d86f65e68a60152ade08"; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - data-binary-ieee754 errors exceptions monad-control monad-loops - mono-traversable mtl scientific text transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/binary-ext#readme"; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = stdenv.lib.licenses.asl20; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, aeson, base, binary, case-insensitive, hashable - , scientific, stdenv, tagged, text, text-binary, time - , unordered-containers, vector, vector-binary-instances - }: - mkDerivation { - pname = "binary-orphans"; - version = "0.1.8.0"; - sha256 = "f17557ccd98931df2bea038f25e7f835f38019ea7d53bd763f71fe64f931c0cc"; - revision = "5"; - editedCabalFile = "1dny1jvwwcyrbzhqvymmn6n7ib48bpy0nasbrcrdrpzjypkmg500"; - libraryHaskellDepends = [ - aeson base binary case-insensitive hashable scientific tagged text - text-binary time unordered-containers vector - vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-orphans#readme"; - description = "Orphan instances for binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.3.0"; - sha256 = "bc6195493b950efcbeb9ef54dfe47a6badf894dff934cf02a4b170331c1b217a"; - revision = "1"; - editedCabalFile = "09ag18yr1m26fl3w7ab1d5q5j201ygbw7qsbsy41bwd6iq87rq15"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, generics-sop, hashable, scientific, SHA - , stdenv, tagged, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.1.5.1"; - sha256 = "70cb8fff540937f1d9753a71e0343039ee1718a0f029d4df698164b04fd5d5a4"; - revision = "1"; - editedCabalFile = "1z612d3wbrlywcx96lc52svi9b2s6nskdnwnwm3d5mylcqaqckcx"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - generics-sop hashable scientific SHA tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.2.1.1"; - sha256 = "6b24c66b20ebfd8ff2e4ac32e3b435889bba0a32477598ba69fc7adc9608160e"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bit-stream" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bit-stream"; - version = "0.1.0.2"; - sha256 = "811f2e7d4a827440bc21557e48c5310fe91e1b17f337ec35208546e1c5639bf4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bit-stream#readme"; - description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitcoin-api" = callPackage - ({ mkDerivation, aeson, base, base58string, binary, bitcoin-block - , bitcoin-script, bitcoin-tx, bitcoin-types, bytestring, hexstring - , lens, lens-aeson, stdenv, text, unordered-containers, wreq - }: - mkDerivation { - pname = "bitcoin-api"; - version = "0.12.1"; - sha256 = "c978de1519b24c5c04ff518ad1209f74f91df31d65e23592dc639219df6b3e30"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base58string binary bitcoin-block bitcoin-script - bitcoin-tx bitcoin-types bytestring hexstring lens lens-aeson text - unordered-containers wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides access to the RPC API of Bitcoin Core"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-api-extra" = callPackage - ({ mkDerivation, base, binary, bitcoin-api, bitcoin-block - , bitcoin-tx, bytestring, conduit, lens, stdenv, stm, stm-chans - , stm-conduit, text, transformers - }: - mkDerivation { - pname = "bitcoin-api-extra"; - version = "0.9.1"; - sha256 = "c423c6007d0f830dd2bbc0e1bc9219980e6fb2bde684890e265e1bfce4bdd7fc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-api bitcoin-block bitcoin-tx bytestring conduit - lens stm stm-chans stm-conduit text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Higher level constructs on top of the bitcoin-api package"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-block" = callPackage - ({ mkDerivation, base, binary, bitcoin-tx, bitcoin-types - , bytestring, cryptohash, hexstring, largeword, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-block"; - version = "0.13.1"; - sha256 = "d7f57c0fe71045dab85d223dc15d64db3a15cc7fd8446bfe4ebd98cd9d417d5a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-tx bitcoin-types bytestring cryptohash - hexstring largeword lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin blocks"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-script" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-script"; - version = "0.11.1"; - sha256 = "398c1d86e918731b5b2026351bb3b0b90b20606517e7c21e42f05d6c6e197b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Compilation, manipulation and decompilation of Bitcoin scripts"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-tx" = callPackage - ({ mkDerivation, base, binary, bitcoin-script, bitcoin-types - , bytestring, cryptohash, hexstring, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-tx"; - version = "0.13.1"; - sha256 = "3bb88265353066c394e96a56b2dc555fa13d37ca7f820978b793196c6829cc00"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-script bitcoin-types bytestring cryptohash - hexstring lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-types" = callPackage - ({ mkDerivation, base, base58string, binary, bytestring, hexstring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-types"; - version = "0.9.2"; - sha256 = "b72f9448508b64706d5f443748dc9b8abde8e749959187ce3d8356cde0d6c40b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base58string binary bytestring hexstring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides consistent low-level types used commonly among Bitcoin implementations"; - license = stdenv.lib.licenses.mit; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.1"; - sha256 = "657e557bb913b53fb3b3fc7eda820cf3c85a5b89692d242275d3e8e8d9479c93"; - revision = "5"; - editedCabalFile = "012qycmsfz5l6y82d3zgjmp1k3pgvhlpjdk6rwlpc1wlfbpdqiaw"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.3"; - sha256 = "692b08b3e9a490f5b2776b8f20277320fad247d9c4ea158225fee0f27f91afed"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - description = "Useful bitwise operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.1"; - sha256 = "ffc0f8508049717192021dabcfe77d65f604cbe107da6b8b76d45b891dbe52de"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, scientific, split, stdenv, text, time - }: - mkDerivation { - pname = "bitx-bitcoin"; - version = "0.12.0.0"; - sha256 = "31f2398bbb0deff80361fdabb108c1552ae097b15a44c6ca6674977ae735c871"; - libraryHaskellDepends = [ - aeson base bytestring deepseq exceptions http-client - http-client-tls http-types microlens microlens-th network - QuickCheck scientific split text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tebello-thejane/bitx.hs"; - description = "A Haskell library for working with the BitX bitcoin exchange"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.2.0"; - sha256 = "07d910e3f5c6e98f5a6b9d53dbe5f52506c3859b513bc7493b52552a28382cfc"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blank-canvas" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries - , base64-bytestring, bytestring, colour, containers - , data-default-class, http-types, kansas-comet, mime-types, scotty - , semigroups, stdenv, stm, text, text-show, transformers, vector - , wai, wai-extra, warp - }: - mkDerivation { - pname = "blank-canvas"; - version = "0.6.3"; - sha256 = "739d24ff7035fd675e95c2d33bd9d3cb7d1ef0cca94c16bbf950c4a7f7b320b4"; - revision = "3"; - editedCabalFile = "15gcxvbbb0pjnw6wh4jvc4xqvv1gr493h2s9yclf81vfg7bry24w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base-compat-batteries base64-bytestring bytestring - colour containers data-default-class http-types kansas-comet - mime-types scotty semigroups stm text text-show transformers vector - wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/blank-canvas/wiki"; - description = "HTML5 Canvas Graphics Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-carray" = callPackage - ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi - , stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "blas-carray"; - version = "0.0.1.1"; - sha256 = "bdad1b777d36e46a63bec022190bd009d2782018d7a447f41e3c2db772635f46"; - libraryHaskellDepends = [ - base blas-ffi carray netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-carray/"; - description = "Auto-generated interface to Fortran BLAS via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.0.2"; - sha256 = "cc6f6b33062c81cf0fdd9f0c1bf1b600d546b0dfc8f773ef603068710455f810"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blas-hs" = callPackage - ({ mkDerivation, base, blas, stdenv, storable-complex }: - mkDerivation { - pname = "blas-hs"; - version = "0.1.1.0"; - sha256 = "80e06b0927982b391d239f8656ed437cd29665969d1a078ea4e42a2bf196b086"; - libraryHaskellDepends = [ base storable-complex ]; - librarySystemDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Rufflewind/blas-hs"; - description = "Low-level Haskell bindings to Blas"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-colonnade" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, colonnade, stdenv - , text - }: - mkDerivation { - pname = "blaze-colonnade"; - version = "1.2.2"; - sha256 = "1f2f7116ffea5ad2a04337b9bdc1277de0b12a71fb4b830b216c37911d8ea14c"; - libraryHaskellDepends = [ - base blaze-html blaze-markup colonnade text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Helper functions for using blaze-html with colonnade"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.1.1"; - sha256 = "ea0e944298dbbd692b41af4f15dbd1a1574aec7b8f91f38391d25106b143bb1b"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.2"; - sha256 = "c6f0cf8fd707ba8c0b700e0c5ad6a1212c8b57d46a9cbdfb904d8bf585ad82e1"; - revision = "1"; - editedCabalFile = "0ivspcxz0b2r7kcas5hlw0fh92883r8ghwz9lck7nyqn6wn5i8zx"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "bno055-haskell" = callPackage - ({ mkDerivation, base, bytestring, cereal, h2c, mtl, resourcet - , stdenv - }: - mkDerivation { - pname = "bno055-haskell"; - version = "0.1.0"; - sha256 = "7adc29f94755047b4214115c23b63041e9d3970d2648f53dcd38b84725059ad8"; - libraryHaskellDepends = [ - base bytestring cereal h2c mtl resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/bno055-haskell"; - description = "Library for communication with the Bosch BNO055 orientation sensor"; - license = stdenv.lib.licenses.mit; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, constraints, fin - , generics-sop, stdenv, streams, tagged, transformers - , transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1"; - sha256 = "73d60829c3a789f3d377d56ce7844aaaea6b517bcea43e06579ab785181b4664"; - revision = "2"; - editedCabalFile = "1jxaby4cagbhii194x9x0j75ms1v5bm14sx7d19zz3844mh9qyci"; - libraryHaskellDepends = [ - adjunctions base base-compat constraints fin generics-sop streams - tagged transformers transformers-compat vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brick" = callPackage - ({ mkDerivation, base, config-ini, containers, contravariant - , data-clist, deepseq, dlist, microlens, microlens-mtl - , microlens-th, stdenv, stm, template-haskell, text, text-zipper - , transformers, vector, vty, word-wrap - }: - mkDerivation { - pname = "brick"; - version = "0.37.2"; - sha256 = "7cb86cd88d344d4a8b997677f805e3a3adaecf37d65478e06081737efbc1d99c"; - revision = "1"; - editedCabalFile = "0cj98cjlr400yf47lg50syj5zpvh6q9mm1hp4blns6ndz2xys5rz"; - configureFlags = [ "-fdemos" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base config-ini containers contravariant data-clist deepseq dlist - microlens microlens-mtl microlens-th stm template-haskell text - text-zipper transformers vector vty word-wrap - ]; - executableHaskellDepends = [ - base microlens microlens-th text text-zipper vector vty word-wrap - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/brick/"; - description = "A declarative terminal user interface library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "broadcast-chan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "broadcast-chan"; - version = "0.1.1"; - sha256 = "ad5bd65a301aff6df38c4111f02e73cce3bcfed7bfae6c66c2e70310f1e985f2"; - revision = "1"; - editedCabalFile = "03bmddz9bryh3viskh2nldj4hbzl5b9xkkx2pml73vq9bn2aq5s4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/broadcast-chan"; - description = "Broadcast channel type that avoids 0 reader space leaks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.4"; - sha256 = "148309e23eb8b261c1de374712372d62d8c8dc8ee504c392809c7ec33c0a0e7c"; - revision = "2"; - editedCabalFile = "0bz62lxdbnwkfr1d4ngm8xi4y1ndpdflbv71s6h43vp5lbd546hr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bson" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash - , data-binary-ieee754, mtl, network, stdenv, text, time - }: - mkDerivation { - pname = "bson"; - version = "0.3.2.7"; - sha256 = "27329dcd593fd7503e7cf6705c863ed5c76b2fc816342e194c79d5a1d4c87f2b"; - revision = "1"; - editedCabalFile = "1y6gy4rq2wb123p1qc35p0hnk8dqh2hnlys2c97znwcjjsd5p203"; - libraryHaskellDepends = [ - base binary bytestring cryptohash data-binary-ieee754 mtl network - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mongodb-haskell/bson"; - description = "BSON documents are JSON-like objects with a standard binary encoding"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bson-lens" = callPackage - ({ mkDerivation, base, bson, lens, stdenv, text }: - mkDerivation { - pname = "bson-lens"; - version = "0.1.1"; - sha256 = "d73bb417def2d8cb1efebfc22482a859e119bcc4005dd10106c82dff5ceeb160"; - libraryHaskellDepends = [ base bson lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/bson-lens"; - description = "BSON lenses"; - license = stdenv.lib.licenses.mit; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.1.2.3"; - sha256 = "7efc0b5c65623dcf60910baf896aec7da7ac2df4231f03a3072c78fb5b2fb88d"; - revision = "1"; - editedCabalFile = "1py88k9sjmx9x41l0wmp19a52ng9fdf66rmd0n9404gxxbqd5jxv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.7"; - sha256 = "b389fac5ce61818adb8451550762aca135c34b9007b68be5a8d9a0fa45583f58"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.2.0"; - sha256 = "0cb29a2355c7fc4e55c61ef6138067a8f3f30baaa945d9a2ca7b638023d2ea1a"; - revision = "1"; - editedCabalFile = "1r4v2biwd0hp6v1jgx7zngh0hqlsk8ia3bvggbxxn5sp5x7ika1m"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butter" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , forkable-monad, free, HUnit, network-simple, stdenv, stm - , template-haskell, text, transformers - }: - mkDerivation { - pname = "butter"; - version = "0.1.0.6"; - sha256 = "8640b2681a57c0bc545684c821e80a97d57fe14bc6036e9030dc4cc63c2e4164"; - libraryHaskellDepends = [ - aeson base bytestring containers forkable-monad free HUnit - network-simple stm template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/Butter#readme"; - description = "Monad Transformer for Asyncronous Message Passing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp - , mono-traversable, primitive, QuickCheck, stdenv - }: - mkDerivation { - pname = "bv-little"; - version = "0.1.2"; - sha256 = "8c8d394050d154e100e29df7daf75235eb870aeb3946d8a68f58472e31c14c77"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp mono-traversable primitive - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest - , cereal, containers, hashable, mtl, scientific, stdenv, text, time - , transformers, transformers-compat, unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.15.5"; - sha256 = "039935e6b367eb8657aa3eb109e719b257a06524b0d9ff5246e8029bb7a07118"; - revision = "1"; - editedCabalFile = "0k05cszpxmdwgnbxhmlmmvsxkwlanvz8dn0p3f6bzs8qlv3kbhm7"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytestring cereal containers hashable mtl scientific - text time transformers transformers-compat unordered-containers - void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.2.0"; - sha256 = "27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5.1"; - sha256 = "1879edb56e530169f5c4a738fff46ac56faeb30f9ac3d59f1361183111a5c69e"; - revision = "1"; - editedCabalFile = "1snn8qb17maa76zji75i4yfz9x8ci16xp6zwg6kgwb33lf06imnd"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.2"; - sha256 = "a12df2ef970eab34c7bb968ba1a157fb01e478cd9abada097fc3e4ec61b5020e"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib" = callPackage - ({ mkDerivation, base, bytestring, bzip2, stdenv }: - mkDerivation { - pname = "bzlib"; - version = "0.5.0.5"; - sha256 = "9ee7d0ac7461b330820af928c13c6668bf4fe3601f171c42432a85c33718017e"; - revision = "1"; - editedCabalFile = "1d4ra5prh2q9h8inpwvrsmkmg1ndisdj47jv06iijpj6xdp5bapl"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the bzip2 format"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.1"; - sha256 = "43d811549f7fb0710e4895ad54f78418271579f7e27d75e3c3470b74b285a239"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.6"; - sha256 = "91dd121ac565009f2fc215c50f3365ed66705071a698a545e869041b5d7ff4da"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.6"; - sha256 = "decaaa5a73eaabaf3c4f8c644bd7f6e3f428b6244e935c0cf105f75f9b24ed2d"; - revision = "2"; - editedCabalFile = "1kbiwqm4fxrsdpcqijdq98h8wzmxydcvxd03f1z8dliqzyqsbd60"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-install" = callPackage - ({ mkDerivation, array, async, base, base16-bytestring, binary - , bytestring, Cabal, containers, cryptohash-sha256, deepseq - , directory, echo, edit-distance, filepath, hackage-security - , hashable, HTTP, mtl, network, network-uri, pretty, process - , random, stdenv, stm, tar, time, unix, zlib - }: - mkDerivation { - pname = "cabal-install"; - version = "2.2.0.0"; - sha256 = "c856a2dd93c5a7b909597c066b9f9ca27fbda1a502b3f96077b7918c0f64a3d9"; - revision = "1"; - editedCabalFile = "0f1svlhh4cpj3p5fs9bcjpv15qp291lnvlaxxcw7aib8a1gn3wim"; - configureFlags = [ "-flib" "-f-native-dns" ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath process ]; - libraryHaskellDepends = [ - array async base base16-bytestring binary bytestring Cabal - containers cryptohash-sha256 deepseq directory echo edit-distance - filepath hackage-security hashable HTTP mtl network network-uri - pretty process random stm tar time unix zlib - ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir $out/etc - mv bash-completion $out/etc/bash_completion.d - ''; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base-compat - , base-orphans, base16-bytestring, bytestring, containers - , directory, filepath, mtl, optparse-applicative, parsec, stdenv - , text, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.5.0.0"; - sha256 = "18c6cc4d79ef73f932f8cc410a5f8c99cff6538aa7f21ca8b76443e93825caed"; - revision = "1"; - editedCabalFile = "0nnh6qq36cpfwzqrv1i1cn93n6n32nbl6ddp0y22jmmxnx9xsrvp"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat base-orphans base16-bytestring bytestring - containers directory filepath text vector - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat bytestring containers directory mtl - optparse-applicative parsec text vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = "GPL-2.0-or-later AND BSD-3-Clause"; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, process, simple-cmd - , stdenv, time, unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "0.12.6"; - sha256 = "da26117406caca76e85729b69c8ef573499b5fb1a816951aeb861fb4cf16c0cc"; - revision = "1"; - editedCabalFile = "0wfj9gcygm1c9fy86973ybs8ww8g6fn3l7f5v2kvs28204g8i18g"; - configureFlags = [ "-f-old-locale" ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit process simple-cmd time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal - , containers, deepseq, directory, distribution-nixpkgs, filepath - , hackage-db, hopenssl, hpack, language-nix, lens, monad-par - , monad-par-extras, mtl, optparse-applicative, pretty, process - , split, stdenv, text, time, transformers, yaml - }: - mkDerivation { - pname = "cabal2nix"; - version = "2.9.3"; - sha256 = "129fcefe74fcb0c15aa4747603116820d751b0ea904376cd1603381a339a8182"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db hopenssl hpack - language-nix lens optparse-applicative pretty process split text - time transformers yaml - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory - distribution-nixpkgs filepath hopenssl language-nix lens monad-par - monad-par-extras mtl optparse-applicative pretty - ]; - doHaddock = false; - doCheck = false; - preCheck = '' - export PATH="$PWD/dist/build/cabal2nix:$PATH" - export HOME="$TMPDIR/home" - ''; - homepage = "https://github.com/nixos/cabal2nix#readme"; - description = "Convert Cabal files into Nix build instructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.1.1"; - sha256 = "ad063835309823388883324a42d951f15c5da9b4e324bfe3de97751f4fdca9ba"; - revision = "2"; - editedCabalFile = "0fip9d1hdjkb7pzz668qb9b9m90r9xifjhx7zbhax4wr3723lfxg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.1.1"; - sha256 = "1029991d52add00d7ea68cc03e7d87301cf23f644a0ffa8dbbaed91c9eb05f11"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cachix" = callPackage - ({ mkDerivation, async, base, base16-bytestring, base64-bytestring - , bifunctors, bytestring, cachix-api, conduit, conduit-extra - , cookie, cryptonite, data-default, dhall, directory, ed25519 - , filepath, fsnotify, here, hspec-discover, http-client - , http-client-tls, http-conduit, http-types, lzma-conduit - , megaparsec, memory, mmorph, optparse-applicative, process - , protolude, resourcet, retry, safe-exceptions, servant - , servant-auth, servant-auth-client, servant-client - , servant-client-core, servant-streaming-client, stdenv, streaming - , text, unix, uri-bytestring, versions - }: - mkDerivation { - pname = "cachix"; - version = "0.1.3"; - sha256 = "a0fbaad0d8b286738ae58ccbb7a2fcd1e6cba983d973a9f1b7952399739b0f6e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base base16-bytestring base64-bytestring bifunctors - bytestring cachix-api conduit conduit-extra cookie cryptonite - data-default dhall directory ed25519 filepath fsnotify here - http-client http-client-tls http-conduit http-types lzma-conduit - megaparsec memory mmorph optparse-applicative process protolude - resourcet retry safe-exceptions servant servant-auth - servant-auth-client servant-client servant-client-core - servant-streaming-client streaming text unix uri-bytestring - versions - ]; - executableHaskellDepends = [ base cachix-api ]; - executableToolDepends = [ hspec-discover ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cachix/cachix#readme"; - description = "Command line client for Nix binary cache hosting https://cachix.org"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cachix-api" = callPackage - ({ mkDerivation, aeson, amazonka, base, base16-bytestring - , bytestring, conduit, cookie, cryptonite, http-api-data - , http-media, lens, memory, servant, servant-auth - , servant-auth-server, servant-auth-swagger, servant-streaming - , servant-swagger, servant-swagger-ui-core, stdenv, string-conv - , swagger2, text, transformers - }: - mkDerivation { - pname = "cachix-api"; - version = "0.1.0.3"; - sha256 = "aefd2d623cb8b0da0ac6861df37f2f5673659ebd341943e4da9c538befa84502"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson amazonka base base16-bytestring bytestring conduit cookie - cryptonite http-api-data http-media lens memory servant - servant-auth servant-auth-server servant-auth-swagger - servant-streaming servant-swagger servant-swagger-ui-core - string-conv swagger2 text transformers - ]; - executableHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cachix/cachix#readme"; - description = "Servant HTTP API specification for https://cachix.org"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cairo" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo - , gtk2hs-buildtools, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cairo"; - version = "0.13.5.0"; - sha256 = "420acd81e0b5578ad188bcdd38463135293c233221abb741cc4004d4c8a6bef3"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring mtl text utf8-string - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Cairo library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) cairo;}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0.0.1"; - sha256 = "8cd39ccf4fbe538f8e5d434d0efd0c559074420b9283d2c7c4b7ab6262b4d529"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.1.0"; - sha256 = "f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "capataz" = callPackage - ({ mkDerivation, async, base, bytestring, pretty-show - , prettyprinter, rio, stdenv, teardown, time, uuid - }: - mkDerivation { - pname = "capataz"; - version = "0.2.0.0"; - sha256 = "a4dfc60ccd24bb3102127cb0226f23abfc12b7263fe45e74747cf674d736022c"; - libraryHaskellDepends = [ - async base bytestring pretty-show prettyprinter rio teardown time - uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-capataz#readme"; - description = "OTP-like supervision trees in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.0.11"; - sha256 = "a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.0"; - sha256 = "8e8a3631ef5823ae53dfeb7497ad4856c6758e3e380ff164f6a261f41685f6d7"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.1.0"; - sha256 = "762c8aaea2cdad61f52bad1b9f1f3b32764b4b6da03371aba6e5017f69614277"; - revision = "3"; - editedCabalFile = "0q9hwcn5jr5vs52n246qw8iw9jmc1d3dla071hhc0hdpck4igq6m"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-conduit" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, containers, mtl, stdenv, text - }: - mkDerivation { - pname = "cassava-conduit"; - version = "0.5.0"; - sha256 = "19460ab99942455cc12fa38b15c07da80df496eb5494675e7e524d197d874876"; - libraryHaskellDepends = [ - array base bifunctors bytestring cassava conduit containers mtl - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domdere/cassava-conduit"; - description = "Conduit interface for cassava package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-records" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, foldl - , stdenv, template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "cassava-records"; - version = "0.1.0.4"; - sha256 = "11f832c11125bd7a73b57941284d9aeb7f1e7572004da7e37311b34d3366af8d"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava foldl template-haskell text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/cassava-records#readme"; - description = "Auto-generation of records data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, stdenv }: - mkDerivation { - pname = "category"; - version = "0.2.1.0"; - sha256 = "b0e753d69d8e46c3cf7f999003032eaa788d3a386eef4a5539cd0e9f1b475ddb"; - libraryHaskellDepends = [ alg base ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cayley-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , exceptions, http-client, http-conduit, lens, lens-aeson, mtl - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cayley-client"; - version = "0.4.8"; - sha256 = "b1b1328fb855211a78b9c7da74eecc7ee81c9f92101debb9ca87238d66c01926"; - libraryHaskellDepends = [ - aeson attoparsec base binary bytestring exceptions http-client - http-conduit lens lens-aeson mtl text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/cayley-client"; - description = "A Haskell client for the Cayley graph database"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , ghc-prim, half, integer-gmp, primitive, stdenv, text - }: - mkDerivation { - pname = "cborg"; - version = "0.2.1.0"; - sha256 = "9198735f7645ae492345505448f790433f5fe407b19e1c6b2ec2a4c76bd97483"; - revision = "1"; - editedCabalFile = "0v3z332gfi3mf0ilw94qwa0afkz7w1n5rnjjj0g170dmqrjphvrg"; - libraryHaskellDepends = [ - array base bytestring containers deepseq ghc-prim half integer-gmp - primitive text - ]; - doHaddock = false; - doCheck = false; - description = "Concise Binary Object Representation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.7.0"; - sha256 = "7abdaf6d52260e714adcf1c3e16f2e25a56492d90a747d1a9594e15f05acf1c8"; - revision = "1"; - editedCabalFile = "0m6iml0rm3nv40rj4dylpha1al573ifx0y7rvpj165l7z6sh3l22"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-time" = callPackage - ({ mkDerivation, base, cereal, stdenv, time }: - mkDerivation { - pname = "cereal-time"; - version = "0.1.0.0"; - sha256 = "bec6d5103ec45bee242825da4cf695f574f101bb1d48778bf7823175dfa43cb2"; - libraryHaskellDepends = [ base cereal time ]; - doHaddock = false; - doCheck = false; - description = "Serialize instances for types from `time` package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cfenv" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "cfenv"; - version = "0.1.0.0"; - sha256 = "8ce96643559ebe4504c0641f9817d8795b22631f614084af50c88e51277e747e"; - libraryHaskellDepends = [ aeson base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomphp/haskell-cfenv#readme"; - description = "A library getting the environment when running on Cloud Foundry"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.4.1"; - sha256 = "926fcb205f6d43ed3a2b85b8e88a6c99a2deb097bc7988116c493a04a52547cf"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chart-unit" = callPackage - ({ mkDerivation, base, colour, data-default, diagrams-lib - , diagrams-svg, foldl, formatting, generic-lens, lens, linear - , numhask, numhask-prelude, numhask-range, palette, protolude - , scientific, stdenv, svg-builder, SVGFonts, text, time - }: - mkDerivation { - pname = "chart-unit"; - version = "0.7.0.0"; - sha256 = "97f893f3a9f28cf93d8ad30991ed6fec04c908e8a5bbc4f8e018f06a00bab20e"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/chart-unit#readme"; - description = "Native haskell charts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chatwork" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, connection - , data-default-class, http-api-data, http-client, http-client-tls - , http-types, req, stdenv, text - }: - mkDerivation { - pname = "chatwork"; - version = "0.1.3.5"; - sha256 = "755e81663dcfd3c325bff3ffe2aedb1594bf46b303a172e8a2f42ae43eec6959"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/chatwork#readme"; - description = "The ChatWork API in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "cheapskate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , data-default, deepseq, mtl, stdenv, syb, text, uniplate - , xss-sanitize - }: - mkDerivation { - pname = "cheapskate"; - version = "0.1.1.1"; - sha256 = "d50d4f6978343f4990aeb6debf11e33054d8dc5ec4390196f12b8b68176ade62"; - revision = "1"; - editedCabalFile = "0mf6qdpgh56n0ynyy272vhkk2bjrdhppks2vrw79gk0kzn29fggh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html containers data-default deepseq mtl syb text - uniplate xss-sanitize - ]; - executableHaskellDepends = [ base blaze-html bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/cheapskate"; - description = "Experimental markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-highlight" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate - , stdenv, text - }: - mkDerivation { - pname = "cheapskate-highlight"; - version = "0.1.0.0"; - sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; - revision = "1"; - editedCabalFile = "1c8kxqdqf0j962xjdrrjfcbjsl0c1kax31rjykymv7w16d6hmlj4"; - libraryHaskellDepends = [ - base blaze-html cheapskate highlighting-kate text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-highlight"; - description = "Code highlighting for cheapskate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-lucid" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, lucid, stdenv }: - mkDerivation { - pname = "cheapskate-lucid"; - version = "0.1.0.0"; - sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; - revision = "1"; - editedCabalFile = "197nx95xw21i7zyvgzcgnr36ab6vrk17c66iz8ndwz61vp1jf6hc"; - libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-lucid"; - description = "Use cheapskate with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "check-email" = callPackage - ({ mkDerivation, base, bytestring, email-validate, resolv, stdenv - }: - mkDerivation { - pname = "check-email"; - version = "1.0.2"; - sha256 = "1c2615fadba09a5d7aa5c68648d12218a595efb759842fb4f524cf380afa9327"; - libraryHaskellDepends = [ base bytestring email-validate ]; - librarySystemDepends = [ resolv ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qoelet/check-email#readme"; - description = "Confirm whether an email is valid and probably existant"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) resolv;}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.4.11"; - sha256 = "d0602d3561b9c3d9365387543e363e40b11851ace42698feb519c6567d842d38"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-aes128" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cereal, crypto-api - , process, stdenv, tagged - }: - mkDerivation { - pname = "cipher-aes128"; - version = "0.7.0.4"; - sha256 = "cd8d8987c1a1839f3c66e655277981083be85489d34b6b47f95d7e82d2d10285"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/cipher-aes128"; - description = "AES and common modes using AES-NI when available"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-blowfish" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-blowfish"; - version = "0.0.3"; - sha256 = "8f41170a851dba6d0b6f07298af3213baca09ab2a8aaf2adb733631feb3b6641"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Blowfish cipher"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "circle-packing" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "circle-packing"; - version = "0.1.0.6"; - sha256 = "64ee44a90da3e5fe20d5b78bfe6eba93102a6b52c65f8a7b99af7799798ee81b"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Simple heuristic for packing discs of varying radii in a circle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.4"; - sha256 = "6f550e999cb3b3bf1d4d041363c0bead0eec02f078dc51301873cc450143a244"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "DEPRECATED in favor of webex-teams-api"; - license = stdenv.lib.licenses.mit; - }) {}; - "clang-compilation-database" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text }: - mkDerivation { - pname = "clang-compilation-database"; - version = "0.1.0.1"; - sha256 = "114601a1769471e4fc2e8d100c5546e95fa803b9e56dcd342dab9829d0dc1ca8"; - libraryHaskellDepends = [ aeson base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lambdageek/clang-compilation-database"; - description = "JSON Compilation Database Format encoding and decoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "clash-ghc" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, clash-lib - , clash-prelude, concurrent-supply, containers, deepseq, directory - , filepath, ghc, ghc-boot, ghc-prim, ghc-typelits-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, ghci, hashable - , haskeline, integer-gmp, lens, mtl, primitive, process, reflection - , stdenv, text, time, transformers, unbound-generics, uniplate - , unix, unordered-containers, vector - }: - mkDerivation { - pname = "clash-ghc"; - version = "0.99.3"; - sha256 = "89470f1e133514a488d8c77ffd63535ffae5b014fc2288c6bc8879c10ddc4b3e"; - revision = "1"; - editedCabalFile = "0r86409nh73wcychmwh2j3qnbbjk9z2yxr5amx7gpc8gar4qb3qi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bifunctors bytestring clash-lib clash-prelude - concurrent-supply containers deepseq directory filepath ghc - ghc-boot ghc-prim ghc-typelits-extra ghc-typelits-knownnat - ghc-typelits-natnormalise ghci hashable haskeline integer-gmp lens - mtl primitive process reflection text time transformers - unbound-generics uniplate unix unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "clash-lib" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , bytestring, clash-prelude, concurrent-supply, containers - , data-binary-ieee754, deepseq, directory, errors, fgl, filepath - , ghc, hashable, integer-gmp, lens, mtl, parsers, prettyprinter - , primitive, process, reducers, stdenv, template-haskell, text - , time, transformers, trifecta, unbound-generics - , unordered-containers, vector - }: - mkDerivation { - pname = "clash-lib"; - version = "0.99.3"; - sha256 = "556b0fc0166f2f3a48e3f9d6deecc25e472cce5183887fb046c0642cae73daba"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base bytestring clash-prelude - concurrent-supply containers data-binary-ieee754 deepseq directory - errors fgl filepath ghc hashable integer-gmp lens mtl parsers - prettyprinter primitive process reducers template-haskell text time - transformers trifecta unbound-generics unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware - As a Library"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "clash-prelude" = callPackage - ({ mkDerivation, array, base, bifunctors, constraints - , data-binary-ieee754, data-default, deepseq, ghc-prim - , ghc-typelits-extra, ghc-typelits-knownnat - , ghc-typelits-natnormalise, half, integer-gmp, lens, QuickCheck - , reflection, singletons, stdenv, template-haskell, transformers - , vector - }: - mkDerivation { - pname = "clash-prelude"; - version = "0.99.3"; - sha256 = "ef4628671f207dc7f27c7df46e5151f4c20826438507defd9bf05f76658b77bc"; - libraryHaskellDepends = [ - array base bifunctors constraints data-binary-ieee754 data-default - deepseq ghc-prim ghc-typelits-extra ghc-typelits-knownnat - ghc-typelits-natnormalise half integer-gmp lens QuickCheck - reflection singletons template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "CAES Language for Synchronous Hardware - Prelude library"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.4.0"; - sha256 = "2b3b255676ab0fdeb39aebafa3543535ddd684d00c645b643e50cb9e2d25f9e0"; - revision = "1"; - editedCabalFile = "1gf615lz0bfsn09vrjgj63d8zcpsmz1cgvdv8px3h0b4jrwdij6v"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.4.0"; - sha256 = "39ef2567a3542ebf91f6ebc103cc4afb64c2a4ec051c7ce578b577ef9931c424"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.4.0"; - sha256 = "0cd2a88f42c3541ba4bce6801c8b8d9c331e1c49a6288bf16f764676a34b9e28"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "classyplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "classyplate"; - version = "0.3.2.0"; - sha256 = "712eefbe6b6fd92d6e5e7982d82a27e45b7992a83c2b09fc8696b1e30752527a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Fuseable type-class based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.1"; - sha256 = "844e9101cc1835eb12bac50e289d00f19c24eeee12bcdebae1b633edffa328a3"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "closed" = callPackage - ({ mkDerivation, aeson, base, cassava, deepseq, hashable - , persistent, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "closed"; - version = "0.2.0"; - sha256 = "7a301c6c543ae60354b737c56c2259dfc9e01ddf9eee452e4469c6262c53c21c"; - revision = "1"; - editedCabalFile = "0n4g5in0lzy0gs04jj4y0kb3ndychp6nd92pqcsy80bqlllqv2a9"; - libraryHaskellDepends = [ - aeson base cassava deepseq hashable persistent QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/closed#readme"; - description = "Integers bounded by a closed interval"; - license = stdenv.lib.licenses.mit; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "fe2abf0386c96df6e51cbae4f45e074b54452fc01f9308b098198ade4ffc5ea4"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.0"; - sha256 = "fd4b303d206eaf242c779bb65c42256e42220c8497a6bcf3bc59589b9396c495"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.1.6"; - sha256 = "c8f916c8fbc9b3c564dcd6946cd530a292a055b60c784dde303803199a6c6968"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-builder" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "code-builder"; - version = "0.1.3"; - sha256 = "559e47a44cec85a8e95df92e5d2693cacc9761503c30be3b83eaebd95360a4ab"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simple system for generating code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.1.3"; - sha256 = "e65c86600e06d85f2e2c2a9df4b3d68e2dbd3adb2df9e922a4cd744966762191"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec" = callPackage - ({ mkDerivation, aeson, base, binary, binary-bits, bytestring, mtl - , profunctors, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "codec"; - version = "0.2.1"; - sha256 = "ffc261b58108c3d90c0b0b68461857d1148208d1a9645916e63241aaa3c25b28"; - libraryHaskellDepends = [ - aeson base binary binary-bits bytestring mtl profunctors - template-haskell text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chpatrick/codec"; - description = "Simple bidirectional serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.2.0"; - sha256 = "61eb624e5f347ec9249f976bc8b62ae597777604d82ab0e62acb9901374ae365"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "codo-notation" = callPackage - ({ mkDerivation, base, comonad, haskell-src-meta, parsec, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "codo-notation"; - version = "0.5.2"; - sha256 = "78eb57004541ed29eb4c54196b91ac2dd1028a3315f51cd4dc00debfc0938eaf"; - libraryHaskellDepends = [ - base comonad haskell-src-meta parsec template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - description = "A notation for comonads, analogous to the do-notation for monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "coercible-utils" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "coercible-utils"; - version = "0.0.0"; - sha256 = "2a624986cdc010c7fc3e90f8c94f722995af9fe6e88b9d52a94ebaa319b08c98"; - revision = "1"; - editedCabalFile = "1xbnkv6fqf4mizqkha8b073p0r84l1rx1kzdsd6nh8b0adrp6i4d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/coercible-utils"; - description = "Utility functions for Coercible types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colonnade" = callPackage - ({ mkDerivation, base, bytestring, contravariant, profunctors - , stdenv, text, vector - }: - mkDerivation { - pname = "colonnade"; - version = "1.2.0.1"; - sha256 = "32ebd86360c9a363d62a2490b7120de5651a6674a79c4f9d85e13d2cc8cb3e8b"; - libraryHaskellDepends = [ - base bytestring contravariant profunctors text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Generic types and functions for columnar encoding and decoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.2"; - sha256 = "0b42ff47e011f011f73e444d7121b7bc54324077cb2a1011ee01766483706578"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.4"; - sha256 = "0f439f00b322ce3d551f28a4dd1520aa2c91d699de4cdc6d485b9b04be0dc5eb"; - revision = "1"; - editedCabalFile = "1awhbn3pk4zgzpnbbhb10rbxzbb4fz5gywa5h3xl589dclv912ls"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1.0.1"; - sha256 = "c4d67854fecd353f5e7e6be009ffbd16cd6e9f6f41af16f072ae89778596db70"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3.1"; - sha256 = "c926189971d0b416b4b078a1652de65a12a9fabd013d2373204bbe96fef8b562"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv, vector }: - mkDerivation { - pname = "commutative"; - version = "0.0.2"; - sha256 = "ccbc6a445bbc5c26a504a322664b2275e9834fdc17c80a2bdcef0dc517609969"; - libraryHaskellDepends = [ base random semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/commutative#readme"; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , contravariant, distributive, semigroups, stdenv, tagged - , transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.4"; - sha256 = "78a89d7f9f0975b40b3294adcb70885649572b687ac5f5dc98e452471838e825"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers contravariant distributive semigroups tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.7.2"; - sha256 = "c7f9bf47a586720deda33b82ddc633d3507c8bc199eb5555c80931f6c323cae2"; - revision = "2"; - editedCabalFile = "1f5hfmzi2bk7xldxgmcd85gyi4dqm7q18cgmwmzpyz7f67p7awhz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "componentm" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, pretty-show - , prettyprinter, rio, stdenv, teardown - }: - mkDerivation { - pname = "componentm"; - version = "0.0.0.2"; - sha256 = "efe23d927d3ad2aee5052ef379f7a472f60e1b0749195e9b46bbf0d8c756b6a7"; - libraryHaskellDepends = [ - base containers deepseq exceptions pretty-show prettyprinter rio - teardown - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-componentm#readme"; - description = "Monad for allocation and cleanup of application resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "componentm-devel" = callPackage - ({ mkDerivation, base, componentm, foreign-store, rio, stdenv - , teardown - }: - mkDerivation { - pname = "componentm-devel"; - version = "0.0.0.2"; - sha256 = "2dd7303c9b26d748baf1a0893b19072ef2a2817c8c77639e3c844e559cd85b0a"; - libraryHaskellDepends = [ - base componentm foreign-store rio teardown - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-componentm#readme"; - description = "Easy REPL driven development using ComponentM"; - license = stdenv.lib.licenses.mit; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composition-prelude"; - version = "1.5.3.1"; - sha256 = "ed4c5090b8281b3a69ed50c49cc2558cb9953be19f22b3eb56c2e391bbfd0437"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Higher-order function combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compressed" = callPackage - ({ mkDerivation, base, comonad, containers, fingertree, hashable - , keys, pointed, reducers, semigroupoids, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "compressed"; - version = "3.11"; - sha256 = "d77bbf2f445d32f138dfde9e860e68db5de8ae04c52ffda23941ddf7bdabdd3d"; - revision = "1"; - editedCabalFile = "0h3kfr2kdn74vk0mam5mwk6phclrcm79khd8yz2pp8j9zv1v8q3r"; - libraryHaskellDepends = [ - base comonad containers fingertree hashable keys pointed reducers - semigroupoids semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/compressed/"; - description = "Compressed containers and reducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.6.2.0"; - sha256 = "c8e43e6d19f075e7a66a7191350eba0d177b5339ba6db6d3bcfde2d73a0f9000"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.9"; - sha256 = "8cc49408e957c65359182fbfcda80717b931915d101e4be55ccb26c44b098e57"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1.1"; - sha256 = "ae0028cfaf27da2c4d0e70783e8f45e82d33f402af1dfc6778c8ab81cf542f45"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-supply" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "concurrent-supply"; - version = "0.1.8"; - sha256 = "ccf827dcd221298ae93fad6021c63a06707456de0671706b44f1f2fed867f21f"; - revision = "1"; - editedCabalFile = "1yzrr68k81w3jmrarx3y6z7ymzaaxwab509pp6kkd2fjia3g8wwk"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/concurrent-supply/"; - description = "A fast concurrent unique identifier supply with a pure API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.1"; - sha256 = "ae129b66ada785c43a693d3b260f0e7b2f01d79fbf04ae43f7341405455320d6"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, containers, deepseq - , exceptions, lzma-conduit, monad-control, mtl, pqueue, resourcet - , stdenv, stm, stm-conduit, streaming-commons, transformers - , unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.8.2"; - sha256 = "a897faa37209780088ed3203aadb0195169d7c24f1eae39bd2ad2f0f851d82e8"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra containers deepseq exceptions lzma-conduit - monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-connection" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "conduit-connection"; - version = "0.1.0.4"; - sha256 = "5e784117f3698dc653b286fbb53d530068d0cdadbe130ec02abf42e3f2c821fc"; - libraryHaskellDepends = [ - base bytestring conduit connection resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-connection"; - description = "Conduit source and sink for Network.Connection."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.0"; - sha256 = "2c41c925fc53d9ba2e640c7cdca72c492b28c0d45f1a82e94baef8dfa65922ae"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-iconv" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv }: - mkDerivation { - pname = "conduit-iconv"; - version = "0.1.1.3"; - sha256 = "1c71304782e4599a2987321028b50356c4982b45d9096d954e0b7c0b7ad3acb6"; - libraryHaskellDepends = [ base bytestring conduit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-iconv"; - description = "Conduit for character encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-throttle" = callPackage - ({ mkDerivation, async, base, conduit, conduit-combinators - , conduit-extra, monad-control, resourcet, stdenv, stm, stm-chans - , throttle-io-stream, unliftio, unliftio-core - }: - mkDerivation { - pname = "conduit-throttle"; - version = "0.3.1.0"; - sha256 = "8dd6d616f5ddce25668bb34069bfdcdfe2a866c8d708b725a9b2e450a95aa329"; - libraryHaskellDepends = [ - async base conduit conduit-combinators conduit-extra monad-control - resourcet stm stm-chans throttle-io-stream unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/conduit-throttle#readme"; - description = "Throttle Conduit Producers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "config-ini" = callPackage - ({ mkDerivation, base, containers, megaparsec, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "config-ini"; - version = "0.2.2.0"; - sha256 = "364d67b876abf867d97eaacac630e920521ff96478fe9869a41983893ce140a0"; - libraryHaskellDepends = [ - base containers megaparsec text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aisamanra/config-ini"; - description = "A library for simple INI-based configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configuration-tools" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base-unicode-symbols, base64-bytestring, bytestring, Cabal - , case-insensitive, connection, data-default, deepseq, directory - , dlist, enclosed-exceptions, filepath, http-client - , http-client-tls, http-types, monad-control, mtl, network-uri - , optparse-applicative, process, profunctors, semigroups, stdenv - , text, tls, transformers, unordered-containers, x509, x509-system - , x509-validation, yaml - }: - mkDerivation { - pname = "configuration-tools"; - version = "0.3.1"; - sha256 = "e0df7e71b084c1bd831cd9887584f06e016e359291dc4f71b72d2027f7f86e47"; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base-unicode-symbols - base64-bytestring bytestring Cabal case-insensitive connection - data-default deepseq directory dlist enclosed-exceptions filepath - http-client http-client-tls http-types monad-control mtl - network-uri optparse-applicative process profunctors semigroups - text tls transformers unordered-containers x509 x509-system - x509-validation yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alephcloud/hs-configuration-tools"; - description = "Tools for specifying and parsing configurations"; - license = stdenv.lib.licenses.mit; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, basement, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "1"; - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv }: - mkDerivation { - pname = "constraint"; - version = "0.1.1.1"; - sha256 = "22800d629e3255c7e37d9265ac70b9a4ec4bee2d5f4cc19948e8d28b911ddf47"; - libraryHaskellDepends = [ base category ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "constraints"; - version = "0.10.1"; - sha256 = "5880ec261e053841b307c7c8c59614f46c2efbd5189f0f2a3c817589cedec3f7"; - revision = "1"; - editedCabalFile = "1i2rd805mjz5q7s98ryy1m91zd4b9hx92gw1rwr6kpibqqw9smcb"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "consul-haskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , connection, either, exceptions, http-client, http-client-tls - , http-types, lifted-async, lifted-base, monad-control, network - , retry, stdenv, stm, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "consul-haskell"; - version = "0.4.2"; - sha256 = "b10812b70dfbce7037f9f23eda71fa2fa6fc97ed309bd63c00f226522d30d80a"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring connection either - exceptions http-client http-client-tls http-types lifted-async - lifted-base monad-control network retry stm text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/consul-haskell"; - description = "A consul client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "containers-unicode-symbols" = callPackage - ({ mkDerivation, base, base-unicode-symbols, containers, stdenv }: - mkDerivation { - pname = "containers-unicode-symbols"; - version = "0.3.1.1"; - sha256 = "4655f286a2d116cb5f2b89f472df54df739bf904ac8e932b2fd34d3f713e9b31"; - libraryHaskellDepends = [ base base-unicode-symbols containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "contravariant"; - version = "1.4.1"; - sha256 = "c93d3d619fa378f3fdf92c53bb8b04b8f47963b88aba7cfa54b57656189ad0ed"; - revision = "1"; - editedCabalFile = "0qj5nymccrb9p0cd6hffsy90jidjng14g9yv95z8v6h4q84sbzvx"; - libraryHaskellDepends = [ - base StateVar transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, base-prelude, contravariant, semigroups - , stdenv, template-haskell, tuple-th - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.4"; - sha256 = "36a9239d5a84bc6a418a3aa1a0df145d76ece24d00b76deb817b92441913e63d"; - revision = "1"; - editedCabalFile = "1h2955ahga6i4fn7k8v66l03v77p6fhsac6ck8gpabkc08ij60wp"; - libraryHaskellDepends = [ - base base-prelude contravariant semigroups template-haskell - tuple-th - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-dsl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-dsl"; - version = "0.2.1.3"; - sha256 = "e8c795e256030194ef9beb8009ed49f1257790ad1b51d3f629c98f6ce5e56967"; - revision = "2"; - editedCabalFile = "18jypzsawq0mp12i35f58px80i3k07ri0g07wcrh6af93vqkhvil"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Atry/Control.Dsl#readme"; - description = "An alternative to monads in do-notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.2"; - sha256 = "63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.1"; - sha256 = "383b98ecf5db5add42f318672af9eb1c8b9d99ec42d48c240e209a93b5cf1186"; - revision = "1"; - editedCabalFile = "029v5j0mnlzzn6my7jgw26gdm5fbs2h7y395zk1q7r5bfar00q58"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.4"; - sha256 = "3245ed04ae933cf7becede816d1f76043b851472700abf558ae90b28414cc0e3"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "country" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , ghc-prim, hashable, primitive, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "country"; - version = "0.1.6"; - sha256 = "09b36e30dfb1fa5fa7a2c5c38f316a70e0c740b8a4dd6e340abe9770ad149928"; - revision = "3"; - editedCabalFile = "034cd94hiwgci0qhkdkkqmx2igmf1wxmd4b70g6sdlk1kklcn7x1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq ghc-prim hashable - primitive scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/country#readme"; - description = "Country data type and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "courier" = callPackage - ({ mkDerivation, async, base, bytestring, cereal, containers - , hslogger, network, stdenv, stm, text, uuid - }: - mkDerivation { - pname = "courier"; - version = "0.1.1.5"; - sha256 = "ac9e674ff33de347b173da2892859b3807a408b341d10d6101d2a7d07ac334d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring cereal containers hslogger network stm text - uuid - ]; - executableHaskellDepends = [ base cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/hargettp/courier"; - description = "A message-passing library for simplifying network applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "cql" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, Decimal - , iproute, network, stdenv, template-haskell, text, time - , transformers, uuid, vector - }: - mkDerivation { - pname = "cql"; - version = "4.0.1"; - sha256 = "89294c6a6ed2c6f8c6037ee2ca4236d3606bf9019a39df9e39b7ad8dcd573808"; - libraryHaskellDepends = [ - base bytestring cereal containers Decimal iproute network - template-haskell text time transformers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql/"; - description = "Cassandra CQL binary protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cql-io" = callPackage - ({ mkDerivation, async, auto-update, base, bytestring, containers - , cql, cryptohash, data-default-class, exceptions, hashable - , HsOpenSSL, iproute, lens, monad-control, mtl, mwc-random, network - , retry, semigroups, stdenv, stm, text, time, tinylog, transformers - , transformers-base, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "cql-io"; - version = "1.0.1.1"; - sha256 = "ac1353fc3ae4b182877aa518282ea1bd839cf5a3ffb936d6da4807b11d00bbcd"; - libraryHaskellDepends = [ - async auto-update base bytestring containers cql cryptohash - data-default-class exceptions hashable HsOpenSSL iproute lens - monad-control mtl mwc-random network retry semigroups stm text time - tinylog transformers transformers-base unordered-containers uuid - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql-io/"; - description = "Cassandra CQL client"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "crackNum" = callPackage - ({ mkDerivation, array, base, FloatingHex, stdenv }: - mkDerivation { - pname = "crackNum"; - version = "2.3"; - sha256 = "428f25cfa0f7c4c126ee96fb9122966c2b175a194d59c200470a6f689ec038f3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base FloatingHex ]; - executableHaskellDepends = [ array base FloatingHex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/LeventErkok/CrackNum"; - description = "Crack various integer, floating-point data formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, bytestring, cassava, code-page, containers, deepseq - , directory, exceptions, filepath, Glob, js-flot, js-jquery - , microstache, mtl, mwc-random, optparse-applicative, parsec - , semigroups, statistics, stdenv, text, time, transformers - , transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.4.1.0"; - sha256 = "c49306676aa7927c3ca3c1807b081d1e86771eb8da99c8391f9c4dacb24a826c"; - revision = "1"; - editedCabalFile = "0jg7mk9y9br5aqi29vrrrq28mnyknyg96zmr8rrlxw0rf68l892a"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary bytestring - cassava code-page containers deepseq directory exceptions filepath - Glob js-flot js-jquery microstache mtl mwc-random - optparse-applicative parsec semigroups statistics text time - transformers transformers-compat vector vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "criterion-measurement" = callPackage - ({ mkDerivation, aeson, base, base-compat, binary, containers - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "criterion-measurement"; - version = "0.1.1.0"; - sha256 = "f5f87769386a927dbf487d2f256fc6804f2902078e86dcf113e35178a582ab56"; - libraryHaskellDepends = [ - aeson base base-compat binary containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/criterion"; - description = "Criterion measurement functionality and associated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.1"; - sha256 = "8c1af53bde729026809b722468f6b36c4f96cb532f26a390f32f1c91fb8b3251"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api-tests" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, directory - , filepath, HUnit, QuickCheck, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-api-tests"; - version = "0.3"; - sha256 = "f44aecdd4ceb9da9f38330e84d9c17745a82b0611085ebb34442d2dce4207270"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api directory filepath HUnit - QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/crypto-api/wiki"; - description = "A test framework and KATs for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-tests" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , HUnit, mtl, QuickCheck, securemem, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-cipher-tests"; - version = "0.0.11"; - sha256 = "dfb670b73d4091b8683634d0d4d5a40576d573ad160650d5e518244ced8b98a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types HUnit mtl QuickCheck - securemem test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, ansi-terminal, base, containers, mtl - , optparse-applicative, split, stdenv, text - }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.0.3.1"; - sha256 = "22221a31e8a1e1e63ab27733e037bf5b5b5a59b07463590ce69f7a42aeff4d45"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers mtl split text ]; - executableHaskellDepends = [ - ansi-terminal base containers mtl optparse-applicative split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-numbers" = callPackage - ({ mkDerivation, base, bytestring, crypto-random, ghc-prim - , integer-gmp, stdenv, vector - }: - mkDerivation { - pname = "crypto-numbers"; - version = "0.2.7"; - sha256 = "420aeb17e9cdcfdf8c950c6c6f10c54503c5524d36f611aa7238e3fd65f189a6"; - revision = "1"; - editedCabalFile = "1jjkhid8kwrz5894nad537rqxzzyx6b687bmgyk70nv0ny336j9b"; - libraryHaskellDepends = [ - base bytestring crypto-random ghc-prim integer-gmp vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-numbers"; - description = "Cryptographic numbers: functions and algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-numbers - , crypto-pubkey-types, crypto-random, cryptohash, stdenv - }: - mkDerivation { - pname = "crypto-pubkey"; - version = "0.2.8"; - sha256 = "c0ccf2f5c38517de1f1626cb0a2542f35aefad8842f8ad5c1fac0b8c9de8b56e"; - libraryHaskellDepends = [ - base byteable bytestring crypto-numbers crypto-pubkey-types - crypto-random cryptohash - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-pubkey"; - description = "Public Key cryptography"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocipher" = callPackage - ({ mkDerivation, base, cipher-aes, cipher-blowfish, cipher-camellia - , cipher-des, cipher-rc4, crypto-cipher-types, stdenv - }: - mkDerivation { - pname = "cryptocipher"; - version = "0.6.2"; - sha256 = "34b9e62dee36c4019dd0c0e86576295d0bd1bb573eeb24686ec635a09550e346"; - libraryHaskellDepends = [ - base cipher-aes cipher-blowfish cipher-camellia cipher-des - cipher-rc4 crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Symmetrical block and stream ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocompare" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , exceptions, http-conduit, MissingH, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "cryptocompare"; - version = "0.1.1"; - sha256 = "d12e0f6fd133e538852e5700b0a31d81c6885dc8b1e9e88d1b331dcec38316b3"; - libraryHaskellDepends = [ - aeson base bytestring containers directory exceptions http-conduit - MissingH text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/cryptocompare"; - description = "Haskell wrapper for the cryptocompare API"; - license = stdenv.lib.licenses.mit; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.25"; - sha256 = "89be1a18af8730a7bfe4d718d7d5f6ce858e9df93a411566d15bf992db5a3c8c"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csg" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, gloss - , gloss-raster, QuickCheck, simple-vec3, stdenv, strict - , system-filepath, transformers, turtle - }: - mkDerivation { - pname = "csg"; - version = "0.1.0.5"; - sha256 = "09436d220b669b6d35146c8bc696a37f05eac60c737388b9d504471cbb70fc8b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/csg#readme"; - description = "Analytical CSG (Constructive Solid Geometry) library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-syntax" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scientific, stdenv - , text - }: - mkDerivation { - pname = "css-syntax"; - version = "0.0.8"; - sha256 = "4271ecf02ee47334dc8bee8bf6bcaa99503056aa73f42ef9eb3ad5840d3030c1"; - libraryHaskellDepends = [ - attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "This package implments a parser for the CSS syntax"; - license = stdenv.lib.licenses.mit; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.5"; - sha256 = "c5c9825782d97c4059b2261dddd6471fdb270ddac0ff97d6d02d4f0d44b62758"; - revision = "1"; - editedCabalFile = "0dii4z0cl1ylvay1n5z90d6rbvnk9k30q81i6izhgxbgdawwhh33"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , exceptions, megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "1.0.1"; - sha256 = "214a58e87a849c8311eb652ca215b4f5789d724e7499324544b3a01187577f8f"; - revision = "3"; - editedCabalFile = "14kgk1digf1vbsr7v5jvj8gajkx0rkn3zjl4m8csqhxalkaxa2zl"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class exceptions megaparsec - mtl QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "curl-runnings" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring - , case-insensitive, cmdargs, directory, hspec, hspec-expectations - , http-conduit, http-types, megaparsec, stdenv, text - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "curl-runnings"; - version = "0.6.0"; - sha256 = "44204017b483d96659948011a3abe78f05afa5b63cd561bcaa36ea5f21efac19"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring case-insensitive directory hspec - hspec-expectations http-conduit http-types megaparsec text - unordered-containers vector yaml - ]; - executableHaskellDepends = [ base cmdargs text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/curl-runnings#readme"; - description = "A framework for declaratively writing curl based API tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.2.0.0"; - sha256 = "fb7292d4a5b9c4389690d1386fe24ce6a93eacbcfa952936ca6d4fd3afa98499"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "currency" = callPackage - ({ mkDerivation, base, containers, hashable, iso3166-country-codes - , stdenv - }: - mkDerivation { - pname = "currency"; - version = "0.2.0.0"; - sha256 = "bcd517f3d9f47f0dd3c4e802143159239e4a90db2fc552be4a99d759ffe9417a"; - libraryHaskellDepends = [ - base containers hashable iso3166-country-codes - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/currency-haskell"; - description = "Types representing standard and non-standard currencies"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cyclotomic" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv }: - mkDerivation { - pname = "cyclotomic"; - version = "0.5.1"; - sha256 = "f72098bac1ec2fe561a2cc654334d8931b1a9074424be0081157901df56f5ffd"; - libraryHaskellDepends = [ arithmoi base containers ]; - doHaddock = false; - doCheck = false; - description = "A subfield of the complex numbers for exact calculation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.1"; - sha256 = "4a148579f4ef822544b721a4b59f7a9e62a965e270dee9d2a54a98ceab494243"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "darcs" = callPackage - ({ mkDerivation, array, async, attoparsec, base, base16-bytestring - , binary, bytestring, Cabal, containers, cryptohash, curl - , data-ordlist, directory, fgl, filepath, graphviz, hashable - , haskeline, html, HTTP, mmap, mtl, network, network-uri, old-time - , parsec, process, random, regex-applicative, regex-compat-tdfa - , sandi, stdenv, stm, tar, terminfo, text, time, transformers, unix - , unix-compat, utf8-string, vector, zip-archive, zlib - }: - mkDerivation { - pname = "darcs"; - version = "2.14.1"; - sha256 = "61ddbc99acaf06df3a114437064e9241e0da467c23d1d3fb520a782eee32cd35"; - configureFlags = [ "-fforce-char8-encoding" "-flibrary" ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ - array async attoparsec base base16-bytestring binary bytestring - containers cryptohash data-ordlist directory fgl filepath graphviz - hashable haskeline html HTTP mmap mtl network network-uri old-time - parsec process random regex-applicative regex-compat-tdfa sandi stm - tar terminfo text time transformers unix unix-compat utf8-string - vector zip-archive zlib - ]; - librarySystemDepends = [ curl ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/etc/bash_completion.d - mv contrib/darcs_completion $out/etc/bash_completion.d/darcs - ''; - homepage = "http://darcs.net/"; - description = "a distributed, interactive, smart revision control system"; - license = stdenv.lib.licenses.gpl2; - }) {inherit (pkgs) curl;}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.2.8"; - sha256 = "ac3f95162df227a16eabf6be65d1d6563e5207d581edf72b680bfcd59f7f04bb"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-template" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, template-haskell - , utility-ht - }: - mkDerivation { - pname = "data-accessor-template"; - version = "0.2.1.16"; - sha256 = "93e7f2120b8974d81a4acc56bd6a5b7121dac4672d974a42512c169c6937ed95"; - libraryHaskellDepends = [ - base data-accessor template-haskell utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-clist" = callPackage - ({ mkDerivation, base, deepseq, QuickCheck, stdenv }: - mkDerivation { - pname = "data-clist"; - version = "0.1.2.2"; - sha256 = "d1a73743b45c36ac75cfa4ebdbb3fc63860093651f05dc171d28e91d688d2baa"; - libraryHaskellDepends = [ base deepseq QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sw17ch/data-clist"; - description = "Simple functional ring type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.6.0.0"; - sha256 = "094d44446b2429bad5707b4aef0f1f63a9d101739d9a244cb2131f7646eccbd4"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse-lens" = callPackage - ({ mkDerivation, base, data-diverse, data-has, lens, profunctors - , stdenv, tagged - }: - mkDerivation { - pname = "data-diverse-lens"; - version = "4.3.0.0"; - sha256 = "97d049769f0a3693428bac8eb8de73e004f6fc9a1d0e3dc0c567f9d39f8ed986"; - libraryHaskellDepends = [ - base data-diverse data-has lens profunctors tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse-lens#readme"; - description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.2"; - sha256 = "6b677600221de86eaee21dd2d4c23c04320370c594a56f7bb3477ef4e4b69120"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-hash" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "data-hash"; - version = "0.2.0.1"; - sha256 = "9117dd49013ca28ff188fc71c3595ac3af23d56d301c1f39bac93d44d8c60bbe"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - description = "Combinators for building fast hashing functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-inttrie" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-inttrie"; - version = "0.1.4"; - sha256 = "6b3a7d8d49b0676c09486ac08107b0e5a6dfd66d9627443be440e9fd11e7bd54"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luqui/data-inttrie"; - description = "A simple lazy, infinite trie from integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-memocombinators" = callPackage - ({ mkDerivation, array, base, data-inttrie, stdenv }: - mkDerivation { - pname = "data-memocombinators"; - version = "0.5.1"; - sha256 = "b4341d2024b84a43f92edc39f6d6766bf4f0f00a40fd834b9f6f8e987b606ed7"; - libraryHaskellDepends = [ array base data-inttrie ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/data-memocombinators"; - description = "Combinators for building memo tables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , data-msgpack-types, groom, stdenv, text - }: - mkDerivation { - pname = "data-msgpack"; - version = "0.0.12"; - sha256 = "5c9f8b04fbc30368e0a085de2c33e08cb0601fc9e95f767c38435d5a0ce1f487"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 data-msgpack-types text - ]; - executableHaskellDepends = [ base bytestring groom ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack-types" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , QuickCheck, stdenv, text, unordered-containers, vector, void - }: - mkDerivation { - pname = "data-msgpack-types"; - version = "0.0.2"; - sha256 = "54fdda1fa485c9f86f1f0f2aa8cc71d111b2f36504b7fb9c0a2de95c0b1287a5"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable QuickCheck text - unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.1.2"; - sha256 = "605cf65aa01f93a5834305001056b2206a95830e25b7f969b34c9479a7e42621"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4"; - sha256 = "e793156aa2262ca294183a9d045f37e6ff2070825b40d2ffe5a8d64e0b455ec6"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.2"; - sha256 = "44c530b081a486c50d668004637814223d1f1890716d39f7b692c83644d29830"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.2"; - sha256 = "c3ef24d803946a3caf0ff0e51f0c0b9f49055d7dc790518ad518d568d5195002"; - revision = "1"; - editedCabalFile = "1r6dnvc7d50q5p9fdqqwfvi7kwn7r89319plj7v284sjai9b6ld4"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, containers, dlist, http-client, http-client-tls - , http-types, lens, lifted-base, monad-control, network, old-locale - , stdenv, text, time, transformers-base, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.3.0"; - sha256 = "9bb5eda1c704261160e0714499eef8c03dc2dd4d8673ad085e80c164445c1934"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring containers dlist - http-client http-client-tls http-types lens lifted-base - monad-control network old-locale text time transformers-base - unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "datasets" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cassava - , directory, file-embed, filepath, hashable, microlens, stdenv - , stringsearch, text, time, vector, wreq - }: - mkDerivation { - pname = "datasets"; - version = "0.2.5"; - sha256 = "9a9139130936102bbfa60324e1ed7f9fd5b9a68db096917f589e8bb07999fdba"; - revision = "1"; - editedCabalFile = "1q96bxn8cjzr3pnygxz1s7bjk40l9kkxji9w4hxjbl3qh1m2i1sw"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cassava directory file-embed - filepath hashable microlens stringsearch text time vector wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/datasets"; - description = "Classical data sets for statistics and machine learning"; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dawg-ord" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, transformers - , vector - }: - mkDerivation { - pname = "dawg-ord"; - version = "0.5.1.0"; - sha256 = "d9129acfb71ce41b6994d2c72a040319fc85af408226122d3958d5617e8922e9"; - libraryHaskellDepends = [ - base containers mtl transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/dawg-ord"; - description = "Directed acyclic word graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dbcleaner" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv, text }: - mkDerivation { - pname = "dbcleaner"; - version = "0.1.3"; - sha256 = "0817b0e1698d8d48ac58d631f51dc6e34663f4e97af7bac3fd03e31349830f35"; - libraryHaskellDepends = [ base postgresql-simple text ]; - doHaddock = false; - doCheck = false; - description = "Clean database tables automatically around hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , filepath, lens, libxml-sax, network, parsec, random, split - , stdenv, template-haskell, text, th-lift, transformers, unix - , vector, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.0.1"; - sha256 = "a325b5c6958a343b30fd378d54ac01f9db889a4d7cadb14b2103da7ef4e7e8f5"; - revision = "2"; - editedCabalFile = "0fskpis9ryzj4bkzjh9h2hdw2lwr38qjh74drazfq25w5ba2zj3j"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq filepath lens libxml-sax - network parsec random split template-haskell text th-lift - transformers unix vector xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.1.2"; - sha256 = "1cd3b5f099f0d26d0f14e2611b11b6599e4fad4cc217b88b61d1e478d3ec1641"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, template-haskell - , text, uniplate, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "debug"; - version = "0.1.1"; - sha256 = "330f44c6341833c5e0cccf08fa7674dd54f14a843a2b5703e25ce08ffed49248"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/debug"; - description = "Simple trace-based debugger"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "debug-trace-var" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, unicode-show }: - mkDerivation { - pname = "debug-trace-var"; - version = "0.2.0"; - sha256 = "174f79d31d905c99adc880dd79899b3f335e1a7c552a7bcff8664abbffb6b489"; - libraryHaskellDepends = [ base template-haskell unicode-show ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/debug-trace-var#readme"; - description = "You do not have to write variable names twice in Debug.Trace"; - license = stdenv.lib.licenses.mit; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "1.11.0.4"; - sha256 = "af25f89cf243d3ccd038f7e9c9d52fc462061587fa05852b7a9e36db70257a7e"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum, stdenv }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.4.0"; - sha256 = "5db396bdb5d156434af920c074316c3b84b4d39ba8e1cd349c7bb6679cb28246"; - revision = "1"; - editedCabalFile = "0a5f35d1sgfq1cl1r5bgb5pwfjniiycxiif4ycxglaizp8g5rlr1"; - libraryHaskellDepends = [ base containers dependent-sum ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "dependent-sum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dependent-sum"; - version = "0.4"; - sha256 = "a8deecb4153a1878173f8d0a18de0378ab068bc15e5035b9e4cb478e8e4e1a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-sum"; - description = "Dependent sum type"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dependent-sum-template" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv, template-haskell - , th-extras - }: - mkDerivation { - pname = "dependent-sum-template"; - version = "0.0.0.6"; - sha256 = "994cb4891949cad1b9ca268052377c58c174f77a469cae44742ac83727be91ad"; - libraryHaskellDepends = [ - base dependent-sum template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "/dev/null"; - description = "Template Haskell code to generate instances of classes in dependent-sum package"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "deque"; - version = "0.2.1"; - sha256 = "019d197e306724f1a09ad53ab9309cee1cfbbf5456f2956d3ab52a59fe523264"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queue"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.5.2"; - sha256 = "495660f8b41bbb5ab372e2d393eaf57ba8ebd5d4f80b1477b2fd5caef875b240"; - revision = "1"; - editedCabalFile = "1s672vc7w96fmvr1p3fkqi9q80sn860j14545sskpxb8iz9f7sxg"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.5"; - sha256 = "9ed69dd320fafe190d296ae24aaf4d1e85688cdb8240cf1fea187a0bb3a1cadf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "detour-via-sci" = callPackage - ({ mkDerivation, aeson, base, cassava, newtype, scientific - , siggy-chardust, stdenv, template-haskell - }: - mkDerivation { - pname = "detour-via-sci"; - version = "1.0.0"; - sha256 = "451e1194f7bf6a7dea02379679c790313cc20423271fd8e98f164c942e3d81e4"; - revision = "1"; - editedCabalFile = "00dj8vf9gg9ww37sir6mblf3xhcpam8qgfz5bfana23arhf2cixj"; - libraryHaskellDepends = [ - aeson base cassava newtype scientific siggy-chardust - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/detour-via-sci#readme"; - description = "JSON and CSV encoding for rationals as decimal point numbers"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "df1" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, stdenv - , text, time - }: - mkDerivation { - pname = "df1"; - version = "0.1.1"; - sha256 = "362409d7f47f69f9afc746b87c2380bc6d1536c1e9d1b8b77963b83504722fe3"; - libraryHaskellDepends = [ - attoparsec base bytestring containers text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Type, render and parse the df1 hierarchical structured log format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, case-insensitive - , containers, contravariant, cryptonite, Diff, directory - , exceptions, filepath, haskeline, http-client, http-client-tls - , insert-ordered-containers, lens-family-core, megaparsec, memory - , mtl, optparse-applicative, parsers, prettyprinter - , prettyprinter-ansi-terminal, repline, scientific, stdenv - , template-haskell, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "dhall"; - version = "1.15.1"; - sha256 = "ea3bb3b6a006b82e0286d72757ba9969f6ee292ef12eea2376939ba219c88e30"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring case-insensitive containers - contravariant cryptonite Diff directory exceptions filepath - haskeline http-client http-client-tls insert-ordered-containers - lens-family-core megaparsec memory mtl optparse-applicative parsers - prettyprinter prettyprinter-ansi-terminal repline scientific - template-haskell text transformers unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall - , insert-ordered-containers, neat-interpolation, optparse-generic - , shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.15"; - sha256 = "045b8f405e9ace3ad3547727ed0de6cc7974d825f70e1447626a15dfe973af97"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall insert-ordered-containers - neat-interpolation shell-escape text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall - , insert-ordered-containers, optparse-applicative, stdenv, text - , unordered-containers, yaml - }: - mkDerivation { - pname = "dhall-json"; - version = "1.2.3"; - sha256 = "83cb1e27f937c50ba6852eeb55ed3f06af8db9b73716bfa8c1326699482ffcda"; - revision = "1"; - editedCabalFile = "02zwka1vav66z3528hmhhlsnwmsi0haj4bhp7r57w2j877c25z2h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base dhall insert-ordered-containers optparse-applicative - text unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall optparse-applicative text - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-text" = callPackage - ({ mkDerivation, base, dhall, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "dhall-text"; - version = "1.0.14"; - sha256 = "5e9b8f8e6d9f711dab814be92392b9063ee1c8bc41c299d66278c0af1cb90591"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base dhall optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "Template text using Dhall"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di" = callPackage - ({ mkDerivation, base, df1, di-core, di-df1, di-handle, di-monad - , exceptions, stdenv - }: - mkDerivation { - pname = "di"; - version = "1.0.1"; - sha256 = "2913ed3a7b8db8d9160a6aec510a35e5f8199c962c0e115f84c0c88d8236ec40"; - libraryHaskellDepends = [ - base df1 di-core di-df1 di-handle di-monad exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging using di, mtl and df1"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, safe-exceptions, stdenv, stm - , time - }: - mkDerivation { - pname = "di-core"; - version = "1.0.3"; - sha256 = "f0900e071c6a4fd99ac5588b1801333bcd50aa73a212222b29c731494d52dfe5"; - libraryHaskellDepends = [ - base containers safe-exceptions stm time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-df1" = callPackage - ({ mkDerivation, base, df1, di-core, di-handle, di-monad, stdenv - , stm - }: - mkDerivation { - pname = "di-df1"; - version = "1.0.2"; - sha256 = "d0518d17165c6f9baa60772526f263b11128a17edd1f214c91f0e42aad11b3c6"; - libraryHaskellDepends = [ - base df1 di-core di-handle di-monad stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Write logs in the df1 format using the di logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-handle" = callPackage - ({ mkDerivation, base, bytestring, di-core, exceptions, stdenv - , unix - }: - mkDerivation { - pname = "di-handle"; - version = "1.0"; - sha256 = "cd081f53824a173b30550ae9dbea744a2e7ac8931092d1f1b246b9bd5bb092ec"; - libraryHaskellDepends = [ - base bytestring di-core exceptions unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "IO support for file handles in di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.0.2"; - sha256 = "b84d79e180778720b6aa31bf5e7f72db809378f92c97c391828639c876164ee8"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams" = callPackage - ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib - , diagrams-svg, stdenv - }: - mkDerivation { - pname = "diagrams"; - version = "1.4"; - sha256 = "8608f6fa682b8c43b9fbe7c42c033c7a6de0680bd7383f6a81ea8bca37999139"; - libraryHaskellDepends = [ - diagrams-contrib diagrams-core diagrams-lib diagrams-svg - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative vector graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-builder" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cmdargs - , diagrams-cairo, diagrams-lib, diagrams-postscript - , diagrams-rasterific, diagrams-svg, directory, exceptions - , filepath, hashable, haskell-src-exts, haskell-src-exts-simple - , hint, JuicyPixels, lens, mtl, split, stdenv, svg-builder - , transformers - }: - mkDerivation { - pname = "diagrams-builder"; - version = "0.8.0.3"; - sha256 = "3a80ac090b73838de3d2a9d006d128cb7903852b2f8df24db30855f729b30abd"; - revision = "1"; - editedCabalFile = "0cdnriavw7y0cr12n60vd0hwcyi09vkx5zjr47af3bj00lq1v9hk"; - configureFlags = [ "-fcairo" "-fps" "-frasterific" "-fsvg" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-orphans cmdargs diagrams-lib directory exceptions - filepath hashable haskell-src-exts haskell-src-exts-simple hint - lens mtl split transformers - ]; - executableHaskellDepends = [ - base bytestring cmdargs diagrams-cairo diagrams-lib - diagrams-postscript diagrams-rasterific diagrams-svg directory - filepath JuicyPixels lens svg-builder - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "hint-based build service for the diagrams graphics EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-cairo" = callPackage - ({ mkDerivation, array, base, bytestring, cairo, colour, containers - , data-default-class, diagrams-core, diagrams-lib, filepath - , hashable, JuicyPixels, lens, mtl, optparse-applicative, pango - , split, statestack, stdenv, transformers, unix, vector - }: - mkDerivation { - pname = "diagrams-cairo"; - version = "1.4.1"; - sha256 = "df64fd41f4c8eb37e2edcc458c4d49c574d22cf7ca2ef7ceb5de4a79f6436658"; - revision = "1"; - editedCabalFile = "0irrv1mf7lz3n4dy5pz9y6kw00v1rly47g2g6hi95nj6a6hib3z0"; - libraryHaskellDepends = [ - array base bytestring cairo colour containers data-default-class - diagrams-core diagrams-lib filepath hashable JuicyPixels lens mtl - optparse-applicative pango split statestack transformers unix - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Cairo backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-canvas" = callPackage - ({ mkDerivation, base, blank-canvas, cmdargs, containers - , data-default-class, diagrams-core, diagrams-lib, lens, mtl - , NumInstances, optparse-applicative, statestack, stdenv, text - }: - mkDerivation { - pname = "diagrams-canvas"; - version = "1.4.1"; - sha256 = "92def277f039ab95428bb3339f66e6068dd6c1699f24a4c76ca8894004d915c6"; - libraryHaskellDepends = [ - base blank-canvas cmdargs containers data-default-class - diagrams-core diagrams-lib lens mtl NumInstances - optparse-applicative statestack text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "HTML5 canvas backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-contrib" = callPackage - ({ mkDerivation, base, circle-packing, colour, containers - , cubicbezier, data-default, data-default-class, diagrams-core - , diagrams-lib, diagrams-solve, force-layout, hashable, lens - , linear, mfsolve, MonadRandom, monoid-extras, mtl, mtl-compat - , parsec, random, semigroups, split, stdenv, text - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.3"; - sha256 = "65fba87bb7752b1053fb3ab8e4ae30d5920208ff48441c4d8969cdbe73402007"; - revision = "3"; - editedCabalFile = "0mm1mmagx6q8g6dxk1cagqka38z6393ihp0lvf6095prlvidasqs"; - libraryHaskellDepends = [ - base circle-packing colour containers cubicbezier data-default - data-default-class diagrams-core diagrams-lib diagrams-solve - force-layout hashable lens linear mfsolve MonadRandom monoid-extras - mtl mtl-compat parsec random semigroups split text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Collection of user contributions to diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-core" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive - , dual-tree, lens, linear, monoid-extras, mtl, profunctors - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "diagrams-core"; - version = "1.4.1.1"; - sha256 = "a182e9f99e3664efdfa5e18f4b403703112fba33c5b877a91c9eabed1d8bb682"; - revision = "2"; - editedCabalFile = "1lf7xcq42l4hjksgp1nhj7600shvw9q5a27bh729fyfphmvv3xkf"; - libraryHaskellDepends = [ - adjunctions base containers distributive dual-tree lens linear - monoid-extras mtl profunctors semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Core libraries for diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-gtk" = callPackage - ({ mkDerivation, base, cairo, diagrams-cairo, diagrams-lib, gtk - , stdenv - }: - mkDerivation { - pname = "diagrams-gtk"; - version = "1.4"; - sha256 = "b66bde621a09b79b99185af50b2d1ed0b2bd3988c95ed27c7e92e5383917eae9"; - revision = "3"; - editedCabalFile = "0k0i3nm5zpdmrqh8wmd8y5xhw7drd67hifdva5a7dih8w5sab4ra"; - libraryHaskellDepends = [ - base cairo diagrams-cairo diagrams-lib gtk - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Backend for rendering diagrams directly to GTK windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-html5" = callPackage - ({ mkDerivation, base, cmdargs, containers, data-default-class - , diagrams-core, diagrams-lib, lens, mtl, NumInstances - , optparse-applicative, split, statestack, static-canvas, stdenv - , text - }: - mkDerivation { - pname = "diagrams-html5"; - version = "1.4.1"; - sha256 = "e8eed3f8ae1176099c96806281262227618d9e9f40512a430fc9379af44ce96e"; - libraryHaskellDepends = [ - base cmdargs containers data-default-class diagrams-core - diagrams-lib lens mtl NumInstances optparse-applicative split - statestack static-canvas text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "HTML5 canvas backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-lib" = callPackage - ({ mkDerivation, active, adjunctions, array, base, bytestring - , cereal, colour, containers, data-default-class, diagrams-core - , diagrams-solve, directory, distributive, dual-tree, exceptions - , filepath, fingertree, fsnotify, hashable, intervals, JuicyPixels - , lens, linear, monoid-extras, mtl, optparse-applicative, process - , profunctors, semigroups, stdenv, tagged, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.2.3"; - sha256 = "25a7adccbe3175cdb081a3824413ba431e561026c6ddd9a647cd133e4bfcbe9c"; - revision = "3"; - editedCabalFile = "157y2qdsh0aczs81vzlm377mks976mpv6y3aqnchwsnr7apzp8ai"; - libraryHaskellDepends = [ - active adjunctions array base bytestring cereal colour containers - data-default-class diagrams-core diagrams-solve directory - distributive dual-tree exceptions filepath fingertree fsnotify - hashable intervals JuicyPixels lens linear monoid-extras mtl - optparse-applicative process profunctors semigroups tagged text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-postscript" = callPackage - ({ mkDerivation, base, containers, data-default-class - , diagrams-core, diagrams-lib, dlist, hashable, lens, monoid-extras - , mtl, semigroups, split, statestack, stdenv - }: - mkDerivation { - pname = "diagrams-postscript"; - version = "1.4.1"; - sha256 = "a758191d99c30bd663dc0df2dedef13cd735a33c143e77906aa88baceb282c9c"; - revision = "2"; - editedCabalFile = "0s6z3kaj1dm5kifaydnd2nx97g5qbc6jjqy3wn4dwa9rm7w49753"; - libraryHaskellDepends = [ - base containers data-default-class diagrams-core diagrams-lib dlist - hashable lens monoid-extras mtl semigroups split statestack - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Postscript backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity - , hashable, JuicyPixels, lens, mtl, optparse-applicative - , Rasterific, stdenv - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.1.1"; - sha256 = "f72a87b421b1da874757256d9c9603c40fdad1f0a82be17bf1806820188a5365"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels - lens mtl optparse-applicative Rasterific - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Rasterific backend for diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-solve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "diagrams-solve"; - version = "0.1.1"; - sha256 = "a41f5f410b10f162b1e5c07bd4ca3305544870ff1314ae4f5824c83a31644f9d"; - revision = "5"; - editedCabalFile = "1yl8cs05fzqcz49p601am1ij66m9pa70yamhfxgcvya2pf8nimlf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Pure Haskell solver routines used by diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-svg" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, colour - , containers, diagrams-core, diagrams-lib, filepath, hashable - , JuicyPixels, lens, monoid-extras, mtl, optparse-applicative - , semigroups, split, stdenv, svg-builder, text - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.2"; - sha256 = "5455b68d92826a5405d51490976870cc0fa5b8b56aef0a8f56982b5f48efded2"; - revision = "2"; - editedCabalFile = "15sn85xaachw4cj56w61bjcwrbf4qmnkfl8mbgdapxi5k0y4f2qv"; - libraryHaskellDepends = [ - base base64-bytestring bytestring colour containers diagrams-core - diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl - optparse-applicative semigroups split svg-builder text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "SVG backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dimensional" = callPackage - ({ mkDerivation, base, deepseq, exact-pi, ieee754, numtype-dk - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "dimensional"; - version = "1.1"; - sha256 = "3a25889c1c67966a2739a9c1ccd040278c89e10823a1b2463fbf571b74075e16"; - revision = "2"; - editedCabalFile = "0922kd3svn96c1qg2lx3ya0xlrbll51csc18cnma0f8j899r4xgn"; - libraryHaskellDepends = [ - base deepseq exact-pi ieee754 numtype-dk semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/dimensional/"; - description = "Statically checked physical dimensions, using Type Families and Data Kinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "direct-sqlite" = callPackage - ({ mkDerivation, base, bytestring, semigroups, stdenv, text }: - mkDerivation { - pname = "direct-sqlite"; - version = "2.3.23"; - sha256 = "1fdb6f6ea34ac978e72f61a845786e4b4b945014ccc64ddb07ddcafa1254937b"; - libraryHaskellDepends = [ base bytestring semigroups text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/IreneKnapp/direct-sqlite"; - description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "discrimination" = callPackage - ({ mkDerivation, array, base, containers, contravariant, deepseq - , ghc-prim, hashable, primitive, profunctors, promises, semigroups - , stdenv, transformers, transformers-compat, vector, void - }: - mkDerivation { - pname = "discrimination"; - version = "0.3"; - sha256 = "d6d4b285783e66446a8f798b3a440b1020bdc681285b05794d3ec84d96dc4ca3"; - revision = "1"; - editedCabalFile = "1p39vcdmv9k9wxlkh49w1dr1isvn2hvhjjbs95qwljpxca74i23g"; - libraryHaskellDepends = [ - array base containers contravariant deepseq ghc-prim hashable - primitive profunctors promises semigroups transformers - transformers-compat vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/discrimination/"; - description = "Fast generic linear-time sorting, joins and container construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , stdenv, syb, template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.1"; - sha256 = "de4efea05ec685e9b5b087857ea3460a24d4314862e329279b99ca914b2e7ce6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - executableHaskellDepends = [ async base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-static" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , rank1dynamic, stdenv - }: - mkDerivation { - pname = "distributed-static"; - version = "0.3.8"; - sha256 = "954bf65722b662794990c81ba31a7fdbccd9d233af9212896443aa5ab9d4ffc2"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq rank1dynamic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compositional, type-safe, polymorphic static values and closures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.1.1"; - sha256 = "55eb858a98995f4f2b2eec5fcbc44ba1901284e915ef5e18609e253a5a662499"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs#readme"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "distributive"; - version = "0.5.3"; - sha256 = "9173805b9c941bda1f37e5aeb68ae30f57a12df9b17bd2aa86db3b7d5236a678"; - revision = "6"; - editedCabalFile = "06bd38rf31yrvvy989r44pm0id3dsxwcp6nxg7wk6ccj3n2b8rzk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans tagged transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.5"; - sha256 = "98a88aa839b40d4aee8b08880030d282d627b63de311f5414dca6e831a951b43"; - revision = "1"; - editedCabalFile = "1jh8zw1vpx0ld4gmc4l0pqpgbl9frpgbyw9kvsr56bnz0v2rgqpx"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dns" = callPackage - ({ mkDerivation, async, attoparsec, auto-update, base - , base64-bytestring, binary, bytestring, containers, cryptonite - , iproute, mtl, network, psqueues, safe, stdenv, time - }: - mkDerivation { - pname = "dns"; - version = "3.0.4"; - sha256 = "7b3433b536b7d225914d7b8495c7af1927d9554538d7d86c2644ccf9d3fa44a9"; - revision = "1"; - editedCabalFile = "15jafrm919w4p23m7kpmyc1yvzpy88jcccycc00dza69d119zjdr"; - libraryHaskellDepends = [ - async attoparsec auto-update base base64-bytestring binary - bytestring containers cryptonite iproute mtl network psqueues safe - time - ]; - doHaddock = false; - doCheck = false; - testTarget = "spec"; - description = "DNS library in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "docker" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , conduit-combinators, conduit-extra, containers - , data-default-class, directory, exceptions, filemanip, filepath - , http-client, http-conduit, http-types, monad-control, mtl - , network, resourcet, scientific, stdenv, tar, temporary, text - , time, tls, transformers, transformers-base, unliftio-core - , unordered-containers, uuid, vector, x509, x509-store, x509-system - , zlib - }: - mkDerivation { - pname = "docker"; - version = "0.6.0.0"; - sha256 = "4d3a00300abc09c2f9214f03d2d16fb51aa5b2f182aa6c4de69a3017e4b42045"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit conduit-combinators - conduit-extra containers data-default-class directory exceptions - filemanip filepath http-client http-conduit http-types - monad-control mtl network resourcet scientific tar temporary text - time tls transformers transformers-base unliftio-core - unordered-containers uuid vector x509 x509-store x509-system zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/denibertovic/docker-hs"; - description = "An API client for docker written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.1.0.1"; - sha256 = "294ac0b6c0546da15bf5453d6006979aeb6f6b36f0566be75767f5021de00025"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A simple DSL for describing and generating Dockerfile containers in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "docopt" = callPackage - ({ mkDerivation, base, containers, parsec, stdenv, template-haskell - , th-lift - }: - mkDerivation { - pname = "docopt"; - version = "0.7.0.5"; - sha256 = "15790808a4896bbf0748c1c0f3ab63c07aea4621d95b93a39886813f829d05ee"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers parsec template-haskell th-lift - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/docopt/docopt.hs"; - description = "A command-line interface parser that will make you smile"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, parsec, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.2.2.1"; - sha256 = "6b0cfb565fc7fa90d71ac56b83aedecf670678e6f1441278877fbf399e9bccbf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers parsec - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.16.0.1"; - sha256 = "9b5275497330607f66aaf2625b798b2ad566867fed3f52cea9de31a23361d780"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-discover" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, stdenv - }: - mkDerivation { - pname = "doctest-discover"; - version = "0.1.0.9"; - sha256 = "6790bb2df19b692131dca9f910a789884c2d4361a25f812f5bcb8803033799b2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - executableHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/karun012/doctest-discover"; - description = "Easy way to run doctests via cabal"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, doctest, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.2.0.4"; - sha256 = "d986edd163e61911c71dd6611e23d0d872c2d11595736be1b3e4c07b01c57a71"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base doctest ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dom-parser" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, mtl - , scientific, semigroups, stdenv, text, transformers, xml-conduit - , xml-lens - }: - mkDerivation { - pname = "dom-parser"; - version = "3.1.0"; - sha256 = "d7e15cae0b27d708389160517b1616343da1911baf95f2c97e213732a0262ac3"; - libraryHaskellDepends = [ - base case-insensitive containers lens mtl scientific semigroups - text transformers xml-conduit xml-lens - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/dom-parser"; - description = "Simple monadic DOM parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, directory, exceptions - , megaparsec, optparse-applicative, process, stdenv, text - , transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.5.2.5"; - sha256 = "a197bf60643fc4dea5acd71b03b71cb89e8df91d55cc400b2ada5e79b4b6f4e1"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat directory exceptions megaparsec process text - transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "download" = callPackage - ({ mkDerivation, base, bytestring, feed, stdenv, tagsoup, xml }: - mkDerivation { - pname = "download"; - version = "0.3.2.6"; - sha256 = "a06d401a2ca58b6ee494ce462c753939ef0a2d11b4d475ae40848884fb44eef2"; - libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/download"; - description = "High-level file download based on URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drawille" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "drawille"; - version = "0.1.2.0"; - sha256 = "b8188ee87a06c168974c9655188450eb86c331c556decb31cf084efa846237df"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-drawille#readme"; - description = "A port of asciimoo's drawille to haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "drifter" = callPackage - ({ mkDerivation, base, containers, fgl, stdenv, text }: - mkDerivation { - pname = "drifter"; - version = "0.2.3"; - sha256 = "df539d47e47a6064997619079cde28cc0ae039cbda1915cec447380736d92638"; - libraryHaskellDepends = [ base containers fgl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/drifter"; - description = "Simple schema management for arbitrary databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "drifter-postgresql" = callPackage - ({ mkDerivation, base, containers, drifter, mtl, postgresql-simple - , stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "drifter-postgresql"; - version = "0.2.1"; - sha256 = "93320177ec9aab96799623ccc274f5b069500587f002f5f415c24159dd6eed5c"; - libraryHaskellDepends = [ - base containers drifter mtl postgresql-simple time transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/drifter-postgresql"; - description = "PostgreSQL support for the drifter schema migration tool"; - license = stdenv.lib.licenses.mit; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.4.1"; - sha256 = "3322954e87b279a94c1fb43a5d16e4d0022e7d422a2d2b9be0f3c4b4d346e42c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual-tree" = callPackage - ({ mkDerivation, base, monoid-extras, newtype-generics, semigroups - , stdenv - }: - mkDerivation { - pname = "dual-tree"; - version = "0.2.2"; - sha256 = "7412d70cf239da98b5a21df1cbbeab7319fd23d757427d4f5ce71b907dbaa9eb"; - revision = "3"; - editedCabalFile = "00gwdgzy80p9c5r4wafm1fiqnh2hy1xjsbl86h1qkk7xg33g2ssi"; - libraryHaskellDepends = [ - base monoid-extras newtype-generics semigroups - ]; - doHaddock = false; - doCheck = false; - description = "Rose trees with cached and accumulating monoidal annotations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.4.0.0"; - sha256 = "d6f48393ed9ed584eafe2393c848b78288fca1db5c504ed4749f9f0efe82b817"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dynamic-state" = callPackage - ({ mkDerivation, base, binary, bytestring, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.1"; - sha256 = "c4d50bdf03e7b2af05ee2b78fdd5dd5d16e72ef5edf78cada60bf4cdc6a23537"; - libraryHaskellDepends = [ - base binary bytestring hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Optionally serializable dynamic state keyed by type"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easytest" = callPackage - ({ mkDerivation, async, base, call-stack, containers, mtl, random - , stdenv, stm, text, transformers - }: - mkDerivation { - pname = "easytest"; - version = "0.2.1"; - sha256 = "1155c3da78460eae48762e041c033d0f64f7644fa94479be2fa1194e3f57be3d"; - libraryHaskellDepends = [ - async base call-stack containers mtl random stm text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelburget/easytest"; - description = "Simple, expressive testing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "either"; - version = "5.0.1"; - sha256 = "6cb6eb3f60223f5ffedfcd749589e870a81d272e130cafd1d17fb6d3a8939018"; - revision = "2"; - editedCabalFile = "0859h2dc77fq0f14jh11h4i89hrg3iqvzk0yrk78516k6m7n96zc"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-unwrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-unwrap"; - version = "1.1"; - sha256 = "ccabd6f87118abc8dcba481b316c76b8195ac9e8a8f3ddb478de5eb64e2d2e3c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gcross/either-unwrap"; - description = "Functions for probing and unwrapping values inside of Either"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, network, snap-core, snap-server, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "ekg"; - version = "0.4.0.15"; - sha256 = "482ae3be495cfe4f03332ad1c79ce8b5ad4f9c8eec824980c664808ae32c6dcc"; - revision = "6"; - editedCabalFile = "012y235n8k7hhx651l01xf88vgr2wskapbsn83w18ls1h1njqnzk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath network snap-core - snap-server text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-core" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-core"; - version = "0.1.1.6"; - sha256 = "66a8dd79ad27659052168f08dd41fabb8593e364de00fb857ef5cc943acd5742"; - libraryHaskellDepends = [ - base containers ghc-prim text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-core"; - description = "Tracking of system metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-json" = callPackage - ({ mkDerivation, aeson, base, ekg-core, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-json"; - version = "0.1.0.6"; - sha256 = "1e6a80aa0a28bbf41c9c6364cbb5731160d14fa54145f27a82d0b3467a04dd47"; - revision = "4"; - editedCabalFile = "16sn4nbqm0rxkf0swi6r2jn6z9x92qmcg9xlx258d98kqb5fkwjg"; - libraryHaskellDepends = [ - aeson base ekg-core text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-json"; - description = "JSON encoding of ekg metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-statsd" = callPackage - ({ mkDerivation, base, bytestring, ekg-core, network, stdenv, text - , time, unordered-containers - }: - mkDerivation { - pname = "ekg-statsd"; - version = "0.2.4.0"; - sha256 = "5e74bf63a1cd347c939d4eb7beb9181556b7bd033a60e5f6f4df0505e98a7adb"; - revision = "3"; - editedCabalFile = "0va7fliya7g546f5qbc42bl7dyh74al38sspd2smjyl7a9d5mmlk"; - libraryHaskellDepends = [ - base bytestring ekg-core network text time unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-statsd"; - description = "Push metrics to statsd"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-wai" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, http-types, network, stdenv, text, time, transformers - , unordered-containers, wai, wai-app-static, warp - }: - mkDerivation { - pname = "ekg-wai"; - version = "0.1.0.3"; - sha256 = "bfd35917b663da0c1354339dd30837eee6ddf0d42cf57442fd916a42c977a2e9"; - revision = "2"; - editedCabalFile = "17kca2wzlcv8nxyq096fv57jfklhz4ibnvf5nqqdszczb03j3dnn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath http-types network - text time transformers unordered-containers wai wai-app-static warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/ekg-wai"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elf" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "elf"; - version = "0.29"; - sha256 = "426509f12279bdc5a0228f74edef86997dbb47fddc19d83e9815dd301d4a8fac"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/elf"; - description = "An Elf parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.4.1"; - sha256 = "3becae7b9634055dd02c3908d800dd12b3335b524299e033215a38cfe51b1d00"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-export" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , formatting, mtl, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "elm-export"; - version = "0.6.0.1"; - sha256 = "bf9862015918c72b54b421efcd9d858969dcd94ef0a3d0cb92d9bc0c4363f9d5"; - libraryHaskellDepends = [ - base bytestring containers directory formatting mtl text time - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/krisajenkins/elm-export"; - description = "A library to generate Elm types from Haskell source"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.9"; - sha256 = "aeac6eea61192683bbde6bb8bdcf2150a03f79fa2bf4a1deb5e838a0011a4e8b"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.3"; - sha256 = "af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.4"; - sha256 = "2e3f6a65c8fde3551a8fb03b0a519b718762fc3278b1a5750f96d399e821eeb9"; - revision = "1"; - editedCabalFile = "0h9wvpq4hw5ipn15ni0qdsrssjil0m59wm4l5hl607l3w2lif864"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.5.2.2"; - sha256 = "792fdbdf387de02580accb3ad49a6f5191b24eb2283ef141355eacfd328cce74"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalt/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.4.1"; - sha256 = "5f9d115f7f2b2d4dba290f9d62cd7e9f52f6f6f8235ac5ed9bbf6e982a51d054"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "1.5.1.0"; - sha256 = "2dcacbb9901603f44e8e933849b532ba7b56ee2d7feff3980f9c7b556c4041e4"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "equivalence" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, STMonadTrans - , transformers, transformers-compat - }: - mkDerivation { - pname = "equivalence"; - version = "0.3.3"; - sha256 = "ee8dd8ce12298e6252f331e3844f684cfe7f32b70e529fe7b8dd63153eb2500a"; - libraryHaskellDepends = [ - base containers mtl STMonadTrans transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pa-ba/equivalence"; - description = "Maintaining an equivalence relation implemented as union-find using STT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "error-util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "error-util"; - version = "0.0.1.2"; - sha256 = "df1916a2de007697b7b1a9f83eacab4588d8dc472fd0f21395dce83b085e4e06"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/error-util"; - description = "Set of utils and operators for error handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.2"; - sha256 = "406e65338046d6c1d6994072b529272fab4ad7abbdb2c3b63576788fd8dd9618"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.4"; - sha256 = "42dca507046c32e00459bf6167d02bb508b72bb47669470a0eb3fba20b73a019"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, rio, stdenv, template-haskell, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "61b4d5f29a1fc66df082623e5fc9269bdbb49d28ebf4cbb740c71319257a27c8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base rio template-haskell text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, transformers - }: - mkDerivation { - pname = "event"; - version = "0.1.4"; - sha256 = "6791d1402b4d77a11407ab592f65cb61ee60c5a80b99751c5d775afcc9d1824a"; - libraryHaskellDepends = [ - base containers semigroups transformers - ]; - doHaddock = false; - doCheck = false; - description = "Monoidal, monadic and first-class events"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-memory" = callPackage - ({ mkDerivation, base, containers, eventful-core, mtl, safe, stdenv - , stm - }: - mkDerivation { - pname = "eventful-memory"; - version = "0.2.0"; - sha256 = "6a7c3e0a12e3c4e572927929020ad92075933e5d3c66ea61ff615a3ac217adb9"; - libraryHaskellDepends = [ - base containers eventful-core mtl safe stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "In-memory implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sql-common" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core, mtl - , persistent, persistent-template, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sql-common"; - version = "0.2.0"; - sha256 = "a46ea18cbbb5bd04b3a6846273e8161b7e4208660d0abf5a401192b07636aebc"; - revision = "1"; - editedCabalFile = "1w2qq0p4304zsjkwmqx79azpq5v0ajz5grg740vwkca8qvdvdq91"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core mtl persistent - persistent-template text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common library for SQL event stores"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core - , eventful-sql-common, mtl, persistent, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sqlite"; - version = "0.2.0"; - sha256 = "c0bbea0ebd1f0a4891a74b190f499caf85ac026f49b9401fc76f181b0041dfef"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core eventful-sql-common mtl - persistent text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "SQLite implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventstore" = callPackage - ({ mkDerivation, aeson, array, base, bifunctors, bytestring, cereal - , clock, connection, containers, dns, dotnet-timespan, ekg-core - , exceptions, fast-logger, hashable, http-client, interpolate - , lifted-async, lifted-base, machines, monad-control, monad-logger - , mono-traversable, mtl, protobuf, random, safe-exceptions - , semigroups, stdenv, stm, stm-chans, text, time, transformers-base - , unordered-containers, uuid - }: - mkDerivation { - pname = "eventstore"; - version = "1.1.6"; - sha256 = "dca4fd1fae1deb7af5b13ef3f640c9cd0915986e131671f2da7da9cce99c6d01"; - revision = "1"; - editedCabalFile = "1y1a7brw220bg4mfc80qhkcyzlm38qvs6pkr7p8xyk104b8k5qgx"; - libraryHaskellDepends = [ - aeson array base bifunctors bytestring cereal clock connection - containers dns dotnet-timespan ekg-core exceptions fast-logger - hashable http-client interpolate lifted-async lifted-base machines - monad-control monad-logger mono-traversable mtl protobuf random - safe-exceptions semigroups stm stm-chans text time - transformers-base unordered-containers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/YoEight/eventstore-hs"; - description = "EventStore TCP Client"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" "x86_64-linux" ]; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.8"; - sha256 = "32a822b109ab6e9f62fe23d76bd5af593c20ba0e589005d3985ccda00dd4475e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.4.1.4"; - sha256 = "7bf496b46e831936942ae0e6035b48f262d129a2e0b92f8df1e7bd5f2c076197"; - libraryHaskellDepends = [ base numtype-dk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-hierarchy" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "exception-hierarchy"; - version = "0.1.0.1"; - sha256 = "a9424dc79f08bc98bf49353550101495c9a72ad67ba7c302388f64eed03760fe"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "yet"; - description = "Exception type hierarchy with TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.7"; - sha256 = "925b61eb3d19148a521e79f8b4c8ac097f6e0dea6a09cc2f533279f3abf1f2ef"; - revision = "1"; - editedCabalFile = "0sahi93f75acvmqagkjc1lcwx31crja6z9hyww9abj85x45pqa6f"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptional" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "exceptional"; - version = "0.3.0.0"; - sha256 = "da866ed28ea14d245cc065271f4ddd6da0a91b83e8d83daddcd1ef0623e99f06"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/"; - description = "Essentially the Maybe type with error messages"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.0"; - sha256 = "1edd912e5ea5cbda37941b06738597d35214dc247d332b1bfffc82adadfa49d7"; - revision = "2"; - editedCabalFile = "0aiihbjfrlmxzw9q8idvr6mihhs7kbx9s3w1vj8x3pz27p0ncq7g"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-hash" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cryptohash, directory - , executable-path, file-embed, filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "executable-hash"; - version = "0.2.0.4"; - sha256 = "34eaf5662d90d3b7841f66b322ac5bc54900b0e3cb06792852b08b3c05a42ba4"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base bytestring Cabal cryptohash directory file-embed filepath - template-haskell - ]; - libraryHaskellDepends = [ - base bytestring cryptohash directory executable-path file-embed - template-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/executable-hash"; - description = "Provides the SHA1 hash of the program executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exinst" = callPackage - ({ mkDerivation, aeson, base, binary, bytes, cereal, constraints - , deepseq, hashable, profunctors, QuickCheck, singletons, stdenv - }: - mkDerivation { - pname = "exinst"; - version = "0.6"; - sha256 = "e906a149bfe195c16c25a5ab9ec2116e2577e5a10de134c17dff2be2c17c925e"; - configureFlags = [ "-f-serialise" ]; - libraryHaskellDepends = [ - aeson base binary bytes cereal constraints deepseq hashable - profunctors QuickCheck singletons - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/exinst"; - description = "Dependent pairs and their instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exomizer" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "exomizer"; - version = "1.0.0"; - sha256 = "94c24d436d12666d16cb7171c83cedec449b992dc3aeaaa6decdc0faf8e2cfd2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/exomizer#readme"; - description = "Compression and decompression in the exomizer format"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.1.6.0"; - sha256 = "e63ad90fcd292a9a31bd42b94408930c7cdf06700c9879453e61423a89a75be3"; - revision = "1"; - editedCabalFile = "1zbsjlj6wavz9ysfzjqb4ng7688crlfvsbyj4li84khc1jp71xj3"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.9.2"; - sha256 = "60f6029777f80ec958e28cef19a15723242987a01f09f6bfef252f24207649f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible" = callPackage - ({ mkDerivation, aeson, base, bytestring, cassava, comonad - , constraints, deepseq, ghc-prim, hashable, monad-skeleton, mtl - , prettyprinter, primitive, profunctors, QuickCheck, semigroups - , StateVar, stdenv, tagged, template-haskell, text, th-lift - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "extensible"; - version = "0.4.9"; - sha256 = "b752ea6f45ff57e2994e12af911c92977b54246756c5181e376e09fd28f93e86"; - libraryHaskellDepends = [ - aeson base bytestring cassava comonad constraints deepseq ghc-prim - hashable monad-skeleton mtl prettyprinter primitive profunctors - QuickCheck semigroups StateVar tagged template-haskell text th-lift - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/extensible"; - description = "Extensible, efficient, optics-friendly data types and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.3.3"; - sha256 = "22fff22a2c5b36a6545b27495c0eba63e8e3f72baccb3f9d687967c6532381d5"; - libraryHaskellDepends = [ - base leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "facts" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "facts"; - version = "0.0.1.0"; - sha256 = "dde59212abc383920c5ac5c5a0b5253f4a309d14ebbb21b45310d5b78d922e8a"; - revision = "1"; - editedCabalFile = "03v6p3vlilz6vk5xlvw3r31cqicx3m1xjii9shcqpacxvlh2zzlp"; - libraryHaskellDepends = [ base exceptions mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/facts"; - description = "Refined types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "2.4.11"; - sha256 = "bbe5deab58f435754dbe938cf0ddf26fc21f317c35fb3431d4bdb96809dea2a9"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fay" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , Cabal, containers, data-default, data-lens-light, directory - , filepath, ghc-paths, haskell-src-exts, language-ecmascript, mtl - , mtl-compat, optparse-applicative, process, random, safe - , shakespeare, sourcemap, split, spoon, stdenv, syb, tasty - , tasty-hunit, tasty-th, text, time, transformers - , transformers-compat, traverse-with-class, uniplate - , unordered-containers, utf8-string, vector - }: - mkDerivation { - pname = "fay"; - version = "0.24.0.1"; - sha256 = "a26ef27237670a6dccbc566a649fb9e137dc736a61e65c05814b381fb86fe817"; - configureFlags = [ "-ftest" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base base-compat bytestring containers data-default - data-lens-light directory filepath ghc-paths haskell-src-exts - language-ecmascript mtl mtl-compat process safe shakespeare - sourcemap split spoon syb text time transformers - transformers-compat traverse-with-class uniplate - unordered-containers utf8-string vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring containers directory filepath - haskell-src-exts mtl optparse-applicative random split tasty - tasty-hunit tasty-th text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/faylang/fay/wiki"; - description = "A compiler for Fay, a Haskell subset that compiles to JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fay-base" = callPackage - ({ mkDerivation, base, fay, stdenv }: - mkDerivation { - pname = "fay-base"; - version = "0.21.1.0"; - sha256 = "5f94e3657276c5d15fcec039e8fa28f4f0d923aab17069518f6a7ca208c029c4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base fay ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/faylang/fay/"; - description = "The base package for Fay"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fay-dom" = callPackage - ({ mkDerivation, fay-base, stdenv }: - mkDerivation { - pname = "fay-dom"; - version = "0.5.0.1"; - sha256 = "e0f2e4dc11a13c4a9c43d707a3cf24bc1badb585540d24b29e8a6bc6ace1a6fe"; - revision = "1"; - editedCabalFile = "1lhmkf2n7prv6w51bl3szz4g9cn2dkhb873m7f568nnwysqibv8b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ fay-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/faylang/fay-dom"; - description = "DOM FFI wrapper library for Fay"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , base64-bytestring, bytestring, cereal, conduit, conduit-extra - , crypto-api, cryptohash, cryptohash-cryptoapi, data-default - , http-client, http-conduit, http-types, monad-logger, old-locale - , resourcet, stdenv, text, time, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "1.2.1"; - sha256 = "a9d670a763e2ccf3e457e6b310769d5d8977cb1c00a78c8825861999da055d15"; - libraryHaskellDepends = [ - aeson attoparsec base base16-bytestring base64-bytestring - bytestring cereal conduit conduit-extra crypto-api cryptohash - cryptohash-cryptoapi data-default http-client http-conduit - http-types monad-logger old-locale resourcet text time transformers - transformers-base unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fclabels" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "fclabels"; - version = "2.0.3.3"; - sha256 = "9a9472a46dc23b5acc0545d345ecd708f7b003f72ab212e2d12125b902b9c2e0"; - revision = "4"; - editedCabalFile = "09pn1q4gjlhw956asmhzva1rhrafmn69xmd1sc80fh3c8vjd3icz"; - libraryHaskellDepends = [ base mtl template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sebastiaanvisser/fclabels"; - description = "First class accessor labels implemented as lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-haskell-tools" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, time - , unix - }: - mkDerivation { - pname = "fedora-haskell-tools"; - version = "0.5.1"; - sha256 = "b9a9119aace941ff5860c02462bf340c6f3cce29f7bdcb42af98dedfa9888394"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base directory filepath process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fedora-haskell/fedora-haskell-tools"; - description = "Building and managing tools for Fedora Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.0.1.0"; - sha256 = "87bd055b13c43f54e997f716a33d647c6bc1cdb78337c840d144c0b5fdccd31c"; - revision = "1"; - editedCabalFile = "10xjd3syr70g3blnjy7xvd6s21y68vxsi69f6bmizpsylbfb0245"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.6.0.0"; - sha256 = "94722e1eb3dca66069e26a2d4b072c558bc896816ee016fc99521f3e16b9ccc4"; - revision = "1"; - editedCabalFile = "17r5p1c6srgyzpdkqkjcl9k3ax9c82lvps1kqjhxpdzypsnzns70"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11"; - sha256 = "eea5d00973808e440f346972b7477c8d8c2194a7036cc532eafeffc5189fcd50"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-modules" = callPackage - ({ mkDerivation, async, base, directory, filepath, haskell-src-exts - , MissingH, regex-compat, regex-pcre, stdenv - }: - mkDerivation { - pname = "file-modules"; - version = "0.1.2.4"; - sha256 = "ffea2dbd51f77ed76f8559d8519674a1210611a35e2dbea72dfb41d7d5f0f235"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - executableHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/stack-run-auto"; - description = "Takes a Haskell source-code file and outputs its modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.4.1"; - sha256 = "c502a8b43cf08694c8d2657dc282306d811cdd91f284614a6a9945267c93cb9d"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.2"; - sha256 = "0ff1dcb13ec619f72496035e2a1298ef9dc6a814ba304d882cd9b145eae3203d"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filter-logger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base - , bytestring, data-default, fast-logger, http-types, scotty - , semigroups, stdenv, time, wai, wai-extra, wai-logger - }: - mkDerivation { - pname = "filter-logger"; - version = "0.6.0.0"; - sha256 = "7884124056950a7f7ff393ebb7d1622695f9b66f898c60aeb8bc991c73642f21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring data-default - fast-logger http-types semigroups time wai wai-extra wai-logger - ]; - executableHaskellDepends = [ aeson base bytestring scotty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/filter-logger#readme"; - description = "Filterable request logging wai middleware. Change how data is logged and when."; - license = stdenv.lib.licenses.mit; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.1.0"; - sha256 = "d6a53889a7d114a7ea411026b994c9f73ebfeffe68ea338ce2abf9dc977e363c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "fin"; - version = "0.0.1"; - sha256 = "34d28a951f2899f1d27bfb75d53818204d6d7e5aeaaef1a326c50ae915361a57"; - revision = "1"; - editedCabalFile = "056d22f1j1xv5ka2qr7a3z5ad5w1im76qdf77v6dqdi4vaz52vd1"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "find-clumpiness" = callPackage - ({ mkDerivation, aeson, base, BiobaseNewick, bytestring, clumpiness - , containers, hierarchical-clustering, listsafe, mtl - , optparse-applicative, stdenv, text, text-show, tree-fun - , unordered-containers, vector - }: - mkDerivation { - pname = "find-clumpiness"; - version = "0.2.3.1"; - sha256 = "089e55641eedd12ab16ae5e81cbd2c6c0375801c01fc17fb2ce23354a0ec2c2a"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GregorySchwartz/find-clumpiness#readme"; - description = "Find the clumpiness of labels in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.2"; - sha256 = "95a948341570bad5a9b2468c388c0eb2c20c57e10dd8fbfc994c7b8764b36a7f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.4.2"; - sha256 = "d207a46c911b69ecc1f7c50d9d65ea1aca6c6efacec6342bc3294ed1bc4bd747"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "first-class-patterns" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.4"; - sha256 = "3bf42829097277a89043021d02b82bde24950de9c30d19b33c0ffa5e1f2482b5"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/first-class-patterns"; - description = "First class patterns and pattern matching, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.2.1.1"; - sha256 = "24a9e1e251998c9d06037bb771d9eab2980a91132de59a19d0166a1c51e715e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, tfp, utility-ht }: - mkDerivation { - pname = "fixed-length"; - version = "0.2"; - sha256 = "3171f2d443171a8e92733b3935805c7d5b54eae1f39f9fd729a766f887a6389b"; - libraryHaskellDepends = [ base non-empty tfp utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.1.0.0"; - sha256 = "1ed0bef94b0fead859ad2aea0b73bf1bd3686a6c1faafc75e321fbd9c3ae94c5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , directory, exceptions, filepath, FLAC, mtl, stdenv, text - , transformers, vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.1.2"; - sha256 = "5692b3dfc561cbeed25b1cf9280705f58eadd8c400aa2e6a725fd5562042ac29"; - revision = "5"; - editedCabalFile = "0rwwq8qrxd497rd5m0kidz4v69frj72ds7a6zrdqigj5f5471rhd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class directory exceptions - filepath mtl text transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.1"; - sha256 = "3c1cf80c48521370ce6351d4b544c14891442bfe47c65e5bf436fe58f6fec1ce"; - revision = "1"; - editedCabalFile = "02vdh61nzig0yrv6ja6fjlgfcznj5k4iqh3i5f9g5p078ycqb17w"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flat-mcmc" = callPackage - ({ mkDerivation, base, formatting, mcmc-types, monad-par - , monad-par-extras, mwc-probability, pipes, primitive, stdenv, text - , transformers, vector - }: - mkDerivation { - pname = "flat-mcmc"; - version = "1.5.0"; - sha256 = "87cea9deac6e2d32d9984741ba222ccb2fb0d5f8c58e843684476bfe7632f1fd"; - revision = "1"; - editedCabalFile = "1pjkyvs4c6yx6jva08zw2b1qfhhv9q71sy806f5lddjsknnym2fn"; - libraryHaskellDepends = [ - base formatting mcmc-types monad-par monad-par-extras - mwc-probability pipes primitive text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/flat-mcmc"; - description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "flay" = callPackage - ({ mkDerivation, base, constraints, stdenv, transformers }: - mkDerivation { - pname = "flay"; - version = "0.4"; - sha256 = "01ff3e642eab48807e4369fd8c1336e22d7abdcf4374cd1322b1fe259c9413ef"; - libraryHaskellDepends = [ base constraints transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/flay"; - description = "Work generically on your datatype without knowing its shape nor its contents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flexible-defaults" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-extras, transformers - }: - mkDerivation { - pname = "flexible-defaults"; - version = "0.0.2"; - sha256 = "f3d5d41a6dd69dbb585dd10fe6b7fe9023bc4308bac1320a55b62758acc18a64"; - revision = "1"; - editedCabalFile = "1bmqmxv5nijb837xwxnb46w3bglmakfj1qs3xwkcnfh5ab0zazwr"; - libraryHaskellDepends = [ - base containers template-haskell th-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/flexible-defaults"; - description = "Generate default function implementations for complex type classes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flow" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "flow"; - version = "1.0.17"; - sha256 = "86ec19d8bec13afc58e21d53f4225c3fcafda2ff902b05f64062919edbe84d19"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/flow#readme"; - description = "Write more understandable Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.2"; - sha256 = "8fc4b55d04e7f216740a01acd2f38293e3bd9409a9495e6042a162580c420609"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "focus"; - version = "0.1.5.2"; - sha256 = "c2988d48c2bc6861a00be4e02161df96abcbf6c80e801676cee39b7628715cb7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "focuslist" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers, lens - , mono-traversable, QuickCheck, stdenv - }: - mkDerivation { - pname = "focuslist"; - version = "0.1.0.1"; - sha256 = "fdee9ae7a68f139f9b4b88df27e4f373815293da93a1df91e5c2f3dc558f05e3"; - revision = "2"; - editedCabalFile = "12x38kxhcjdqfwl8y8zdrwcpv6jdm7jaqc48ww3hg6fpv8rvvd49"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers lens mono-traversable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/focuslist"; - description = "Lists with a focused element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.8"; - sha256 = "fc6b3ef028517f642886c2ffa270726cc38c79be75d1233e28f760816d08fbc8"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.3"; - sha256 = "97c80c4ca7f84260539829ee7ebf0eaa6b127005158eb910411ae0b17157ef67"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldable1" = callPackage - ({ mkDerivation, base, stdenv, transformers, util }: - mkDerivation { - pname = "foldable1"; - version = "0.1.0.0"; - sha256 = "85d684e5caab9e0c87dd04d016432f4a9effb5c8c62354aedcf85c96c1e3e90a"; - libraryHaskellDepends = [ base transformers util ]; - doHaddock = false; - doCheck = false; - description = "Foldable types with at least 1 element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.5"; - sha256 = "0ba0bd8a8b4273feef61b66b6e251e70f70537c113f8b7f0e3aeab77d8af12a7"; - revision = "4"; - editedCabalFile = "12qrmlazijyz5dn73p50klyny7x4vx8yw2isfmjikmrr12nhc5g0"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroupoids semigroups text - transformers unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.4"; - sha256 = "5c6e6f7c9c852cbe3d5372f93ed99f82400d15ae99ecf8e9e005481647734572"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "force-layout" = callPackage - ({ mkDerivation, base, containers, data-default-class, lens, linear - , stdenv - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "f7729855b1b14e0b255325faaca9f4834004e02bd21def6a865d2c55c734259d"; - revision = "5"; - editedCabalFile = "14d494pa7hcxmq9cvy039y5x7da6j4p5jp8kw0kmrlb9q8h6rh18"; - libraryHaskellDepends = [ - base containers data-default-class lens linear - ]; - doHaddock = false; - doCheck = false; - description = "Simple force-directed layout"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forkable-monad" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "571e33effa5baaef4e2dc910010e2b02c01d8b8e06f051e96906f288f71ad462"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/ForkableMonad#readme"; - description = "An implementation of forkIO for monad stacks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.0"; - sha256 = "b7dc7270e0a294cdaf40e99f067928411d82ed50af4dad51a6088830d539c325"; - revision = "2"; - editedCabalFile = "1yc9gv1rjbl4lsxscp5idfpn7jp27c38j6gm9v7isxgyaih0j4v4"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.6"; - sha256 = "6a28db7625f912dfa0075d4376b6f1b7f84d139defda53c90e440dcf74aad31a"; - revision = "1"; - editedCabalFile = "0vw77ji2d7rhwhq2g7dmln9ifsghgzdlnxg4wjipb128f6gwclh7"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.21"; - sha256 = "4ed3a0e7f8052b52d27c9806eff3bea51acc2587f74f81db4b8e03e938f283e0"; - revision = "1"; - editedCabalFile = "07mzfc75wl7kn2lr2gmbx4i0a5gxyi9b066rz0x2pqxqav3fwqs0"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, bifunctors, comonad, containers - , distributive, exceptions, mtl, profunctors, semigroupoids - , semigroups, stdenv, template-haskell, transformers - , transformers-base, transformers-compat - }: - mkDerivation { - pname = "free"; - version = "5.0.2"; - sha256 = "ef05eb1c8e69742a4f962c573ef362e44ad48772940f1ef69fe39f0f77b2a396"; - revision = "1"; - editedCabalFile = "036js4y08jpqy5g067wpvzmq2lljnx51xclm5jhrvaq2s9fhhlvd"; - libraryHaskellDepends = [ - base bifunctors comonad containers distributive exceptions mtl - profunctors semigroupoids semigroups template-haskell transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.1.0.0"; - sha256 = "2198cdb1f6206b192bed553757cfc145485ee86be7261878bf44bc0e84b1bb01"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friday" = callPackage - ({ mkDerivation, base, containers, convertible, deepseq, primitive - , ratio-int, stdenv, transformers, vector - }: - mkDerivation { - pname = "friday"; - version = "0.2.3.1"; - sha256 = "0827492c1a6116baa5c4866539a4cfa0f6d81bf31f6573616bf5ac4484199613"; - revision = "1"; - editedCabalFile = "0n1f4plvrmad6gm8dbsi6g5ghahdwwy2fhgippmnp1ixb65x7d58"; - libraryHaskellDepends = [ - base containers convertible deepseq primitive ratio-int - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RaphaelJ/friday"; - description = "A functional image processing library for Haskell"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "friday-juicypixels" = callPackage - ({ mkDerivation, base, friday, JuicyPixels, stdenv, vector }: - mkDerivation { - pname = "friday-juicypixels"; - version = "0.1.2.4"; - sha256 = "6d59828fe700ddd0777d180551c5f62444c18fd0b27ae3a675ad185efa90ae3f"; - libraryHaskellDepends = [ base friday JuicyPixels vector ]; - doHaddock = false; - doCheck = false; - homepage = "github.com/TomMD/friday-juicypixels"; - description = "Converts between the Friday and JuicyPixels image types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frisby" = callPackage - ({ mkDerivation, array, base, containers, mtl, semigroups, stdenv - }: - mkDerivation { - pname = "frisby"; - version = "0.2.2"; - sha256 = "c1b318dbf54d56e1012955cc47a1633af5fd77facc128c725353718c0663b6d5"; - libraryHaskellDepends = [ array base containers mtl semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://repetae.net/computer/frisby/"; - description = "Linear time composable parser for PEG grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "from-sum"; - version = "0.2.1.0"; - sha256 = "a1ed8a433b98df8a70be2f9199abae3e5ed7fb4c2f2b3fb1268b6b588f326667"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Canonical fromMaybeM and fromEitherM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, shelly, stdenv, text, time, unix, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.3.0.1"; - sha256 = "ded2165f72a2b4971f941cb83ef7f58b200e3e04159be78da55ba6c5d35f6da5"; - revision = "1"; - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify shelly - text time unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "03990f311f7d66a6996b88722602b6058fbae7ad33e74073875ef0466ef001ce"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, base-unicode-symbols, data-default, lens - , stdenv, text, text-metrics, unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.1.0.6"; - sha256 = "731ae813678de30bbccac03760f7bb0baed5cc8d91ed21e871b1f8d7aafe61a3"; - libraryHaskellDepends = [ - base base-unicode-symbols data-default lens text text-metrics - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.4"; - sha256 = "297fa02ceeb8be23c111ecbd15bfb2203dfa22a757fce51f8ed2829d35630add"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gc" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "gc"; - version = "0.0.2"; - sha256 = "39cc5ac887319aeb184ee0d6ddb5b5a34e3f3d38c3fdf3ecc60bdf31a53dc30c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/gc/"; - description = "Poor Richard's Memory Manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; 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, stdenv - , text, time, unordered-containers, uuid, vector, websockets, wreq - , wuss - }: - mkDerivation { - pname = "gdax"; - version = "0.6.0.0"; - sha256 = "deb8efce5e4deb5b45c0d66d23eac65224c3d560d7ac67da6d3616cd5a916721"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/gdax"; - description = "API Wrapping for Coinbase's GDAX exchange"; - license = stdenv.lib.licenses.mit; - }) {}; - "gdp" = callPackage - ({ mkDerivation, base, lawful, stdenv }: - mkDerivation { - pname = "gdp"; - version = "0.0.0.2"; - sha256 = "214fff5ae2e4952cb8f15e7209be125e760b6d97fac4cd99b2e0592f790a1abf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base lawful ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/githubuser/gdp#readme"; - description = "Reason about invariants and preconditions with ghosts of departed proofs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, generic-deriving, mtl - , stdenv, tagged, text, unordered-containers, vector - }: - mkDerivation { - pname = "generic-aeson"; - version = "0.2.0.9"; - sha256 = "34c13f91ffa72a1f6d7f43b84fdd19b20db547045eb6164a4119f9a95dcd84cb"; - revision = "4"; - editedCabalFile = "0m2m2wfv9nhq8m7xl1nrmj4wy3yip3s31b4448za58ryrwkdgjzd"; - libraryHaskellDepends = [ - aeson attoparsec base generic-deriving mtl tagged text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Derivation of Aeson instances using GHC generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.13.1"; - sha256 = "e9b53a40eae58e18ee281858a1ba400f14128d5779858272b01c10d64aa09abe"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged }: - mkDerivation { - pname = "generic-lens"; - version = "1.0.0.2"; - sha256 = "5e6f8a188e84b0130c55d469d6bb379ac323fb59008fd84eaf73360bb8934168"; - libraryHaskellDepends = [ base profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.2.0.0"; - sha256 = "9b1e00d2f06b582695a34cfdb2d8b62b32f64152c6ed43f5c2d776e6e9aa148c"; - revision = "1"; - editedCabalFile = "1d0hx41r7yq2a86ydnfh2fv540ah8cz05l071s2z4wxcjw0ymyn4"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-xmlpickler" = callPackage - ({ mkDerivation, base, generic-deriving, hxt, stdenv, text }: - mkDerivation { - pname = "generic-xmlpickler"; - version = "0.1.0.5"; - sha256 = "d51760f5650051eebe561f2b18670657e8398014fa2a623c0e0169bfeca336af"; - revision = "8"; - editedCabalFile = "1hpcglml4b5yv192syxazminr5v7qjrgqwb2wk0cf7f0sjpm5d0q"; - libraryHaskellDepends = [ base generic-deriving hxt text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/generic-xmlpickler"; - description = "Generic generation of HXT XmlPickler instances using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-eot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generics-eot"; - version = "0.4"; - sha256 = "5abedc86df738c8ff7a8c6ca9ee97605406a1b6fadd4924fa93f7aacd2fece9b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://generics-eot.readthedocs.io/"; - description = "A library for generic programming that aims to be easy to understand"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.3.2.0"; - sha256 = "3060ecd09ccbd27ecf825bb89af0af9cfcadd16f747ce5964c501682a2301b99"; - revision = "3"; - editedCabalFile = "0lw5n8npdrdd1h7j000flaig4z30b8pig4q52sj34zhwccjkdzq2"; - libraryHaskellDepends = [ base deepseq ghc-prim template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.1.2.1"; - sha256 = "4e49d4cc580d45e25e0abdeee12b1191ae75937af1c7ca03333979584a8a525c"; - revision = "6"; - editedCabalFile = "0j4j3kk2nsl5n5gp0vrzqdc5y9ly31b4nvhq0bpgcpzibvik7ssw"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "geniplate-mirror" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "geniplate-mirror"; - version = "0.7.6"; - sha256 = "4b6b82d0348e79ae4a5e1deac029441251ae87ec15a7667cf0a1de5ff80215f8"; - revision = "2"; - editedCabalFile = "03fg4vfm1wgq4mylggawdx0bfvbbjmdn700sqx7v3hk1bx0kjfzh"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/danr/geniplate"; - description = "Use Template Haskell to generate Uniplate-like functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.5.1.0"; - sha256 = "402ad5193fefdec24c7a0c62386f764a356bfc93e5e36672fc54a824d1c0d39f"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.2.0.2"; - sha256 = "d1244fea0a0a7cad4f783a72b9ff98c606131445a3f2fe9bced5194ff8a2e7b0"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.2.0.2"; - sha256 = "43b9051401d59714766d96d48435ee01016454e524af54be51427dcf804cc1e3"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.5.1.0"; - sha256 = "03b5a99546232a9a9747e18b401902ca50e96f4860d2a138eb4214c72e300325"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, transformers, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.6.2.0"; - sha256 = "3b94c1ee78b61b6bf1d2aa0b8826eb567712a2d6f5f43ddbca9639bd7774af15"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - transformers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.3.0.0"; - sha256 = "b0e772bf802a4a70c7e52947d8fe301622cc7ffccf465f780042c8671075122f"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.2"; - sha256 = "210868b5ce59fc20c406c452970003f332298bcdf900ed736975e0592a5824c0"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.2"; - sha256 = "e150f686eb9c161b4386d1515bd0dd12724b8d5593dbe2ebda2eca9c667a249b"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.2"; - sha256 = "3c1e48c842ced9e86c3978c61062f6afcfada9d08786e0a7368c745fc92c9f68"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.2"; - sha256 = "00fc6d2f4d54cda700ad4af04efea62db002cab4fbb3ca8da4d20b1a03a340ba"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.2.1.1"; - sha256 = "2ba882f02c8f696d7253ba7472d04bb37548fd19dd5cbb926a2d367f452c5c32"; - libraryHaskellDepends = [ - base genvalidity hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.1.0"; - sha256 = "af11d48c53455eb250e68c6cb4f6e8159ddc16fb635879fc2973d57d8bd5903d"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.5.1.0"; - sha256 = "ef3d7ebe85cf5ce10675f350dd80dfdb3c3f700e109170d0c4929afdbfe8ee48"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.1.1"; - sha256 = "c555c206edddbd70355b295ccf9ff053463c137735c4aebcc340091f6d6b7874"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.2.0.3"; - sha256 = "ada97e40d4a68fcfa7fe90b431ba9684bdc34fa7c7c566dc06f528b375bc0965"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.2"; - sha256 = "d1354bdfc0a75a1f228cfed22cd0edb0cc13a925e4b2514a634d56eb5b53f412"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.2.0.3"; - sha256 = "b3c42019fea54c0da0b0947b01cad510679b3b6c2dc55a43326806f9a02e3c98"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geodetics" = callPackage - ({ mkDerivation, array, base, dimensional, stdenv }: - mkDerivation { - pname = "geodetics"; - version = "0.0.6"; - sha256 = "e21dbbd01fac330a542fba24d6dedc6c3b46a4bf43e7fa6181417e6daab9e542"; - revision = "1"; - editedCabalFile = "0ns8368ylapmgk7h9l1ppvrnrqd9jgrm304icf6v47wdan1r82xr"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ array base dimensional ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/geodetics"; - description = "Terrestrial coordinate systems and geodetic calculations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.3"; - sha256 = "ab05824897afa59304fd653685b5d9580cc91b1d6783d30234a03dbf9dee0288"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc-lib-parser, stdenv, uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc-lib-parser uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-parser" = callPackage - ({ mkDerivation, base, cpphs, ghc, happy, stdenv }: - mkDerivation { - pname = "ghc-parser"; - version = "0.2.0.2"; - sha256 = "bb74cc64ff8fd3d10447075d5982c7c684210762faa15226415d0ed7da756084"; - libraryHaskellDepends = [ base ghc ]; - libraryToolDepends = [ cpphs happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gibiansky/IHaskell"; - description = "Haskell source parser from GHC"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.9"; - sha256 = "afa68fb86123004c37c1dc354286af2d87a9dcfb12ddcb80e8bd0cd55bc87945"; - revision = "4"; - editedCabalFile = "1fp0jyvi6prqsv0dxn010c7q4mmiwlcy1xk6ppd4d539adxxy67d"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.5"; - sha256 = "e42d1acd9947c1396adcf1ae3a0627144884af5cf13176fb09cce0e9bcfbfe32"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-syntax-highlighter" = callPackage - ({ mkDerivation, base, ghc, stdenv, text }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.3.0"; - sha256 = "a137f484740f4eee967fbc8d8366e053e52e073b948ffb3001b4e1227adeec1c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ghc text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; - description = "Syntax highlighter for Haskell using lexer of GHC itself"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.3"; - sha256 = "30acfd21d590809c16d990512fc8fcb98361ec540a76438233bd8aa23e82374c"; - revision = "2"; - editedCabalFile = "1hrbvixm25x1dx1ljy9x7f63kcan4ffz885xj6qsl8l070wj96s1"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.2.6"; - sha256 = "958d3c44543c75fabfe2f0a0db9d9cd3182bb748af9223e9c498ce4bcdcca637"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-knownnat - ghc-typelits-natnormalise integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.5.1"; - sha256 = "5b94c42dac0ae7fe381019d77afa9fe9b290b0ab7a2d9d6e20357381fc586d7b"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.6.2"; - sha256 = "801ceb41442dfa992fad04c64f2989d1d701bcfe0874a55aa8d250e63c1a4311"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.7.1"; - sha256 = "a73719b5d03c24726b60d1cd4cd7379d7e50690c9b738b760149c450763bc31a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-base-stub" = callPackage - ({ mkDerivation, aeson, attoparsec, base, containers, deepseq - , ghc-prim, primitive, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "ghcjs-base-stub"; - version = "0.2.0.0"; - sha256 = "67bb7c931d1dc6cf2023fd8b7db126e3cd52772e5039bc3fd24585278d4a6516"; - revision = "1"; - editedCabalFile = "0hvmgwyhv28d39was8bm52anwqh6x4mbd1mzzqxazlm0d0l8bpwp"; - libraryHaskellDepends = [ - aeson attoparsec base containers deepseq ghc-prim primitive - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/javascript-stub#readme"; - description = "Allow GHCJS projects to compile under GHC and develop using intero"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.2"; - sha256 = "6cbb2c649f6d4a874eb7486a2dd33db2ed0f138f1f8289a6447460d39b4b2097"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gi-atk" = callPackage - ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-atk"; - version = "2.0.15"; - sha256 = "89753b4517e77ea956dcfd1294b4b98032c6e50df912e28c9a796d2b825fbfee"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ atk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Atk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) atk;}; - "gi-cairo" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-cairo"; - version = "1.0.17"; - sha256 = "5dbda70a038a93cb07130597407de9cde1436603beca3f2a0a6b43953c55a7ab"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Cairo bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo;}; - "gi-gdk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo - , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gdk"; - version = "3.0.16"; - sha256 = "7eb0aa493d268cd040c7ff70ad09d7bf7787e0e7619617ba220b88eafe68e34a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gdk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf - , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gdkpixbuf"; - version = "2.0.16"; - sha256 = "fdbb5f12ecd3a419a345919913e659f90000b38b973ce79fb6e9ba05f5d4166f"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GdkPixbuf bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; - "gi-gio" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, glib, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gio"; - version = "2.0.18"; - sha256 = "13ebcd9c5d804de97db1f0ce7de520a73ba2eed950cbf5be84950fe33a8ef440"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gio bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-glib"; - version = "2.0.17"; - sha256 = "9d7abe0a9d66689c5102629edb43a2336d1bb8dc805f0cbe214e5a4e799eab67"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GLib bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gobject" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gobject"; - version = "2.0.16"; - sha256 = "c57844d5b9566834ece584bfbbdff1c3ef2de5aa67c711c406fe92d4b927f6ad"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GObject bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gtk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.26"; - sha256 = "ceaae0a48c39cd30c3baf9f71136bfed1f85fbe284ee0c3dfe13d42e99741aac"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gtk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gtk-hs" = callPackage - ({ mkDerivation, base, base-compat, containers, gi-gdk - , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk-hs"; - version = "0.3.6.3"; - sha256 = "5e894629b84bb79bb8b91e2d006965e351d24665c1dd37f354a77ce5acd6d976"; - libraryHaskellDepends = [ - base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject - gi-gtk haskell-gi-base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/gi-gtk-hs"; - description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "gi-gtksource" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtksource"; - version = "3.0.16"; - sha256 = "97b91b9f48b9e0c65a3936beb6e814ac5a55ab20aefbd9a167313982bd5da53a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtksourceview3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GtkSource bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtksourceview3;}; - "gi-javascriptcore" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers, webkitgtk - }: - mkDerivation { - pname = "gi-javascriptcore"; - version = "4.0.16"; - sha256 = "5f30d7da8cca149b0234de871f18e4ff96288c928f678c649a620a7275c2304e"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ webkitgtk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "JavaScriptCore bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) webkitgtk;}; - "gi-pango" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, pango, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-pango"; - version = "1.0.16"; - sha256 = "a7bcc68413d7f7479e9b746eacf08b0c29a93b7c8af17005d96607ce090e78f4"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo pango ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Pango bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; - "gi-vte" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi - , haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers, vte_291 - }: - mkDerivation { - pname = "gi-vte"; - version = "2.91.19"; - sha256 = "9eb476c66295f9786df59bcf429d16a94462846dd3486a048a07ca93658bd0c2"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject - gi-gtk gi-pango haskell-gi haskell-gi-base haskell-gi-overloading - text transformers - ]; - libraryPkgconfigDepends = [ vte_291 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Vte bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {vte_291 = pkgs.vte;}; - "gio" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers, glib - , gtk2hs-buildtools, mtl, stdenv, system-glib - }: - mkDerivation { - pname = "gio"; - version = "0.13.5.0"; - sha256 = "5c761423e947c02181721bdac7c11293d1bd31515fabe969e7e4ac9fd7e7355c"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring containers glib mtl - ]; - libraryPkgconfigDepends = [ system-glib ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to GIO"; - license = stdenv.lib.licenses.lgpl21; - }) {system-glib = pkgs.glib;}; - "giphy-api" = callPackage - ({ mkDerivation, aeson, base, containers, http-api-data - , http-client, http-client-tls, microlens, microlens-th, mtl - , network-uri, servant, servant-client, stdenv, text, transformers - }: - mkDerivation { - pname = "giphy-api"; - version = "0.6.0.1"; - sha256 = "8ddfb5005bc26553850366c527c0a1a93e6b1efaf4334f195a4f5ab647408604"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "git-vogue" = callPackage - ({ mkDerivation, base, bifunctors, containers, cpphs, Diff - , directory, filepath, formatting, haskell-src-exts, hlint - , hscolour, optparse-applicative, process, split, stdenv, strict - , stylish-haskell, temporary, text, transformers, unix - }: - mkDerivation { - pname = "git-vogue"; - version = "0.3.0.2"; - sha256 = "b41669f86776dd8fc56bec61f96f14b1fa0fc6720eaf3ed0559db97b4020705c"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/christian-marie/git-vogue"; - description = "A framework for pre-commit checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "githash" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "githash"; - version = "0.1.3.0"; - sha256 = "e75aca04c7829bb1a0ba2265d540d14e6ed9a92c5a78774468b38095252dd766"; - libraryHaskellDepends = [ - base bytestring directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/githash#readme"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, base-compat - , base16-bytestring, binary, binary-orphans, byteable, bytestring - , containers, cryptohash, deepseq, deepseq-generics, exceptions - , hashable, http-client, http-client-tls, http-link-header - , http-types, iso8601-time, mtl, network-uri, semigroups, stdenv - , text, time, tls, transformers, transformers-compat - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "github"; - version = "0.19"; - sha256 = "f0ea9b57cd21645bba40e37e5e7c83ad78469cc3e32526b15e9a4bb2b3b84394"; - revision = "3"; - editedCabalFile = "0s3zmkzgfbh1mc0492i7rjiawxkzg0im8z2p10niv5ff58m87yri"; - libraryHaskellDepends = [ - aeson aeson-compat base base-compat base16-bytestring binary - binary-orphans byteable bytestring containers cryptohash deepseq - deepseq-generics exceptions hashable http-client http-client-tls - http-link-header http-types iso8601-time mtl network-uri semigroups - text time tls transformers transformers-compat unordered-containers - vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/github"; - description = "Access to the GitHub API, v3"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-release" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, mime-types, optparse-generic, stdenv - , text, unordered-containers, uri-templater - }: - mkDerivation { - pname = "github-release"; - version = "1.2.3"; - sha256 = "1e50df80c6cd2e1b4e007648c5e0833489cc57d41daf0262e65fd4e59f404b92"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - executableHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/github-release#readme"; - description = "Upload files to GitHub releases"; - license = stdenv.lib.licenses.mit; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "github-webhooks" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, deepseq, deepseq-generics, memory, stdenv, text, time - , vector - }: - mkDerivation { - pname = "github-webhooks"; - version = "0.10.0"; - sha256 = "084a8aa9cc71f89a47a0c8cdb1d0f9eac79fb7d4360ed224efd8443f0c7271df"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite deepseq - deepseq-generics memory text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/onrock-eng/github-webhooks#readme"; - description = "Aeson instances for GitHub Webhook payloads"; - license = stdenv.lib.licenses.mit; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , fixed, half, hxt, libGL, stdenv, transformers - }: - mkDerivation { - pname = "gl"; - version = "0.8.0"; - sha256 = "aa4d2838157c86da920bda651458a4266fccc7c291ea93a69558ab02540e1439"; - revision = "3"; - editedCabalFile = "0q8d4237ds78y4p35xl2arlmmpgs2ag7krw9chby6q9dcs00zxrl"; - setupHaskellDepends = [ - base Cabal containers directory filepath hxt transformers - ]; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "0.3.6"; - sha256 = "3113326be49f4e1276ad6e61d47cac07768985d7203cb718c7dd60f76cd541ad"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glaze" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "glaze"; - version = "0.3.0.1"; - sha256 = "bbb184408bcf24e8c4f89a960cf7a69ab0c51e98bf84c5fa9901aae1702e22a1"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glaze#readme"; - description = "Framework for rendering things with metadata/headers and values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glazier" = callPackage - ({ mkDerivation, alternators, base, data-diverse, data-diverse-lens - , dlist, lens, mtl, stdenv, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "glazier"; - version = "1.0.0.0"; - sha256 = "e9c56250e48b99bfe6280c58d1458c5d35203bf3676705355a4d0bd89c7b71a4"; - libraryHaskellDepends = [ - alternators base data-diverse data-diverse-lens dlist lens mtl - transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glazier#readme"; - description = "Extensible effects using ContT, State and variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , gtk2hs-buildtools, stdenv, text, utf8-string - }: - mkDerivation { - pname = "glib"; - version = "0.13.6.0"; - sha256 = "4e71062c6a458440294d820e21449aa4666deed2ea233ef5915da7c1d4aee8eb"; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - base bytestring containers text utf8-string - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the GLIB library for Gtk2Hs"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gloss" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim - , gloss-rendering, GLUT, OpenGL, stdenv - }: - mkDerivation { - pname = "gloss"; - version = "1.12.0.0"; - sha256 = "6906d8ad72f094f16c27f19a4836e770cdae08dd90537239b067d5ddebdeac4b"; - libraryHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Painless 2D vector graphics, animations and simulations"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-raster" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, gloss-rendering - , repa, stdenv - }: - mkDerivation { - pname = "gloss-raster"; - version = "1.12.0.0"; - sha256 = "c89f496a397f168f020ad69742da21a7c54265e0b5144f3224d7912a15c34191"; - libraryHaskellDepends = [ - base containers ghc-prim gloss gloss-rendering repa - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Parallel rendering of raster images"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-rendering" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL - , stdenv - }: - mkDerivation { - pname = "gloss-rendering"; - version = "1.12.0.0"; - sha256 = "60d90b9729b8f6c8715d621aec8a9ded3f8f95bcb0877391d39a8e303de5c4bc"; - libraryHaskellDepends = [ - base bmp bytestring containers GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - description = "Gloss picture data types and rendering functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "gnuplot" = callPackage - ({ mkDerivation, array, base, containers, data-accessor - , data-accessor-transformers, deepseq, filepath, process - , semigroups, stdenv, temporary, time, transformers, utility-ht - }: - mkDerivation { - pname = "gnuplot"; - version = "0.5.5.3"; - sha256 = "4f742082835978919db75abc570e6cd924d63c6bdd951e1280f97d5d98540504"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers data-accessor data-accessor-transformers - deepseq filepath process semigroups temporary time transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Gnuplot"; - description = "2D and 3D plots using gnuplot"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "goggles" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary - , bytestring, containers, cryptonite, exceptions, filepath - , http-client, http-client-tls, http-types, memory, mtl, pem, req - , scientific, stdenv, stm, text, time, transformers, unix-time - , x509, x509-store - }: - mkDerivation { - pname = "goggles"; - version = "0.3.2"; - sha256 = "a64d25c6506b172ec6f3b8a55f7934c23ccedc66c1acfb62432063dff743e93c"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring binary bytestring - containers cryptonite exceptions filepath http-client - http-client-tls http-types memory mtl pem req scientific stm text - time transformers unix-time x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/goggles"; - description = "Extensible interface to Web APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-oauth2-jwt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, HsOpenSSL - , RSA, stdenv, text, unix-time - }: - mkDerivation { - pname = "google-oauth2-jwt"; - version = "0.3.1"; - sha256 = "71d7704aad64fbd2398d8b0dcb6f39311a8e710385fc80ee2b665bd6b43b2f88"; - libraryHaskellDepends = [ - base base64-bytestring bytestring HsOpenSSL RSA text unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/google-oauth2-jwt"; - description = "Get a signed JWT for Google Service Accounts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.5.2"; - sha256 = "98a42ef1eee9a5012b0bb2a91f645dd8487df6cfdcfcab5e387a8abf42768dcd"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphviz" = callPackage - ({ mkDerivation, base, bytestring, colour, containers, directory - , dlist, fgl, filepath, mtl, polyparse, process, stdenv, temporary - , text, wl-pprint-text - }: - mkDerivation { - pname = "graphviz"; - version = "2999.20.0.2"; - sha256 = "e7662eb82d1e5b22b467fb6e9094b65731036ae04c5374058e3b52fbc055474e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring colour containers directory dlist fgl filepath mtl - polyparse process temporary text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/graphviz/"; - description = "Bindings to Graphviz for graph visualisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "graylog" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, network - , random, scientific, stdenv, text, time, vector - }: - mkDerivation { - pname = "graylog"; - version = "0.1.0.1"; - sha256 = "2d8173e61da8d02c39cb95e6ccea8a167c792f682a496aed5fe4edfd0e6a0082"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring network random scientific text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/haskell-graylog"; - description = "Support for graylog output"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "greskell" = callPackage - ({ mkDerivation, aeson, base, exceptions, greskell-core, semigroups - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "greskell"; - version = "0.2.2.0"; - sha256 = "7f594dd299c20ad25cc2898383ec86d03170667c010ac1a7906d80ec1d8e44cd"; - configureFlags = [ "-f-hint-test" ]; - libraryHaskellDepends = [ - aeson base exceptions greskell-core semigroups text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-core" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, scientific - , semigroups, stdenv, text, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "greskell-core"; - version = "0.1.2.4"; - sha256 = "201d3f76a503948114f387f0c63d88e1170ed26305b2c2a8b799a47d37dc4f85"; - libraryHaskellDepends = [ - aeson base containers hashable scientific semigroups text - unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language - core data types and tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-websocket" = callPackage - ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , greskell-core, hashtables, safe-exceptions, stdenv, stm, text - , unordered-containers, uuid, vector, websockets - }: - mkDerivation { - pname = "greskell-websocket"; - version = "0.1.1.2"; - sha256 = "9062b34fec1855b0262a0cf529dcc3ebf5bb20738712195420d832dd46e2cde7"; - libraryHaskellDepends = [ - aeson async base base64-bytestring bytestring greskell-core - hashtables safe-exceptions stm text unordered-containers uuid - vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell client for Gremlin Server using WebSocket serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, containers, monad-control, mtl - , resourcet, safe-exceptions, scientific, stdenv, text, time - , transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "groundhog"; - version = "0.9.0"; - sha256 = "407ae09955e205bfbf246400b5cbdd881eb8b616342a3263ae7b81c642b2a025"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - containers monad-control mtl resourcet safe-exceptions scientific - text time transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lykahb/groundhog"; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-inspector" = callPackage - ({ mkDerivation, aeson-pretty, base, bytestring, cmdargs - , containers, groundhog, groundhog-sqlite, groundhog-th, mtl - , regex-compat, stdenv, syb, template-haskell, text, time - , transformers - }: - mkDerivation { - pname = "groundhog-inspector"; - version = "0.9.0"; - sha256 = "8b7bca3f39c718b46ce1e18b77d8f3a4110c51a8ffaf7b4d53a9952c9efe69ed"; - revision = "1"; - editedCabalFile = "1fzkm7rxg3la10j65drhvqnzcv6c5rscq3cqz7f0395rbw0pakmy"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lykahb/groundhog"; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-mysql" = callPackage - ({ mkDerivation, base, bytestring, containers, groundhog - , monad-control, monad-logger, mysql, mysql-simple, resource-pool - , resourcet, stdenv, text, time, transformers - }: - mkDerivation { - pname = "groundhog-mysql"; - version = "0.9.0"; - sha256 = "78b69ed182e036c68fd7ea00aa977a706e178a5355c5f7b36bb2401cd6667f58"; - libraryHaskellDepends = [ - base bytestring containers groundhog monad-control monad-logger - mysql mysql-simple resource-pool resourcet text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "MySQL backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-postgresql" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , containers, groundhog, monad-control, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, vector - }: - mkDerivation { - pname = "groundhog-postgresql"; - version = "0.9.0.1"; - sha256 = "85ee5a417ec6a26512b915dfc32378e0788f8c0d810898adbb6d559d0ba2085d"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring containers groundhog - monad-control postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "PostgreSQL backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-sqlite" = callPackage - ({ mkDerivation, base, bytestring, containers, direct-sqlite - , groundhog, monad-control, resource-pool, resourcet, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "groundhog-sqlite"; - version = "0.9.0"; - sha256 = "abfb8cfef6e848bf9d1d7605da780a4cd0bd61b4a9ce098d3bac99947d2d2819"; - libraryHaskellDepends = [ - base bytestring containers direct-sqlite groundhog monad-control - resource-pool resourcet text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Sqlite3 backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-th" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, groundhog - , stdenv, template-haskell, text, time, unordered-containers, yaml - }: - mkDerivation { - pname = "groundhog-th"; - version = "0.9.0.1"; - sha256 = "93566644ad3174b1048ad09f70ed0626e415aa67d7d458ba1e43ba5ab4413343"; - libraryHaskellDepends = [ - aeson base bytestring containers groundhog template-haskell text - time unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gtk" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gio, glib, gtk2, gtk2hs-buildtools, mtl, pango, stdenv, text - }: - mkDerivation { - pname = "gtk"; - version = "0.14.10"; - sha256 = "28e1671eeb216335c7615513ba285a0c538d6747e38eb9acb64a5641f2650633"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk2;}; - "gtk2hs-buildtools" = callPackage - ({ mkDerivation, alex, array, base, Cabal, containers, directory - , filepath, happy, hashtables, pretty, process, random, stdenv - }: - mkDerivation { - pname = "gtk2hs-buildtools"; - version = "0.13.4.0"; - sha256 = "0f3e6ba90839efd43efe8cecbddb6478a55e2ce7788c57a0add4df477dede679"; - revision = "1"; - editedCabalFile = "0nbghg11y4nvxjxrvdm4a7fzj8z12fr12hkj4b7p27imlryg3m10"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base Cabal containers directory filepath hashtables pretty - process random - ]; - libraryToolDepends = [ alex happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Tools to build the Gtk2Hs suite of User Interface libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "gtk3" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, cairo, containers - , gio, glib, gtk2hs-buildtools, gtk3, mtl, pango, stdenv, text - }: - mkDerivation { - pname = "gtk3"; - version = "0.14.9"; - sha256 = "48e14ac9180fb090718fdaa5ec8f345173edbe5fdbebd6151f0a64804d0796e5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base bytestring cairo containers gio glib mtl pango text - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Gtk+ 3 graphical user interface library"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gym-http-api" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-client, servant - , servant-client, servant-lucid, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "gym-http-api"; - version = "0.1.0.1"; - sha256 = "2c3fd9b261cd7bc3a004d41f582cd6c629956c78f7236eb91d615ca0c9b0c910"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base servant servant-client servant-lucid text - unordered-containers - ]; - executableHaskellDepends = [ - base exceptions http-client servant-client - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stites/gym-http-api#readme"; - description = "REST client to the gym-http-api project"; - license = stdenv.lib.licenses.mit; - }) {}; - "h2c" = callPackage - ({ mkDerivation, base, bytestring, mtl, resourcet, stdenv }: - mkDerivation { - pname = "h2c"; - version = "1.0.0"; - sha256 = "4be2c9d54084175777624770640850aba33d7e4a31e2dc8096c122f737965499"; - libraryHaskellDepends = [ base bytestring mtl resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/h2c"; - description = "Bindings to Linux I2C with support for repeated-start transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hOpenPGP" = callPackage - ({ mkDerivation, aeson, asn1-encoding, attoparsec, base - , base16-bytestring, base64-bytestring, bifunctors, binary - , binary-conduit, bytestring, bzlib, conduit, conduit-extra - , containers, crypto-cipher-types, cryptonite, errors, hashable - , incremental-parser, ixset-typed, lens, memory, monad-loops - , nettle, network-uri, newtype, openpgp-asciiarmor, prettyprinter - , resourcet, semigroups, split, stdenv, text, time - , time-locale-compat, transformers, unliftio-core - , unordered-containers, zlib - }: - mkDerivation { - pname = "hOpenPGP"; - version = "2.7.4.1"; - sha256 = "1aa868310f2c1fe4a768034e8114fe7d5d91479b5f34850c27890537f3419539"; - libraryHaskellDepends = [ - aeson asn1-encoding attoparsec base base16-bytestring - base64-bytestring bifunctors binary binary-conduit bytestring bzlib - conduit conduit-extra containers crypto-cipher-types cryptonite - errors hashable incremental-parser ixset-typed lens memory - monad-loops nettle network-uri newtype openpgp-asciiarmor - prettyprinter resourcet semigroups split text time - time-locale-compat transformers unliftio-core unordered-containers - zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "native Haskell implementation of OpenPGP (RFC4880)"; - license = stdenv.lib.licenses.mit; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.0.1"; - sha256 = "f0aac1af6d8d29b7fc2ffd43efaf5a7a5b00f2ead8dacff180bc3714c591ef8d"; - revision = "2"; - editedCabalFile = "0qscq4d3xwvjhqi1fiky7g12iwbkwn9qrypwzg9lx4p3c5xlwlvn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory filepath tar time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access Hackage's package database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-security" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, Cabal, containers, cryptohash-sha256, directory - , ed25519, filepath, ghc-prim, mtl, network, network-uri, parsec - , pretty, stdenv, tar, template-haskell, time, transformers, zlib - }: - mkDerivation { - pname = "hackage-security"; - version = "0.5.3.0"; - sha256 = "db986e17e9265aa9e40901690815b890b97d53159eb24d0a6cafaa7c18577c21"; - revision = "6"; - editedCabalFile = "1xs2nkzlvkdz8g27yzfxbjdbdadfmgiydnlpn5dm77cg18r495ay"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring Cabal - containers cryptohash-sha256 directory ed25519 filepath ghc-prim - mtl network network-uri parsec pretty tar template-haskell time - transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hackage-security"; - description = "Hackage security library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers - , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths - , haddock-library, stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.20.0"; - sha256 = "f2bc3495fbab581bc03e1a2050c7a0ce849ac97cb19506f5167d49d9d000c609"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring Cabal containers deepseq directory filepath - ghc ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.6.0"; - sha256 = "609f096e7b7d2690fc2302d6a77f6a0e0fefb64ae64e90d90e754dc37f10e740"; - libraryHaskellDepends = [ - base bytestring containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hailgun" = callPackage - ({ mkDerivation, aeson, base, bytestring, email-validate - , exceptions, filepath, http-client, http-client-tls, http-types - , stdenv, tagsoup, text, time, transformers - }: - mkDerivation { - pname = "hailgun"; - version = "0.4.1.8"; - sha256 = "9dcc7367afec6605045246d4959f27a29a54bbdbcec543e6f5ae59b048e2dcc3"; - libraryHaskellDepends = [ - aeson base bytestring email-validate exceptions filepath - http-client http-client-tls http-types tagsoup text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/hailgun"; - description = "Mailgun REST api interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hakyll" = callPackage - ({ mkDerivation, base, binary, blaze-html, blaze-markup, bytestring - , containers, cryptohash, data-default, deepseq, directory - , file-embed, filepath, fsnotify, http-conduit, http-types - , lrucache, mtl, network-uri, optparse-applicative, pandoc - , pandoc-citeproc, parsec, process, random, regex-tdfa, resourcet - , scientific, stdenv, tagsoup, text, time, time-locale-compat - , unordered-containers, vector, wai, wai-app-static, warp, yaml - }: - mkDerivation { - pname = "hakyll"; - version = "4.12.4.0"; - sha256 = "a187b7a105d6d565f758b726fa421933e112c81559c006600916ab6ad0dad44d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-html blaze-markup bytestring containers - cryptohash data-default deepseq directory file-embed filepath - fsnotify http-conduit http-types lrucache mtl network-uri - optparse-applicative pandoc pandoc-citeproc parsec process random - regex-tdfa resourcet scientific tagsoup text time - time-locale-compat unordered-containers vector wai wai-app-static - warp yaml - ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/hakyll"; - description = "A static website compiler library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamilton" = callPackage - ({ mkDerivation, ad, ansi-wl-pprint, base, containers - , finite-typelits, ghc-typelits-knownnat, hmatrix, hmatrix-gsl - , hmatrix-vector-sized, optparse-applicative, stdenv - , typelits-witnesses, vector, vector-sized, vty - }: - mkDerivation { - pname = "hamilton"; - version = "0.1.0.3"; - sha256 = "3c7623217c8e49cabc6620835e53609e7b7339f39a1523da2467076252addb1b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hamilton#readme"; - description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "handwriting" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, lens, lens-aeson, random, split, stdenv, text - , transformers, wreq - }: - mkDerivation { - pname = "handwriting"; - version = "0.1.0.3"; - sha256 = "7e1b406d19b2f39b34910462dce214c7ca91bb9d78bf9fafb9f906dd44d5beaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers lens lens-aeson split text - transformers wreq - ]; - executableHaskellDepends = [ - base bytestring directory filepath random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ismailmustafa/handwriting-haskell#readme"; - description = "API Client for the handwriting.io API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hapistrano" = callPackage - ({ mkDerivation, aeson, async, base, filepath, formatting, gitrev - , mtl, optparse-applicative, path, path-io, process, stdenv, stm - , time, transformers, typed-process, yaml - }: - mkDerivation { - pname = "hapistrano"; - version = "0.3.8.0"; - sha256 = "a6c8178f5c9c3f7ca6620f9a744f659296660eeddad3a985a01acdd31dd66ace"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base filepath formatting gitrev mtl path process stm time - transformers typed-process - ]; - executableHaskellDepends = [ - aeson async base formatting gitrev optparse-applicative path - path-io stm yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hapistrano"; - description = "A deployment library for Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "happstack-server" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, bytestring - , containers, directory, exceptions, extensible-exceptions - , filepath, hslogger, html, monad-control, mtl, network - , network-uri, old-locale, parsec, process, semigroups, sendfile - , stdenv, syb, system-filepath, template-haskell, text, threads - , time, time-compat, transformers, transformers-base - , transformers-compat, unix, utf8-string, xhtml, zlib - }: - mkDerivation { - pname = "happstack-server"; - version = "7.5.1.3"; - sha256 = "93d237eff4d01e0de97329366662a53868fd7a043612fe36e4a3492b5caefd29"; - revision = "1"; - editedCabalFile = "15ira63nilqyq9ggl2jy5ip26aprw79sv5k1hp9n4wp9byhzzyjw"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html bytestring containers directory - exceptions extensible-exceptions filepath hslogger html - monad-control mtl network network-uri old-locale parsec process - semigroups sendfile syb system-filepath template-haskell text - threads time time-compat transformers transformers-base - transformers-compat unix utf8-string xhtml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://happstack.com"; - description = "Web related tools and services"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, Cabal, containers, directory - , filepath, mtl, stdenv - }: - mkDerivation { - pname = "happy"; - version = "1.19.9"; - sha256 = "3e81a3e813acca3aae52721c412cde18b7b7c71ecbacfaeaa5c2f4b35abf1d8d"; - revision = "3"; - editedCabalFile = "0kwlh964nyqvfbm02np8vpc28gbhsby0r65jhz1918rm0wip9izq"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hasbolt" = callPackage - ({ mkDerivation, base, binary, bytestring, connection, containers - , data-binary-ieee754, data-default, network, stdenv, text - , transformers - }: - mkDerivation { - pname = "hasbolt"; - version = "0.1.3.2"; - sha256 = "31acb64497ce06eecfc2c54297b561a373d8584142a8d9b8f67cbabc701c5893"; - revision = "4"; - editedCabalFile = "0h38mjkr3cqhsr9hwf2wj27mknnxyb2y3swzp18s7q4vmrb1ijyz"; - libraryHaskellDepends = [ - base binary bytestring connection containers data-binary-ieee754 - data-default network text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmactep/hasbolt#readme"; - description = "Haskell driver for Neo4j 3+ (BOLT protocol)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.2.7.0"; - sha256 = "ecb5efc0586023f5a0dc861100621c1dbb4cbb2f0516829a16ebac39f0432abf"; - revision = "1"; - editedCabalFile = "197063dpl0wn67dp7a06yc2hxp81n24ykk7klbjx0fndm5n87dh3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashing" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, QuickCheck, stdenv - }: - mkDerivation { - pname = "hashing"; - version = "0.1.0.1"; - sha256 = "e5a4a19c6cd6f0a0adda381db76d608d23f8d303e68f1d744735433f91f49410"; - revision = "2"; - editedCabalFile = "1rwl68jiivw7f2f5cg73sr3dawlbmklnwyiwivrcsihrg4b1z1lq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base bytestring ]; - executableHaskellDepends = [ - array base bytestring mtl QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/hashing"; - description = "A pure haskell library implements several hash algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.1"; - sha256 = "8fd1c7c77c267eae6af01f1d9ca427754fb092cfffc8041cd50764a9144b3cbe"; - revision = "1"; - editedCabalFile = "1yyqnqn85mlw03f2bpvwa1w9gigswk9n30i918myqyxwr595l7rr"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.4.3"; - sha256 = "046d0930bc2dbc57a7cd9ddb5d1e92c7fdb71c6b91b2bbf673f5406843d6b679"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.21.5"; - sha256 = "12d116c6effae4da3f97afaad46faab6766f4a58be2c8fb434f8e0feea4a71e7"; - revision = "1"; - editedCabalFile = "144knmzybslqz8w9cwgl5s4sk1crs9qhynwiqv68wdq67q0s4k80"; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.21.4"; - sha256 = "ba6d345e9566ca7cda979a6c8eda3b786be77f6226b8ad8e5a8006cd3103346f"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, parsec, process, safe, sorted-list, stdenv, stm - , syb, tagsoup, text, transformers, unix-time, unliftio - , unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple parsec process safe sorted-list stm syb tagsoup - text transformers unix-time unliftio unordered-containers vector - versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.0.2"; - sha256 = "d8cdf3122ee384ec440269108fd85ccf207a413015ceeffb2e9bf4313a6addf3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yav/haskell-lexer"; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-spacegoo" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , mtl, pretty, pretty-show, stdenv, text, vector, vector-space - }: - mkDerivation { - pname = "haskell-spacegoo"; - version = "0.2.0.1"; - sha256 = "1eb3faa9a7f6a5870337eeb0bb3ad915f58987dfe4643fe95c91cbb2738ddd3c"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra mtl pretty pretty-show - text vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Client API for Rocket Scissor Spacegoo"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.0"; - sha256 = "b4b4941e8883da32c3f2b93f3ecdd5cff82ff9304cb91e89850b19095c908dbc"; - revision = "1"; - editedCabalFile = "1pnrvh9wzdkhvkkky4rlq1imycl9k76x9rvgq7cmfp8rf1iwqi5q"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-simple" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "haskell-src-exts-simple"; - version = "1.20.0.0"; - sha256 = "b305be88204f70af3b7f2e1feb972cf38f3feafb82781e94909484c5ebbde95c"; - libraryHaskellDepends = [ base haskell-src-exts ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/int-e/haskell-src-exts-simple"; - description = "A simplified view on the haskell-src-exts AST"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.0.3"; - sha256 = "8473e3555080860c2043581b398dbab67319584a568463b074a092fd4d095822"; - revision = "2"; - editedCabalFile = "0dp5v0yd0wgijzaggr22glgjswpa65hy84h8awdzd9d78g2fjz6c"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-ast" = callPackage - ({ mkDerivation, base, classyplate, ghc, mtl, pretty, references - , stdenv, template-haskell, uniplate - }: - mkDerivation { - pname = "haskell-tools-ast"; - version = "1.1.0.2"; - sha256 = "2cf0f51aa551c896634ee2649782ee8994bed7088a14e03961b4bf2a5e6d0149"; - libraryHaskellDepends = [ - base classyplate ghc mtl pretty references template-haskell - uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nboldi/haskell-tools"; - description = "Haskell AST for efficient tooling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-backend-ghc" = callPackage - ({ mkDerivation, base, bytestring, containers, ghc, ghc-boot-th - , haskell-tools-ast, mtl, references, safe, split, stdenv - , template-haskell, transformers, uniplate - }: - mkDerivation { - pname = "haskell-tools-backend-ghc"; - version = "1.1.0.2"; - sha256 = "14fe9a12005f05fac32be4c973e4b08c223bf0d6b2a879e92e190d6bf7230530"; - libraryHaskellDepends = [ - base bytestring containers ghc ghc-boot-th haskell-tools-ast mtl - references safe split template-haskell transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nboldi/haskell-tools"; - description = "Creating the Haskell-Tools AST from GHC's representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-builtin-refactorings" = callPackage - ({ mkDerivation, 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, stdenv, template-haskell - , transformers, uniplate - }: - mkDerivation { - pname = "haskell-tools-builtin-refactorings"; - version = "1.1.0.2"; - sha256 = "8916acba20c47d3091272458a131e38cb8edb26f5dd44cb7793f12ce8661a7f2"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Refactoring Tool for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "haskell-tools-debug"; - version = "1.1.0.2"; - sha256 = "14da03518f3ea1cf1778cbf7f157437a899b86bf06b99b74f8e01502894cdbd2"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Debugging Tools for Haskell-tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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 - , mtl, references, stdenv, transformers, wai, wai-websockets, warp - , websockets - }: - mkDerivation { - pname = "haskell-tools-demo"; - version = "1.1.0.2"; - sha256 = "7deec5cfae29cecb99ee6b57cfd9d37deb0a2f2546263bbc4a5d08ca70375530"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "A web-based demo for Haskell-tools Refactor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-prettyprint" = callPackage - ({ mkDerivation, base, containers, ghc, haskell-tools-ast, mtl - , references, split, stdenv, text, uniplate - }: - mkDerivation { - pname = "haskell-tools-prettyprint"; - version = "1.1.0.2"; - sha256 = "78396c1ac41c5810a0013077738a5ce7bf958201f6703689c0f0746ca3084206"; - libraryHaskellDepends = [ - base containers ghc haskell-tools-ast mtl references split text - uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Pretty printing of Haskell-Tools AST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-refactor" = callPackage - ({ mkDerivation, 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, stdenv - , template-haskell, transformers, uniplate - }: - mkDerivation { - pname = "haskell-tools-refactor"; - version = "1.1.0.2"; - sha256 = "f833e8ca1af652c68b3e3f3f5c3714c509d9748585a004a3c4764f61a2acf389"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Refactoring Tool for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-tools-rewrite" = callPackage - ({ mkDerivation, base, containers, ghc, haskell-tools-ast - , haskell-tools-prettyprint, mtl, references, stdenv - }: - mkDerivation { - pname = "haskell-tools-rewrite"; - version = "1.1.0.2"; - sha256 = "a50009039c4428744f63905b0e3ca599aa4362dbe5c887deb15745bd8848e7ab"; - libraryHaskellDepends = [ - base containers ghc haskell-tools-ast haskell-tools-prettyprint mtl - references - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-tools/haskell-tools"; - description = "Facilities for generating new parts of the Haskell-Tools AST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , exceptions, filepath, focus, haskey-btree, list-t, lz4, mtl - , semigroups, stdenv, stm, stm-containers, transformers, unix - , xxhash-ffi - }: - mkDerivation { - pname = "haskey"; - version = "0.3.0.2"; - sha256 = "901c08a8155d8e394a868fe5a4b7318912afda8f91349f870c4384c5ab9944e8"; - libraryHaskellDepends = [ - base binary bytestring containers directory exceptions filepath - focus haskey-btree list-t lz4 mtl semigroups stm stm-containers - transformers unix xxhash-ffi - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey"; - description = "A transactional, ACID compliant, embeddable key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.0"; - sha256 = "90387d9a8e2afb22f9a4ace4b8f3b1a2045b955c1283c70a614abeff2294465a"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-mtl" = callPackage - ({ mkDerivation, base, exceptions, haskey, haskey-btree - , monad-control, mtl, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "haskey-mtl"; - version = "0.3.1.0"; - sha256 = "1ffb00a2901dc19edeeb18299dd1a52a49ca8c25bc04e87555c1bcec90b79294"; - libraryHaskellDepends = [ - base exceptions haskey haskey-btree monad-control mtl transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey"; - description = "A monad transformer supporting Haskey transactions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskintex" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, haskell-src-exts, HaTeX, hint, parsec, process, stdenv - , text, transformers - }: - mkDerivation { - pname = "haskintex"; - version = "0.8.0.0"; - sha256 = "9d4974112f33baf47124a56f87b96892a0a37c10587098f851c71256d15cddd8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath - haskell-src-exts HaTeX hint parsec process text transformers - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://daniel-diaz.github.io/projects/haskintex"; - description = "Haskell Evaluation inside of LaTeX code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , data-default-class, dlist, hashable, hashtables, loch-th, mtl - , placeholders, postgresql-binary, postgresql-libpq, profunctors - , stdenv, text, text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.3.0.3"; - sha256 = "519ac7c3b06dec89fcd4c881328c2b77c8f74ef34faaba2a4395417fcc257407"; - revision = "2"; - editedCabalFile = "14063k0dald0i2cqk70kdja1df587vn8vrzgw3rb62nxwycr0r9b"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras data-default-class dlist - hashable hashtables loch-th mtl placeholders postgresql-binary - postgresql-libpq profunctors text text-builder transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver and a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.3"; - sha256 = "63b4c3da21434bac9a98521cdcfda7815bcebb8829feb889f4050fffd7f06334"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5"; - sha256 = "3a33cdfc9ae253f193afb824c9488051103b4c71316b6db39d51dce27c825d2f"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, base-prelude, bytestring - , bytestring-tree-builder, contravariant, contravariant-extras - , hasql, mtl, stdenv, transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "0.7"; - sha256 = "decb3c5b08f710413ee65861c30766c53dc79d05f388fab6f8e1105e4d907fcf"; - libraryHaskellDepends = [ - base base-prelude bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "A composable abstraction over the retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "haxl" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, exceptions, filepath, ghc-prim, hashable, pretty, stdenv - , stm, text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haxl"; - version = "2.0.1.1"; - sha256 = "59f30d1bde6c70736071ccf3b561776d1a060af4c5a854c66664df1a47e4d6f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq exceptions filepath - ghc-prim hashable pretty stm text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebook/Haxl"; - description = "A Haskell library for efficient, concurrent, and concise data access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hbeanstalk" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, network, stdenv - }: - mkDerivation { - pname = "hbeanstalk"; - version = "0.2.4"; - sha256 = "feaf97fd18fedb3e5abf337e61c98a03108d917d9f87f885c8d02b6b838aac8f"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/scsibug/hbeanstalk/"; - description = "Client for the beanstalkd workqueue service"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.5"; - sha256 = "d250cb0c066ec45aa9b8e9e0df094677f9e7788b01eaf51ab5bc9bbd52fe029f"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/greydot/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6"; - sha256 = "181c3cd7f2be698f903dc9649e5ec9311245ad2b9fed91b61f05d0dd7b7dddb2"; - revision = "3"; - editedCabalFile = "0k6wsm1hwn3vaxdvw8p7cidxg7p8zply2ig4w4qrbpyjhl6dj9x9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.1"; - sha256 = "c7997ee86df43d5d734df63c5e091543bb7fd75a93d530c1857067e27a8b7932"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, exceptions - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, th-lift, time, transformers, transformers-base, unix - , wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "0.6.1"; - sha256 = "d2f94024906af37fed427fa1f03177d9a530078a2e54cfb24d7397da9807e177"; - revision = "5"; - editedCabalFile = "0kwmxjb1y3gk85njacw5wcvmq3bzp1649dbjzgzpiba2w342f7il"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory exceptions lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text th-lift time transformers transformers-base - unix wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Hedgehog will eat all your bugs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.1.0"; - sha256 = "c3569cd8316770115871acf334587350e887b046e35abc0d52a90dd0e6d719f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedis" = callPackage - ({ mkDerivation, async, base, bytestring, bytestring-lexing - , deepseq, errors, HTTP, mtl, network, network-uri, resource-pool - , scanner, stdenv, stm, text, time, tls, unordered-containers - , vector - }: - mkDerivation { - pname = "hedis"; - version = "0.10.10"; - sha256 = "1ad2452dc78065035d58f124547caa8ae927c9a470dbe85988e2ed1b19837241"; - revision = "1"; - editedCabalFile = "0fcpf0jqga8wh0ikbpkma8sw7f5376wbc9w9rsiqp51q8f23x04h"; - libraryHaskellDepends = [ - async base bytestring bytestring-lexing deepseq errors HTTP mtl - network network-uri resource-pool scanner stm text time tls - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/informatikr/hedis"; - description = "Client library for the Redis datastore: supports full command set, pipelining"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.3"; - sha256 = "4723e03896cc91d524da36fe1b8c5b174b81120c323a3fad692f9ada4bd8794f"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hex"; - version = "0.1.2"; - sha256 = "12ee1243edd80570a486521565fb0c9b5e39374f21a12f050636e71d55ec61ec"; - revision = "1"; - editedCabalFile = "0khmrdni6njr4wxgz15yz77l8ar4qm2jj6v0lvfnwqdms4s6i80y"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Convert strings into hexadecimal and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.4"; - sha256 = "937401802ed6593aad8c5acf0ea963d0f1f4473bf72185702b12eb30e52bbe2a"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hgmp" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "hgmp"; - version = "0.1.1"; - sha256 = "b905720ad455ef54a167ed6c2a44dfb01f8e8f8efc6fe4f0a2a21ff22f5b3ac2"; - revision = "4"; - editedCabalFile = "00rg7f223716dlqk0w92ixnyj7a9imj6yqcs5qx833jv7lk8lbyj"; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/hgmp"; - description = "Haskell interface to GMP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.5"; - sha256 = "3726e0bcbdbda309b919241d86629625e732fd07d78cc90ad39cb39b51cd595e"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hidden-char" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hidden-char"; - version = "0.1.0.2"; - sha256 = "ea909372a7cc06cda7ee8e9c1a6a5c16be19fef256ad4bd2c0b39e61d940f498"; - revision = "3"; - editedCabalFile = "0f6qghr4i3ar993pjlswdd2rl671lrnxj8740i2yhn89z410vzsa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/hidden-char#readme"; - description = "Provides cross-platform getHiddenChar function"; - license = stdenv.lib.licenses.mit; - }) {}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hierarchical-clustering" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "hierarchical-clustering"; - version = "0.4.6"; - sha256 = "75f17f09b9c38d51a208edee10da2f4706ee784b5cdfe8efc31f7f86bbcdccb1"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - description = "Fast algorithms for single, average/UPGMA and complete linkage clustering"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hierarchy" = callPackage - ({ mkDerivation, base, exceptions, free, mmorph, monad-control, mtl - , stdenv, transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "hierarchy"; - version = "1.0.2"; - sha256 = "25f90eff98036266e279d5730297e24bdfe27b3151cf155d29415cf7d07b1318"; - libraryHaskellDepends = [ - base exceptions free mmorph monad-control mtl transformers - transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/hierarchy#readme"; - description = "Predicated traversal of generated trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.2"; - sha256 = "2afc228104a29aed6b208b1aeba93631e96fdf11efbe68ad036f838f95f8aff2"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.3.10"; - sha256 = "af2b7d5733ab52ca38f0d9aed1ec37304f1d6964caa0fb556b8215858c1d5d9d"; - revision = "1"; - editedCabalFile = "07z0n5rvki3w0kjr190bwv7sq8p3myspv8999ilz9rlsqf5a0324"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hint" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, ghc - , ghc-boot, ghc-paths, mtl, random, stdenv, temporary, unix - }: - mkDerivation { - pname = "hint"; - version = "0.8.0"; - sha256 = "2e702d62c8f56b799d767f3d3707bec12597bc529a051ad90bd5840581551c41"; - libraryHaskellDepends = [ - base directory exceptions filepath ghc ghc-boot ghc-paths mtl - random temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvdan/hint"; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "histogram-fill" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv, vector - }: - mkDerivation { - pname = "histogram-fill"; - version = "0.9.1.0"; - sha256 = "757cbbaacb4ba3bb692582fcd7f87f3a7faf7f9b01a9b4fe7a74fef928a29161"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shimuuar/histogram-fill/"; - description = "Library for histograms creation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , language-javascript, optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.2"; - sha256 = "bec153d2396962c63998eb12d0a2c7c9f7df6f774cb00e41b6cdb1f5a4905484"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers language-javascript text - ]; - executableHaskellDepends = [ - base blaze-builder bytestring containers language-javascript - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat-batteries - , bytestring, cmdargs, containers, csv, data-default, Decimal, Diff - , directory, file-embed, filepath, hashable, haskeline, here - , hledger-lib, HUnit, lucid, megaparsec, mtl, mtl-compat, old-time - , parsec, pretty-show, process, regex-tdfa, safe, shakespeare - , split, stdenv, tabular, temporary, terminfo, text, time - , transformers, unordered-containers, utf8-string, utility-ht - , wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.10"; - sha256 = "f64420f852502e84dfa9374ace1d00a06ecf1641ad9fd3b22d7c2c48c1d5c4d3"; - revision = "1"; - editedCabalFile = "1kj1by80j7f6rzwfccwl2cp53bb3lyivh8a8xnawdyxab1pkyz34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers csv data-default Decimal Diff directory file-embed - filepath hashable haskeline here hledger-lib HUnit lucid megaparsec - mtl mtl-compat old-time parsec pretty-show process regex-tdfa safe - shakespeare split tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers csv data-default Decimal directory file-embed filepath - haskeline here hledger-lib HUnit megaparsec mtl mtl-compat old-time - parsec pretty-show process regex-tdfa safe shakespeare split - tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , Decimal, docopt, either, hledger, hledger-lib, microlens - , microlens-platform, safe, servant-server, servant-swagger, stdenv - , swagger2, text, transformers, wai, wai-extra, warp - }: - mkDerivation { - pname = "hledger-api"; - version = "1.10"; - sha256 = "6e51bf6eb84d600777e4008bc53cea8ab08b103d720c23e04a9954836fbcacab"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web API server for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "7a7f5d437c98e42ba1f1529f2645e5df88d18962ae28b71b8c07e428fe08c1b9"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat-batteries - , blaze-markup, bytestring, cmdargs, containers, csv, data-default - , Decimal, deepseq, directory, extra, filepath, hashtables, HUnit - , megaparsec, mtl, mtl-compat, old-time, parsec, parser-combinators - , pretty-show, regex-tdfa, safe, split, stdenv, tabular, text, time - , transformers, uglymemo, utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.10"; - sha256 = "e18aaf23705f46c432519113148229ff78ddae3dcf41ef784e032bf5cc1943ce"; - revision = "2"; - editedCabalFile = "071bnfgdv665llvggpqbg44kc141jz4ni0j6a1miyyw7wd2dvkix"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat-batteries blaze-markup - bytestring cmdargs containers csv data-default Decimal deepseq - directory extra filepath hashtables HUnit megaparsec mtl mtl-compat - old-time parsec parser-combinators pretty-show regex-tdfa safe - split tabular text time transformers uglymemo utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-ui" = callPackage - ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries - , brick, cmdargs, containers, data-default, directory, filepath - , fsnotify, hledger, hledger-lib, HUnit, megaparsec, microlens - , microlens-platform, pretty-show, process, safe, split, stdenv - , text, text-zipper, time, transformers, vector, vty - }: - mkDerivation { - pname = "hledger-ui"; - version = "1.10.1"; - sha256 = "c7d41f9d2c9f486ab25a9cdb4d89759eae3974f8c4991bf46e3e5ea9bc8690c0"; - revision = "2"; - editedCabalFile = "0igkrj44w3rvadgb7kbi1wwlljyrs4y6awk0mhic4lvnk1slwk6m"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal async base base-compat-batteries brick cmdargs - containers data-default directory filepath fsnotify hledger - hledger-lib HUnit megaparsec microlens microlens-platform - pretty-show process safe split text text-zipper time transformers - vector vty - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Curses-style user interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , case-insensitive, clientsession, cmdargs, conduit, conduit-extra - , data-default, directory, filepath, hjsmin, hledger, hledger-lib - , http-client, http-conduit, HUnit, json, megaparsec, mtl - , semigroups, shakespeare, stdenv, template-haskell, text, time - , transformers, wai, wai-extra, wai-handler-launch, warp, yaml - , yesod, yesod-core, yesod-form, yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.10"; - sha256 = "c9dfd130a2430a09672121d8c2e769358c9bc78e7e68118aaf8c2638f24cd4c1"; - revision = "1"; - editedCabalFile = "0zzgc6mjia06fwvjwpzzczh0p9k0a6bi2lib6zq5k1briq4gqblm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring case-insensitive - clientsession cmdargs conduit conduit-extra data-default directory - filepath hjsmin hledger hledger-lib http-client http-conduit HUnit - json megaparsec mtl semigroups shakespeare template-haskell text - time transformers wai wai-extra wai-handler-launch warp yaml yesod - yesod-core yesod-form yesod-static - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlibsass" = callPackage - ({ mkDerivation, base, Cabal, directory, libsass, stdenv }: - mkDerivation { - pname = "hlibsass"; - version = "0.1.8.0"; - sha256 = "26de9a1275e0c1cae5afbe79ad3aa1a857c3bfc0b6dcc97698e9d02d41de4feb"; - configureFlags = [ "-fexternalLibsass" ]; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ libsass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hlibsass"; - description = "Low-level bindings to Libsass"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsass;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern - ghc-lib-parser ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.19.0.0"; - sha256 = "52eb2e42edc5839bfd9d2dec6c4fb29997eca737537a06df7b2d09bf6c324d82"; - revision = "1"; - editedCabalFile = "0krx0ds5mcj28y6zpg0r50lljn8681wi4c5lqcdz2c71nhixfq8h"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-backprop" = callPackage - ({ mkDerivation, backprop, base, ghc-typelits-knownnat - , ghc-typelits-natnormalise, hmatrix, hmatrix-vector-sized - , microlens, stdenv, vector, vector-sized - }: - mkDerivation { - pname = "hmatrix-backprop"; - version = "0.1.2.3"; - sha256 = "bd12d7feec08e396f4174dfc35f808bfbf096370fc75aee185827d86881a03f5"; - revision = "1"; - editedCabalFile = "03zrx1kvyz8gn2w2ygd7ql98yimsm3kyrnrr1cc99mz1cm0phnrv"; - libraryHaskellDepends = [ - backprop base ghc-typelits-knownnat ghc-typelits-natnormalise - hmatrix hmatrix-vector-sized microlens vector vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-backprop#readme"; - description = "hmatrix operations lifted for backprop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.7"; - sha256 = "4a0f8b6ea1caefebd30f1e726c94f238d96c0f873bdeb5d920367e8aca7c54bf"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.2"; - sha256 = "f2f3ee02607096a56c7c5c7f1ddff2f7f91ee05211ec2bd659add8208b1505a7"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-special" = callPackage - ({ mkDerivation, base, hmatrix, hmatrix-gsl, stdenv }: - mkDerivation { - pname = "hmatrix-special"; - version = "0.19.0.0"; - sha256 = "1f1f8c7f1700cea53132daecc53ca1a9733d4beac91ae1dcd2a2a03c83c9dcd7"; - libraryHaskellDepends = [ base hmatrix hmatrix-gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Interface to GSL special functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.1.2"; - sha256 = "86981a7f412b68e42abff0d929db8ed2eab264d1bde3e4e75fa789066a0f437e"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoopl" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hoopl"; - version = "3.10.2.2"; - sha256 = "097b1316d5f1c8ffe71133223209eb2b095fe13f43dc01d1fe43fd8a545a2b97"; - revision = "2"; - editedCabalFile = "0j6pz4jzhvviyrhhn1j22ikmjvzrg60nzvq26lbpkcb6y4q6rlyx"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hoopl"; - description = "A library to support dataflow analysis and optimization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenpgp-tools" = callPackage - ({ mkDerivation, aeson, alex, array, attoparsec, base - , base16-bytestring, binary, binary-conduit, bytestring, conduit - , conduit-extra, containers, crypto-pubkey, cryptohash, directory - , errors, fgl, graphviz, happy, hOpenPGP, http-client - , http-client-tls, http-types, ixset-typed, lens, monad-loops - , openpgp-asciiarmor, optparse-applicative, prettyprinter - , prettyprinter-ansi-terminal, prettyprinter-convert-ansi-wl-pprint - , resourcet, stdenv, text, time, time-locale-compat, transformers - , unordered-containers, yaml - }: - mkDerivation { - pname = "hopenpgp-tools"; - version = "0.21.2"; - sha256 = "b418dfc81e9fb19216ffe31cdc74c78c054a049d1eb6c01f3a4acbe5c722068c"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson array attoparsec base base16-bytestring binary binary-conduit - bytestring conduit conduit-extra containers crypto-pubkey - cryptohash directory errors fgl graphviz hOpenPGP http-client - http-client-tls http-types ixset-typed lens monad-loops - openpgp-asciiarmor optparse-applicative prettyprinter - prettyprinter-ansi-terminal prettyprinter-convert-ansi-wl-pprint - resourcet text time time-locale-compat transformers - unordered-containers yaml - ]; - executableToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "hOpenPGP-based command-line tools"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, openssl, stdenv }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.4"; - sha256 = "9df46c328fc4c1d1566e2d1539770c9fe9d0422e09ee254721b35ee7d48a7671"; - revision = "1"; - editedCabalFile = "14bs0wjrqnnn1v8c4yznfzggvmgypm2lssgl0cr498kmp54if0lf"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.12"; - sha256 = "44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.8.0.2"; - sha256 = "2fd19796845be73b605ee8830704a6f1f23a80f43731cd36a216fb2b3bb179c8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/hp2pretty"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hpack" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal - , containers, cryptonite, deepseq, directory, filepath, Glob - , http-client, http-client-tls, http-types, pretty, scientific - , stdenv, text, transformers, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hpack"; - version = "0.28.2"; - sha256 = "b9601332bbac2f042947be1f7478ed0c72367e4caa211b779a75dc26cd8180a3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types pretty scientific text transformers unordered-containers - vector yaml - ]; - executableHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types pretty scientific text transformers unordered-containers - vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/hpack#readme"; - description = "An alternative format for Haskell packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "hpqtypes" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, Cabal, containers - , data-default-class, directory, exceptions, filepath, lifted-base - , monad-control, mtl, postgresql, resource-pool, semigroups, stdenv - , text, text-show, time, transformers, transformers-base, vector - }: - mkDerivation { - pname = "hpqtypes"; - version = "1.5.3.0"; - sha256 = "ff25807beee2ce9fa59b823313b6e2fdbd6e575e6e91d885ddee0ebf8b92ffc5"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default-class - exceptions lifted-base monad-control mtl resource-pool semigroups - text text-show time transformers transformers-base vector - ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/hpqtypes"; - description = "Haskell bindings to libpqtypes"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "hprotoc" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , directory, filepath, haskell-src-exts, mtl, parsec - , protocol-buffers, protocol-buffers-descriptor, stdenv - , utf8-string - }: - mkDerivation { - pname = "hprotoc"; - version = "2.4.11"; - sha256 = "93f2e87e8d6fb85464162183b7c9fa4bac09676058f9f7e29cdac63706f3801c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary bytestring containers directory filepath - haskell-src-exts mtl parsec protocol-buffers - protocol-buffers-descriptor utf8-string - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - array base binary bytestring containers directory filepath - haskell-src-exts mtl parsec protocol-buffers - protocol-buffers-descriptor utf8-string - ]; - executableToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hquantlib" = callPackage - ({ mkDerivation, base, containers, hmatrix, hmatrix-gsl - , hmatrix-special, hquantlib-time, mersenne-random-pure64, parallel - , random, statistics, stdenv, time, vector, vector-algorithms - }: - mkDerivation { - pname = "hquantlib"; - version = "0.0.5.0"; - sha256 = "868347c32e17d6f9a2aa289412453b0ad9cd71144ddf2dfb6871b599900f23fe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers hmatrix hmatrix-gsl hmatrix-special hquantlib-time - mersenne-random-pure64 parallel random statistics time vector - vector-algorithms - ]; - executableHaskellDepends = [ - base containers mersenne-random-pure64 parallel time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/paulrzcz/hquantlib.git"; - description = "HQuantLib is a port of essencial parts of QuantLib to Haskell"; - license = "LGPL"; - }) {}; - "hquantlib-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hquantlib-time"; - version = "0.0.4.1"; - sha256 = "ac9ced19f72197fc1bc8b9528c8ae9cf1e8887f2d2ed6519a480b048423d523c"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/paulrzcz/hquantlib-time.git"; - description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; - license = "LGPL"; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , process, ruby, scientific, stdenv, stm, text - , unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.6"; - sha256 = "dda3b4fb243b612915c8a5c415a95c7d68c0d860901fd01b5d0315b7ccda1519"; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.6.0.0"; - sha256 = "14b80075b17b9bfa517e42156dafa2e2ca8951413126d27cbe5a5942bff85a58"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.3.0"; - sha256 = "3312807260f463dc58b26765379114c144be86a94868ab2091812127902eefc8"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsass" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, filepath - , hlibsass, monad-loops, stdenv, transformers - }: - mkDerivation { - pname = "hsass"; - version = "0.7.0"; - sha256 = "73758e87ba43096c0b3eb9ed7029f30d3a4d602dbe68c97760f89e5165901a57"; - libraryHaskellDepends = [ - base bytestring data-default-class filepath hlibsass monad-loops - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hsass"; - description = "Integrating Sass into Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.7.1"; - sha256 = "4fcd00e85cde989652ab5c6b179610c9514180a00cd7b161ea33ebfec3b8a044"; - revision = "1"; - editedCabalFile = "0w4hrmj7ph5dgarl82xpa0g77ncjdqk0wc9wp771pry98xxihzl8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, mtl, old-time, parsec, stdenv }: - mkDerivation { - pname = "hsemail"; - version = "2"; - sha256 = "f5f08a879444abd1f9a8a3e620d7fc83bc632ae3ba9b545bebdf58d5f4bfa8d9"; - libraryHaskellDepends = [ base mtl old-time parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the RFC2822 Internet Message format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsexif" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, iconv - , stdenv, text, time - }: - mkDerivation { - pname = "hsexif"; - version = "0.6.1.6"; - sha256 = "0f7e14cdec698c4e8e17ec84971ca5a604c9e75a861806dbf7088cdfc706b55d"; - revision = "1"; - editedCabalFile = "1dgcgsmx0k5p3ibfv3n5k0c5p1is2m5zfsd2s6nc6d0pz34d4wl9"; - libraryHaskellDepends = [ - base binary bytestring containers iconv text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/hsexif"; - description = "EXIF handling library in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - }: - mkDerivation { - pname = "hsini"; - version = "0.5.1.2"; - sha256 = "eaa6ae68c6271d5c3187054e702719b3ee7916524ffda27bb328cc9aad9ed8e4"; - revision = "1"; - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - doHaddock = false; - doCheck = false; - description = "ini configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hsinstall"; - version = "1.6"; - sha256 = "061090c68bdcdad5efef879c4fc0e4c67c26d34221c333fe4c9880216635c811"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, network - , network-bsd, old-locale, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.3.1.0"; - sha256 = "7f2364f6c0b9c5b85a257267a335816126ef2471c817a42797a5d3c57acaca5b"; - libraryHaskellDepends = [ - base bytestring containers deepseq network network-bsd old-locale - time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/hslogger/wiki"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "0.9.5.2"; - sha256 = "0e4d26f8a76cbfb219851f33d31417c4a3c8f193123367a0749f047103d8bbe5"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - description = "A Lua language interpreter embedding in Haskell"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "0.3.0.2"; - sha256 = "a22acf0984e7d78955ce76f75e7660f84d50b6b59fc70357d01ccbf2bbc0d861"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.1.2.1"; - sha256 = "aeb384f9743b76360f3779e44065fe297fb60f27519933f203b75bd8c2ba8e2d"; - revision = "1"; - editedCabalFile = "0vajlsd7y6pwa08635q0cx8z5c1c55bk7fvavw7g2vmyvxqjzx6n"; - libraryHaskellDepends = [ base hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-test"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, hspec-discover - , hspec-expectations, HUnit, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "hspec"; - version = "2.5.5"; - sha256 = "d5d5b8bc342a3782e950652bc78fae1c09ac0f2a4848c507162fce59569964fb"; - libraryHaskellDepends = [ - base call-stack hspec-core hspec-discover hspec-expectations HUnit - QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.0"; - sha256 = "dba7348e75572f7cd79f3f0719ab39973431927f9bb5bec1445e2f8e5b4fa78c"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.5.5"; - sha256 = "bd947f39c90a1dfeb943ee02c1edf7a6dcd26cb6abcf3a7de4498b612fc5d9ed"; - revision = "2"; - editedCabalFile = "12rlyhiwp5lra0a28x0vgkw33brbavc0fn98s8gankf5p8idpfky"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.5.5"; - sha256 = "dfe177b2c19d32d16dfc44e2cd11dce993f1a1fe72bafafc4a99b190e26f5111"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.4"; - sha256 = "1bbfd524330be3cb0b27945556d01f48e3005e042ee475cdf6e441ba21b51b0a"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "1.0.0"; - sha256 = "14961ae19fde7104f5099624195d0f21b4759e5e635e79d9e63f9f2affca4eb5"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, async, base, call-stack - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.4.6"; - sha256 = "2b31671bfbfe5df0604516278bb1051db42b1e55dfe474ecd446a6630398bb62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array async base call-stack deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array async base call-stack deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-pg-transact" = callPackage - ({ mkDerivation, base, bytestring, hspec, pg-transact - , postgresql-simple, resource-pool, stdenv, text, tmp-postgres - }: - mkDerivation { - pname = "hspec-pg-transact"; - version = "0.1.0.2"; - sha256 = "a5ec2a978a730500f03c15d16eff7e207a4135ebc63afe4cbca7392ad5f01c0c"; - libraryHaskellDepends = [ - base bytestring hspec pg-transact postgresql-simple resource-pool - text tmp-postgres - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact-hspec#readme"; - description = "Helpers for creating database tests with hspec and pg-transact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.9.2"; - sha256 = "055e414bd6531d3454496f9c4bfa1164b861aa9a9102867d7ffeef8d3a92283f"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai-json" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, bytestring - , case-insensitive, hspec-wai, stdenv, template-haskell - }: - mkDerivation { - pname = "hspec-wai-json"; - version = "0.9.2"; - sha256 = "82e324482e04662121a14fc75232e7359d6d1454623c37253b6550a8ec6ccadc"; - libraryHaskellDepends = [ - aeson aeson-qq base bytestring case-insensitive hspec-wai - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Testing JSON APIs with hspec-wai"; - license = stdenv.lib.licenses.mit; - }) {}; - "hstatsd" = callPackage - ({ mkDerivation, base, bytestring, mtl, network, stdenv, text }: - mkDerivation { - pname = "hstatsd"; - version = "0.1"; - sha256 = "446779594257c0fa02d5271c997ee0c22f74f7636d89e34394ad87e5bd285824"; - libraryHaskellDepends = [ base bytestring mtl network text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/hstatsd"; - description = "Quick and dirty statsd interface"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hsx-jmacro" = callPackage - ({ mkDerivation, base, hsp, jmacro, mtl, stdenv, text - , wl-pprint-text - }: - mkDerivation { - pname = "hsx-jmacro"; - version = "7.3.8.1"; - sha256 = "f1903d80017381408ae3f7b9d7b2e4d8c193d72ede96a33ce68fe7e276f1af59"; - libraryHaskellDepends = [ - base hsp jmacro mtl text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/"; - description = "hsp+jmacro support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.1"; - sha256 = "86de0d8820a6cb7fe166e046ae00c1bbe37d27885cd3aa701deaca8fdf646016"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsyslog-udp" = callPackage - ({ mkDerivation, base, bytestring, hsyslog, network, stdenv, text - , time, unix - }: - mkDerivation { - pname = "hsyslog-udp"; - version = "0.2.4"; - sha256 = "0615fd8f2c53db9112f1aeb3899d227b17af035c8db7899cb289c69021eb50f5"; - libraryHaskellDepends = [ - base bytestring hsyslog network text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ThoughtLeadr/hsyslog-udp"; - description = "Log to syslog over a network via UDP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit - , conduit-extra, containers, resourcet, stdenv, text, transformers - , xml-conduit, xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.2"; - sha256 = "05fdbdbf9d7b610bd8d7a67e0036b52b1ec1aec276f3017194e59ee2d661b050"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit conduit-extra containers - resourcet text transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-email-validate" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "html-email-validate"; - version = "0.2.0.0"; - sha256 = "3d2a3ec75b638cec71df57512473052d485dc118aec4662d5a8dae5e95aa6daf"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - description = "Validating an email address against HTML standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.2"; - sha256 = "161a0c9193b4c1279e41b2ce1203ee821e8d6ee2cf755b9f070d68602ed5cee7"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, bytestring - , Cabal, cabal-doctest, containers, hashable, http-types, stdenv - , text, time, time-locale-compat, unordered-containers - , uri-bytestring, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.3.8.1"; - sha256 = "6eeaba4b29a00407cb20b865825b17b8d884c26b09c5bbe7b6e673b4522106b3"; - revision = "1"; - editedCabalFile = "1843bapm2rdkl4941rycryircpqpp7mbal7vgmlikf11f8ws7y7x"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base bytestring containers hashable - http-types text time time-locale-compat unordered-containers - uri-bytestring uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.5.14"; - sha256 = "8e50409704021c51a8955b2d03bfec900ebc3e11fbaebf973f2e654d7bde3647"; - revision = "1"; - editedCabalFile = "0xw5ac4cvcd4hcwl7j12adi7sgffjryqhk0x992k3qs1cxyv5028"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-openssl" = callPackage - ({ mkDerivation, base, HsOpenSSL, http-client, network, stdenv }: - mkDerivation { - pname = "http-client-openssl"; - version = "0.2.2.0"; - sha256 = "96410d977b70f25208d74ffc31ee00ceab4aa970347ef4f8d5757246c61210aa"; - revision = "1"; - editedCabalFile = "0l2a036ypx1kyfr99fggnrb1kv6x8mp53pxzklka2ccggvl6khx3"; - libraryHaskellDepends = [ base HsOpenSSL http-client network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the OpenSSL library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-client, http-client-tls, http-types, mtl, resourcet, stdenv - , transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.2"; - sha256 = "7596448325d8b3ad31b2100fe6ba4a3447a470a461cfb7fbcc0bc90a32245ec5"; - revision = "1"; - editedCabalFile = "0g6rg8r33q5rmrx5287vjfcqwjacchgzyfc8aqqrhrfz3fq5ll0g"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.8"; - sha256 = "0f4c6348487abe4f9d58e43d3c23bdefc7fd1fd5672effd3c7d84aaff05f5427"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3.1"; - sha256 = "da26db73df1eaebb20df2837b0352cc62a6c151d467bea9442767fd3d51c2a2d"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.7.1.3"; - sha256 = "394ffcfb4f655721d5965870bf9861c324c14d40ed4dc173e926235fe0fe124f"; - revision = "1"; - editedCabalFile = "19py5pspx80gg679p9dzqr3iidflppxc1x4vkldamjkidyi406j8"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-streams" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, Cabal, case-insensitive, directory - , HsOpenSSL, http-common, io-streams, mtl, network, network-uri - , openssl-streams, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "http-streams"; - version = "0.8.6.1"; - sha256 = "b8d71f2753ac7cda35b4f03ec64e4b3c7cc4ec5c2435b5e5237fe863cb687da3"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - case-insensitive directory HsOpenSSL http-common io-streams mtl - network network-uri openssl-streams text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/http-streams/"; - description = "An HTTP client using io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.2"; - sha256 = "523102d7ba8923e1b399cfd2a1c821e858146ecd934fc147c3acd0fd2b2f9305"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive - , containers, network-byte-order, psqueues, stdenv, stm - }: - mkDerivation { - pname = "http2"; - version = "1.6.4"; - sha256 = "2fcadd614cb8fa031e23a0fae096be76b08af7bbd525dc67096bd575cc3f1e66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring case-insensitive containers - network-byte-order psqueues stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library including frames, priority queues and HPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "httpd-shed" = callPackage - ({ mkDerivation, base, network, network-uri, stdenv }: - mkDerivation { - pname = "httpd-shed"; - version = "0.4.0.3"; - sha256 = "b0ff87d81e61f788d3920d952e4469d984742ba49c006df086c159886bf09218"; - revision = "2"; - editedCabalFile = "12y9qf8s0aq4dc80wrvh14cjvvm4mcygrqq72w4z8w9n8mp8jg9p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base network network-uri ]; - doHaddock = false; - doCheck = false; - description = "A simple web-server with an interact style API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.1.2"; - sha256 = "6552def225a0bde18dd4d416e02dc9a83472924550834529a349dd9286785690"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.esy.fun/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "1.2.0.6"; - sha256 = "54aac2479fec2ecefeb7ff42e659d2d0d1fba125a339eb3df33ed2fb266ff683"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvega" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, vector }: - mkDerivation { - pname = "hvega"; - version = "0.1.0.3"; - sha256 = "0a7759965ad969e2b541f4ea39dc7f9d53442e39a61893edf7446bc3eb8f0542"; - libraryHaskellDepends = [ aeson base text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "Create Vega and Vega-Lite visualizations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, hw-bits, hw-excess, hw-prim - , hw-rankselect-base, stdenv, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.2.0.2"; - sha256 = "1622757f59d5fc789fc27c2311ba5147cd9491ad80d4e517755cb158ae87575d"; - libraryHaskellDepends = [ - base hw-bits hw-excess hw-prim hw-rankselect-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bytestring, hw-int, hw-prim, hw-string-parse - , safe, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.0.5"; - sha256 = "1a4561307e8df6a6334db962fd772bf5bcc7d545727a9e2133e6d7aaffc46bdc"; - libraryHaskellDepends = [ - base bytestring hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, transformers, unliftio-core - , word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.5"; - sha256 = "047d5abec487bf522050d2a7f318ce9f0e67766a58cf67669d2d6fa7ae8dd701"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time transformers - unliftio-core word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.5"; - sha256 = "5ceaec01c446c5a507e889f514201e4739ea6f1cc22a4c68894bb023257bd931"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.0.2"; - sha256 = "6735d0cd4ee86d5c13d5ea067251c6b1126f7569d78c6241f3147eb114b7a1f6"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.1"; - sha256 = "1127b7cff38319a292ca6d57c8b7a1996bb80b90e86488a0f82a76eba9f91268"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, vector }: - mkDerivation { - pname = "hw-hedgehog"; - version = "0.1.0.2"; - sha256 = "7e6d4418d915b142dc8546679a38a28be00de62683c45ece62478600ecc3653a"; - libraryHaskellDepends = [ base hedgehog vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hedgehog#readme"; - description = "Extra hedgehog functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - , transformers - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.5"; - sha256 = "d3d17aadf474e82bb2d90c2d48cadf18724cbeab08e010bdf250591ce9c5f64f"; - revision = "4"; - editedCabalFile = "1sr5cf1s86mp6nlw1vgj565zsrxmwa134g5003p1834vynyh98zq"; - libraryHaskellDepends = [ - base call-stack hedgehog hspec HUnit transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.3"; - sha256 = "8336a5111638d3298266c9a1458233a09798bfa6d558219d4fe3bdd35d8d4a3f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-ip"; - version = "0.1.0.0"; - sha256 = "3664d0fbbb1fd734b9b3a8d39b1115390ddc1a8a5e48b4ae5d5960d3ba7980bf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, conduit, containers, criterion, dlist - , hw-balancedparens, hw-bits, hw-conduit, hw-diagnostics, hw-mquery - , hw-parser, hw-prim, hw-rankselect, hw-rankselect-base, mmap - , mono-traversable, resourcet, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "0.6.0.0"; - sha256 = "bb8e20e8a035279ee398c6d9162cda3f965d4f96e39c1d363be2456b1feb41d9"; - revision = "2"; - editedCabalFile = "0ygq95nx4sb70l5kfxlsj6rf2b3ry84ixby567n0jk1g0zks3z7s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring conduit containers - dlist hw-balancedparens hw-bits hw-conduit hw-mquery hw-parser - hw-prim hw-rankselect hw-rankselect-base mmap mono-traversable - resourcet text vector word8 - ]; - executableHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring conduit containers - criterion dlist hw-balancedparens hw-bits hw-conduit hw-diagnostics - hw-mquery hw-parser hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable resourcet text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, stdenv }: - mkDerivation { - pname = "hw-mquery"; - version = "0.1.0.1"; - sha256 = "724aa5b0490b57a89fb71b7042a3770f7978a4c975aa3d1b671576b0e83e113d"; - revision = "1"; - editedCabalFile = "0rxp6sqiskbrh30r7fqq2h2nbby9njdm9kj387njrb2xwyvd04m7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-wl-pprint base dlist ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim - , mono-traversable, stdenv, text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.0.0.3"; - sha256 = "dd8417c76ef5da89df2842b42767d825815ec3594c8e80e28e96570d8046c6f2"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim mono-traversable text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, mmap, semigroups, stdenv - , transformers, vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.22"; - sha256 = "114cc374cf048f99f46c524d76f3ecd5f7d1774b47098cee79274eeabf54ae99"; - libraryHaskellDepends = [ - base bytestring mmap semigroups transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, hw-balancedparens - , hw-bits, hw-prim, hw-rankselect-base, mmap, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.10.0.3"; - sha256 = "aa1d079f56064c649bc820219b55ae16d723faed663283ab73760db4f2f514cb"; - revision = "1"; - editedCabalFile = "1rkni89h3sq02y03phb2bgx4yrx4gly9mzan6r4ziph0qayf09wf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-balancedparens hw-bits hw-prim hw-rankselect-base - vector - ]; - executableHaskellDepends = [ - base directory hw-bits hw-prim hw-rankselect-base mmap vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, hw-bits, hw-int, hw-prim - , hw-string-parse, safe, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.2.1"; - sha256 = "d20a6cab42189cf71a85b355d0ed52167bc2991210c3af76139a2e6229f79360"; - revision = "3"; - editedCabalFile = "1hbbxxzmar0djj4r43nr3ar9nsl659wnq20rw6cp6q974ivlglx2"; - libraryHaskellDepends = [ - base bits-extra hw-bits hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-xml" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, cereal, conduit, containers, deepseq, ghc-prim - , hw-balancedparens, hw-bits, hw-conduit, hw-parser, hw-prim - , hw-rankselect, hw-rankselect-base, lens, mtl, resourcet, stdenv - , transformers, vector, word8 - }: - mkDerivation { - pname = "hw-xml"; - version = "0.1.0.3"; - sha256 = "27a9a8212331c8c91d4a66baf8f0785c4ce90c087c02359bd16dfaeabc627e97"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring cereal conduit - containers deepseq ghc-prim hw-balancedparens hw-bits hw-conduit - hw-parser hw-prim hw-rankselect hw-rankselect-base lens mtl - resourcet transformers vector word8 - ]; - executableHaskellDepends = [ - base bytestring hw-balancedparens hw-bits hw-prim hw-rankselect - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-xml#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hworker" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hedis, stdenv - , text, time, uuid - }: - mkDerivation { - pname = "hworker"; - version = "0.1.0.1"; - sha256 = "34cbcc4db8f190ab0dc02a072adcf1fc75b7beab7e545982872bf265a1223f1d"; - revision = "1"; - editedCabalFile = "0w2bpvfr68n2qipvr8gc5096dain3g2536m4n9kqx1fahf12mwy5"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hedis text time uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dbp/hworker"; - description = "A reliable at-least-once job queue built on top of redis"; - license = stdenv.lib.licenses.isc; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.16"; - sha256 = "0d55e35cc718891d0987b7c8e6c43499efa727c68bc92e88e8b99461dff403e3"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.2.0.1"; - sha256 = "e46614d6bf0390b2a6a1aeeb0771e6d366944da40fb21c12c2f8a94d1f47b4d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-pickle-utils" = callPackage - ({ mkDerivation, base, hxt, mtl, stdenv }: - mkDerivation { - pname = "hxt-pickle-utils"; - version = "0.1.0.3"; - sha256 = "9ddba19f27d9d8c155012da4dd9598fb318cab862da10f14ee4bc3eb5321a9c5"; - revision = "3"; - editedCabalFile = "0d5fg718y7xzw76ip33q0w1liqk70q9074qkd198mjnijxjcrkf3"; - libraryHaskellDepends = [ base hxt mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/silkapp/hxt-pickle-utils"; - description = "Utility functions for using HXT picklers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, safecopy, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.2"; - sha256 = "f5b83cfcc2c9d1e40e04bbc9724428b2655c3b54b26beef714c98dabee5f1048"; - revision = "1"; - editedCabalFile = "1zh47rrwih6933hhq9vd0ly5s42w0bn196znkg9l8q6r6drl7xsf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection safecopy - semigroupoids semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.7.1"; - sha256 = "a25c5073f42896ccf81ff5936f3a42f290730f61da7f225b126ad22ff601b1c0"; - revision = "5"; - editedCabalFile = "00wsp69aqi5i906liqa4sfs0p2yclhr1ihz8y1700b3ymb70lzql"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hyraxAbif" = callPackage - ({ mkDerivation, base, binary, bytestring, directory, filepath - , hscolour, pretty-show, protolude, stdenv, text - }: - mkDerivation { - pname = "hyraxAbif"; - version = "0.2.3.10"; - sha256 = "6be4c3fae205e3c2e16ef25d71c9190cae9be0870edd086f07920f7afa0300f5"; - revision = "2"; - editedCabalFile = "1dwkqlkjg5hbjlwl7cjxmhg1camhlqpaqjrpmkwknscj76hfckvi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring directory filepath protolude text - ]; - executableHaskellDepends = [ - base bytestring hscolour pretty-show protolude text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hyraxbio/hyraxAbif/#readme"; - description = "Modules for parsing, generating and manipulating AB1 files"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "idris" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal - , ansi-wl-pprint, array, async, base, base64-bytestring, binary - , blaze-html, blaze-markup, bytestring, Cabal, cheapskate - , code-page, containers, deepseq, directory, filepath, fingertree - , fsnotify, gmp, haskeline, ieee754, libffi, megaparsec, mtl - , network, optparse-applicative, pretty, process, regex-tdfa, safe - , split, stdenv, terminal-size, text, time, transformers, uniplate - , unix, unordered-containers, utf8-string, vector - , vector-binary-instances, zip-archive - }: - mkDerivation { - pname = "idris"; - version = "1.3.1"; - sha256 = "d1a1b0dddbd551218fee0ecb2c223f082288888a41552ead3852a4425181c93a"; - configureFlags = [ "-fcurses" "-fexeconly" "-fffi" "-fgmp" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal ansi-wl-pprint array async - base base64-bytestring binary blaze-html blaze-markup bytestring - cheapskate code-page containers deepseq directory filepath - fingertree fsnotify haskeline ieee754 libffi megaparsec mtl network - optparse-applicative pretty process regex-tdfa safe split - terminal-size text time transformers uniplate unix - unordered-containers utf8-string vector vector-binary-instances - zip-archive - ]; - librarySystemDepends = [ gmp ]; - executableHaskellDepends = [ - base directory filepath haskeline transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.idris-lang.org/"; - description = "Functional Programming Language with Dependent Types"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gmp;}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal - , cmdargs, containers, directory, filepath, ghc, ghc-boot - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint - , http-client, http-client-tls, ipython-kernel, mtl, parsec - , process, random, shelly, split, stdenv, stm, strict, system-argv0 - , text, transformers, unix, unordered-containers, utf8-string, uuid - , vector - }: - mkDerivation { - pname = "ihaskell"; - version = "0.9.1.0"; - sha256 = "36aab2ee12bb8e761c6e27b7f68b7989a147ef9b12abf4aad74f33f7645ce1e4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cereal cmdargs containers - directory filepath ghc ghc-boot ghc-parser ghc-paths haskeline - haskell-src-exts hlint http-client http-client-tls ipython-kernel - mtl parsec process random shelly split stm strict system-argv0 text - transformers unix unordered-containers utf8-string uuid vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory ghc ipython-kernel - process strict text transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A Haskell backend kernel for the IPython project"; - license = stdenv.lib.licenses.mit; - }) {}; - "ihaskell-hvega" = callPackage - ({ mkDerivation, aeson, base, hvega, ihaskell, stdenv, text }: - mkDerivation { - pname = "ihaskell-hvega"; - version = "0.1.0.3"; - sha256 = "cb91361cbe7489c795254876458ed89bbf01757bbde00bdf93080da1a1e17836"; - libraryHaskellDepends = [ aeson base hvega ihaskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "IHaskell display instance for hvega types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.3"; - sha256 = "13bf923ad64d5dd1c517a64c0fd017fe94951a18ebbfe7e587b11e3ad6ebd5fd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv, template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.3"; - sha256 = "208f1f3bdc717f5f953cb7c9935c84d6a6291b7cd5ed8a22fa8567184be33d29"; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, stdenv }: - mkDerivation { - pname = "incremental-parser"; - version = "0.3.2.1"; - sha256 = "d9515a1938d47bc9861600aac5304ac1b98727905145a061dc12664b45b56a1d"; - libraryHaskellDepends = [ base monoid-subclasses ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indentation-core" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "indentation-core"; - version = "0.0.0.2"; - sha256 = "099a3e3bb82c6af1b99172722bb01e954d1722d468e2d0722415f4f479993fd0"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators core library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indentation-parsec" = callPackage - ({ mkDerivation, base, indentation-core, mtl, parsec, stdenv }: - mkDerivation { - pname = "indentation-parsec"; - version = "0.0.0.2"; - sha256 = "0e37846ef1ea045d6c365be38f2b55ff7dd36e960f21ba28e879137874c8f2d4"; - libraryHaskellDepends = [ base indentation-core mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators for Parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.5.0.0"; - sha256 = "16bcc7ca0c1292e196a9c545df507e20e96f54a94392b775a686312503d9c3d3"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.1.2"; - sha256 = "d896ae5b3919a7a9fecdd9336e8f330d055fbdae4821be04b7c1266ccaa07d10"; - revision = "1"; - editedCabalFile = "198hmw2m3539vmh3s58d33h6vl5d0fqpdms8rp8cwj196diipjlc"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.3"; - sha256 = "bda19185f3948a8988a53b1d6b7dc8f6676033c988c1d0d3c2e615fd6e920d09"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.6.1"; - sha256 = "b7091b42093f74e45c76b00fba014450818fd8c9321f8b33f06f5f4a90b8dec1"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.3.6"; - sha256 = "fcbbe3745a125e80dd6d0b4fe9b3a590507cf73dfaa62e115b20a46f0fd53cd9"; - revision = "1"; - editedCabalFile = "0gfikdal67aws20i5r4wg4r0lgn844glykcn3nnmbmyvwsks049l"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.6.1.0"; - sha256 = "d0d8c1510d0d858fb8d939f99a37ec1d2f4eb15ec848ab71fcad9ea8b1ce6e6d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "inline-java" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath, ghc - , jni, jvm, language-java, mtl, process, stdenv, template-haskell - , temporary, text - }: - mkDerivation { - pname = "inline-java"; - version = "0.8.4"; - sha256 = "5b94f54dd74530ae3427217a0d68ac1edf34995b8b23170ea3433c4026e4afb5"; - libraryHaskellDepends = [ - base bytestring Cabal directory filepath ghc jni jvm language-java - mtl process template-haskell temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java#readme"; - description = "Java interop via inline Java code in Haskell modules"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inliterate" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, containers - , haskell-src-exts, lucid, lucid-extras, plotlyhs, stdenv, text - , time - }: - mkDerivation { - pname = "inliterate"; - version = "0.1.0"; - sha256 = "2d96cc64e3b923003668c88fd73c30d5da09a2c9e2fb6af62912f54478d1e39f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html cheapskate containers haskell-src-exts lucid - lucid-extras plotlyhs text time - ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/inliterate"; - description = "Interactive literate programming"; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.1.0"; - sha256 = "d71d126bf455898492e1d2ba18b2ad04453f8b0e4daff3926a67f0560a712298"; - revision = "9"; - editedCabalFile = "02d4zqyb9dbahkpcbpgxylrc5xxc0zbw1awj5w0jyrql2g2b6a5f"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens semigroupoids semigroups text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.2.0.1"; - sha256 = "1f699bf8e95ab90d36725a8a090ad052dbb051cce379fd45a664f561e66ea194"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.2.2"; - sha256 = "ba86628d5c14f31fddccea86eeec122ed992af28d5b7ad964b2f5487605e7fc3"; - revision = "1"; - editedCabalFile = "1684dkh8j2xqsd85bfsmhv3iam37hasjg4x79mvl6xh7scmpfdbw"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolatedstring-perl6" = callPackage - ({ mkDerivation, base, bytestring, Cabal, haskell-src-meta, process - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "interpolatedstring-perl6"; - version = "1.0.1"; - sha256 = "5eadba4ba24c10a8f2a4a1cc48af6eb0f07190d7c0e691a22c5a99fb37367258"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for Perl6-style multi-line interpolated strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.0.3"; - sha256 = "e29794d7bb07e13c0fc3e6a05948862fd5ccd50910b9718e4818d354e26f3049"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.8.1"; - sha256 = "9ce3bf9d31b9ab2296fccc25031fd52e1c3e4abeca5d3bb452a725b586eb7e03"; - revision = "4"; - editedCabalFile = "1qx3q0v13l1zaln9zdk8chxpxhshbz5x0vqm0qda7d1kpv7h6a7r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intro" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , dlist, extra, hashable, mtl, safe, stdenv, text, transformers - , unordered-containers, writer-cps-mtl - }: - mkDerivation { - pname = "intro"; - version = "0.3.2.0"; - sha256 = "c34f815259b405f587b09caa65dc5a464377ed5b5b3b5535d2b4689eca9ece59"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq dlist extra hashable mtl - safe text transformers unordered-containers writer-cps-mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/intro#readme"; - description = "\"Fixed Prelude\" - Mostly total and safe, provides Text and Monad transformers"; - license = stdenv.lib.licenses.mit; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.3"; - sha256 = "d73e5def38da9fdd85def073857aa5f4b1d3b0c2df05c43d58a677cca02d440c"; - revision = "1"; - editedCabalFile = "0sjy375npw6lqcckhyicizzv91v8jh3ca5yjkygiaj22bw5k8c74"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invertible-grammar" = callPackage - ({ mkDerivation, base, bifunctors, containers, mtl, prettyprinter - , profunctors, semigroups, stdenv, tagged, template-haskell, text - , transformers - }: - mkDerivation { - pname = "invertible-grammar"; - version = "0.1.1"; - sha256 = "29900cf54783b8f67449a7fd45e986efaec6270cb31f3815650e9a0406061bef"; - revision = "1"; - editedCabalFile = "0hgssm0vm9d1n6iiz43jnr4pnyb6lxm0f2wyywldf8dnnd2j7qdf"; - libraryHaskellDepends = [ - base bifunctors containers mtl prettyprinter profunctors semigroups - tagged template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/invertible-grammar"; - description = "Invertible parsing combinators framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-choice" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "io-choice"; - version = "0.0.7"; - sha256 = "394a60c4b0bcb3ce0dab6618891ab6e7405e583f724ca445ddc58b59725a669b"; - libraryHaskellDepends = [ - base lifted-base monad-control template-haskell transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Choice for IO and lifted IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.0.1"; - sha256 = "5dcb3717933197a84f31be74abf545126b3d25eb0e0d64f722c480d3c46b2c8b"; - revision = "2"; - editedCabalFile = "1mcab95d6hm098myh9gp7sh10srigjphgvm8s9pfs7jg5hzghy14"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams-haproxy" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, io-streams, network - , stdenv, transformers - }: - mkDerivation { - pname = "io-streams-haproxy"; - version = "1.0.0.2"; - sha256 = "77814f8258b5c32707a13e0d30ab2e144e7ad073aee821d6def65554024ed086"; - revision = "4"; - editedCabalFile = "06c51a057n5bc9xfbp2m4jz5ds4z1xvmsx5mppch6qfwbz7x5i9l"; - libraryHaskellDepends = [ - attoparsec base bytestring io-streams network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "HAProxy protocol 1.5 support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable - , primitive, stdenv, text, vector - }: - mkDerivation { - pname = "ip"; - version = "1.3.0"; - sha256 = "9e4c869d00cc8348b4648983627fb05f4b4eb4cc6b51ec72523d0419c81aac81"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hashable primitive text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "1.0.0"; - sha256 = "e805be52d77edfb0e71740dbfa57403654cb34929083589d79d44757c01f80f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to generate IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.7"; - sha256 = "e6a3fe4a6f2a78fcee0f98255f97232d8b6b9b1fa48faee3bef96f0b462a4b3d"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, containers - , cryptonite, directory, filepath, memory, mtl, process, stdenv - , temporary, text, transformers, unordered-containers, uuid - , zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.9.1.0"; - sha256 = "53616435d1fef56a5ba3ad219e9ccf9d8845024b0f2cc5864575440078cc8424"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal containers cryptonite directory - filepath memory mtl process temporary text transformers - unordered-containers uuid zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.0.5"; - sha256 = "27e224e1323cdc56ae3b536283a133e7e2b8051e4c5dfa9505a8bd79992a0c8f"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.1"; - sha256 = "b0a8f935eb3b4613e74efce7a913592f72835194b8977271f35eb09c578b3b52"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-dcc" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, io-streams - , iproute, irc-ctcp, mtl, network, path, safe-exceptions, stdenv - , transformers, utf8-string - }: - mkDerivation { - pname = "irc-dcc"; - version = "2.0.1"; - sha256 = "6408a28733743d3463664677c5e3ad72e46c168799dad458988067039f25d2df"; - revision = "8"; - editedCabalFile = "1ya1bl8pdzbs3gxkq7hsyvkaajf8prrdhr1lx5hm9pi1nqsi879z"; - libraryHaskellDepends = [ - attoparsec base binary bytestring io-streams iproute irc-ctcp mtl - network path safe-exceptions transformers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JanGe/irc-dcc"; - description = "A DCC message parsing and helper library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.5"; - sha256 = "f2cd444b2be68402c773a4b451912817f06d33093aea691b42ebeed3630ff0c8"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ixset-typed" = callPackage - ({ mkDerivation, base, containers, deepseq, safecopy, stdenv, syb - , template-haskell - }: - mkDerivation { - pname = "ixset-typed"; - version = "0.4.0.1"; - sha256 = "a8d3655f4cebf66013363a4456287052391faad76f00f5b4001ba7d11073ac8c"; - revision = "1"; - editedCabalFile = "0kfklsbjn4gmx76vl7vm1s149f13h2p537930yaq8s2671lzc79p"; - libraryHaskellDepends = [ - base containers deepseq safecopy syb template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Efficient relational queries on Haskell sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.4"; - sha256 = "42aeb281fb62a08bbaca4b20801d55879b0688e25a92962158fbd0578bd21405"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.3"; - sha256 = "6bac08ad1a1ff7452a2963272f96f5de0a3df200fb3219dde6ee93e4963dd01c"; - revision = "3"; - editedCabalFile = "0f4gqssh2ayl089zzl8m5rwa66x430dg1q5hfwcfd56r6xr6wi1l"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal#readme"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , haskell-src-exts, haskell-src-meta, mtl, parseargs, parsec - , regex-posix, safe, stdenv, syb, template-haskell, text - , unordered-containers, vector, wl-pprint-text - }: - mkDerivation { - pname = "jmacro"; - version = "0.6.15"; - sha256 = "fae43fec6f4ba9ebc1fbd5605fc1b65b1c80bb0869bcfcd80d417e6d82cb6cac"; - revision = "2"; - editedCabalFile = "0r16y3sk22vgrciaadrdzjd768mnh08s019ffgk5jma782nz9v7d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers haskell-src-exts haskell-src-meta - mtl parsec regex-posix safe syb template-haskell text - unordered-containers vector wl-pprint-text - ]; - executableHaskellDepends = [ - aeson base bytestring containers haskell-src-exts haskell-src-meta - mtl parseargs parsec regex-posix safe syb template-haskell text - unordered-containers vector wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuotation library for programmatic generation of Javascript code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring - , containers, contravariant, jmacro, mtl, scientific, split, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "jmacro-rpc"; - version = "0.3.3"; - sha256 = "ee912cdc6970ae6e71874e460eb40206f107371c2764f53777624a483cda1e3f"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-html bytestring containers - contravariant jmacro mtl scientific split text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/gershomb/jmacro"; - description = "JSON-RPC clients and servers using JMacro, and evented client-server Reactive Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jmacro-rpc-snap" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, jmacro - , jmacro-rpc, mtl, snap-core, stdenv - }: - mkDerivation { - pname = "jmacro-rpc-snap"; - version = "0.3"; - sha256 = "48aea4a4ba90532ca105b6b274060a47a1c509b8346e0db1b61365c2a9e8dfeb"; - libraryHaskellDepends = [ - aeson base bytestring containers jmacro jmacro-rpc mtl snap-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/gershomb/jmacro-rpc"; - description = "Snap backend for jmacro-rpc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jni" = callPackage - ({ mkDerivation, base, bytestring, choice, constraints, containers - , cpphs, deepseq, inline-c, jdk, singletons, stdenv - }: - mkDerivation { - pname = "jni"; - version = "0.6.1"; - sha256 = "1f127bb9f8f7f5c5c105f0da8d444dc4926165ef1c6db9487bd54f8dd1dde1fc"; - libraryHaskellDepends = [ - base bytestring choice constraints containers deepseq inline-c - singletons - ]; - librarySystemDepends = [ jdk ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/inline-java/tree/master/jni#readme"; - description = "Complete JNI raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) jdk;}; - "jose" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, concise, containers, cryptonite, lens, memory - , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances - , safe, semigroups, stdenv, template-haskell, text, time - , unordered-containers, vector, x509 - }: - mkDerivation { - pname = "jose"; - version = "0.7.0.0"; - sha256 = "8cd90a1a205c2dd7d8ab5e37caf4889192820128f01f9164aaefc7a91d963914"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups template-haskell - text time unordered-containers vector x509 - ]; - executableHaskellDepends = [ aeson base bytestring lens mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-jose"; - description = "Javascript Object Signing and Encryption and JSON Web Token library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.7.8"; - sha256 = "d3e1693e28d2de4914011a4f573070b02a71c8e40c142c9ab8b00c8629c5f32b"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , pretty, stdenv, syb, text - }: - mkDerivation { - pname = "json"; - version = "0.9.3"; - sha256 = "8baf1de09983df8036fda854c4d1446f156a52d4988b863175e29af35c1d1afd"; - revision = "2"; - editedCabalFile = "0iqmwfq6s1fc8jj16yx2d7jpzf94scd1hc4yvz281zxj7kds2ms5"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec pretty syb text - ]; - doHaddock = false; - doCheck = false; - description = "Support for serialising Haskell to and from JSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-autotype" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, filepath - , GenericPretty, hashable, lens, mtl, optparse-applicative, pretty - , process, scientific, stdenv, text, uniplate, unordered-containers - , vector, yaml - }: - mkDerivation { - pname = "json-autotype"; - version = "2.0.0"; - sha256 = "c8f4a45a495e534d51d7c3b045894d586ca6d9d2602ffe3fd6418c84c81c3756"; - revision = "1"; - editedCabalFile = "00wbcq9bx6sq6i5756ja6pf016xbpk2kflq20ncdv76zycxdkqnm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers filepath GenericPretty hashable lens mtl - pretty process scientific text uniplate unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers filepath GenericPretty hashable - lens mtl optparse-applicative pretty process scientific text - uniplate unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Automatic type declaration for JSON input data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.5"; - sha256 = "1a17437637404bc71cb1d3c1ad82bf26fc5b8c27cd71673a3b0f2a72b185c89f"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, json-rpc-server, mtl - , stdenv, text, unordered-containers, vector, vector-algorithms - }: - mkDerivation { - pname = "json-rpc-client"; - version = "0.2.5.0"; - sha256 = "5349f5c0b0fa8f6c5433152d6effc10846cfb3480e78c5aa99adb7540bcff49c"; - revision = "10"; - editedCabalFile = "19vf7gibvqgcm27b5n0ls4s7wi1kr87crn776ifqc9gbr2l9bfpi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring json-rpc-server mtl text unordered-containers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-client"; - description = "JSON-RPC 2.0 on the client side."; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.5"; - sha256 = "9f917ba4b01e1a439482cda9be9fff865043915067cc26571e3df682a3bf3ac0"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-rpc-server" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, mtl, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-server"; - version = "0.2.6.0"; - sha256 = "169e9997734bd1d7d07a13b5ae0223d5363c43de93b0d5fbb845a598f9eaccf5"; - revision = "7"; - editedCabalFile = "1fjkl0p5glkk01jny6ar62356pmp2a2vf9v1jq67ly3y14dcvywq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-server"; - description = "JSON-RPC 2.0 on the server side."; - license = stdenv.lib.licenses.mit; - }) {}; - "json-schema" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, containers - , generic-aeson, generic-deriving, mtl, scientific, stdenv, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "json-schema"; - version = "0.7.4.2"; - sha256 = "e872038810b6befd18cc6a29d315ad2099f81a112b71fa5a2662070c00636f25"; - revision = "1"; - editedCabalFile = "0pwmh48z54n0mrwzmgff95mwy1jbmy1rwsk5kmddby86f0j5873g"; - libraryHaskellDepends = [ - aeson base base-compat-batteries containers generic-aeson - generic-deriving mtl scientific text time unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Types and type classes for defining JSON schemas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "jvm" = callPackage - ({ mkDerivation, base, bytestring, choice, constraints - , distributed-closure, exceptions, jni, singletons, stdenv, text - , vector - }: - mkDerivation { - pname = "jvm"; - version = "0.4.2"; - sha256 = "70f1d6ecec95fc31e633158fd3e467c92d9165f54e8c4de44211d6759c9874fc"; - libraryHaskellDepends = [ - base bytestring choice constraints distributed-closure exceptions - jni singletons text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java/tree/master/jvm#readme"; - description = "Call JVM methods from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jvm-batching" = callPackage - ({ mkDerivation, base, bytestring, Cabal, distributed-closure - , inline-java, jni, jvm, singletons, stdenv, text, vector - }: - mkDerivation { - pname = "jvm-batching"; - version = "0.1.1"; - sha256 = "b837a1732970467aaa78489c4311a9c701abef87eccc523b9034a2b52f857d1b"; - setupHaskellDepends = [ base Cabal inline-java ]; - libraryHaskellDepends = [ - base bytestring distributed-closure inline-java jni jvm singletons - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java/tree/master/jvm-batching#readme"; - description = "Provides batched marshalling of values between Java and Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jvm-streaming" = callPackage - ({ mkDerivation, base, Cabal, distributed-closure, inline-java, jni - , jvm, jvm-batching, singletons, stdenv, streaming, vector - }: - mkDerivation { - pname = "jvm-streaming"; - version = "0.3.1"; - sha256 = "8d1b7c7e9b142a0e80bb7540082ff3bec0505ce82ea1dcc1f8c277f60215f94d"; - setupHaskellDepends = [ base Cabal inline-java jvm-batching ]; - libraryHaskellDepends = [ - base distributed-closure inline-java jni jvm jvm-batching - singletons streaming vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/inline-java/tree/master/jvm-streaming#readme"; - description = "Expose Java iterators as streams from the streaming package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jwt" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cryptonite - , data-default, http-types, memory, network-uri, scientific - , semigroups, stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "jwt"; - version = "0.7.2"; - sha256 = "17967413d21399596a236bc8169d9e030bb85e2b1c349c6e470543767cc20a31"; - revision = "1"; - editedCabalFile = "1q8h94yslw6k6zcjbwx94pnji8dcr2w5n1wzgzfb8hb78w2qr1dm"; - libraryHaskellDepends = [ - aeson base bytestring containers cryptonite data-default http-types - memory network-uri scientific semigroups text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/ssaasen/haskell-jwt"; - description = "JSON Web Token (JWT) decoding and encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, free, invariant, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.2"; - sha256 = "6b727e586f744b96529415eeabc745dfe05feea61f6b6bad90c224c879f4dbd3"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive free invariant mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.0"; - sha256 = "d945ded925216b8f260c62c2fce593631d772bffa1f203550a6b9750ca3a81f1"; - revision = "2"; - editedCabalFile = "1bcc3kh6kndmkqi3vaxp27mg1qb7xbg1h8pgjc1kk1iawnhl930j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kansas-comet" = callPackage - ({ mkDerivation, aeson, base, containers, data-default-class - , scotty, stdenv, stm, text, time, transformers - , unordered-containers - }: - mkDerivation { - pname = "kansas-comet"; - version = "0.4"; - sha256 = "1f1a4565f2e955b8947bafcb9611789b0ccdf9efdfed8aaa2a2aa162a07339e1"; - revision = "18"; - editedCabalFile = "0yxgndvrashc0cp3zv39gjrzw7p53g0k51p13q67nqnpxhh05w2k"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base containers data-default-class scotty stm text time - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/kansas-comet/"; - description = "A JavaScript push mechanism based on the comet idiom"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12.1"; - sha256 = "7fcea48187df82c02c159dea07a581cddf371023e6a3c34de7fa69a8ef2315fb"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kleene" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, lattices - , MemoTrie, QuickCheck, range-set-list, regex-applicative, stdenv - , step-function, text, transformers - }: - mkDerivation { - pname = "kleene"; - version = "0"; - sha256 = "c652aecfb2a42fec6b7cc0135fe95764a27fe099c6934071ef5fa55075cd0b02"; - revision = "1"; - editedCabalFile = "1izdmr7a2d7qssnj732m2qc02inm3hrc882x9nyvz68648pvwwsx"; - libraryHaskellDepends = [ - base base-compat-batteries containers lattices MemoTrie QuickCheck - range-set-list regex-applicative step-function text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/kleene"; - description = "Kleene algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "kraken" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, mtl, stdenv - }: - mkDerivation { - pname = "kraken"; - version = "0.1.0"; - sha256 = "335ce7cb85f7d3ed71eb067ad9642d13d2ca1d62ce8670596c8b69aacc27828a"; - revision = "2"; - editedCabalFile = "141qx2fb3dimv20qsl2q1bagwcn9i0r72z2ha1w7191m557in319"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls mtl - ]; - doHaddock = false; - doCheck = false; - description = "Kraken.io API client"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lackey" = callPackage - ({ mkDerivation, base, servant, servant-foreign, stdenv, text }: - mkDerivation { - pname = "lackey"; - version = "1.0.7"; - sha256 = "8618f010d34ddc7a077198e6afc5ed3fcbcac4d3aaf3c916e9e43aac1ba92059"; - libraryHaskellDepends = [ base servant servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby clients from Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "lambdabot-core" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , dependent-map, dependent-sum, dependent-sum-template, directory - , edit-distance, filepath, haskeline, hslogger, HTTP, lifted-base - , monad-control, mtl, network, parsec, prim-uniq, random, random-fu - , random-source, regex-tdfa, SafeSemaphore, split, stdenv, syb - , template-haskell, time, transformers, transformers-base, unix - , utf8-string, zlib - }: - mkDerivation { - pname = "lambdabot-core"; - version = "5.1.0.4"; - sha256 = "f33bcef0e390c50569613696fa2dad8e5b5f6407a981e5e90f1a5c770807d7b2"; - revision = "3"; - editedCabalFile = "0rj67mygyclp9aczr4kadl0azngn8xmi5v2rzha780pjz483a6hj"; - libraryHaskellDepends = [ - base binary bytestring containers dependent-map dependent-sum - dependent-sum-template directory edit-distance filepath haskeline - hslogger HTTP lifted-base monad-control mtl network parsec - prim-uniq random random-fu random-source regex-tdfa SafeSemaphore - split syb template-haskell time transformers transformers-base unix - utf8-string zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Lambdabot"; - description = "Lambdabot core functionality"; - license = "GPL"; - }) {}; - "lambdabot-irc-plugins" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , lambdabot-core, lifted-base, mtl, network, SafeSemaphore, split - , stdenv, time - }: - mkDerivation { - pname = "lambdabot-irc-plugins"; - version = "5.1.0.4"; - sha256 = "4e3d5b8e464c1ccbf12c5a255785c07cdd7208943d2cdeab4a537b899b9e4c4f"; - libraryHaskellDepends = [ - base bytestring containers directory filepath lambdabot-core - lifted-base mtl network SafeSemaphore split time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Lambdabot"; - description = "IRC plugins for lambdabot"; - license = "GPL"; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, directory - , exceptions, filepath, mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.1.1"; - sha256 = "b36009a35c02f7f18b4ba91d9ead7e5b47aef4eb5c0d014d4d60dd0bddfd6548"; - revision = "4"; - editedCabalFile = "0r364limqm570a8xd82wwpcvmcx2j7nfndg5kad022vz2v5n0smz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class directory exceptions filepath - text transformers wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.8.2"; - sha256 = "b729d3b2263b0f029a66c37ae1c05b86b68bad1cde6c0b407bfd5201b91fce15"; - revision = "2"; - editedCabalFile = "074mypdymg7543waq68c72viw912w94v94y1287sp67lzwpyiixd"; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath pretty - process syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2"; - sha256 = "eb319b4d1154f88f4d0f8817c85efad34c14d774c47d4c9193c89c9064cb8695"; - revision = "1"; - editedCabalFile = "099w1lln1vm000sf06wrmq6gya5sx2w4flrlwqz2c8wwvv8c9j9h"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-docker" = callPackage - ({ mkDerivation, base, bytestring, containers, free, megaparsec - , mtl, prettyprinter, split, stdenv, template-haskell, text - , th-lift, time - }: - mkDerivation { - pname = "language-docker"; - version = "6.0.4"; - sha256 = "8111f95648723df0a31fbf0424536e24dbe3a95996c013aed8f1c0a03ac534af"; - revision = "2"; - editedCabalFile = "10f734lnj48wj9g59k2mj3fkdy7ckpi201058mfn3jlm35azv2fr"; - libraryHaskellDepends = [ - base bytestring containers free megaparsec mtl prettyprinter split - template-haskell text th-lift time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hadolint/language-docker#readme"; - description = "Dockerfile parser, pretty-printer and embedded DSL"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "language-ecmascript" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, charset, containers - , data-default-class, Diff, mtl, parsec, QuickCheck, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "language-ecmascript"; - version = "0.19"; - sha256 = "570a4b7bdebf4532e9c059f2afa7575247be2b7f539361995297308c387c658f"; - revision = "2"; - editedCabalFile = "1xj5h5ajybq4pwlw8zsn1lb920km1pcdv20apbpa7pgi39zcpzfd"; - libraryHaskellDepends = [ - ansi-wl-pprint base charset containers data-default-class Diff mtl - parsec QuickCheck template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jswebtools/language-ecmascript"; - description = "JavaScript parser and pretty-printer library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.6.0.11"; - sha256 = "d4756e9bc9a180cb93701e964a3157a03d4db4c7cb5a7b6b196067e587cc6143"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, base-compat, Cabal, deepseq, lens, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.1.0.1"; - sha256 = "f0147300724ac39ce388cd6cd717ac3ccc6ed1884ffaafebb18d0f3021e01acf"; - revision = "1"; - editedCabalFile = "1zv12p4ralrks0517zs52rzmzmsxxkcxkqz7zijfgcsvh6bsmafi"; - libraryHaskellDepends = [ - base base-compat Cabal deepseq lens pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and useful functions to represent and manipulate the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-puppet" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base16-bytestring, bytestring, case-insensitive, containers - , cryptonite, directory, exceptions, filecache, filepath - , formatting, Glob, hashable, hruby, hslogger, hspec, http-api-data - , http-client, lens, lens-aeson, megaparsec, memory, mtl - , operational, optparse-applicative, parallel-io, parsec - , pcre-utils, process, protolude, random, regex-pcre-builtin - , scientific, servant, servant-client, split, stdenv, stm - , strict-base-types, text, time, transformers, unix - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "language-puppet"; - version = "1.3.20.1"; - sha256 = "7aa750993d72e672595b9c6cff04aad557f4f8f8fb89bc0e53d93a73d10e533d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring - case-insensitive containers cryptonite directory exceptions - filecache filepath formatting hashable hruby hslogger hspec - http-api-data http-client lens lens-aeson megaparsec memory mtl - operational parsec pcre-utils process protolude random - regex-pcre-builtin scientific servant servant-client split stm - strict-base-types text time transformers unix unordered-containers - vector yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint base bytestring containers Glob hslogger - http-client lens megaparsec mtl optparse-applicative parallel-io - regex-pcre-builtin strict-base-types text transformers - unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "Tools to parse and evaluate the Puppet DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-carray" = callPackage - ({ mkDerivation, base, carray, lapack-ffi, netlib-carray - , netlib-ffi, stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "lapack-carray"; - version = "0.0.2"; - sha256 = "ca3a3d99016b7428b3781142ca2ab96eb2ad3318257a3dedaa41f8c2e0aa24b7"; - libraryHaskellDepends = [ - base carray lapack-ffi netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-carray/"; - description = "Auto-generated interface to Fortran LAPACK via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.1"; - sha256 = "739b40bdd776a057ab272195f54a8ef76534abd780076f48a02dca356b3270f8"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "large-hashable" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytes, bytestring - , containers, scientific, stdenv, strict, template-haskell, text - , time, transformers, unordered-containers, utf8-light, vector - , void - }: - mkDerivation { - pname = "large-hashable"; - version = "0.1.0.4"; - sha256 = "e9c3345d9fa0161f1b809f2c57e00b4c687ebd48ea42623fe480cc85339a628e"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytes bytestring containers scientific - strict template-haskell text time transformers unordered-containers - utf8-light vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/large-hashable"; - description = "Efficiently hash (large) Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.4"; - sha256 = "1c2a8b9cefebc3ce5493071670d9c71e4fc30d6527d6a6c92174ce4c39a0a082"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , semigroupoids, stdenv, tagged, universe-base - , universe-reverse-instances, unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "1.7.1.1"; - sha256 = "797c89a34c6d631f76ff3bf342275f090ebceb705d6ad69c1a4108582b14ddaf"; - revision = "2"; - editedCabalFile = "0qxz4v5pqwvhb79mz4b7wc66r2c0xc9ixfhss4h56jk3vb1hriys"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable semigroupoids tagged - universe-base universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lawful" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "lawful"; - version = "0.1.0.0"; - sha256 = "0056794106bbf7fa4d8d4d943fdc75a39b8a5ac1e18ceac2909183a1a7cc8d04"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/lawful#readme"; - description = "Assert the lawfulness of your typeclass instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.7.7"; - sha256 = "6d2f821ac40ff79e651207ce75cf1427bf107970a738023dbb4f397bf8d0bf7a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Enumerative property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "learn-physics" = callPackage - ({ mkDerivation, base, gloss, gnuplot, hmatrix, not-gloss - , spatial-math, stdenv, vector-space - }: - mkDerivation { - pname = "learn-physics"; - version = "0.6.3"; - sha256 = "304738d5b58842f396739349a2d1cdba73b978f7e7633f78dcda0d93e8280c5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base gloss gnuplot hmatrix not-gloss spatial-math vector-space - ]; - executableHaskellDepends = [ - base gloss gnuplot not-gloss spatial-math - ]; - doHaddock = false; - doCheck = false; - description = "Haskell code for learning physics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat, type-equality - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.18.1"; - sha256 = "3107a3d5165a9762269d7c9e39205d2c4c2aaebc1900ff44a0066c31a492bdd2"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat type-equality - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.3"; - sha256 = "06848a6c7f217c3dd3228633bedc9a73b2cce139c1a6dff61af0994d410a98e0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.0.2"; - sha256 = "4311f035caa39db3a70915a165bcbfb55ad22376085d95a9b4f57c58994702cc"; - revision = "6"; - editedCabalFile = "1pg5v8fnlqw1krgi3d2a03a0zkjjdv5yp5f5z6q4mlb5jldz99a8"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "1.2.3"; - sha256 = "8059e2b7a917e0108861ca795b0adfbb0bf1db5b1bdb55e677256a37d8de0e29"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "1.2.3"; - sha256 = "914f5f077d7bed8a93866ac696e69c35bb8d0fbe81314236288b057941703901"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.2"; - sha256 = "9c275afad37a5064b9a13c6207ee2307f6ccccc3a5517c0fae84524bad65b0e6"; - revision = "1"; - editedCabalFile = "06sbynlrbqb51rn392w1q82qww1f6k8mmw1npgla2wc6s39k4977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-labels" = callPackage - ({ mkDerivation, base, ghc-prim, profunctors, stdenv, tagged }: - mkDerivation { - pname = "lens-labels"; - version = "0.2.0.2"; - sha256 = "9caec8ff8f0272308ee955dce94b1798a237da5a2405eb7c489e4ed6279d43e8"; - libraryHaskellDepends = [ base ghc-prim profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Integration of lenses with OverloadedLabels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-misc" = callPackage - ({ mkDerivation, base, lens, stdenv, tagged, template-haskell }: - mkDerivation { - pname = "lens-misc"; - version = "0.0.2.0"; - sha256 = "59925fe9125e297df0f1afcc8ac0f25de14fd017f7848ac2687ed63850ecd8cb"; - libraryHaskellDepends = [ base lens tagged template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/lens-misc#readme"; - description = "Miscellaneous lens utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.0"; - sha256 = "4954b3ae395661e916c536bfe837c42a1cd8223ea81ffd86b1fdd9b6abfc5142"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-simple" = callPackage - ({ mkDerivation, base, lens-family, lens-family-core - , lens-family-th, mtl, stdenv, transformers - }: - mkDerivation { - pname = "lens-simple"; - version = "0.1.0.9"; - sha256 = "613d99b8074197f8a026a641a9940dd188e0d81e808169f420981a9ca15b832a"; - libraryHaskellDepends = [ - base lens-family lens-family-core lens-family-th mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michaelt/lens-simple"; - description = "simplified import of elementary lens-family combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.3.0.0"; - sha256 = "632232db41f7c49359f37ed541bbbbe99f74d45c1cf583d1081b83af426a439d"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale, stdenv - , text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.0.9"; - sha256 = "5b867ee675de1f490e58f5cb3903e1ea7e430ebca4b6d86e6b9c2c1c87a861a4"; - revision = "1"; - editedCabalFile = "16pzbmhyzlpxy2djmxrs0wrv8mad3ahb040lx5kmf57say3qxgdl"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "libxml-sax" = callPackage - ({ mkDerivation, base, bytestring, libxml2, stdenv, text, xml-types - }: - mkDerivation { - pname = "libxml-sax"; - version = "0.7.5"; - sha256 = "99141784cc0d6c5749f0df618b2d46922391eede09f4f9ccfc36fb58a9c16d51"; - libraryHaskellDepends = [ base bytestring text xml-types ]; - librarySystemDepends = [ libxml2 ]; - libraryPkgconfigDepends = [ libxml2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-libxml/"; - description = "Bindings for the libXML2 SAX interface"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libxml2;}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.0"; - sha256 = "6a034047f45c2f5d3acb8a5b0852075bd4b4f7d6a222a992f45afac152b55f5f"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.2"; - sha256 = "0e9fbd17cd3e1af6ef1e994e7c14cfd42896e56499864e707f72246b6e2b604e"; - revision = "3"; - editedCabalFile = "0ackkmjfqxyxhy9w03zlqvmi68la9yv4jf0sc8qdhyr5y30ac68s"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.3"; - sha256 = "83d09c355cf7c5d35f179f6f084524f451966ed29beac721f0500ee607822b8c"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "line" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptohash-sha256, http-conduit, http-types, scotty, stdenv, text - , time, transformers, wai - }: - mkDerivation { - pname = "line"; - version = "4.0.1"; - sha256 = "a1dfab5dcd078747920fc61a024eb096a554f465d57c8bc642c155150f41667c"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptohash-sha256 - http-conduit http-types scotty text time transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/utatti/line"; - description = "Haskell SDK for the LINE API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.8"; - sha256 = "5ebd1b99837f2e3c7386bcd2ca425d9c66b09a61409792b141428345fb9edb10"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linked-list-with-iterator" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "linked-list-with-iterator"; - version = "0.1.1.0"; - sha256 = "c6ae37cc9d123afcb92f28fef9c5dae6d3713489bdf7f73ac9af420bb3f11b89"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/CindyLinz/Haskell-linked-list-with-iterator#readme"; - description = "A pure linked list which is mutable through iterators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.0"; - sha256 = "1412db341c574b6a18e2fa23ee5e3ca6f32719409ea602a6215f1fd0aafb73e7"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Work with linux namespaces: create new or enter existing ones"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.2"; - sha256 = "da6cad360db0ab9d01a37a54aa73c54b29f6088254e0770dc312ebd0d2b39223"; - libraryHaskellDepends = [ - base mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , containers, exceptions, llvm-config, llvm-hs-pure, mtl, stdenv - , template-haskell, transformers, utf8-string - }: - mkDerivation { - pname = "llvm-hs"; - version = "6.3.0"; - sha256 = "4d9e74b6ab369d4d3abe8395bda47a395d0c44c9bcbc0be9f94a6a76811b6183"; - revision = "2"; - editedCabalFile = "08rm1y7icxp2bdmv65n5nxg5mkppqpqd3m62n50gk6991kki9qdf"; - setupHaskellDepends = [ base Cabal containers ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers exceptions llvm-hs-pure - mtl template-haskell transformers utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "General purpose LLVM bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "llvm-hs-pretty" = callPackage - ({ mkDerivation, array, base, bytestring, llvm-hs-pure - , prettyprinter, stdenv, text - }: - mkDerivation { - pname = "llvm-hs-pretty"; - version = "0.5.0.0"; - sha256 = "0dca50bf44df9128fe6f4ad0ed09281c1fc4e615ceac390b2197d2f7f8e9259c"; - libraryHaskellDepends = [ - array base bytestring llvm-hs-pure prettyprinter text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/llvm-hs/llvm-hs-pretty"; - description = "A pretty printer for LLVM IR"; - license = stdenv.lib.licenses.mit; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "6.2.1"; - sha256 = "7908a944616107142a804b5e4a9772c12358b3bd78de3ddb91a63d82cdfb3da9"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.0.2"; - sha256 = "819372c454adb5948329d265e5d7e7293970444f396618bc6bd62fbeac687f18"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "locators" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptohash, stdenv - }: - mkDerivation { - pname = "locators"; - version = "0.2.4.4"; - sha256 = "2d6d0940206e285a086ea66c7b5f8b3a082fa629a8d335323dbbf78547e09aa5"; - libraryHaskellDepends = [ base bytestring containers cryptohash ]; - doHaddock = false; - doCheck = false; - description = "Human exchangable identifiers and locators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.7.4.0"; - sha256 = "4067eba80db49eb4509c10770959d0350f9eb9df5e0bde2fbf9024f106dc3f1b"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.12"; - sha256 = "7191cba40b9b348c54171f2b86caabb75a30e52b6d7e4c57321bf5dcdf1f367e"; - revision = "4"; - editedCabalFile = "1z7p87dl1rj0v2gnfwfa7zmgaxccd093hvjkijc56whyg4b4az4y"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-postgres" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , bytestring, deepseq, hpqtypes, http-client, lifted-base, log-base - , mtl, semigroups, split, stdenv, text, text-show, time - , unordered-containers, vector - }: - mkDerivation { - pname = "log-postgres"; - version = "0.7.0.2"; - sha256 = "51c60374838cbd89d027cde9cdf2d8982b4f4152befe76899085520922e5639b"; - revision = "3"; - editedCabalFile = "1m16y1g9vaan5vcm9krqfppwc0zisi005d0ckqbwga3vyyw58lwl"; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring bytestring deepseq - hpqtypes http-client lifted-base log-base mtl semigroups split text - text-show time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (PostgreSQL back end)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logger-thread" = callPackage - ({ mkDerivation, base, fast-logger, protolude, safe-exceptions - , stdenv, stm, text, time - }: - mkDerivation { - pname = "logger-thread"; - version = "0.1.0.2"; - sha256 = "ac0a54001a69cff6f975209c4d9d399fb58ef59bb0ad6ac742c5ffedeac04a2a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base fast-logger protolude safe-exceptions stm text time - ]; - executableHaskellDepends = [ base protolude stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joe9/logger-thread#readme"; - description = "Run FastLogger in a thread and direct all queued messages to it"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base, unliftio-core - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.3"; - sha256 = "996ae52b545d1e86ffd08c25ace247c90cf437ebdbbafd4879f587ad207cf182"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.6.0.2"; - sha256 = "1182b68e8d00279460c7fb9b8284bf129805c07754c678b2a8de5a6d768e161e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dolio/"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "long-double" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "long-double"; - version = "0.1"; - sha256 = "9218e8175afe5fb69aae72ad65c8b4dfdc943f137a5e95184673a03dc3765e1c"; - revision = "2"; - editedCabalFile = "03x83ycib19k2lmd3spwq2zmylfl5ihammb406fxxqqbyv4jw1mg"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/long-double"; - description = "FFI bindings for C long double"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "lrucache" = callPackage - ({ mkDerivation, base, containers, contravariant, stdenv }: - mkDerivation { - pname = "lrucache"; - version = "1.2.0.1"; - sha256 = "fc1ab2375eeaae181d838095354d3ef77d4072815006a285dd39a165a5855b85"; - libraryHaskellDepends = [ base containers contravariant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chowells79/lrucache"; - description = "a simple, pure LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.11"; - sha256 = "8ca524b9ca7984a83b18916b0c9dfb79002cb3bbe88f5139f68bfbe46010bf8f"; - revision = "1"; - editedCabalFile = "10k3x9cn4a23kqk909xiv8phkfgagf7p16qlfpr9swn1dn4xasgf"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.1.0.1"; - sha256 = "5cc5e269c313cba6871b70d48825e6b63ae49db91d507b7f9dccc10bf12dcb73"; - revision = "1"; - editedCabalFile = "030mj3yddbia6dkbl8d6mssi42l3z8gs79z50r78gwiif6mh5dny"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid"; - license = stdenv.lib.licenses.mit; - }) {}; - "lxd-client-config" = callPackage - ({ mkDerivation, aeson, base, containers, directory, filepath - , stdenv, text, yaml - }: - mkDerivation { - pname = "lxd-client-config"; - version = "0.1.0.1"; - sha256 = "903852c99bebc0af3cc3a26734056003f9097ada08eb1f361abce097a120afcf"; - libraryHaskellDepends = [ - aeson base containers directory filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-lxd-client-config#readme"; - description = "Read the configuration file of the standard LXD client"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "lz4" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "lz4"; - version = "0.2.3.1"; - sha256 = "98cc62bea1a359201f9e39a7db2457272f996ede25d97a2dbee3a07aa80693f1"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mwotton/lz4hs"; - description = "LZ4 compression for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.6.4"; - sha256 = "72de2b2e27cb36832ec4a66de36f1ba6c53d2abd197b7f0351865b4567db7768"; - revision = "2"; - editedCabalFile = "1h0qq6kxv4kc0j0rmx7rhwhvfg1hc08r10q152km4p8kgshcwlig"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, machines, stdenv }: - mkDerivation { - pname = "machines-binary"; - version = "0.3.0.3"; - sha256 = "60ff456d658ea1a427f32ee5ae1c726e2e7703942bd33edf28b457d753c20652"; - libraryHaskellDepends = [ base binary bytestring machines ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-binary"; - description = "Binary utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-directory" = callPackage - ({ mkDerivation, base, directory, filepath, machines, machines-io - , stdenv, transformers - }: - mkDerivation { - pname = "machines-directory"; - version = "0.2.1.0"; - sha256 = "849c07db6ff6cfd88348d228a7a3f8ccb16e99568230ee0d20faa5670474deb4"; - libraryHaskellDepends = [ - base directory filepath machines machines-io transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-directory"; - description = "Directory (system) utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-io" = callPackage - ({ mkDerivation, base, bytestring, chunked-data, machines, stdenv - , transformers - }: - mkDerivation { - pname = "machines-io"; - version = "0.2.0.13"; - sha256 = "4d579d5e9e94fafcfca91322734263498999d2e2af45c40ff0d1db78f4a8f5d4"; - libraryHaskellDepends = [ - base bytestring chunked-data machines transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-io"; - description = "IO utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "magicbane" = callPackage - ({ mkDerivation, aeson, aeson-qq, attoparsec, base, bytestring - , conduit, conduit-combinators, data-default, data-has, ekg-core - , ekg-wai, envy, errors, exceptions, fast-logger, http-api-data - , http-client, http-client-tls, http-conduit, http-link-header - , http-types, lifted-base, monad-control, monad-logger - , monad-metrics, mono-traversable, mtl, network-uri, raw-strings-qq - , refined, rio, rio-orphans, servant-server, split, stdenv - , string-conversions, text, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers, wai, wai-cli - , wai-middleware-metrics - }: - mkDerivation { - pname = "magicbane"; - version = "0.3.0"; - sha256 = "20d334206f75bc4d569ec6c55991ccda8bdd00b1a27f0e2bb8ed190222ace6c9"; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base bytestring conduit - conduit-combinators data-default data-has ekg-core ekg-wai envy - errors exceptions fast-logger http-api-data http-client - http-client-tls http-conduit http-link-header http-types - lifted-base monad-control monad-logger monad-metrics - mono-traversable mtl network-uri raw-strings-qq refined rio - rio-orphans servant-server split string-conversions text - transformers transformers-base unliftio unliftio-core - unordered-containers wai wai-cli wai-middleware-metrics - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/magicbane#readme"; - description = "A web framework that integrates Servant, RIO, EKG, fast-logger, wai-cli…"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.1.0.0"; - sha256 = "ac09d9c0ac602252d7baef90ef87933b66469f18522e014c475bbe365daa4f69"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7"; - sha256 = "11777bd365251813c512a3e17e0303b30f2a86411a12118751858cbb20dbeaf7"; - revision = "1"; - editedCabalFile = "1apyqnbcsbjfkqc1d6mk74pxl12130r6ijwhj555gddls9g0qdf3"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.6"; - sha256 = "f1a70a23c0866b75d609b2c818b426712d7a2b4256f43a3d5da517e853e279cd"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mapquest-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, goggles, mtl - , req, stdenv, text - }: - mkDerivation { - pname = "mapquest-api"; - version = "0.3.1"; - sha256 = "43339221b91816e8f793a98a4d281285e8e9de8788f13bb30ec345ef855a7b85"; - libraryHaskellDepends = [ - aeson base bytestring exceptions goggles mtl req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mapquest-api"; - description = "Bindings to the MapQuest API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.4"; - sha256 = "c2e3e742be2b4af6ed62be262cab59d2366556e120b1f8856cff6e7ef270fdd4"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "marvin-interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "marvin-interpolate"; - version = "1.1.2"; - sha256 = "d640c3bc2f70e17d1fb23c914a3d19b11f72568fda5d5c52e52c1de2e940eccf"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://marvin.readthedocs.io/en/latest/interpolation.html"; - description = "Compile time string interpolation a la Scala and CoffeeScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , ghc-prim, primitive, stdenv, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.2.5.0"; - sha256 = "3ff9f83efb3f77e1bd5b5831af1170f3f703d8d82b43726778fd63ddab29e564"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq ghc-prim primitive - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq, directory - , filepath, JuicyPixels, massiv, netpbm, process, stdenv, vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.4.0"; - sha256 = "8c118ca171008d92cf4f68a3504e328d6b557afeeb4d4cff9fa9a4cace0b5079"; - libraryHaskellDepends = [ - base bytestring data-default deepseq directory filepath JuicyPixels - massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector - , vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.2.1.0"; - sha256 = "f71b5598de453546396a3f5f7f6ce877fffcc996639b7569d8628cae97da65eb"; - libraryHaskellDepends = [ - base deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Special functions and Chebyshev polynomials"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.4.5"; - sha256 = "2d396f130d675eabaa435caba122fe2b2c1d2dfc5343471131b7392e479b7397"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.0.8"; - sha256 = "5e41aa81abdfd6062dc4607ea7c684b9ac09a286d2ebf76829504acf09260a77"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox-utility" = callPackage - ({ mkDerivation, base, bytestring, hsemail, non-empty, old-time - , parsec, spreadsheet, stdenv, utility-ht - }: - mkDerivation { - pname = "mbox-utility"; - version = "0.0.1"; - sha256 = "e5e009f83c95b20d85c4b39d233b2f32ee15eae08d54edbaa7928848ae15e9f8"; - revision = "1"; - editedCabalFile = "0lhka293xbgsjs7sb3yrck6q7vw4dfdhpmpalc7s9az1mj4l4mjz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring hsemail non-empty old-time parsec spreadsheet - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "List contents of an mbox file containing e-mails"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbtiles" = callPackage - ({ mkDerivation, base, bytestring, directory, monad-control, mtl - , resource-pool, sqlite-simple, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "mbtiles"; - version = "0.6.0.0"; - sha256 = "b8a82f0a1c551a59961449587f031f679dd2f5f082ce45b6f7d88d81f99ad62f"; - libraryHaskellDepends = [ - base bytestring directory monad-control mtl resource-pool - sqlite-simple text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/mbtiles#readme"; - description = "Haskell MBTiles client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbug" = callPackage - ({ mkDerivation, base, bytestring, directory, extra, formatting - , http-client, http-client-tls, mtl, optparse-applicative, process - , scalpel-core, stdenv, tagsoup, text, time, xdg-basedir - }: - mkDerivation { - pname = "mbug"; - version = "1.3"; - sha256 = "21450dc132fa7a30805ba5a72012c9fc4a0560233dc2930e092b63d1bcaf43dd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/iu-guest/mbug"; - description = "download bugs mailboxes"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "med-module" = callPackage - ({ mkDerivation, base, bytestring, stdenv, storable-endian - , transformers, utility-ht - }: - mkDerivation { - pname = "med-module"; - version = "0.1.1"; - sha256 = "f78974fba8f8d17267297b268b84cf7434f51f5d2ad106a461f225f1d873eee3"; - revision = "1"; - editedCabalFile = "05fbglb1f260p2h5x16i3ybkh1r0bks0054jzasam9gv33yv1amw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring storable-endian transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Parse song module files from Amiga MED and OctaMED"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mega-sdist" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , http-conduit, optparse-simple, rio, rio-orphans, stdenv - , tar-conduit, yaml - }: - mkDerivation { - pname = "mega-sdist"; - version = "0.3.3.2"; - sha256 = "a4e1c3ba865a59161bf3ef30fa78310201b2d88ff9e72a6691578f723857144a"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring conduit conduit-extra http-conduit optparse-simple - rio rio-orphans tar-conduit yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mega-sdist#readme"; - description = "Handles uploading to Hackage from mega repos"; - license = stdenv.lib.licenses.mit; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "6.5.0"; - sha256 = "bebdef43c6b857b8c494de79bcd2399ef712c403ee1353e5481db98b8f7f2f8a"; - revision = "5"; - editedCabalFile = "1gxw58ccng85xk44z3vpw28y3msay9b0848xz435m5hyydqm82si"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.14.18"; - sha256 = "f5458d170a291788ac8da896bb44b0cc84021c99dd596c52adf2f7a7f6c03507"; - revision = "2"; - editedCabalFile = "1kwlgsjxh4ncvc6x9rps82bm55qyzn8lvzg49s4rbyc7vjjsbmx6"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.1"; - sha256 = "f9e398ec0256b065de94f9412de6d164bd6fc425ad64d407d513db232602bb40"; - revision = "2"; - editedCabalFile = "093c8afmcrnbfliz1ykpyc4w40dli2wig0qi0xcwg8445idwp2kg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "messagepack" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , stdenv - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.4"; - sha256 = "939590c05d5b0831b3b4796f2e1a070e290982c92b2009f2aa1ef5f4b05b5d7c"; - revision = "2"; - editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rodrigosetti/messagepack"; - description = "Serialize instance for Message Pack Object"; - license = stdenv.lib.licenses.mit; - }) {}; - "messagepack-rpc" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, messagepack - , network-simple, stdenv - }: - mkDerivation { - pname = "messagepack-rpc"; - version = "0.5.1"; - sha256 = "aa7960644668284e6add36e5c305af2c6d3ebf0a9a2c3fcd62529554a049a0bc"; - revision = "1"; - editedCabalFile = "05p6naaxswmsc3w7k67ydzzwyn60ymp0jbrc0f66p2sajvlnviax"; - libraryHaskellDepends = [ - base bytestring cereal containers messagepack network-simple - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/rodrigosetti/messagepack-rpc"; - description = "Message Pack RPC over TCP"; - license = stdenv.lib.licenses.mit; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microformats2-parser" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base - , base-compat, blaze-html, blaze-markup, bytestring, containers - , data-default, either, errors, html-conduit, lens-aeson, network - , network-uri, options, pcre-heavy, safe, scotty, stdenv, tagsoup - , text, time, transformers, unordered-containers, vector, wai-cli - , wai-extra, xml-lens, xss-sanitize - }: - mkDerivation { - pname = "microformats2-parser"; - version = "1.0.1.9"; - sha256 = "50c71d9cd57991011855ad16759a6d43f56abc0e7424475db5263c5f04e2abd3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base base-compat blaze-markup bytestring - containers data-default either errors html-conduit lens-aeson - network-uri pcre-heavy safe tagsoup text time transformers - unordered-containers vector xml-lens xss-sanitize - ]; - executableHaskellDepends = [ - aeson aeson-pretty base base-compat blaze-html blaze-markup - data-default network network-uri options scotty text wai-cli - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/microformats2-parser"; - description = "A Microformats 2 parser"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.9.1"; - sha256 = "a1401c6f92c142bafea4cf58a1d99cc34af285df808b97f5b64af4bb81fb5648"; - revision = "1"; - editedCabalFile = "0k76wf341lx1w5ays2bar2vd6f9dv9h7wjcnaxps00a6w3c4qpmp"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0"; - sha256 = "f2f28288bfc190127423a452514d35f7b66f9d5625cf6653bb34cb020aa450c5"; - revision = "2"; - editedCabalFile = "1ri98vr3bbx0l9b4vpmcwhf8fm5lgj92kw4g0v3jx6xajwwc5dc8"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, contravariant, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.2"; - sha256 = "b57848cf35305f972f450fb6fb743605a9e82a818f3549f06cdfe5d336c4c9db"; - libraryHaskellDepends = [ base contravariant microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.9.1"; - sha256 = "324b83619921cd0e8210c11be37ec8b1ff7dbc470c1c9acace3171fed17b3c0e"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.1.11.1"; - sha256 = "d3e74f46a72aad12b71d8549a98fbc023fb364766f17d75742fb32fee70bdf50"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.3.10"; - sha256 = "9b7fe59900ee35af9b070d154e9505b9f5c1953a95437c588f00cbe45e8596b4"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "Feature-complete microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.3.2"; - sha256 = "9d900d03e7f704208031b310584ec3e4796fe1133e46205418826847723ce273"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "microspec"; - version = "0.1.0.0"; - sha256 = "e1e4156574d81786e1c8d04ba22e7283001ef3eada3104a99e9c31a45656d343"; - revision = "1"; - editedCabalFile = "0cnfj3v6fzck57bgrsnmgz8a9azvz04pm3hv17fg12xzchmp07cq"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "milena" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, digest, lens - , lifted-base, monad-control, mtl, murmur-hash, network, random - , resource-pool, semigroups, stdenv, transformers, zlib - }: - mkDerivation { - pname = "milena"; - version = "0.5.2.3"; - sha256 = "bcc82c4e546a48553983f4620d313d26518616163ea986c0b30edcd18cec6b68"; - libraryHaskellDepends = [ - base bytestring cereal containers digest lens lifted-base - monad-control mtl murmur-hash network random resource-pool - semigroups transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adamflott/milena.git#readme"; - description = "A Kafka client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.4.14"; - sha256 = "9632c3d54c9741fece0a3ea705d965485a1299ebe5798d2aa7cca2c8e4baaa3e"; - revision = "1"; - editedCabalFile = "14zadyz63gjpf58h6v36w3jwwpxpg86czw19r4211wprqfclvr92"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.9"; - sha256 = "0a32435169ef4ba59f4a4b8addfd0c04479410854d1b8d69a1e38fb389ba71d2"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.1.6.1"; - sha256 = "94677b454b86a47d1b04ef1462873708976546bbb7a3bcc4f3ffe222d98bb844"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "minio-hs" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, directory, filepath, http-client - , http-conduit, http-types, ini, memory, protolude, resourcet - , stdenv, text, time, transformers, unliftio, unliftio-core - , xml-conduit - }: - mkDerivation { - pname = "minio-hs"; - version = "1.2.0"; - sha256 = "311494977fdab5f112807b13d485542c5b57147039063ad57c09bc1367541093"; - configureFlags = [ "-f-live-test" ]; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive conduit - conduit-extra containers cryptonite cryptonite-conduit directory - filepath http-client http-conduit http-types ini memory protolude - resourcet text time transformers unliftio unliftio-core xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minio/minio-hs#readme"; - description = "A Minio Haskell Library for Amazon S3 compatible cloud storage"; - license = stdenv.lib.licenses.asl20; - }) {}; - "minisat-solver" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "minisat-solver"; - version = "0.1"; - sha256 = "c12098dee034afb98b31ce7ac346398b93a3537c11e30e7573d25160120fd37d"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mathstat.dal.ca/~selinger/minisat-solver/"; - description = "High-level Haskell bindings for the MiniSat SAT solver"; - license = stdenv.lib.licenses.mit; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, ghc-prim, minimorph - , stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.4.7.0"; - sha256 = "adc9ac6a2160e87a8a4c4b88087d478ee74dded59d0cf6205a105dc0f778dc82"; - libraryHaskellDepends = [ - base binary containers ghc-prim minimorph text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miso" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , http-types, lucid, network-uri, servant, servant-lucid, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "miso"; - version = "0.21.2.0"; - sha256 = "d52d7950eba48f88e6fe7a08bb797e36c599aa24f790242182fa1acdfa962b18"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data http-types lucid - network-uri servant servant-lucid text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmjio/miso"; - description = "A tasty Haskell front-end framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, convertible, hspec, hspec-smallcheck - , QuickCheck, smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.3.1.5"; - sha256 = "7cf0bf14c2ddc643cfaa0e2526b6c2c0c2b1200f29b6f30b5bd550e377d1c058"; - libraryHaskellDepends = [ - base convertible hspec hspec-smallcheck QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "716ec75fc8eb573c9c6ab327a9658685f5131eacff69fbbc72289cdd0133e0ff"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers - , data-default-class, deepseq, dlist, email-validate, foldl - , hashable, html-entity-map, lucid, megaparsec, microlens - , microlens-th, modern-uri, mtl, parser-combinators, stdenv, text - , text-metrics, unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.5.6"; - sha256 = "fc036385fd4cea07a490df00d8fe443cc6656a6d090d537d4d5e860564ef1234"; - revision = "7"; - editedCabalFile = "0nmbj8bkkzy7aclmhw92vcqk94ncdvyycaf2kpvdhf056hw0q85i"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers data-default-class deepseq - dlist email-validate foldl hashable html-entity-map lucid - megaparsec microlens microlens-th modern-uri mtl parser-combinators - text text-metrics unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, gitrev, lucid - , megaparsec, mmark, mmark-ext, optparse-applicative, stache - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mmark-cli"; - version = "0.0.3.0"; - sha256 = "37d3e98d15ccc036db5e2ec1b8b1e84a20c303ba1821a44ec441e835c43c6159"; - revision = "2"; - editedCabalFile = "0i3gvfgm4bfbdyflhhaf4gdr7cbkw51i330f25rgha9k3s4v59w3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson base bytestring directory gitrev lucid megaparsec mmark - mmark-ext optparse-applicative stache text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-cli"; - description = "Command line interface to MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-ext" = callPackage - ({ mkDerivation, base, foldl, ghc-syntax-highlighter, lucid - , microlens, mmark, modern-uri, skylighting, stdenv, text - }: - mkDerivation { - pname = "mmark-ext"; - version = "0.2.1.1"; - sha256 = "98554e8b04c47e208cb0e3d5a61fb064eb25fbdaf9eb3ebf4faf9663533b5b05"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base foldl ghc-syntax-highlighter lucid microlens mmark modern-uri - skylighting text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-ext"; - description = "Commonly useful extensions for the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.2"; - sha256 = "c90afd7996c94be2b9a5796a7b94918d198c53b0c1d7a3eaf2982293560c5fbe"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.2.2.0"; - sha256 = "ab4fe551bf8d6306a951ac97592baa083b05e3cab6cb25cecefa50474614b4d1"; - revision = "1"; - editedCabalFile = "08krkwzcaxvi8l8myii0nqyhcb4akmgbgm6q561xwpx692qw8m22"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "moesocks" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, binary, bytestring - , containers, cryptohash, hslogger, HsOpenSSL, iproute, lens - , lens-aeson, mtl, network, optparse-applicative, random, stdenv - , stm, strict, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "moesocks"; - version = "1.0.1.0"; - sha256 = "12b3a50e514a880dfce5d81bff0d7b180a16b1e5407ab1497b31d233108c8d3c"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfjinjing/moesocks"; - description = "A functional firewall killer"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.30"; - sha256 = "e7ce990978b7395c615441775b64b487ad6cd6f2e4f9787dae732f58ce065480"; - revision = "1"; - editedCabalFile = "0gm3gqbxkj8447js4a672snz0ir78syk890nqdmjb18hsjqy5p6a"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.10"; - sha256 = "a3ac2d043a13d9e9296692dc729a299361b04757690894cac1b6904510a0d975"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-logger-syslog" = callPackage - ({ mkDerivation, base, bytestring, fast-logger, hsyslog - , monad-logger, stdenv, text, transformers - }: - mkDerivation { - pname = "monad-logger-syslog"; - version = "0.1.4.0"; - sha256 = "052c3e13e235e7fb31caecc117e3ab4629e85bbfd3b35ec03f74d732acbc9ccb"; - libraryHaskellDepends = [ - base bytestring fast-logger hsyslog monad-logger text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-logger-syslog"; - description = "syslog output for monad-logger"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, mtl, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.4.1"; - sha256 = "4c00c4aff00c85bfcce0a9a7d96a2a7d08f1efe64b3326e67e47499d5168f11d"; - libraryHaskellDepends = [ - array base containers mtl primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-metrics" = callPackage - ({ mkDerivation, base, clock, ekg-core, exceptions, hashable - , microlens, mtl, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "monad-metrics"; - version = "0.2.1.2"; - sha256 = "38130b74de16bde2862a96245b25135b719488c4fcb803b78db6e95b4e6fbb7f"; - libraryHaskellDepends = [ - base clock ekg-core exceptions hashable microlens mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-metrics#readme"; - description = "A convenient wrapper around EKG metrics"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.4.8"; - sha256 = "f84cdf51908a1c41c3f672be9520a8fdc028ea39d90a25ecfe5a3b223cfeb951"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-recorder" = callPackage - ({ mkDerivation, base, exceptions, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-recorder"; - version = "0.1.1"; - sha256 = "0863eb37dae0a9dc996a73dd7743d0c9fc22b9713d4be4d7c7e49e4e073ca215"; - libraryHaskellDepends = [ - base exceptions monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/monad-recorder"; - description = "Record and replay the results of monadic actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monadlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monadlist"; - version = "0.0.2"; - sha256 = "06bbe82c9fc2a35048788367da74bb5f79c7e6be2ae38eca20f332f8cbc5fdfe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Monadic versions of list functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mongoDB" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , binary, bson, bytestring, conduit, conduit-extra, containers - , cryptohash, data-default-class, hashtables, lifted-base - , monad-control, mtl, network, nonce, parsec, pureMD5, random - , random-shuffle, resourcet, stdenv, stm, tagged, text, time, tls - , transformers, transformers-base - }: - mkDerivation { - pname = "mongoDB"; - version = "2.4.0.0"; - sha256 = "fdb80241825c70d795a1e552b25afc916e58d7755ec31feaf7ab7afdd5aee719"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring binary bson - bytestring conduit conduit-extra containers cryptohash - data-default-class hashtables lifted-base monad-control mtl network - nonce parsec pureMD5 random random-shuffle resourcet stm tagged - text time tls transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mongodb-haskell/mongodb"; - description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.10.0"; - sha256 = "0096dbf6f3651b3834637a2ba4dcb6fafcd782546a542a286d2ecfae277b8811"; - revision = "1"; - editedCabalFile = "1hgwrmq7r8d1nq9283wis67lg0wlid2sgqnr9vpsv2wpnd4n1rdl"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "monoid-extras" = callPackage - ({ mkDerivation, base, groups, semigroupoids, semigroups, stdenv }: - mkDerivation { - pname = "monoid-extras"; - version = "0.5"; - sha256 = "c6571ab25a24e4300d507beeb8e534c20b3e530c6bd19c82694f1d6d5d0d4d9c"; - revision = "4"; - editedCabalFile = "0f2lww0qjk3sspj199b88j1zg9nn0cmm0mmsf6j7dd30cdqam76p"; - libraryHaskellDepends = [ base groups semigroupoids semigroups ]; - doHaddock = false; - doCheck = false; - description = "Various extra monoid-related definitions and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "0.4.6.1"; - sha256 = "d097876d8778fc550a071fc5fb564e8969903e8022c5f2dc25697bd8269daea6"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoidal-containers" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, lens, newtype - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "monoidal-containers"; - version = "0.3.1.0"; - sha256 = "44c325aa5a46a624688eefca1a0a3cc818e932a3805ed7749d0693c2c8c5f785"; - libraryHaskellDepends = [ - base containers deepseq hashable lens newtype semigroups - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bgamari/monoidal-containers"; - description = "Containers with monoidal accumulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "morte" = callPackage - ({ mkDerivation, alex, array, base, binary, code-page, containers - , deepseq, Earley, formatting, http-client, http-client-tls - , microlens, microlens-mtl, optparse-applicative, pipes, stdenv - , system-fileio, system-filepath, text, transformers - }: - mkDerivation { - pname = "morte"; - version = "1.6.20"; - sha256 = "7449e92308373c7459f97da2389a26ee1cead0532a7931868b49e9338240a306"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary containers deepseq Earley formatting http-client - http-client-tls microlens microlens-mtl pipes system-fileio - system-filepath text transformers - ]; - libraryToolDepends = [ alex ]; - executableHaskellDepends = [ - base code-page formatting optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "A bare-bones calculus of constructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mstate" = callPackage - ({ mkDerivation, base, fail, monad-peel, mtl, stdenv, stm }: - mkDerivation { - pname = "mstate"; - version = "0.2.8"; - sha256 = "0554d67f4c992f9780b81ffee2b91ddf9fe7ceb59eeb977ad71eac3935015b8e"; - libraryHaskellDepends = [ base fail monad-peel mtl stm ]; - doHaddock = false; - doCheck = false; - description = "MState: A consistent State monad for concurrent applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.1.3"; - sha256 = "6458ca53593a31ebce1d94ef8dd4f6a06d050dd7ed32335f6cc6b6e5d3456894"; - revision = "4"; - editedCabalFile = "1mfrx8cpx0502sjv0bmlfkl0h46c4krldg8m89k4fj6iawwg2ab5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multipart" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, stringsearch }: - mkDerivation { - pname = "multipart"; - version = "0.1.3"; - sha256 = "9f60512e7b04c78442bd7c9de621597f6f2c4288b3bc1bb2834d08b5bd2796f4"; - revision = "1"; - editedCabalFile = "037ngpayaisc1jgcxyixy7lx42p2mz950k6wb0pl6dkc951hl88c"; - libraryHaskellDepends = [ base bytestring parsec stringsearch ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/silkapp/multipart"; - description = "HTTP multipart split out of the cgi package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.1"; - sha256 = "75d7785d13e962954affa2ea11488b3d4016d76404c4d6806b818e3893d02ee9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.0"; - sha256 = "018863e578e971e393edc65dd7e0ed92a0e37fc152a47bb379fd8abd59537be0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.0.4"; - sha256 = "9fe9ed0e264bf85420a3086a1af9d6e749ff33c9c59428891dfaaa72b1385157"; - revision = "1"; - editedCabalFile = "1b4wbxkxx0szjgzgn5jc1qap80zx6ispxrd51yxs4z7llv15w5k6"; - libraryHaskellDepends = [ base mwc-random primitive transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability-transition" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, hspec, logging-effect - , mtl, mwc-probability, primitive, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability-transition"; - version = "0.4"; - sha256 = "3e44b6f3f3b2a739776484e7d4ab98ab1d5c7e50bcba53a40d2f0ac96003e768"; - libraryHaskellDepends = [ - base exceptions ghc-prim hspec logging-effect mtl mwc-probability - primitive QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mwc-probability-transition"; - description = "A Markov stochastic transition operator with logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.13.6.0"; - sha256 = "065f334fc13c057eb03ef0b6aa3665ff193609d9bfcad8068bdd260801f44716"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.6"; - sha256 = "9e549f61c9259ba82405b5dab2d00f010de720edc30cf4ce5a51a367c72799ee"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-haskell" = callPackage - ({ mkDerivation, base, binary, binary-ieee754, binary-parsers - , blaze-textual, bytestring, bytestring-lexing, cryptonite - , io-streams, memory, monad-loops, network, scientific, stdenv - , tcp-streams, text, time, tls, vector, wire-streams, word24 - }: - mkDerivation { - pname = "mysql-haskell"; - version = "0.8.3.0"; - sha256 = "e9aef28ccccc0801a1db1c936945a226961334ec11d85905ae58a09a42507aac"; - revision = "1"; - editedCabalFile = "1kpfmrwwdaxjqwbsc6m9imlcfi2vvkz62pin5nrvm1fk17isy69v"; - libraryHaskellDepends = [ - base binary binary-ieee754 binary-parsers blaze-textual bytestring - bytestring-lexing cryptonite io-streams memory monad-loops network - scientific tcp-streams text time tls vector wire-streams word24 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "pure haskell MySQL driver"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-nem" = callPackage - ({ mkDerivation, base, bytestring, io-streams, mysql-haskell - , scientific, stdenv, text, time - }: - mkDerivation { - pname = "mysql-haskell-nem"; - version = "0.1.0.0"; - sha256 = "7a0868b76edc96a7aff7860f96436b9040f6cb9319dd67f68bfd700948721f0d"; - libraryHaskellDepends = [ - base bytestring io-streams mysql-haskell scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lorenzo/mysql-haskell-nem#readme"; - description = "Adds a interface like mysql-simple to mysql-haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-openssl" = callPackage - ({ mkDerivation, base, binary, HsOpenSSL, mysql-haskell, stdenv - , tcp-streams, tcp-streams-openssl, wire-streams - }: - mkDerivation { - pname = "mysql-haskell-openssl"; - version = "0.8.3.0"; - sha256 = "44345ef9b5d98b1fca5089533990b8f4ba67afde7995282c323dacfb44dba55e"; - libraryHaskellDepends = [ - base binary HsOpenSSL mysql-haskell tcp-streams tcp-streams-openssl - wire-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "TLS support for mysql-haskell package using openssl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "named" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "named"; - version = "0.1.0.0"; - sha256 = "e7fa5c63906a3e8db05ead8c64a962045016ef8d450ab0f8579861080b024658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Named parameters (keyword arguments) for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.3.0.0"; - sha256 = "0be38f6a22afb69ddda5a3cae095b51835bdae853256403e97078679a9fba526"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, megaparsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.2"; - sha256 = "b6c8c5eca58ee99f9528ff21386ffa8e7dbc2e02186824cbaf74d795b0c9cc39"; - libraryHaskellDepends = [ - base base-prelude megaparsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-carray" = callPackage - ({ mkDerivation, base, carray, netlib-ffi, stdenv, transformers }: - mkDerivation { - pname = "netlib-carray"; - version = "0.0.1.1"; - sha256 = "9bc702f6d09240400b99d0769aaa0fe6bf32f83b312d33a6e2dd7b75a173beef"; - libraryHaskellDepends = [ base carray netlib-ffi transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-carray/"; - description = "Helper modules for CArray wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, stdenv, storable-complex, transformers }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1"; - sha256 = "505ca55093efdbd71b8b8cbeaa52ce2cbdd5477dc6c35b163e52748772517c32"; - libraryHaskellDepends = [ base storable-complex transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.2"; - sha256 = "846a04bca94be31c779888febc390c64cfba93e40f3a7a2f80ff6a6e44fcc2d7"; - revision = "1"; - editedCabalFile = "1vhwjv5c5gxn9l9982da54nzczbmj8rl09xn8ac7rix0zmmyvl50"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.3.0"; - sha256 = "cf3f08980e8e52190301d33db3b1fe7f02bcf5d276a74a8b8283b79e72bf7d5d"; - revision = "1"; - editedCabalFile = "1j8h6m4cj1ykxrsxmjiyb1c4mv6cawssgb8phl0aijrjn3b79f2b"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "network"; - version = "3.1.1.1"; - sha256 = "d7ef590173fff2ab522fbc167f3fafb867e4ecfca279eb3ef0d137b51f142c9a"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-anonymous-i2p" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions, mtl - , network, network-attoparsec, network-simple, stdenv, text - , transformers, uuid - }: - mkDerivation { - pname = "network-anonymous-i2p"; - version = "0.10.0"; - sha256 = "cff5796c36c1ebbb969e5433538eb3f3979acef9825a7bfb683ed002023fff2c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions mtl network - network-attoparsec network-simple text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; - description = "Haskell API for I2P anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-anonymous-tor" = callPackage - ({ mkDerivation, attoparsec, base, base32string, bytestring - , exceptions, hexstring, network, network-attoparsec - , network-simple, socks, splice, stdenv, text, transformers - }: - mkDerivation { - pname = "network-anonymous-tor"; - version = "0.11.0"; - sha256 = "41aee5b34aaaec6fa47a56cca61fafec22097bda25d13d5baef6b7924e127549"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Haskell API for Tor anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, enclosed-exceptions - , exceptions, lifted-base, monad-control, mtl, network, stdenv - , transformers - }: - mkDerivation { - pname = "network-attoparsec"; - version = "0.12.2"; - sha256 = "9790a9bad286ab1474dadbece3e4b2e1dd068d4ede3847cb73bcd66386bf08f0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring enclosed-exceptions exceptions - lifted-base monad-control mtl network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-attoparsec"; - description = "Utility functions for running a parser against a socket"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-bsd" = callPackage - ({ mkDerivation, base, deepseq, network, stdenv }: - mkDerivation { - pname = "network-bsd"; - version = "2.8.1.0"; - sha256 = "d94961ca15c42c798d19cde540ec12b25cc43435fb95e682399d6c1a02022d4e"; - revision = "3"; - editedCabalFile = "1hc3jdbmpq2wxh82xfx452v2m2l97jbdaqqbmj5nz4lljxa2696r"; - libraryHaskellDepends = [ base deepseq network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-bsd"; - description = "POSIX network database () API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-byte-order" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "network-byte-order"; - version = "0.0.0.0"; - sha256 = "3bb6f1110d9ac16a18f0c2d5921af584044e667e46fcfbdebd7a1e74e329de71"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Network byte order utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.2"; - sha256 = "ecfd60e162de3993a71906293dcf2ec8bd4c794471eb8dca13746c1d8fd3ad7f"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-house" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "network-house"; - version = "0.1.0.2"; - sha256 = "071fbc22fc516175e78235d9e29ccefd8eec7c3caa2e6de74dddf62cdbffab43"; - libraryHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/network-house"; - description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.2"; - sha256 = "ee259d236312aafc4bd08dfeff2ebe4b4f930b2f5879764e1a6d5675c5105efe"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-multicast" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "network-multicast"; - version = "0.2.0"; - sha256 = "0f3b50abc3a401c20cc6a0ec51a49d2a48e5b467d9fbd63b7cf803165fe975f2"; - revision = "2"; - editedCabalFile = "1hha4vvyrx29d2lwwjl0bfpbaj00k85bd4w83s4hvawqbxqvvhkw"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - description = "Simple multicast library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "network-simple" = callPackage - ({ mkDerivation, base, bytestring, network, safe-exceptions, socks - , stdenv, transformers - }: - mkDerivation { - pname = "network-simple"; - version = "0.4.3"; - sha256 = "0dd5cf1ed308bbe9601dc39026419151f552f386ec5e82417ad4f86cc4539028"; - revision = "2"; - editedCabalFile = "073g0agplvgan62s638w5hcq25biq8f811xhha6drfyxybs6cspn"; - libraryHaskellDepends = [ - base bytestring network safe-exceptions socks transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple"; - description = "Simple network sockets usage patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-simple-tls" = callPackage - ({ mkDerivation, base, bytestring, data-default, network - , network-simple, safe-exceptions, stdenv, tls, transformers, x509 - , x509-store, x509-system, x509-validation - }: - mkDerivation { - pname = "network-simple-tls"; - version = "0.3.1"; - sha256 = "d25f5b0ecf1d11755e01c23b60714910f6091d14d8fac33307613cc4a4887c8a"; - libraryHaskellDepends = [ - base bytestring data-default network network-simple safe-exceptions - tls transformers x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple-tls"; - description = "Simple interface to TLS secured network sockets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.2"; - sha256 = "e795672b43d67ac7bfade72173548ae6bf8208c1890e22aba7809098558f9054"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-inmemory" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , network-transport, stdenv, stm - }: - mkDerivation { - pname = "network-transport-inmemory"; - version = "0.5.2"; - sha256 = "8245d795330157d90ad9de599854d119c6d8938a45ab8c4ec89f3160b2e9ef4e"; - revision = "1"; - editedCabalFile = "1cls49jpl0hs6pviyn1ga8nhsdgsvqg163sprif0pb21xz848d9k"; - libraryHaskellDepends = [ - base bytestring containers data-accessor network-transport stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "In-memory instantiation of Network.Transport"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-tests" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, mtl - , network-transport, random, stdenv - }: - mkDerivation { - pname = "network-transport-tests"; - version = "0.2.4.2"; - sha256 = "cb24c4bf7eed5a381eb21a3efadf8752050845e5d4426a1d2e00f128ea27cbc7"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers mtl network-transport - random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Unit tests for Network.Transport implementations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2"; - sha256 = "b714033abd9a8b0903bcef0d36d0913de2a5003c852f43f97fa688717289e459"; - revision = "1"; - editedCabalFile = "0rbhpa1krcmvv4hsy3h5h8l4vqjk9wckddcz34rfcq0m7zlmsrfz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.3"; - sha256 = "f295f001a86bdbcf759d6b91b9e7ae27cd431ccf41d9b9d34ee1c926b88efe45"; - revision = "1"; - editedCabalFile = "1glnwq1lw7780qgahqvh1qfx6k2ciwmbhc2wcc78v3aa3s954c8v"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "next-ref" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "next-ref"; - version = "0.1.0.2"; - sha256 = "a586f15c17d5d53dd647411d02660dcbfd293f38a75f030d6892a76a2c24789f"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "A concurrency primitive for a slow consumer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3.0.1"; - sha256 = "3fbd074804df96f307ae60a67b13e215b635e80a3505ee5f5b0bb26ad9b5eb03"; - revision = "1"; - editedCabalFile = "1628z42q77xjvwpyx3rifqf6mh4y6ivdl0lkhngxwz8c21bnf7d3"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.2"; - sha256 = "d9a3604c0c140197731895af56413edbf1cf6866f9c0636ece9d8314366dd1e1"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "not-gloss" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, GLUT, OpenGL - , OpenGLRaw, spatial-math, stdenv, time, vector - , vector-binary-instances - }: - mkDerivation { - pname = "not-gloss"; - version = "0.7.7.0"; - sha256 = "4740d1ee04015bca98092f72c11414326d1bd08473aead61f6678773fb8b835f"; - libraryHaskellDepends = [ - base binary bmp bytestring GLUT OpenGL OpenGLRaw spatial-math time - vector vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - description = "Painless 3D graphics, no affiliation with gloss"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.2"; - sha256 = "b9985b8d62569c192d89b20965eed2b98186a67148b667202823c6389b8f15ca"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3.1"; - sha256 = "c9e4b6f20c47ab38faea9a6a230a722f3b50462989d1b0ad1e7bfd1cb8f46114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numhask"; - version = "0.2.3.1"; - sha256 = "33084f2bd2dd37cdc1923745896e39d3a34f8d7b5181dff6577c4605dd7fc111"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "numeric classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-prelude" = callPackage - ({ mkDerivation, base, numhask, protolude, stdenv }: - mkDerivation { - pname = "numhask-prelude"; - version = "0.1.0.1"; - sha256 = "b1f15bcf21f33b25f841d1b6f0c5cbfc2a2837b3bb8962a0082950fa9b8ca25f"; - libraryHaskellDepends = [ base numhask protolude ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "A numeric prelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-range" = callPackage - ({ mkDerivation, adjunctions, base, distributive, numhask-prelude - , protolude, QuickCheck, semigroupoids, stdenv - }: - mkDerivation { - pname = "numhask-range"; - version = "0.2.3.1"; - sha256 = "6c62a172d2d35da7e5cb4ade742e802a4e1b9a21746149cd367d71f95822dcfd"; - libraryHaskellDepends = [ - adjunctions base distributive numhask-prelude protolude QuickCheck - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask-range#readme"; - description = "Numbers that are range representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask-test" = callPackage - ({ mkDerivation, base, numhask-prelude, QuickCheck, stdenv, tasty - , tasty-quickcheck - }: - mkDerivation { - pname = "numhask-test"; - version = "0.1.0.0"; - sha256 = "de74c9e8cc66ead2eeffc9062d6f7b57728c9aef834751132e03d5deb17decb3"; - libraryHaskellDepends = [ - base numhask-prelude QuickCheck tasty tasty-quickcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "Laws and tests for numhask"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.2"; - sha256 = "98787dc0dd1757e6ed9c37e7d735b448fb9a9281988d97625292c9d8e16a732b"; - revision = "1"; - editedCabalFile = "0892xm8vyyvl1glg4vniz8r5ydg1nz3zmbpgk5mxdih6wi6nmpy4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nvim-hs" = callPackage - ({ mkDerivation, base, bytestring, cereal, cereal-conduit, conduit - , containers, data-default, deepseq, directory, dyre, filepath - , foreign-store, hslogger, megaparsec, messagepack, mtl, network - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal - , process, resourcet, setenv, stdenv, stm, streaming-commons - , template-haskell, text, time, time-locale-compat, transformers - , transformers-base, unliftio, unliftio-core, utf8-string, void - }: - mkDerivation { - pname = "nvim-hs"; - version = "1.0.0.3"; - sha256 = "e1a8dd50b3b6d6e70972394acc11c26ea71a3e1f9afd2c15a242c3b4f252f61e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cereal cereal-conduit conduit containers - data-default deepseq directory dyre filepath foreign-store hslogger - megaparsec messagepack mtl network optparse-applicative - prettyprinter prettyprinter-ansi-terminal process resourcet setenv - stm streaming-commons template-haskell text time time-locale-compat - transformers transformers-base unliftio unliftio-core utf8-string - void - ]; - executableHaskellDepends = [ base data-default ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "nvim-hs-contrib" = callPackage - ({ mkDerivation, base, bytestring, data-default, directory - , filepath, messagepack, mtl, nvim-hs, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text, time, utf8-string - , yaml - }: - mkDerivation { - pname = "nvim-hs-contrib"; - version = "1.0.0.0"; - sha256 = "bd342ebd086b2825e74908ebe93621d7d06cd6b06f0bb2fdf98c44351f7a1394"; - libraryHaskellDepends = [ - base bytestring data-default directory filepath messagepack mtl - nvim-hs prettyprinter prettyprinter-ansi-terminal text time - utf8-string yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs-contrib"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "o-clock" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "o-clock"; - version = "1.0.0.1"; - sha256 = "d9198d86927002eb7fb9c9ba52afd965719d3a6a1d19818f188d8b06f707bb5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/o-clock"; - description = "Type-safe time library"; - license = stdenv.lib.licenses.mit; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "objective" = callPackage - ({ mkDerivation, base, containers, exceptions, free, hashable - , monad-skeleton, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat, unordered-containers, void - , witherable - }: - mkDerivation { - pname = "objective"; - version = "1.1.2"; - sha256 = "2fcf283ede3f447f2e65ed9c434bb8facef873ba534aa0de29eb5ffefcc86644"; - revision = "1"; - editedCabalFile = "039j3xac9ish0yk4w04bmip6g9p6ndfd9ngh46ya125ms4nhmyj4"; - libraryHaskellDepends = [ - base containers exceptions free hashable monad-skeleton mtl - profunctors template-haskell transformers transformers-compat - unordered-containers void witherable - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/objective"; - description = "Composable objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, parsec, semigroups, stdenv - , template-haskell, text, time, transformers, unixODBC - , unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.2.2"; - sha256 = "659a124883696168daf3cd20403394616a56837c904810073183ce41769e7336"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting parsec - semigroups template-haskell text time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis" = callPackage - ({ mkDerivation, base, HTTP, network, network-uri, stdenv }: - mkDerivation { - pname = "oeis"; - version = "0.3.9"; - sha256 = "8a692c0b898f5d89e607f9593697a24827981a1cfee53045c192084015061b8e"; - revision = "1"; - editedCabalFile = "0rb6l3qblay8aiwaznp35gj7vwmhm87y57wvf3babwrh91s88jaj"; - libraryHaskellDepends = [ base HTTP network network-uri ]; - doHaddock = false; - doCheck = false; - description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.2.0"; - sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "om-elm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , http-types, safe, safe-exceptions, stdenv, template-haskell, text - , unix, wai - }: - mkDerivation { - pname = "om-elm"; - version = "1.0.0.3"; - sha256 = "af10f05a0eed4e17829211f06e79b7c4884dbd5c2736674e9e7680bbe426c744"; - libraryHaskellDepends = [ - base bytestring Cabal containers directory http-types safe - safe-exceptions template-haskell text unix wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/owensmurray/om-elm"; - description = "Haskell utilities for building embedded Elm programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.2"; - sha256 = "753ec628a1fac1f308a4b0e75adee768f962815485e1832a8052ee9af61848a8"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://anonscm.debian.org/cgit/users/kaction-guest/haskell-once.git"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "online" = callPackage - ({ mkDerivation, base, foldl, numhask-prelude, protolude, stdenv - , tdigest, vector, vector-algorithms - }: - mkDerivation { - pname = "online"; - version = "0.3.0.0"; - sha256 = "baadb1cccc0b59547bf9e0829fba1c8079e38a68a925971c07f2b99f674bca14"; - libraryHaskellDepends = [ - base foldl numhask-prelude protolude tdigest vector - vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/online#readme"; - description = "online statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-witness" = callPackage - ({ mkDerivation, base, constraints, hashable, random, stdenv - , template-haskell, transformers, witness - }: - mkDerivation { - pname = "open-witness"; - version = "0.4.0.1"; - sha256 = "0770500d6eeb301fc92d30bec2ccef55b05beb0200125fcbddb6b50836034111"; - libraryHaskellDepends = [ - base constraints hashable random template-haskell transformers - witness - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/open-witness"; - description = "open witnesses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.2"; - sha256 = "2b0655a64ee36d529030df04f09b6fdf63749f64ec3d29b4f1861cf9c69a05e2"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "git://klacansky.com/openexr-write.git"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.1"; - sha256 = "b92f3f5316f18c9e30a95cd59888658384ddd20b628e4cd5fbb647177f52f607"; - revision = "1"; - editedCabalFile = "0j4qra3i7g607axj07d7f0ycj07d889nyw2s04m5wc98blbm5k4j"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.isc; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.1.0"; - sha256 = "1ef36be24b2a1d2aee892891e6c7bd975830c38900dbb96a80e5df95c37c5482"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "openssl-streams" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, io-streams, network - , stdenv - }: - mkDerivation { - pname = "openssl-streams"; - version = "1.2.1.3"; - sha256 = "dc7170e835cf71a132903e2a6ccc976bd2984f9241ea2e4e99a9ece74f868f5f"; - revision = "2"; - editedCabalFile = "1004kgdryflpkp19dv4ikilhcn0xbfc5dsp6v3ib34580pcfj7wy"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL io-streams network - ]; - doHaddock = false; - doCheck = false; - description = "OpenSSL network support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "opml-conduit" = callPackage - ({ mkDerivation, base, case-insensitive, conduit - , conduit-combinators, containers, lens-simple, mono-traversable - , monoid-subclasses, safe-exceptions, semigroups, stdenv, text - , time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "opml-conduit"; - version = "0.6.0.4"; - sha256 = "480b557690aab79e3761ad7f1ba1d44873c3d395d2b27f2d133372a01c535d1d"; - revision = "1"; - editedCabalFile = "160sazqsrmm2755642c5y5i38miiglqb66cy5k0hy4k2jkdmjfbi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base case-insensitive conduit conduit-combinators containers - lens-simple mono-traversable monoid-subclasses safe-exceptions - semigroups text time timerep uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/opml-conduit"; - description = "Streaming parser/renderer for the OPML 2.0 format."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.14.3.0"; - sha256 = "72476302fe555a508917b2d7d6121c7b58ea5434cdc08aeb5d4b652e8f0e7663"; - revision = "2"; - editedCabalFile = "1a08dqjly1xy730f6jf45frr8g8gap0n1vg9b0mpzpydv0kgzmrp"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.0"; - sha256 = "80929958606e4a73672b570ba1a23493fbf46268666d14ab5af53623301c398f"; - revision = "3"; - editedCabalFile = "0vszcjmxywblx5z9yvrz8c6yc104jgr1nv0sbv58ansd3rkjlzfn"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, gitrev, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.0"; - sha256 = "838d795faa3de3b426b83df11834bead33d02d7fe89df30300ca05c72e714cbc"; - libraryHaskellDepends = [ - base gitrev optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.3.1"; - sha256 = "1b76a08553d65e62235a9ca8ba001a2620fbee5a2169e4d40e06e28bdf0a27e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "packdeps" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , filepath, optparse-applicative, process, semigroups, split - , stdenv, tar, text, time - }: - mkDerivation { - pname = "packdeps"; - version = "0.4.5"; - sha256 = "17de7170a104434ba1c686a0a279cc43a3841fae89f75636e0e7f8a27bb7da1e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal containers directory filepath split tar text - time - ]; - executableHaskellDepends = [ - base Cabal containers optparse-applicative process semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://packdeps.haskellers.com/"; - description = "Check your cabal packages for lagging dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "palette" = callPackage - ({ mkDerivation, array, base, colour, containers, MonadRandom - , stdenv - }: - mkDerivation { - pname = "palette"; - version = "0.3.0.1"; - sha256 = "f1153525439d18423b73599a545f4f4bfa49fc481d5608c0770e56a0ce7a9c7a"; - libraryHaskellDepends = [ - array base colour containers MonadRandom - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Utilities for choosing and creating color schemes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , binary, blaze-html, blaze-markup, bytestring, Cabal - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doctemplates, exceptions, filepath, Glob - , haddock-library, hslua, hslua-module-text, HTTP, http-client - , http-client-tls, http-types, JuicyPixels, mtl, network - , network-uri, pandoc-types, parsec, process, random, safe - , scientific, SHA, skylighting, split, stdenv, syb, tagsoup - , temporary, texmath, text, time, unix, unordered-containers - , vector, xml, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.2.1"; - sha256 = "fe037f5fbb62fb27e7b1dbddfbd0aa45ea6e9fcdaff1f2203f7484c245b211b7"; - revision = "2"; - editedCabalFile = "05i037qlzh7akshv0ph7lk565x3sl91x227ls9jh71m2hhslyslf"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring binary blaze-html - blaze-markup bytestring case-insensitive cmark-gfm containers - data-default deepseq directory doctemplates exceptions filepath - Glob haddock-library hslua hslua-module-text HTTP http-client - http-client-tls http-types JuicyPixels mtl network network-uri - pandoc-types parsec process random safe scientific SHA skylighting - split syb tagsoup temporary texmath text time unix - unordered-containers vector xml yaml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share - mv $data/*/*/man $out/share/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-citeproc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , Cabal, containers, data-default, directory, filepath, hs-bibutils - , mtl, old-locale, pandoc, pandoc-types, parsec, rfc5051, setenv - , split, stdenv, syb, tagsoup, text, time, unordered-containers - , vector, xml-conduit, yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.14.8.1"; - sha256 = "df0164e5d983716e33cefdc0a79deb9cf5e66f109aef93b416b38f9916e88d11"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base bytestring containers data-default directory filepath - hs-bibutils mtl 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 pandoc - pandoc-types syb text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.17.5.4"; - sha256 = "32aca86c510bd23c6bd54ce1a37ca005f4b84f077ab8e835a522833cf5179327"; - revision = "1"; - editedCabalFile = "0bpd2iqmriajl5qg44j4z9c4agb9gsdwbn5l4c5yry6flivysq3c"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://johnmacfarlane.net/pandoc"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pango" = callPackage - ({ mkDerivation, array, base, Cabal, cairo, containers, directory - , filepath, glib, gtk2hs-buildtools, mtl, pango, pretty, process - , stdenv, text - }: - mkDerivation { - pname = "pango"; - version = "0.13.5.0"; - sha256 = "bf59b9273134e5d1c9c648a253e5a766cd1ef51afc2216175bce21a15b6d49e8"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal filepath gtk2hs-buildtools ]; - libraryHaskellDepends = [ - array base cairo containers directory glib mtl pretty process text - ]; - libraryPkgconfigDepends = [ pango ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/gtk2hs/"; - description = "Binding to the Pango text rendering engine"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) pango;}; - "papillon" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, monads-tf - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "papillon"; - version = "0.1.0.6"; - sha256 = "2b5a614c8792ab3e36fae53f5303a9e62b78b896da1752d65b8ebf7b98ea1ac8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring monads-tf template-haskell transformers - ]; - executableHaskellDepends = [ - base directory filepath monads-tf template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; - description = "packrat parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, ghc-prim, stdenv - }: - mkDerivation { - pname = "parallel"; - version = "3.2.2.0"; - sha256 = "170453a71a2a8b31cca63125533f7771d7debeb639700bdabdd779c34d8a6ef6"; - revision = "1"; - editedCabalFile = "0a3kn7arck8f2gwm8cwfkplsw4q9v9j6ifbhj1l3bmclmkwcckcj"; - libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.8"; - sha256 = "7b789204c15d0c478db3d133f349a6970b5509fc6af655faedc03c7426dcf7d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Full-featured command-line argument parsing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.13.0"; - sha256 = "7861ae437a6177ee7c08899432fd8c062e7c110361da48a9f9e88263fd4d80f1"; - revision = "2"; - editedCabalFile = "032sizm03m2vdqshkv4sdviyka05gqf8gs6r4hqf9did177i0qnm"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.1"; - sha256 = "03162e40cde50253529fa452165b681d5064d03ad07992800702156adfb6254d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, binary, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.9"; - sha256 = "81e52fc9d71b587a8034015344e9162c59975750094f930a47933e5603d305e4"; - libraryHaskellDepends = [ - attoparsec base base-orphans binary charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-order" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "partial-order"; - version = "0.1.2.1"; - sha256 = "e37dc77f4b8852b1c96fe9b8b06db41aa00d06c5ce7f0c1c5bea15ea462ac397"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/haskell-partial-order"; - description = "Provides typeclass suitable for types admitting a partial order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell - }: - mkDerivation { - pname = "path"; - version = "0.6.1"; - sha256 = "4b8bd85a13395b4240c639b9cf804371854d5dac69158f661068bd3089a25e59"; - revision = "2"; - editedCabalFile = "05pgmg0w1mfwcmx9ad4p09xqxld8njhgwmgq38v7pr58czvmd6ks"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.3.3"; - sha256 = "2aec05914a7569f221cf73e25070fea5fad8125a9a93845e8d614a1c291e35bd"; - revision = "3"; - editedCabalFile = "1h9hsibbflkxpjl2fqamqiv3x3gasf51apnmklrs9l9x8r32hzcc"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcf-font" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector, zlib - }: - mkDerivation { - pname = "pcf-font"; - version = "0.2.2.0"; - sha256 = "8a67d04240a7668e669414d1b4f531d290c79a63198e0ecf02cb0339bff098ef"; - libraryHaskellDepends = [ - base binary bytestring containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font"; - description = "PCF font parsing and rendering library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcf-font-embed" = callPackage - ({ mkDerivation, base, bytestring, pcf-font, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "pcf-font-embed"; - version = "0.1.2.0"; - sha256 = "c55d51ee6f959c9c05bb9d9adac3aad1cd87b2bba3cca7d3667d67f1a230fd51"; - libraryHaskellDepends = [ - base bytestring pcf-font template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font-embed"; - description = "Template Haskell for embedding text rendered using PCF fonts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, entropy, primitive, random - , stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.5"; - sha256 = "de43ff8805f9e0ffd4cd6b4f2fed8c9cfa9ab45c0fd42374636ac7a5567840a4"; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.0.4"; - sha256 = "02c97e39263d18fd26aa63d52c88c4bfbb5c3f66ab40564552e7f11d5d889e75"; - libraryHaskellDepends = [ base bytestring ]; - libraryPkgconfigDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perf" = callPackage - ({ mkDerivation, base, containers, deepseq, foldl, rdtsc, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "perf"; - version = "0.4.1.0"; - sha256 = "881d50dc3603ba7008807ab03247a321bb1f9377da192135922a536c1d1201fc"; - libraryHaskellDepends = [ - base containers deepseq foldl rdtsc text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/perf#readme"; - description = "Low-level run time measurement"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.4"; - sha256 = "6d3abe73d61cf691bb1b5a412fa8a6d8fcc5cb3070176041ad8953b63ca5f8f9"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-types-HDBC-pg" = callPackage - ({ mkDerivation, base, bytestring, convertible, dlist, HDBC - , persistable-record, relational-query, relational-query-HDBC - , stdenv, text-postgresql - }: - mkDerivation { - pname = "persistable-types-HDBC-pg"; - version = "0.0.3.5"; - sha256 = "955c73edd056e1ecb6a3543d726070c3f219a67017ef18ac9ae75711f63cec2f"; - libraryHaskellDepends = [ - base bytestring convertible dlist HDBC persistable-record - relational-query relational-query-HDBC text-postgresql - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC and Relational-Record instances of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, blaze-markup, bytestring, conduit, containers - , fast-logger, haskell-src-meta, http-api-data, monad-logger, mtl - , old-locale, path-pieces, resource-pool, resourcet, scientific - , silently, stdenv, tagged, template-haskell, text, time - , transformers, unliftio-core, unordered-containers, vector, void - }: - mkDerivation { - pname = "persistent"; - version = "2.8.2"; - sha256 = "696bb279259e307778dc7fbd49565c48a66429f14e793a41a13cfae0968c1ec0"; - revision = "2"; - editedCabalFile = "1y7gm3qcgizy42kf0h9hzjf27kl11dbfwvi72ggkw00apjsp9hnn"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html blaze-markup - bytestring conduit containers fast-logger haskell-src-meta - http-api-data monad-logger mtl old-locale path-pieces resource-pool - resourcet scientific silently tagged template-haskell text time - transformers unliftio-core unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-iproute" = callPackage - ({ mkDerivation, aeson, aeson-iproute, base, bytestring - , http-api-data, iproute, path-pieces, persistent, stdenv, text - }: - mkDerivation { - pname = "persistent-iproute"; - version = "0.2.3"; - sha256 = "f595a11ceaa1c19e11d6f4fc58ec2834eb100791ae82626912115f1d79edbfaa"; - revision = "1"; - editedCabalFile = "1jly9db968q5j5ly75f77hwxrhky3s6xx8ydgsjn5cdr9rc4iz8k"; - libraryHaskellDepends = [ - aeson aeson-iproute base bytestring http-api-data iproute - path-pieces persistent text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/persistent-iproute"; - description = "Persistent instances for types in iproute"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.8.1"; - sha256 = "80cc29f8fa90503a13c348e14f10dd0883f17837ca72a5cd5b2884fdb286e654"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , io-streams, monad-logger, mysql-haskell, network, persistent - , persistent-template, resource-pool, resourcet, stdenv, text, time - , tls, transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-mysql-haskell"; - version = "0.4.2"; - sha256 = "a31845b8a67dff3b811f0b6687f58b54fa77fda60fe952a528e3522cbbb35b04"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "A pure haskell backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.8.2.0"; - sha256 = "f2f3c80b9f1d5ae494492204f3170e33ff3a5792b9675748839de6309d082f49"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-refs" = callPackage - ({ mkDerivation, base, containers, mtl, ref-fd, stdenv - , transformers - }: - mkDerivation { - pname = "persistent-refs"; - version = "0.4"; - sha256 = "46b310e034e23993e7da740d388e06e410483ada05cbcc8c0a4953ee19f8d0d3"; - libraryHaskellDepends = [ - base containers mtl ref-fd transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/persistent-refs"; - description = "Haskell references backed by an IntMap for persistence and reversibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, old-locale, persistent, resource-pool - , resourcet, sqlite, stdenv, text, time, transformers - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.8.2"; - sha256 = "e6faf5d17132dc7e36c932dcd88cf66e680fe75a4341f8ed83551bf2e5ae0bb2"; - revision = "1"; - editedCabalFile = "10ck5x420iq1mqy51hywbml84q3hhfgd02mscjnpsp0n2g1j3v0j"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - old-locale persistent resource-pool resourcet text time - transformers unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers - , ghc-prim, http-api-data, monad-control, monad-logger, path-pieces - , persistent, stdenv, tagged, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.5.4"; - sha256 = "4cae740ce92f98cb3ae9e092e740753394d5687b887399ee5f87af7f3c730a01"; - revision = "4"; - editedCabalFile = "08yb4kcmpqmm50lwrbmavd0zhgg6p7bl8dy026xw644cazrzcvr1"; - libraryHaskellDepends = [ - aeson aeson-compat base bytestring containers ghc-prim - http-api-data monad-control monad-logger path-pieces persistent - tagged template-haskell text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.1.0.1"; - sha256 = "598236369ee1228a3a76b4f0d5830d652a90ddbc0f98fdde064ad979a1abc97d"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "Another postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.2"; - sha256 = "e28b6fe85222adf1247d5870ab47c68c3d25df3f9ceda104bfb64e1414a92466"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "picosat" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "picosat"; - version = "0.1.5"; - sha256 = "de480988ea0f2c599fc0c844667b56834656d112e1a0b53b4068794a43fb8671"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/haskell-picosat"; - description = "Bindings to the PicoSAT solver"; - license = stdenv.lib.licenses.mit; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pinboard" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-client - , http-client-tls, http-types, monad-logger, mtl, network - , profunctors, random, safe-exceptions, stdenv, text, time - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pinboard"; - version = "0.9.12.11"; - sha256 = "a0f19d8ebe3a77306a7bd0c16b71381403cf2052baf99aa448cb0a7a1e4d728b"; - libraryHaskellDepends = [ - aeson base bytestring containers http-client http-client-tls - http-types monad-logger mtl network profunctors random - safe-exceptions text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonschoning/pinboard"; - description = "Access to the Pinboard API"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.9"; - sha256 = "5c4cda351f9cf59376832baaeb857db25bd4990fd78c4b061aca0bde47271acb"; - revision = "3"; - editedCabalFile = "0ydjr0vw09spamifvv5r2y46s1x26mnijb7bbpdkz7lwa71jxn6r"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-category" = callPackage - ({ mkDerivation, base, lens, mtl, pipes, pipes-extras, stdenv }: - mkDerivation { - pname = "pipes-category"; - version = "0.3.0.0"; - sha256 = "4711d889ed2bf7244bbbc292af5746e0378d72a09929aa1e668056e7f0180701"; - libraryHaskellDepends = [ base lens mtl pipes pipes-extras ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-category#readme"; - description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.12"; - sha256 = "4343c67710e2fcd8987c537389773358150559bf06e86d96b1097c15ae81589d"; - revision = "2"; - editedCabalFile = "1c06nypirrd76jg5y508517smxh3izy98y6kj89k79kbpi5rncbj"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.15"; - sha256 = "02a9633ac912fd48e9a5ca0e6b48a6e9541ce59d11243096ca6af6b25701cbb3"; - revision = "1"; - editedCabalFile = "0xrd5zwkr1c7lswzi91gxl3ndra8y9g2b4j00sszyy3w187a2zwi"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fluid" = callPackage - ({ mkDerivation, base, constraints, lens, lifted-async - , monad-control, pipes, semigroups, stdenv, stm, these - , transformers, transformers-base - }: - mkDerivation { - pname = "pipes-fluid"; - version = "0.6.0.1"; - sha256 = "105d8e8df7e731e2d272a22891eb68db1ca3ec9f425b67af77c5d91e3f032f06"; - libraryHaskellDepends = [ - base constraints lens lifted-async monad-control pipes semigroups - stm these transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-fluid#readme"; - description = "Reactively combines Producers so that a value is yielded as soon as possible"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.12"; - sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7"; - revision = "1"; - editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.5"; - sha256 = "49a196466de1638f3806a49bf10fef9eb3c06456ababf09ffd025b6b64f23055"; - revision = "1"; - editedCabalFile = "015psgj5wl67p0qdc00nrn717gv354gii70c57n1px5j81b0z5cl"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-misc" = callPackage - ({ mkDerivation, base, clock, Decimal, lens, mmorph, mtl, pipes - , pipes-category, pipes-concurrency, semigroups, stdenv, stm - , transformers - }: - mkDerivation { - pname = "pipes-misc"; - version = "0.5.0.0"; - sha256 = "4e2e7e396ee0c659ae3742388d06b69e3b5146a5563cd3f4ba56f9a1febb8d26"; - libraryHaskellDepends = [ - base clock Decimal lens mmorph mtl pipes pipes-category - pipes-concurrency semigroups stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-misc#readme"; - description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network" = callPackage - ({ mkDerivation, base, bytestring, exceptions, network - , network-simple, pipes, pipes-safe, stdenv, transformers - }: - mkDerivation { - pname = "pipes-network"; - version = "0.6.5"; - sha256 = "74a461153a2f650e9e15037002b6d9177b132f409e3204824655ffbb939dc795"; - libraryHaskellDepends = [ - base bytestring exceptions network network-simple pipes pipes-safe - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network"; - description = "Use network sockets together with the pipes library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network-tls" = callPackage - ({ mkDerivation, base, bytestring, network, network-simple - , network-simple-tls, pipes, pipes-network, pipes-safe, stdenv, tls - , transformers - }: - mkDerivation { - pname = "pipes-network-tls"; - version = "0.3"; - sha256 = "a2694a6b15d71a8cae898dd8e6a085a4e1ae317c40f2752ceed2b991dfb6bab2"; - libraryHaskellDepends = [ - base bytestring network network-simple network-simple-tls pipes - pipes-network pipes-safe tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network-tls"; - description = "TLS-secured network connections support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-random" = callPackage - ({ mkDerivation, base, mwc-random, pipes, stdenv, vector }: - mkDerivation { - pname = "pipes-random"; - version = "1.0.0.4"; - sha256 = "542a07e7d7aafa87201c1f00c4e98ac8f59707f776ea03b1f6f117273608659e"; - revision = "2"; - editedCabalFile = "0czw2qfi05d5kbnwzhzr75j1ag6hfbn9nvbjyifdjradfzjxl2s9"; - libraryHaskellDepends = [ base mwc-random pipes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/pipes-random"; - description = "Producers for handling randomness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.2.9"; - sha256 = "17f16403794a2517eb283dd8b34a17c3485143b7fb66870d0a305294815a1898"; - revision = "2"; - editedCabalFile = "1crpzg72nahmffw468d31l23bw3wgi0p3w7ad2pv3jxhy1432c71"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plot-light" = callPackage - ({ mkDerivation, base, blaze-markup, blaze-svg, colour, containers - , exceptions, histogram-fill, mtl, scientific, stdenv, text, time - , vector - }: - mkDerivation { - pname = "plot-light"; - version = "0.4.3"; - sha256 = "abbc116ff80d1e7ee0ed4dd0ba90baf907da7f347fa678767ff9402714399fbb"; - libraryHaskellDepends = [ - base blaze-markup blaze-svg colour containers exceptions - histogram-fill mtl scientific text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/plot-light"; - description = "A lightweight plotting library, exporting to SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text, time - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2.1"; - sha256 = "c95ed42c789d26165183c2cbb4e8a44065478cad0a80053ac8e6fa2a84c7ecb4"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.12"; - sha256 = "f54c63584ace968381de4a06bd7328b6adc3e1a74fd336e18449e0dd7650be15"; - revision = "1"; - editedCabalFile = "18daiyj3009wx0bhr87fbgy7xfh68ss9qzn6k3lgmh1z9dfsryrd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.2"; - sha256 = "3a5b51356c2c0844ac085d9ad073851d46426a09ffb59bcbfb8e072de4bd1fbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "portable-lines" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "portable-lines"; - version = "0.1"; - sha256 = "5053f5bc42d4362062e0ec55dd111b0f6611be280c7f871876732853f4b824d1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Alternative 'lines' implementation that understands CR-LF and CR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.1.2"; - sha256 = "83ad514b9f6328e89f92f66a60de7f65609386773b6edf27f8aee2ee52120582"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.2"; - sha256 = "cea053c79ef1505c30518db7b9fb2ee68c9e2915d48b22f01f8eb9a9b49f06f9"; - revision = "1"; - editedCabalFile = "0hilyfb2gjh471ia2g8mwjs56ykrgl0qd06vpigwhc493ia7a9mv"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.14"; - sha256 = "73decc70c9fc349d0162c253eb0e92a1add5964c28ef89abfe30e97f1184d572"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.5.4.0"; - sha256 = "f5d11ae7907307a1a32d62add9ed88cccf4dc7a25c0c1f3f36e0975d44f73a77"; - revision = "1"; - editedCabalFile = "18g85a8icp21bjl38phwla25qv78y96vcisq5v1vwmz59m2n5k4h"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable postgresql-libpq scientific - template-haskell text time transformers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-migration" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash - , directory, postgresql-simple, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-simple-migration"; - version = "0.1.13.1"; - sha256 = "0ac9a3c789c8e6e85710809b1bdfd48cc81aa58963169a71db4bdb3e26587475"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple time - ]; - executableHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ameingast/postgresql-simple-migration"; - description = "PostgreSQL Schema Migrations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-queue" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, monad-control - , pg-transact, postgresql-simple, random, stdenv, stm, text, time - , transformers - }: - mkDerivation { - pname = "postgresql-simple-queue"; - version = "1.0.1"; - sha256 = "330b69c54e075104171758117e714b7da6c740dff8ca09fbe33bd3ab854e5a3f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions monad-control pg-transact - postgresql-simple random stm text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgresql-queue#readme"; - description = "A PostgreSQL backed queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-url" = callPackage - ({ mkDerivation, base, network-uri, postgresql-simple, split - , stdenv - }: - mkDerivation { - pname = "postgresql-simple-url"; - version = "0.2.1.0"; - sha256 = "1307f57cde2bd7f6d795a860deab53d3d64043f51af31e3114dee516ef7ee9c9"; - revision = "2"; - editedCabalFile = "1nb1ks6hdfn16389f2yhf37qhjqd2y5wjc1dcp9bjhzd787z7ypr"; - libraryHaskellDepends = [ - base network-uri postgresql-simple split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/postgresql-simple-url"; - description = "Parse postgres:// url into ConnectInfo"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-transactional" = callPackage - ({ mkDerivation, base, monad-control, mtl, postgresql-simple - , stdenv - }: - mkDerivation { - pname = "postgresql-transactional"; - version = "1.1.1"; - sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; - libraryHaskellDepends = [ - base monad-control mtl postgresql-simple - ]; - doHaddock = false; - doCheck = false; - description = "a transactional monad on top of postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-typed" = callPackage - ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring - , containers, cryptonite, haskell-src-meta, HDBC, memory, network - , old-locale, postgresql-binary, scientific, stdenv - , template-haskell, text, time, utf8-string, uuid - }: - mkDerivation { - pname = "postgresql-typed"; - version = "0.5.3.0"; - sha256 = "b3c01c0821e96a83163f919aff86aba603f13d10ff5245680f4c4e488531f82a"; - libraryHaskellDepends = [ - aeson array attoparsec base binary bytestring containers cryptonite - haskell-src-meta HDBC memory network old-locale postgresql-binary - scientific template-haskell text time utf8-string uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dylex/postgresql-typed"; - description = "PostgreSQL interface with compile-time SQL type checking, optional HDBC backend"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.2"; - sha256 = "d2aaacbe069a5dac61cee677c68eb34d74afa09c59d90d43e2fa07a6c5869fec"; - revision = "1"; - editedCabalFile = "1la186z2np3nv06p0485xwg342gyjp7a2ikg73qs7mbg086352zs"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.1"; - sha256 = "7bdc875d5b7265a87f06866dc00da69edcd4ae36ea9687c8c6e643833ffb40d4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-extras"; - version = "0.4.0.3"; - sha256 = "09bb087f0870a353ec1e7e1a08017b9a766d430d956afb88ca000a6a876bf877"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/prelude-extras"; - description = "Higher order versions of Prelude classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "present" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "present"; - version = "4.1.0"; - sha256 = "bae8b334817a31572cc0e771f40e89b976e72b2b55d0955e4e198502dd8a427b"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/present"; - description = "Make presentations for data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.0"; - sha256 = "ff9a5f2023d6a4454f06cc395726b4cac3f9d0ea03759b14ccf7d62df79e9c7a"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.9.5"; - sha256 = "b095bebb79951d2e25a543a591844fb638165672d7b95d325844611297ba423f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, containers, mtl, parsec - , stdenv, text, transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "2.1.0.1"; - sha256 = "9aa92eea9cd76e4623fda6759a9f0ccf9e8e3accf1c2dd4b483bfac7ae5cd3d1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base containers mtl parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.2.3.1"; - sha256 = "e56c49d1099aaeafe0b982ef9e60cb7194fd987c4b659a8d7bcde380d3b8784f"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.2.1"; - sha256 = "e7653e0ba87cc06553a50e4780dde81c5dd156196c0199511d03d972e5517fcf"; - revision = "1"; - editedCabalFile = "133n28la2dxhpvm5zbarcf0yc9hpl97lkjds3wxzgl7irfyk9w7n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible pretty-printer"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-convert-ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-convert-ansi-wl-pprint"; - version = "1.1"; - sha256 = "b8982d38776249d3d29a4ede426a27a02f7cbb6843722b5ec8ede18d032fa60c"; - revision = "1"; - editedCabalFile = "1c4zcscmvq0vbdgnp7n0avv8si5jshl4kw2qd1lqmhr28kj8x45f"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base prettyprinter - prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prim-uniq" = callPackage - ({ mkDerivation, base, dependent-sum, primitive, stdenv }: - mkDerivation { - pname = "prim-uniq"; - version = "0.1.0.1"; - sha256 = "fb059785133fe5ecaa57c6c840192f252c4c5a1a598160d5704ac2a83e895aff"; - libraryHaskellDepends = [ base dependent-sum primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/prim-uniq"; - description = "Opaque unique identifiers in primitive state monads"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.6.3.0"; - sha256 = "cddeff804e0f577f1be0179d5d145dfc170f8bfb66f663b9fba67104a45d9555"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "probability" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "probability"; - version = "0.2.5.2"; - sha256 = "0f2b8c734eca6b079109948a28d85733543d5cea1dea2d5a1369f52ffc4a3415"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers random transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; - description = "Probabilistic Functional Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.3"; - sha256 = "1ef93a2cacbaf1fb2ae713f2d0d869593d4a5b8605eff38108877cbbfb51c1bb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, stdenv, tagged, transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.5.1"; - sha256 = "1d3741957d3187c033342e0b9ca3ba302e936c69bb402b89e4b1c60ae1d9b15a"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "prometheus-client" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, clock - , containers, mtl, stdenv, stm, transformers, utf8-string - }: - mkDerivation { - pname = "prometheus-client"; - version = "0.3.0"; - sha256 = "5f28c40b864d4773d019725e9f0dd7c06610c676250c8f1126e511d72348d05b"; - libraryHaskellDepends = [ - atomic-primops base bytestring clock containers mtl stm - transformers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/prometheus-haskell"; - description = "Haskell client library for http://prometheus.io."; - license = stdenv.lib.licenses.asl20; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, deepseq, lens-family, lens-labels, parsec - , pretty, stdenv, text, transformers, void - }: - mkDerivation { - pname = "proto-lens"; - version = "0.3.1.0"; - sha256 = "87bf1aa7d7754ca06ccbfb0daf4a77de53345c1d098e0fa17018ee00c2b994ab"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class deepseq - lens-family lens-labels parsec pretty text transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.2"; - sha256 = "110d42ecdc1ac385d01f91794ab22f15477f195f44a7e6d1d099742fd03b1989"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-combinators" = callPackage - ({ mkDerivation, base, Cabal, data-default-class, lens-family - , proto-lens-protoc, stdenv, transformers - }: - mkDerivation { - pname = "proto-lens-combinators"; - version = "0.1.0.11"; - sha256 = "ebb21b0b69bc117fcec32b2472954507c7332f5025f348967998bedde05e59c4"; - setupHaskellDepends = [ base Cabal proto-lens-protoc ]; - libraryHaskellDepends = [ - base data-default-class lens-family proto-lens-protoc transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Utilities functions to proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.4"; - sha256 = "f053140fddc73b7450f897536c0da196d6236b353ba5ed029c9e3db5b864c5b6"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-protoc, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.3.0.1"; - sha256 = "8a19053eabdff8e84b65181dd1beb4fafe5a84bae5af1bb3b32d043d0ef56018"; - setupHaskellDepends = [ base Cabal proto-lens-protoc ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-protoc text - ]; - libraryToolDepends = [ protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers - , data-default-class, deepseq, directory, filepath - , haskell-src-exts, lens-family, lens-labels, pretty, process - , proto-lens, protobuf, stdenv, temporary, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.3.1.2"; - sha256 = "a7425e4fa6fd996cf7f5dbf028b56597aaf6b333882e8161af8cd5f205bd1e97"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring Cabal containers data-default-class deepseq - directory filepath haskell-src-exts lens-family lens-labels pretty - process proto-lens temporary text - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers data-default-class deepseq filepath - haskell-src-exts lens-family proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal - , data-binary-ieee754, deepseq, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "protobuf"; - version = "0.2.1.2"; - sha256 = "b3c871918a665f0543fde247ab8af61c4fc451103140d34bf652c0d5fc4d17de"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal data-binary-ieee754 deepseq mtl - text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/protobuf"; - description = "Google Protocol Buffers via GHC.Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.1.0"; - sha256 = "9029d395f099aa7ce510a9e0eb0b2c21e5b4ecaa2b242d5a1753de6b93abcdc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-buffers" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , directory, filepath, mtl, parsec, stdenv, syb, utf8-string - }: - mkDerivation { - pname = "protocol-buffers"; - version = "2.4.11"; - sha256 = "47cb492a1d2b3ee7d1c8dc7d7b8c1656c754968854bd0caf29cf70c2f38d81e8"; - libraryHaskellDepends = [ - array base binary bytestring containers directory filepath mtl - parsec syb utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-buffers-descriptor" = callPackage - ({ mkDerivation, base, bytestring, containers, protocol-buffers - , stdenv - }: - mkDerivation { - pname = "protocol-buffers-descriptor"; - version = "2.4.11"; - sha256 = "a090bdc834cf4351ebabf15e2eed31877104f6e93900f8da8f350810c1d7681a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers protocol-buffers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.1"; - sha256 = "49982332f18246c9f46dc8f9500dcbd92a445d17124b4acd084568c14ac6a131"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.0.1.0"; - sha256 = "b5cc9a15e7910ecb449d3bbb142b809fa34bee2079e772ca63d4bb975a41ada0"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.2"; - sha256 = "685d0cf34b63482be84b785561009b8229327233ae311550d20d66b47b0f457c"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3"; - sha256 = "534d4d425f2834b39689e2af301bd5ff81d1619e65664a5efd797a0c88dbeb26"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psql-helpers" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv }: - mkDerivation { - pname = "psql-helpers"; - version = "0.1.0.0"; - sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; - libraryHaskellDepends = [ base postgresql-simple ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/psql-helpers#readme"; - description = "A small collection of helper functions to generate postgresql queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.0"; - sha256 = "4cf3628884015b091471e4425f5414207fd547cf71d9546e9b7318d857624fea"; - revision = "1"; - editedCabalFile = "0ncag4p7v41x5disbvkwzmv0c7ifc85lmjljzvf8d33arh7b08bj"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "publicsuffix" = callPackage - ({ mkDerivation, base, filepath, stdenv, template-haskell }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20180513"; - sha256 = "b51f193089fbdadeaecf062047b377e597ef6d72caff13e62d8a88f4c3870973"; - libraryHaskellDepends = [ base filepath template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; - description = "The publicsuffix list exposed as proper Haskell types"; - license = stdenv.lib.licenses.mit; - }) {}; - "pure-zlib" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , bytestring-builder, containers, fingertree, stdenv - }: - mkDerivation { - pname = "pure-zlib"; - version = "0.6.4"; - sha256 = "eb679aecb3fa310d28a31549cf83c29fba6f6e3c78bcdea82c9e22db36dc3017"; - revision = "1"; - editedCabalFile = "0mskig3fppav6f6x34vl5fxsih2hndiqvbdxz24hmr1dzkpnfvq1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base base-compat bytestring bytestring-builder containers - fingertree - ]; - executableHaskellDepends = [ base base-compat bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GaloisInc/pure-zlib"; - description = "A Haskell-only implementation of zlib / DEFLATE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qnap-decrypt" = callPackage - ({ mkDerivation, base, binary, bytestring, cipher-aes128, conduit - , conduit-extra, crypto-api, directory, filepath - , optparse-applicative, stdenv, streaming-commons, tagged - , utf8-string - }: - mkDerivation { - pname = "qnap-decrypt"; - version = "0.3.3"; - sha256 = "66b9a66298a950abe9639c248be8448a43a9afc1a86655148a86bbecbfbf963f"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qnap-decrypt#readme"; - description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickbench" = callPackage - ({ mkDerivation, base, containers, directory, docopt, pretty-show - , process, safe, split, stdenv, tabular, time - }: - mkDerivation { - pname = "quickbench"; - version = "1.0"; - sha256 = "8bfe252e50a683346e753db312e9542f8d43256947ab215fcfd24af03787b926"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory docopt pretty-show process safe split - tabular time - ]; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/quickbench#readme"; - description = "quick & easy benchmarking of command-line programs"; - license = "GPL"; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, stdenv, tagged, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.19"; - sha256 = "57a4aefff05313fb07a651934088d18a584f8bcfeaa02305be65525f12409a56"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific tagged text time - transformers transformers-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.0.4"; - sha256 = "808eb5966a97bd38a3992b280428a0b289ccb46c38397ea8e34661d1e1ec4414"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "quicklz" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "quicklz"; - version = "1.5.0.11"; - sha256 = "0d0b23370a848efa86da80f835d036f468cdb1b201809351116945729b5b699f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/thoughtpolice/hs-quicklz"; - description = "QuickLZ compression for ByteStrings"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens-simple, process, stdenv - , text - }: - mkDerivation { - pname = "rainbow"; - version = "0.30.0.2"; - sha256 = "be021eb05bc3e6a00b4fc10e1af941afa0c0a69ab83e5204e8455cfd5c0f5ec7"; - libraryHaskellDepends = [ - base bytestring lens-simple process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-simple, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.20.0.0"; - sha256 = "937f61d2fbc7b41f065cec9bb9d6550b54346e52b788d30f73ef78cf8545b61f"; - libraryHaskellDepends = [ - base bytestring containers lens-simple rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rakuten" = callPackage - ({ mkDerivation, aeson, base, bytestring, connection, constraints - , data-default-class, extensible, http-api-data, http-client - , http-client-tls, http-types, lens, req, stdenv, text - }: - mkDerivation { - pname = "rakuten"; - version = "0.1.1.5"; - sha256 = "eabffe5e897403bc4b3171d17589907f60aab65a25a9aa26b5a670f0562e1913"; - libraryHaskellDepends = [ - aeson base bytestring connection constraints data-default-class - extensible http-api-data http-client http-client-tls http-types - lens req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/rakuten#readme"; - description = "The Rakuten API in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.1"; - sha256 = "33a826fd04068902acb62b04cb88c5a0c47e483b88053be9f6de1d64911f0eb4"; - revision = "1"; - editedCabalFile = "0gk5hcx1j06rklfd2cv63kh5dzjk8hr184riam784c7s9zg3s9a4"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-fu" = callPackage - ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops - , mtl, random-shuffle, random-source, rvar, stdenv, syb - , template-haskell, transformers, vector - }: - mkDerivation { - pname = "random-fu"; - version = "0.2.7.0"; - sha256 = "b6b3a4b3ede34991d26e0447f90b14fa66af61f376fa0aed2e0899fdc879b0c4"; - libraryHaskellDepends = [ - base erf log-domain math-functions monad-loops mtl random-shuffle - random-source rvar syb template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random number generation"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-source" = callPackage - ({ mkDerivation, base, flexible-defaults, mersenne-random-pure64 - , mtl, mwc-random, random, stateref, stdenv, syb, template-haskell - , th-extras - }: - mkDerivation { - pname = "random-source"; - version = "0.3.0.6"; - sha256 = "f3dfec3aef0614ff856abbba018f3bc3446295157895ea09a015737d67205b73"; - libraryHaskellDepends = [ - base flexible-defaults mersenne-random-pure64 mtl mwc-random random - stateref syb template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Generic basis for random number generators"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3"; - sha256 = "e51b393d2c09e3c2b0c21523389a48ce8e6090413abdfff1c623815c76cc96df"; - revision = "1"; - editedCabalFile = "00ddj7if8lcrqf5c882m4slm15sdwcghz7d2fz222c7jcw1ahvdr"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rank2classes" = callPackage - ({ mkDerivation, base, distributive, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "rank2classes"; - version = "1.1.0.1"; - sha256 = "7c24a53f447fde044a071f0a7bda225a0e2ae76e800daf4b4a3c9fedadea82c7"; - libraryHaskellDepends = [ - base distributive template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/grampa/tree/master/rank2classes"; - description = "standard type constructor class hierarchy, only with methods of rank 2 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.2"; - sha256 = "02db61c98e6e550824e8d9813efe5e97293843e39e1c00e88837061b61a017c4"; - revision = "1"; - editedCabalFile = "19i9wlk951d85dqnmbgrnz0fg4xcw7cbv9cs2h8b440lycj3p4cv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, stdenv - , text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "1.0.7"; - sha256 = "fc7cd1f9ad297b211ac639cb4c78be9c973bc11a0a01b9b5e5470dcb0b71e6ce"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, stdenv, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "1.0.4"; - sha256 = "9528a62b62107b606c9aad9f14f5f5d8e588d22c988fc7e720aa03e2822131b3"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratio-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ratio-int"; - version = "0.1.2"; - sha256 = "efe86052c5979261d9aa6861c6297205ee0b60e1b36de191d20485e823c9781a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RaphaelJ/ratio-int"; - description = "Fast specialisation of Data.Ratio for Int."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rattletrap" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits - , bytestring, containers, filepath, http-client, http-client-tls - , stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "rattletrap"; - version = "4.1.2"; - sha256 = "62cdbb4d34e5b90ab7a2e3bcf2114990e40f9f7c7bce9cebb6b5cce05a67aa7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/rattletrap#readme"; - description = "Parse and generate Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest, fail - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.3"; - sha256 = "e10cbd0bd02adf8bfa7c709b66b5fc611c6765f8d97dc54a02b9963f08f2809f"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base fail ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rdf" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, dlist, fgl - , stdenv, text, transformers - }: - mkDerivation { - pname = "rdf"; - version = "0.1.0.2"; - sha256 = "889d93b6f54c791e62cd93ec404bb171d7e3bdbba0a085a4c7f4e4d2f3b51f6f"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq dlist fgl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/traviswhitaker/rdf"; - description = "Representation and Incremental Processing of RDF Data"; - license = stdenv.lib.licenses.mit; - }) {}; - "rdtsc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "rdtsc"; - version = "1.3.0.1"; - sha256 = "54c9a925f68d6c60b405e92f9d3bd9ebfc25cce0c72d2313a6c7e1b7cc2ed950"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgrabmueller/rdtsc"; - description = "Binding for the rdtsc machine instruction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.2"; - sha256 = "6906d80ed6834162f74ceb056230f7b1d1cd3423f05f67c65107b1493c8fd561"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rebase" = callPackage - ({ mkDerivation, base, base-prelude, bifunctors, bytestring - , containers, contravariant, contravariant-extras, deepseq, dlist - , either, fail, hashable, mtl, profunctors, scientific - , semigroupoids, semigroups, stdenv, stm, text, time, transformers - , unordered-containers, uuid, vector, void - }: - mkDerivation { - pname = "rebase"; - version = "1.2.4"; - sha256 = "ca6be557b4437d43d25133c566024c7bbf66b625b0b035a3ad8affeb381650bd"; - libraryHaskellDepends = [ - base base-prelude bifunctors bytestring containers contravariant - contravariant-extras deepseq dlist either fail hashable mtl - profunctors scientific semigroupoids semigroups stm text time - transformers unordered-containers uuid vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rebase"; - description = "A more progressive alternative to the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, filepath, stdenv }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.1.4"; - sha256 = "9dd32e7c89f4ac9480035639c2b17da32b90ad7501c2501843270d67db4c43d6"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, comonad, free, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.0.3"; - sha256 = "db207037a5a89eb0002df1fe878d8b84bf20bc4703ad4a86e856613fa89ca09f"; - revision = "3"; - editedCabalFile = "05fvpi3dc44h2a097fb9cq1jqdjq2b3sdf5hzfn9g00bid37bb5q"; - libraryHaskellDepends = [ - base base-orphans comonad free template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Generalized bananas, lenses and barbed wire"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.3"; - sha256 = "7186733767405984c1eda96b18908f458b379f116a1589cd66f4319fe8458e27"; - revision = "1"; - editedCabalFile = "1v0r75wkaahxdv4y0sqgcikvgwymiz12fa8nkk59n1g4x9nng9wb"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ref-fd" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "ref-fd"; - version = "0.4.0.1"; - sha256 = "e416f1afba149e3af9cbe1011381d0b89609c240d812127bd03b8a922a5f6037"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - description = "A type class for monads with references using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "references" = callPackage - ({ mkDerivation, array, base, containers, directory, either - , filepath, instance-control, mtl, stdenv, template-haskell, text - , transformers, uniplate - }: - mkDerivation { - pname = "references"; - version = "0.3.3.1"; - sha256 = "bc07606d36639148374e7a29a67ac489c7a0ed02655311b5d633a144a746c10e"; - libraryHaskellDepends = [ - array base containers directory either filepath instance-control - mtl template-haskell text transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/references"; - description = "Selectors for reading and updating data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refined" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, prettyprinter - , stdenv, template-haskell, these, transformers - }: - mkDerivation { - pname = "refined"; - version = "0.2.3.0"; - sha256 = "664abf6de7c010416cfe2666c61b910c155dae1652f2662690c2add8c5c384f5"; - revision = "1"; - editedCabalFile = "0nxkm2igfx6d650jkimw53pn2vhmv5x2xmffp3nyzf2178z15hy4"; - libraryHaskellDepends = [ - base containers exceptions mtl prettyprinter template-haskell these - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/refined"; - description = "Refinement types with static and runtime checking"; - license = stdenv.lib.licenses.mit; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.4"; - sha256 = "f22fc478d43a36ec3d6c48c57ec53636c0bf936f3733b9a2b34e1a2e6351c44d"; - revision = "1"; - editedCabalFile = "05ibi4ivvh87d96xl09yh0day08p5www5vp568mvn2dp37rxyngc"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring, containers - , hashable, regex-base, regex-pcre-builtin, regex-tdfa - , regex-tdfa-text, stdenv, template-haskell, text, time - , time-locale-compat, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "regex"; - version = "1.0.2.0"; - sha256 = "aacd9b91e0598931745db5a3eea1cdfd6edf3b1e18ceb288c82eb8088b005fb8"; - revision = "1"; - editedCabalFile = "1476dxzj482j6zkvbvyszsjw1bm7jn2nwk40rq99ylvzm2sj0asn"; - libraryHaskellDepends = [ - array base base-compat bytestring containers hashable regex-base - regex-pcre-builtin regex-tdfa regex-tdfa-text template-haskell text - time time-locale-compat transformers unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3"; - sha256 = "6659a2cc1c8137d77ef57f75027723b075d473354d935233d98b1ae1b03c3be6"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-applicative-text" = callPackage - ({ mkDerivation, base, regex-applicative, stdenv, text }: - mkDerivation { - pname = "regex-applicative-text"; - version = "0.1.0.1"; - sha256 = "b093051f80865d257da2ded8ad1b566927b01b3d2f86d41da2ffee4a26c4e2d9"; - revision = "4"; - editedCabalFile = "0ykzppl1v6k70idjl73m4w161f6lsax89v1gp100y4xgipf3yijj"; - libraryHaskellDepends = [ base regex-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/regex-applicative-text#readme"; - description = "regex-applicative on text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "regex-base"; - version = "0.93.2"; - sha256 = "20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278"; - revision = "2"; - editedCabalFile = "0dks3m5xwcjqqlyyg7abh12ci3ap5qn6wz3bz80kr6rcfgk0fhvd"; - libraryHaskellDepends = [ array base bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.1"; - sha256 = "d57cb1a5a4d66753b18eaa37a1621246f660472243b001894f970037548d953b"; - revision = "1"; - editedCabalFile = "0yg34p0rkql07y6rs6l70zlk8x51lra9vabkin921l581k6br498"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.94.4"; - sha256 = "8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0"; - revision = "1"; - editedCabalFile = "0jk29n0may65ghixlx1wwfmfcabsm730y8ppry1qy4naywhi1vs7"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.94.4.8.8.35"; - sha256 = "0bd1b695de953ba4b6e6e0de007021c346cb2a6c8e09356fbcd34f8a79d2ea78"; - revision = "1"; - editedCabalFile = "0r29q3fwlji0vxypk0pywrqgrqz84ryd0n5zmk44bgy2k534mk6c"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre-text" = callPackage - ({ mkDerivation, array, base, bytestring, regex-base - , regex-pcre-builtin, regex-tdfa-text, stdenv, text - }: - mkDerivation { - pname = "regex-pcre-text"; - version = "0.94.0.1"; - sha256 = "17991ed7b00da5cfb2efa0cefac16f9e0452fc794fe538d26d5cc802f0d8e9bd"; - libraryHaskellDepends = [ - array base bytestring regex-base regex-pcre-builtin regex-tdfa-text - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/regex-pcre-text"; - description = "Text-based PCRE API for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.95.2"; - sha256 = "56019921cd4a4c9682b81ec614236fea816ba8ed8785a1640cd66d8b24fc703e"; - revision = "2"; - editedCabalFile = "1zrlwmmrb3x3r3af1r42xwhwspzfgnzh4dw1158523sndsg8qn08"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl - , parsec, regex-base, stdenv - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.2.3.1"; - sha256 = "8aaaeeecf050807c7c514d4dd1763ac63bd121782de5a0847bef5d48a095ea50"; - revision = "1"; - editedCabalFile = "120083w1shqbs5czdwswpbr1h7200ckzcspdjqxdrm054z8zccyc"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim mtl parsec regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa-text" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa-text"; - version = "1.0.0.3"; - sha256 = "38d77a0d225c306c52c6d4eed12d11d05a4bc4194d547cb9a7a9b6f5a8792001"; - revision = "1"; - editedCabalFile = "00swglzmdw30g4bn47z6j71all0djjb2hjm7bkfl7pza4wv14wpv"; - libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; - doHaddock = false; - doCheck = false; - description = "Text interface for regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-with-pcre" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, regex - , regex-base, regex-pcre-builtin, regex-pcre-text, regex-tdfa - , stdenv, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "regex-with-pcre"; - version = "1.0.2.0"; - sha256 = "53c7bd8fc0e361b04af3bd3f2f546826a88b6827b252688d4ebb3fb8092f76a7"; - libraryHaskellDepends = [ - base base-compat bytestring containers regex regex-base - regex-pcre-builtin regex-pcre-text regex-tdfa template-haskell text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.12.1.0"; - sha256 = "33d12441a13c0480b40ca6377413e40b96141fb7da6205e8510adf49201dadd5"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-query-HDBC" = callPackage - ({ mkDerivation, base, containers, convertible, dlist, HDBC - , HDBC-session, names-th, persistable-record, product-isomorphic - , relational-query, relational-schemas, sql-words, stdenv - , template-haskell, th-data-compat, transformers - }: - mkDerivation { - pname = "relational-query-HDBC"; - version = "0.7.1.1"; - sha256 = "b30acd65cf9fc42e28188018435137ae29ef491b82e4dc5ece7c434b3a9eff51"; - libraryHaskellDepends = [ - base containers convertible dlist HDBC HDBC-session names-th - persistable-record product-isomorphic relational-query - relational-schemas sql-words template-haskell th-data-compat - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC instance of relational-query and typed query interface for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-record" = callPackage - ({ mkDerivation, base, persistable-record - , persistable-types-HDBC-pg, product-isomorphic, relational-query - , relational-query-HDBC, stdenv - }: - mkDerivation { - pname = "relational-record"; - version = "0.2.2.0"; - sha256 = "0bbd2663c394a39a7b3d9bcd257d91e3312be7f3c8df562b6868e82c0b96b3da"; - libraryHaskellDepends = [ - base persistable-record persistable-types-HDBC-pg - product-isomorphic relational-query relational-query-HDBC - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Meta package of Relational Record"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.6.2"; - sha256 = "5522efa683c5da8c37b09d2ebc636bc8d60804ed2372912ca7cc80793e45a7b0"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relude" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, mtl, stdenv, stm, text, transformers - , unordered-containers, utf8-string - }: - mkDerivation { - pname = "relude"; - version = "0.1.1"; - sha256 = "4025b7bc1b6722baced938f459183ec42fb10d5cca5d5b3b8418eb9c5aa3900c"; - revision = "1"; - editedCabalFile = "18vil2wa8xzpf0y5r5zdfylsqmphlappzc7a2ac9lmxngfkbzwyc"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable mtl stm text - transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/relude"; - description = "Custom prelude from Kowainik"; - license = stdenv.lib.licenses.mit; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "repa" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "repa"; - version = "3.4.1.4"; - sha256 = "43607a5de4b89b8e58bfcbc261445d89fa40b685d43952797704b80d09e5a39e"; - revision = "3"; - editedCabalFile = "17hxj42cm82sac42by78jgbjjn5r3qv7n4919llaq17a2k1np0sw"; - libraryHaskellDepends = [ - base bytestring ghc-prim QuickCheck template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "High performance, regular, shape polymorphic parallel arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, haskeline, mtl, process, stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.1.7.0"; - sha256 = "503a035d8a380ac21c532e48c0f47006ff1c20ed9683f4906fdb304b4b9e55de"; - libraryHaskellDepends = [ base containers haskeline mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, data-default-class - , http-api-data, http-client, http-client-tls, http-types - , monad-control, mtl, retry, stdenv, text, time, transformers - , transformers-base - }: - mkDerivation { - pname = "req"; - version = "1.1.0"; - sha256 = "87cd886d295e2df38baebd63045be306e07bb910cf11aed9a1a734ac5dc04e22"; - revision = "1"; - editedCabalFile = "1qb458sldda1msrx8hyp31a5ybny2kdymsxhmsyk9i9c5gk0qqib"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection data-default-class http-api-data - http-client http-client-tls http-types monad-control mtl retry text - time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-url-extra" = callPackage - ({ mkDerivation, aeson, base, data-default-class, modern-uri, req - , stdenv, text - }: - mkDerivation { - pname = "req-url-extra"; - version = "0.1.0.0"; - sha256 = "b3de266ad49fb3c03ff26d589d89f81ddea7f319900b07e59843e57986d37d84"; - revision = "2"; - editedCabalFile = "0srj9fcbm9y8ddqgs8wc6caxamhgnic54y8qpxwnqdxrggdfkk67"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base modern-uri req ]; - executableHaskellDepends = [ - aeson base data-default-class modern-uri req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/req-url-extra#readme"; - description = "Provides URI/URL helper functions for use with Req"; - license = stdenv.lib.licenses.mit; - }) {}; - "require" = callPackage - ({ mkDerivation, base, bytestring, megaparsec, stdenv, text - , universum - }: - mkDerivation { - pname = "require"; - version = "0.2.1"; - sha256 = "a2b79c763f85ac22a436104c11cf5a467da48f59623027fe03c5e22a594dc131"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring megaparsec text universum - ]; - executableHaskellDepends = [ - base bytestring megaparsec text universum - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/require#readme"; - description = "Scrap your qualified import clutter"; - license = stdenv.lib.licenses.asl20; - }) {}; - "reroute" = callPackage - ({ mkDerivation, base, deepseq, hashable, http-api-data, hvect, mtl - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "reroute"; - version = "0.5.0.0"; - sha256 = "b998bb94720d9a9a1f6bc8f91f60f22d8f55dec364c4cb27838fe7333e7987f2"; - revision = "2"; - editedCabalFile = "1lyrm0ca4a9312b26a5gsi1s9vr6b6vlizwblc49h33hviy78q1k"; - libraryHaskellDepends = [ - base deepseq hashable http-api-data hvect mtl text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/Spock"; - description = "abstract implementation of typed and untyped web routing"; - license = stdenv.lib.licenses.mit; - }) {}; - "resolv" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , containers, stdenv - }: - mkDerivation { - pname = "resolv"; - version = "0.1.1.2"; - sha256 = "e43a010843d6abe277835bd5de4faa03b5c29e5f25d5602577ccddba876f9f71"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring containers - ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the libresolv standard library routines"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.2"; - sha256 = "1323425aba3827479eb3588efaf7608b12a083327d64ec814f02863c3673cbe5"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rest-stringmap" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, hxt - , json-schema, stdenv, tostring, unordered-containers - }: - mkDerivation { - pname = "rest-stringmap"; - version = "0.2.0.7"; - sha256 = "62d4644f5f7e4ad85688feafaea48b577907a382729f11e1c1fde21a98215450"; - libraryHaskellDepends = [ - aeson base containers hashable hxt json-schema tostring - unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Maps with stringy keys that can be transcoded to JSON and XML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, data-default-class, exceptions, ghc-prim - , random, stdenv, transformers - }: - mkDerivation { - pname = "retry"; - version = "0.7.7.0"; - sha256 = "3ccbc27a08ad0c7291342140f417cef11c2b11886586cc2bd870fa1e80cbd16c"; - libraryHaskellDepends = [ - base data-default-class exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.4"; - sha256 = "615daa230eabc781eff1d3ce94c42fc5ba6188dbeb115a233328454b02c1b3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rhine" = callPackage - ({ mkDerivation, base, containers, dunai, free, stdenv, time - , transformers - }: - mkDerivation { - pname = "rhine"; - version = "0.4.0.1"; - sha256 = "d21b320095c36c43a76b76f5f510089854e73e18304bbb27fa04e1b782c1b503"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers dunai free time transformers - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Functional Reactive Programming with type-level clocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "riak" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bifunctors, binary - , blaze-builder, bytestring, containers, data-default-class - , deepseq, enclosed-exceptions, exceptions, hashable - , mersenne-random-pure64, monad-control, network, protocol-buffers - , pureMD5, random, resource-pool, riak-protobuf, semigroups, stdenv - , stm, text, time, transformers, transformers-base - , unordered-containers, vector - }: - mkDerivation { - pname = "riak"; - version = "1.1.2.5"; - sha256 = "c752fee9859c0c45daae4e0a3c6a231c625b25983781109823d9229a4dc5c7d2"; - libraryHaskellDepends = [ - aeson async attoparsec base bifunctors binary blaze-builder - bytestring containers data-default-class deepseq - enclosed-exceptions exceptions hashable mersenne-random-pure64 - monad-control network protocol-buffers pureMD5 random resource-pool - riak-protobuf semigroups stm text time transformers - transformers-base unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/riak-haskell-client/riak-haskell-client"; - description = "A Haskell client for the Riak decentralized data store"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "riak-protobuf" = callPackage - ({ mkDerivation, array, base, parsec, protocol-buffers - , protocol-buffers-descriptor, stdenv - }: - mkDerivation { - pname = "riak-protobuf"; - version = "0.23.0.0"; - sha256 = "5dcbd06bdb66a1e43881a62a44d92e47d3f16f9ea1b4d53e4a92622faecdca33"; - libraryHaskellDepends = [ - array base parsec protocol-buffers protocol-buffers-descriptor - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/riak-haskell-client/riak-haskell-client"; - description = "Haskell types for the Riak protocol buffer API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.7.0"; - sha256 = "ec23cc81a272efed69af0bcb4528116eb258a5b82a6f526fd27b39053eb65db1"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-orphans" = callPackage - ({ mkDerivation, base, exceptions, fast-logger, monad-control - , monad-logger, resourcet, rio, stdenv, transformers-base - }: - mkDerivation { - pname = "rio-orphans"; - version = "0.1.1.0"; - sha256 = "7e8d2c6df6e7afdbca5b344c6e57c754e2d6b9c0cfb4f00e1df88dad1bd48b4e"; - libraryHaskellDepends = [ - base exceptions fast-logger monad-control monad-logger resourcet - rio transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "Orphan instances for the RIO type in the rio package"; - license = stdenv.lib.licenses.mit; - }) {}; - "rng-utils" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv }: - mkDerivation { - pname = "rng-utils"; - version = "0.3.0"; - sha256 = "0886acb1e0ae6c6ad5f594a9d4d57ea5af69c566ccc5763d0b7c690963e946ba"; - libraryHaskellDepends = [ base bytestring random ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/soostone/rng-utils"; - description = "RNG within an IORef for convenient concurrent use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rosezipper" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "rosezipper"; - version = "0.2"; - sha256 = "6cab4f1c192cc3b8b0a9eb11a32780d235020a539a0e91125eed5ec590bad7bc"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Generic zipper implementation for Data.Tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rounded" = callPackage - ({ mkDerivation, base, ghc-prim, gmp, hgmp, long-double, mpfr - , reflection, singletons, stdenv - }: - mkDerivation { - pname = "rounded"; - version = "0.1.0.1"; - sha256 = "9abeea23692dd57e879eda210308ef5ef213169b4cb9e4e6c13de02d52a04b11"; - libraryHaskellDepends = [ - base ghc-prim hgmp long-double reflection singletons - ]; - librarySystemDepends = [ gmp mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/rounded"; - description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gmp; inherit (pkgs) mpfr;}; - "rss-conduit" = callPackage - ({ mkDerivation, atom-conduit, base, conduit, conduit-combinators - , containers, dublincore-xml-conduit, lens-simple, safe - , safe-exceptions, singletons, stdenv, text, time, timerep - , uri-bytestring, vinyl, xml-conduit, xml-types - }: - mkDerivation { - pname = "rss-conduit"; - version = "0.4.2.2"; - sha256 = "fa9eb0c33bfeb68f41c849ab759ec539abd59199d66e69fcc4ad60e9921a5fe1"; - revision = "3"; - editedCabalFile = "1fay2p90wx49b2yky0r6x70az3f0c1b2hwy3rzayza8am2i5r0bn"; - libraryHaskellDepends = [ - atom-conduit base conduit conduit-combinators containers - dublincore-xml-conduit lens-simple safe safe-exceptions singletons - text time timerep uri-bytestring vinyl xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parser/renderer for the RSS standard"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "runmemo" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "runmemo"; - version = "1.0.0.1"; - sha256 = "ba5ef3177f8fe5f443808e44f62d03b23ac19bbef7f708e40532031a3505d689"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/runmemo"; - description = "A simple memoization helper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rvar" = callPackage - ({ mkDerivation, base, MonadPrompt, mtl, random-source, stdenv - , transformers - }: - mkDerivation { - pname = "rvar"; - version = "0.2.0.3"; - sha256 = "d78aaf2ffdba182dda95d1692fec7abc5d77fa371120618a397b5675438c6bc0"; - revision = "1"; - editedCabalFile = "1ifwwjlhc3l8ycjmmarw6v1nm7jxpgqw2ly0q35idlj0jc0nbxn6"; - libraryHaskellDepends = [ - base MonadPrompt mtl random-source transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random Variables"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "s3-signer" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, byteable - , bytestring, case-insensitive, cryptohash, http-types, stdenv - , time, utf8-string - }: - mkDerivation { - pname = "s3-signer"; - version = "0.5.0.0"; - sha256 = "d73671d5bda0f5f627bbd876916341985c281c3572e6f8406cdf2f14ed9188e4"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder byteable bytestring - case-insensitive cryptohash http-types time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmjio/s3-signer"; - description = "Pre-signed Amazon S3 URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.17"; - sha256 = "79c5c41e7151906969133ea21af9f7e8d25c18315886e23d0bdf6faa8b537e5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-foldable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe-foldable"; - version = "0.1.0.0"; - sha256 = "ca7f2ecc0e799c239df8ce56e8592fb8b8264c229ab4e1c66e0f821d299007d1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/safe-foldable#readme"; - description = "Safe wrappers for null-partial Foldable operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-money" = callPackage - ({ mkDerivation, aeson, base, binary, cereal, constraints, deepseq - , hashable, stdenv, store, text, vector-space, xmlbf - }: - mkDerivation { - pname = "safe-money"; - version = "0.6"; - sha256 = "f9fccbbce2b81d8b54c920156ed9b77298598a7242bad98216e959a677b20fd1"; - configureFlags = [ "-f-serialise" ]; - libraryHaskellDepends = [ - aeson base binary cereal constraints deepseq hashable store text - vector-space xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/safe-money"; - description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , old-time, stdenv, template-haskell, text, time, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.9.4.3"; - sha256 = "787db1a56b7024ab5619b4f25af5379133f5f2a5e1a0657e66c8dfac1a131f08"; - revision = "1"; - editedCabalFile = "060yxbk2fy5gddnpf6kxppc9fwkhiyldm39bj7873wggnpdc2xds"; - libraryHaskellDepends = [ - array base bytestring cereal containers old-time template-haskell - text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.2"; - sha256 = "fd989db905f3e1d742b9fcb9501d6483ffa82620e287cf51b62e0d6d2caaa308"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.6"; - sha256 = "32c8bb50cc20360cb48751d810cac117a6b4fb83c39cf50287c61ef13c90f7ed"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "sandi" = callPackage - ({ mkDerivation, base, bytestring, conduit, exceptions, stdenv }: - mkDerivation { - pname = "sandi"; - version = "0.4.3"; - sha256 = "76dc1332023b49635d9ae2fa7f3d0618f05fbe6dfdfe54416d19c16993fd214a"; - libraryHaskellDepends = [ base bytestring conduit exceptions ]; - doHaddock = false; - doCheck = false; - description = "Data encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sandman" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , optparse-applicative, process, stdenv, text, unix-compat - }: - mkDerivation { - pname = "sandman"; - version = "0.2.0.1"; - sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory filepath optparse-applicative - process text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/sandman#readme"; - description = "Manages Cabal sandboxes to avoid rebuilding packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.1"; - sha256 = "f639656fc21925c45f3f55769b9fb7a90699e943376a725e215a5deea473b3e4"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Send textual messages to a Handle in a thread-friendly way"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring - , basic-prelude, binary, binary-conduit, bytestring, conduit - , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops - , resourcet, stdenv, template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.3.17"; - sha256 = "e6d1b1e709fdabe34e837bf494ead4215bcd05f9afe905fdb4828a973ac09dff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson base basic-prelude binary-conduit bytestring conduit - conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "sbv" = callPackage - ({ mkDerivation, array, async, base, containers, crackNum, deepseq - , directory, filepath, generic-deriving, ghc, mtl, pretty, process - , QuickCheck, random, reinterpret-cast, stdenv, syb - , template-haskell, time - }: - mkDerivation { - pname = "sbv"; - version = "7.12"; - sha256 = "dd8bcce40246257bb2de4db7d61695fd2e35b16c785b196a3f272f2bbc8471d1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array async base containers crackNum deepseq directory filepath - generic-deriving ghc mtl pretty process QuickCheck random - reinterpret-cast syb template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://leventerkok.github.com/sbv/"; - description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scalendar" = callPackage - ({ mkDerivation, base, containers, stdenv, text, time }: - mkDerivation { - pname = "scalendar"; - version = "1.2.0"; - sha256 = "f5c85e8da39e7eb22068032c4c5c32751ebbed61d0ee9679cadac904dde163ac"; - libraryHaskellDepends = [ base containers text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/scalendar"; - description = "A library for handling calendars and resource availability over time"; - license = stdenv.lib.licenses.mit; - }) {}; - "scalpel" = callPackage - ({ mkDerivation, base, bytestring, curl, data-default, scalpel-core - , stdenv, tagsoup, text - }: - mkDerivation { - pname = "scalpel"; - version = "0.5.1"; - sha256 = "20df66433570a2ca754f14058a47fb00519d9a75bb822fc3fd1769a83c608b0d"; - libraryHaskellDepends = [ - base bytestring curl data-default scalpel-core tagsoup text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scalpel-core" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, fail - , regex-base, regex-tdfa, stdenv, tagsoup, text, vector - }: - mkDerivation { - pname = "scalpel-core"; - version = "0.5.1"; - sha256 = "8c05b86853b737fbed4144dc9c7bbb7743525c305f9529f59776df97bfe229a9"; - libraryHaskellDepends = [ - base bytestring containers data-default fail regex-base regex-tdfa - tagsoup text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.2"; - sha256 = "3a020d68a0372a5211c72e55eeb299738ea608d17184bc68f74d31ebe667a5e9"; - revision = "1"; - editedCabalFile = "1mf7sia243x1cf23kxsrq3qrlrabrs2j8pk8y9m9pq5rg4kvvdq7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.2"; - sha256 = "1dd86f545e415baa6780fef3be8b3a68d8267e5c042972ef9990dc02a47d9da2"; - revision = "2"; - editedCabalFile = "02b8rnj9ram7865xhmlp9wn0f3h2mqnhl9p8wymswv27h6g7xya8"; - configureFlags = [ "-f-hpc-coveralls" ]; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.4.1.0"; - sha256 = "21a569c0c19f8ff2bbe1cf1d3eb32f65e8143806de353cedd240df5e9d088b5c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.4+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "search-algorithms" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "search-algorithms"; - version = "0.3.0"; - sha256 = "4a9d03c97abfd83fae582e4c3425a105b8649b8e69a2c1e170dbbabd8820db10"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/devonhollowood/search-algorithms#readme"; - description = "Common graph search algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, exceptions, hashable, mtl - , psqueues, stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "selda"; - version = "0.2.0.0"; - sha256 = "d226aff054c80864ffab2b50898a6109d0d8adeaee42f06074d4831a1a692ad1"; - revision = "1"; - editedCabalFile = "13iq6f81g5xicc2bb2xxxdhmbh5lkspcmq4bjcszp481z9v4kw3x"; - libraryHaskellDepends = [ - base bytestring exceptions hashable mtl psqueues text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-postgresql" = callPackage - ({ mkDerivation, base, bytestring, exceptions, postgresql-libpq - , selda, stdenv, text - }: - mkDerivation { - pname = "selda-postgresql"; - version = "0.1.7.2"; - sha256 = "ff781255b5faa9e9197fd3d298e8e11f81c13a0f01d072c72028003563fee51b"; - revision = "1"; - editedCabalFile = "08f2xdfpmbwhrwkjaqfmd9k25c3xn3p477d7a1mnnn7kf7328782"; - libraryHaskellDepends = [ - base bytestring exceptions postgresql-libpq selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "PostgreSQL backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-sqlite" = callPackage - ({ mkDerivation, base, direct-sqlite, directory, exceptions, selda - , stdenv, text - }: - mkDerivation { - pname = "selda-sqlite"; - version = "0.1.6.0"; - sha256 = "c67ba89114a82ece42b7e478bcf480ae0241cefb41e2e9b340a268f9f08be390"; - revision = "2"; - editedCabalFile = "198pg9i0lfx3fwf7b7cw0x5kial6vbf0dqwh18jnh7na3pyn1jr6"; - libraryHaskellDepends = [ - base direct-sqlite directory exceptions selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "SQLite backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, semigroups, stdenv, tagged, template-haskell - , transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.2.2"; - sha256 = "e4def54834cda65ac1e74e6f12a435410e19c1348e820434a30c491c8937299e"; - revision = "4"; - editedCabalFile = "0pqfrxzypjq6z8lgdkzq4vhcyqkpk5326hny0r6snpc3gm78r4ij"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable semigroups tagged template-haskell - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.5"; - sha256 = "ab2a96af6e81e31b909c37ba65f436f1493dbf387cfe0de10b6586270c4ce29d"; - revision = "1"; - editedCabalFile = "1inqcxrzzs8xz60pvbmznyi6g6xwzpxv7p6dqlcwariz31grzvs1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, stdenv, text }: - mkDerivation { - pname = "semver"; - version = "0.3.3.1"; - sha256 = "36d3369706836d60f3bc517f30c6860734481866363723904b8768823b6bc8b1"; - libraryHaskellDepends = [ attoparsec base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.9"; - sha256 = "102fdf6db8c00f5a5981c6eed5acba1368a2d79b2970ce5b22ceb180aa0fdc42"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , Cabal, cabal-doctest, case-insensitive, http-api-data, http-media - , http-types, mmorph, mtl, natural-transformation, network-uri - , singleton-bool, stdenv, string-conversions, tagged, text, vault - }: - mkDerivation { - pname = "servant"; - version = "0.14.1"; - sha256 = "a7fa2f19dd8af4deec873290c29fac46cdfe716347cc44fcc0949a83b7577420"; - revision = "1"; - editedCabalFile = "1n9lwm77w0xi6jzqrhyn6akf71z140wngj4s5x2zkndq8wmg4rg4"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bytestring case-insensitive - http-api-data http-media http-types mmorph mtl - natural-transformation network-uri singleton-bool - string-conversions tagged text vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-JuicyPixels" = callPackage - ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant - , servant-server, stdenv, wai, warp - }: - mkDerivation { - pname = "servant-JuicyPixels"; - version = "0.3.0.4"; - sha256 = "7b02f00ac8b78ffda49a96f2d1f39619ec19f244822d177928e75cd533cb9981"; - revision = "1"; - editedCabalFile = "185ym0ac6gx7f98pd92ykc1ib305lswzjzvykly4ij9vk85jn0ax"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-media JuicyPixels servant - ]; - executableHaskellDepends = [ - base JuicyPixels servant servant-server wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/servant-JuicyPixels"; - description = "Servant support for JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "servant-auth"; - version = "0.3.2.0"; - sha256 = "7bb4d5118c072cb3845aaba4287b2d5e34e5ccca96916895456a828bf7a9418b"; - revision = "2"; - editedCabalFile = "06jpxqz5444k19p1n4i4yf2pvql37w9ngssp1grxl42dxk2bcg94"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "Authentication combinators for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-client" = callPackage - ({ mkDerivation, base, bytestring, containers, servant - , servant-auth, servant-client-core, stdenv, text - }: - mkDerivation { - pname = "servant-auth-client"; - version = "0.3.3.0"; - sha256 = "490ac57150b59c567ef567120a6704cfc2184f7be8e6edaab26ad818dee5b3df"; - revision = "3"; - editedCabalFile = "1kzyqd9hg7xld5s8qpm76l9ym48z81j6ycdwp3lb0f1p2d3aagcd"; - libraryHaskellDepends = [ - base bytestring containers servant servant-auth servant-client-core - text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-client/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-docs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, servant - , servant-auth, servant-docs, stdenv, text - }: - mkDerivation { - pname = "servant-auth-docs"; - version = "0.2.10.0"; - sha256 = "adf3c33ce4134a78ae7a5c06092ea5812c99d4b942ff2dd685995eb3b2b53e48"; - revision = "4"; - editedCabalFile = "1dvwkaihrm7dc2zdrqqvc0j7zmij487klrmsggsdiid7y68nyrqh"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens servant servant-auth servant-docs text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-docs/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-server" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, bytestring-conversion, case-insensitive, cookie - , crypto-api, data-default-class, entropy, http-api-data - , http-types, jose, lens, monad-time, mtl, servant, servant-auth - , servant-server, stdenv, tagged, text, time, unordered-containers - , wai - }: - mkDerivation { - pname = "servant-auth-server"; - version = "0.4.0.1"; - sha256 = "c996e07c49366da5adad29964ef3139a2fe4e3b8a196c54d1f62311fa065cda4"; - revision = "1"; - editedCabalFile = "0l35r80yf1i3hjwls9cvhmzrjkgxfs103qcb1m650y77w1h3xr9p"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - bytestring-conversion case-insensitive cookie crypto-api - data-default-class entropy http-api-data http-types jose lens - monad-time mtl servant servant-auth servant-server tagged text time - unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-server/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-swagger" = callPackage - ({ mkDerivation, base, lens, servant, servant-auth, servant-swagger - , stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-auth-swagger"; - version = "0.2.10.0"; - sha256 = "50a783639eb882fd5047d69245f7770817658814d8c409b547ebdddae05acd12"; - revision = "3"; - editedCabalFile = "087faa5bg2hlxyhg7jzy2jj4fzs3dkp0znsbabrharcvdlkpqj1r"; - libraryHaskellDepends = [ - base lens servant servant-auth servant-swagger swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-swagger/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.8"; - sha256 = "46ea88550123d765b2d09073370d0530a51878e7fdf2cf20b070be1f2f10ae94"; - revision = "2"; - editedCabalFile = "1cfla60vn4kk5gb7fawlp34jr2k6b2fprysq05561wdfv990x4bj"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-media - , http-types, profunctors, servant, servant-checked-exceptions-core - , servant-client, servant-client-core, servant-docs, servant-server - , stdenv, tagged, text, wai, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions"; - version = "2.0.0.0"; - sha256 = "a7f282857e56d5d1a59d055cf1936cab96a2cdc2f94a79ff736f7ef1cf56f688"; - revision = "1"; - editedCabalFile = "0h18x8gimmczgml4rj74kx3463pwrsyxl2vnd13ra5hj0q44d683"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-media http-types profunctors - servant servant-checked-exceptions-core servant-client - servant-client-core servant-docs servant-server tagged text wai - world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-media - , http-types, profunctors, servant, servant-docs, stdenv, tagged - , text, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions-core"; - version = "2.0.0.0"; - sha256 = "aad3513403241bb06aadc605e6af88a5f3aaa0f1f208aafed6d69e15a23ab248"; - revision = "1"; - editedCabalFile = "1q2y4cri4h33cfdpgz95dczhvhmyrqajm7k6ypl3b8rw953qlzy7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-media http-types profunctors - servant servant-docs tagged text world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers - , exceptions, http-client, http-media, http-types, monad-control - , mtl, semigroupoids, servant-client-core, stdenv, stm, text, time - , transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.14"; - sha256 = "c6860bd46c2ee52412cc8c080091a9d8da28d5e44a47cba468e6eee34f01224b"; - revision = "3"; - editedCabalFile = "1rjjqxyyf51bjq8li8yilng5pjd9a5n3d8zniqmfw3hys6dz8n8g"; - libraryHaskellDepends = [ - base base-compat bytestring containers exceptions http-client - http-media http-types monad-control mtl semigroupoids - servant-client-core stm text time transformers transformers-base - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "automatical derivation of querying functions for servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, base, base-compat, base64-bytestring, bytestring - , containers, exceptions, free, generics-sop, http-api-data - , http-media, http-types, network-uri, safe, servant, stdenv, text - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.14.1"; - sha256 = "c24e7b6d1a9d6b33ca35fcea671791f5dbb381fe49f19497a0467a43f954d761"; - revision = "2"; - editedCabalFile = "02pvrccfwvvy53gma56jcqnbia3pm1pncyghdkjp519bwff9iwvb"; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - free generics-sop http-api-data http-media http-types network-uri - safe servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-dhall" = callPackage - ({ mkDerivation, base, base-compat, bytestring, dhall, http-media - , megaparsec, prettyprinter, servant, stdenv, text - }: - mkDerivation { - pname = "servant-dhall"; - version = "0.1.0.1"; - sha256 = "940eca05ad268137082478009c752c6333c0b1d92e57b13770046eeaac8b31fb"; - revision = "3"; - editedCabalFile = "13mq4pwffxqpjirb6rfhzd2xqhm0xyycl98h6kf4j0ic38g3saz1"; - libraryHaskellDepends = [ - base base-compat bytestring dhall http-media megaparsec - prettyprinter servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant Dhall content-type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, control-monad-omega, hashable, http-media - , http-types, lens, servant, stdenv, string-conversions, text - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.2"; - sha256 = "6b280a8d97d295933f5b4a5442b0c54567299bcc8dd62b7c2890864af7ddd4f4"; - revision = "6"; - editedCabalFile = "0w9yi4rmfq4irmnia9rl9pb66ix086ic9nd0grspnk54ib7970cl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - control-monad-omega hashable http-media http-types lens servant - string-conversions text unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-elm" = callPackage - ({ mkDerivation, base, elm-export, lens, servant, servant-foreign - , stdenv, text, wl-pprint-text - }: - mkDerivation { - pname = "servant-elm"; - version = "0.5.0.0"; - sha256 = "d9d96eeaf209f93791f3c81a5b2afad7be443f9af29f362ec17661436895b950"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base elm-export lens servant servant-foreign text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mattjbray/servant-elm#readme"; - description = "Automatically derive Elm functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-exceptions" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-media, http-types - , mtl, servant, servant-server, stdenv, text, wai, warp - }: - mkDerivation { - pname = "servant-exceptions"; - version = "0.1.1"; - sha256 = "652b9fdc463200ebb8c2b2e0757f9d90662408bf45a657b3f719d0a36d34abe1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base exceptions http-media http-types mtl servant - servant-server text wai - ]; - executableHaskellDepends = [ - aeson base exceptions http-types servant-server text warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ch1bo/servant-exceptions#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.11.1"; - sha256 = "659cb1033b022869bb5b725cfbb82c02ab0424ca9130e4aeb2fb6bb2d0489805"; - revision = "4"; - editedCabalFile = "1alal6ps1lwl8yd2vwkpmkn4a69blr1ws2cba7mc7a2w63lg1pyz"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-github-webhook" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, github, github-webhooks, http-types, memory, servant - , servant-server, stdenv, string-conversions, text, transformers - , unordered-containers, wai - }: - mkDerivation { - pname = "servant-github-webhook"; - version = "0.4.1.0"; - sha256 = "8bbe9bfe7b7f256fd3e40bcbf36ab9a11ba68aadacac85f5e8a850c8f569cf6c"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite github - github-webhooks http-types memory servant servant-server - string-conversions text transformers unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tsani/servant-github-webhook"; - description = "Servant combinators to facilitate writing GitHub webhooks"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-js" = callPackage - ({ mkDerivation, base, base-compat, charset, lens, servant - , servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-js"; - version = "0.9.3.2"; - sha256 = "02e0ec27a44a1e5794aacfbf745a815a68854d077e7d056d3e2f17d4812867dc"; - revision = "3"; - editedCabalFile = "0j5kmqzhkyb1wmvyxz0r20473myzp9bqcdgjbi8i4k1lfvcjsigq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat charset lens servant servant-foreign text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatically derive javascript functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv, text }: - mkDerivation { - pname = "servant-lucid"; - version = "0.8.1"; - sha256 = "6671d5d5e29b05911bb8855f42168839c2dbb8ee113a10cef6dd372fc267113d"; - revision = "1"; - editedCabalFile = "0jna96jy6nmhk6w5zxdd3qn3vlrnhnvh4s3f2bqkn3c0had5py7d"; - libraryHaskellDepends = [ base http-media lucid servant text ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.4"; - sha256 = "d9d6392461f57324208e3a227c88e81da35686a38d5d1f783afc673a0c77059c"; - revision = "3"; - editedCabalFile = "13sbgnzr0yfrbrbvzc6v66lxrgvg3pb7h9alvmg77kmm95gmx8mm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pandoc" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-media - , lens, pandoc-types, servant-docs, stdenv, string-conversions - , text, unordered-containers - }: - mkDerivation { - pname = "servant-pandoc"; - version = "0.5.0.0"; - sha256 = "12d709fced47bb3e017b83dcc5dafb1186720e5318c1b5ebeb886d4439540463"; - libraryHaskellDepends = [ - base bytestring case-insensitive http-media lens pandoc-types - servant-docs string-conversions text unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Use Pandoc to render servant API documentation"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-ruby" = callPackage - ({ mkDerivation, base, casing, servant-foreign, stdenv, text }: - mkDerivation { - pname = "servant-ruby"; - version = "0.8.0.2"; - sha256 = "a6c6dcfed8fddb73ad2fd7d5bac2b842a432ff4797d2b007c461a4acee030786"; - libraryHaskellDepends = [ base casing servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joneshf/servant-ruby#readme"; - description = "Generate a Ruby client from a Servant API with Net::HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, Cabal, cabal-doctest, containers, exceptions - , filepath, http-api-data, http-media, http-types, monad-control - , mtl, network, network-uri, resourcet, servant, stdenv - , string-conversions, tagged, text, transformers, transformers-base - , transformers-compat, wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.14.1"; - sha256 = "024010b1ef238099d4e8dc1cf000bb5de5bbed149d305506088156308dafddba"; - revision = "1"; - editedCabalFile = "028vqbmqkc9gjsk34n74ssi0xfn085v26zdvpixgfi5yd7cvfg03"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - filepath http-api-data http-media http-types monad-control mtl - network network-uri resourcet servant string-conversions tagged - text transformers transformers-base transformers-compat wai - wai-app-static word8 - ]; - executableHaskellDepends = [ aeson base servant text wai warp ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.2.0"; - sha256 = "5bec0129407580bde3b5bc49fc75737c916b6eaf0ea421bf72f5bf029342741b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming" = callPackage - ({ mkDerivation, base, http-types, servant, stdenv }: - mkDerivation { - pname = "servant-streaming"; - version = "0.3.0.0"; - sha256 = "980d486577658697891360479195ed493859e2279f76334101a45c880f7c5a4c"; - revision = "3"; - editedCabalFile = "04mc3k97sk0r90m8ca34gqpb2bz8yljp3j613xx7xz90sffqc1hq"; - libraryHaskellDepends = [ base http-types servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming#readme"; - description = "Servant combinators for the 'streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming-client" = callPackage - ({ mkDerivation, base, bytestring, http-media, http-types - , resourcet, servant, servant-client-core, servant-streaming - , stdenv, streaming - }: - mkDerivation { - pname = "servant-streaming-client"; - version = "0.3.0.0"; - sha256 = "42e2b229fa37538466dafa1992ab735c8342801dc07e1fff2706d460345770c0"; - revision = "1"; - editedCabalFile = "07xkgnhi8aspnqms5gx67ssw5m595gda8yqypdg2q59wwc6ib68d"; - libraryHaskellDepends = [ - base bytestring http-media http-types resourcet servant - servant-client-core servant-streaming streaming - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming#readme"; - description = "Client instances for the 'servant-streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming-server" = callPackage - ({ mkDerivation, base, bytestring, http-media, http-types - , resourcet, servant, servant-server, servant-streaming, stdenv - , streaming, streaming-wai, wai - }: - mkDerivation { - pname = "servant-streaming-server"; - version = "0.3.0.0"; - sha256 = "c6e0a846e0156e097bb6a60710009fb4935241a3e7ce5b12b867ae094d1f5053"; - revision = "1"; - editedCabalFile = "1xfx22a83xwq2bzv7gm3z9drd5hiq6wz7yyvfpjz1c2dcicwflvm"; - libraryHaskellDepends = [ - base bytestring http-media http-types resourcet servant - servant-server servant-streaming streaming streaming-wai wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming-server#readme"; - description = "Server instances for the 'servant-streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, Cabal - , cabal-doctest, hspec, http-media, insert-ordered-containers, lens - , QuickCheck, servant, singleton-bool, stdenv, swagger2, text - , unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.6"; - sha256 = "fc1c88d8767c408c3fc3f507f10b44420f44a4e3ea77a4af61f94686c408a6bf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring hspec http-media - insert-ordered-containers lens QuickCheck servant singleton-bool - swagger2 text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate Swagger specification for your servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.0.3.13.2"; - sha256 = "b6dcb349d845e5a4fa357cb358f44814f30ba23129abd64cb41bda959e629352"; - revision = "2"; - editedCabalFile = "0sz08w56f7p74saass6xdzmbpyk78hpa9d79kkd2nclwinajpkgr"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3.1"; - sha256 = "ab379f8dec934c573c62c72ad49cc04c7e3c77a93fb8f375cfa965836eaa9616"; - revision = "1"; - editedCabalFile = "10p5yjzvfdn764mszlsx49kb55ygzi5m2mq32l9m91imvj1926b1"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-tracing" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, bytestring-lexing - , containers, hashable, http-api-data, http-client, lifted-base - , monad-control, mtl, random, servant, servant-server, stdenv, text - , time, transformers, unordered-containers, wai, warp - }: - mkDerivation { - pname = "servant-tracing"; - version = "0.1.0.2"; - sha256 = "3edf2e58c60b6624a81c57bbc606889d779ba0cc57fc785240cb353f9caaea62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring bytestring-lexing containers hashable - http-api-data http-client lifted-base monad-control mtl random - servant servant-server text time unordered-containers wai - ]; - executableHaskellDepends = [ - async base bytestring containers http-client lifted-base - monad-control mtl servant servant-server text transformers wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/haskell-opentracing-light#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-websockets" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, conduit - , exceptions, resourcet, servant-server, stdenv, text, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-websockets"; - version = "1.1.0"; - sha256 = "63384c89db83bd03e00f2f6796c391fc133ffb3c2bc72976778d476ed82f0a51"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring conduit exceptions resourcet - servant-server text wai wai-websockets warp websockets - ]; - executableHaskellDepends = [ - aeson base conduit servant-server text wai warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/moesenle/servant-websockets#readme"; - description = "Small library providing WebSocket endpoints for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.0"; - sha256 = "c917d9b046b06a9c4386f743a78142c27cf7f0ec1ad8562770ab9828f2ee3204"; - revision = "22"; - editedCabalFile = "1mi52j2c7960k0qmxqd7238yxgbccb0xgfj3ahh0zfckficn9bk7"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serverless-haskell" = callPackage - ({ mkDerivation, aeson, aeson-casing, aeson-extra, amazonka-core - , amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive - , http-types, iproute, lens, stdenv, text, time, unix - , unordered-containers - }: - mkDerivation { - pname = "serverless-haskell"; - version = "0.6.7"; - sha256 = "a9ca87d11b16021d9de98ab982f9311fe7e02731010570bd61e7bdf046e3645c"; - libraryHaskellDepends = [ - aeson aeson-casing aeson-extra amazonka-core amazonka-kinesis - amazonka-s3 base bytestring case-insensitive http-types iproute - lens text time unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seek-oss/serverless-haskell#readme"; - description = "Deploying Haskell code onto AWS Lambda using Serverless"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "servius" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , cmark-gfm, http-types, shakespeare, stdenv, text, wai - , wai-app-static - }: - mkDerivation { - pname = "servius"; - version = "1.2.3.0"; - sha256 = "72c4b63e85df0cb51935bec85e31d44c6ee5cafd0015bd5e6ff44286e9e18b27"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base blaze-builder blaze-html bytestring cmark-gfm http-types - shakespeare text wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/servius#readme"; - description = "Warp web server with template rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "ses-html" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, byteable - , bytestring, cryptohash, HsOpenSSL, http-streams, stdenv, tagsoup - , time - }: - mkDerivation { - pname = "ses-html"; - version = "0.4.0.0"; - sha256 = "cff76ee03b538e69a3d107cd63d577210cf0f9879d470bf55519e887e2a8a08f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html byteable bytestring cryptohash - HsOpenSSL http-streams tagsoup time - ]; - doHaddock = false; - doCheck = false; - description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "set-cover" = callPackage - ({ mkDerivation, base, containers, enummapset, psqueues, semigroups - , stdenv, utility-ht - }: - mkDerivation { - pname = "set-cover"; - version = "0.0.9"; - sha256 = "afebfd20c00ff68cd99c7e457d15542003228a56d98af63565549a77852f73e1"; - revision = "2"; - editedCabalFile = "1jpg9iyq0mymdbq392nfmicwfmcmq5mg688ndmhvjx08ljdl54ha"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers enummapset psqueues semigroups utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/set-cover/"; - description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.8"; - sha256 = "6dd148e47714707c311d20af606284ab392392a84ffb71da4004010e67d5b969"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/IchUndNichtDu/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sexp-grammar" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , happy, invertible-grammar, prettyprinter, recursion-schemes - , scientific, semigroups, stdenv, text, utf8-string - }: - mkDerivation { - pname = "sexp-grammar"; - version = "2.0.1"; - sha256 = "babe1c38e7ce20c6158b12ebf3cc31a2ca5c777ba37ebee40315fa0360ecdf7e"; - libraryHaskellDepends = [ - array base bytestring containers deepseq invertible-grammar - prettyprinter recursion-schemes scientific semigroups text - utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/sexp-grammar"; - description = "Invertible grammar combinators for S-expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, filepath, hashable, js-flot, js-jquery, primitive, process - , random, stdenv, time, transformers, unix, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.16.4"; - sha256 = "b732a3a46ceb3b4545a78c3733e0a7904763e7cd3ee8bf4fe2e1e91f2c9b1436"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath hashable - js-flot js-jquery primitive process random time transformers unix - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra filepath hashable - js-flot js-jquery primitive process random time transformers unix - unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake-language-c" = callPackage - ({ mkDerivation, base, data-default-class, fclabels, process, shake - , split, stdenv, unordered-containers - }: - mkDerivation { - pname = "shake-language-c"; - version = "0.12.0"; - sha256 = "661e350179e55c930c3c36f53853db2bc2697d88c5265049085cea09f5aa1ab0"; - libraryHaskellDepends = [ - base data-default-class fclabels process shake split - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/samplecount/shake-language-c"; - description = "Utilities for cross-compiling with Shake"; - license = stdenv.lib.licenses.asl20; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.20"; - sha256 = "f50ebff8e585851a1e3af36885d6a6d1218b19dcde1d7459f02272d6925d9e03"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, lifted-async, lifted-base - , monad-control, mtl, process, stdenv, system-fileio - , system-filepath, text, time, transformers, transformers-base - , unix, unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.8.1"; - sha256 = "de8814879c7a5e7f1f7f0d9c56c1dfee30d6d63ba1140946e5ed158dd75e6e08"; - revision = "1"; - editedCabalFile = "0crf0m077wky76f5nav2p9q4fa5q4yhv5l4bq9hd073dzdaywhz0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions lifted-async lifted-base monad-control mtl process - system-fileio system-filepath text time transformers - transformers-base unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shortcut-links" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "shortcut-links"; - version = "0.4.2.1"; - sha256 = "0d36ecfabc8e2d3a4c0015b521b6cb8efa8469bbd518a509326f07a3aa24deff"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/shortcut-links"; - description = "Link shortcuts for use in text markup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.0.0"; - sha256 = "22c45747c79055b5310c1da2af717bffded65ea39479c61783f8c1a22e953086"; - revision = "2"; - editedCabalFile = "003ry21snn1b9ip5c1z62hzdy24ckbbb5zf637nxcf9qj07z2xsz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "show-prettyprint" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, prettyprinter, stdenv - , trifecta - }: - mkDerivation { - pname = "show-prettyprint"; - version = "0.2.2"; - sha256 = "f07d860b9bb4176a4e46038c5100ecf07d443daa1b15455ca4c2bd4d10e9af55"; - libraryHaskellDepends = [ - ansi-wl-pprint base prettyprinter trifecta - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/show-prettyprint#readme"; - description = "Robust prettyprinter for output of auto-generated Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siggy-chardust" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "siggy-chardust"; - version = "1.0.0"; - sha256 = "9f730c3cc04ea629e0b655bfff66f83e146eb3b9f0908d5dc00b4c558d5f5a43"; - revision = "1"; - editedCabalFile = "1lknm1jr6h5qpixc727aj3zbmj4ia21r9lb8gzj50iildgmfk33b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/siggy-chardust#readme"; - description = "Rounding rationals to significant digits and decimal places"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5"; - sha256 = "cef625635053a46032ca53b43d311921875a437910b6568ded17027fdca83839"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv }: - mkDerivation { - pname = "simple-cmd"; - version = "0.1.2"; - sha256 = "e6a15592fbbcc5667b7e45563b55d08228ea483241a3b80aef9f7df802f54d82"; - libraryHaskellDepends = [ base directory filepath process ]; - doHaddock = false; - doCheck = false; - description = "Simple String-based process commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.30"; - sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.4.0.9"; - sha256 = "ff024c5b224037414168c2c19c2c05179bd28251a31bfc5aee9796b35db4a4e7"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simplest-sqlite" = callPackage - ({ mkDerivation, base, bytestring, exception-hierarchy, sqlite - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "simplest-sqlite"; - version = "0.1.0.0"; - sha256 = "5f0bdee8a4ba2b5dea03ff8ecfc91827602624a91d62eb2b4ce90b4d57005d6e"; - libraryHaskellDepends = [ - base bytestring exception-hierarchy template-haskell text - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "comming soon"; - description = "Simplest SQLite3 binding"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sqlite;}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.4"; - sha256 = "0195c6e2be1e149e5b687ec3be84fd5089b377345fddd333a9d681eacdfafb2a"; - revision = "1"; - editedCabalFile = "0ccd49z9xwa8gr8sclmmn0zc4xq39yyjws4zr6lrw3xjql130nsx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.2"; - sha256 = "8f8169b013a5e4725be9682bf413019cdaf6e020455839612c145ba6849e9cf1"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, mtl, stdenv, syb - , template-haskell, text, th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.4.1"; - sha256 = "5d7a200c814a5f1ac16db04456fdafbdea39fc0ee6c934a9ef7bcd2d6da2f9cf"; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "size-based" = callPackage - ({ mkDerivation, base, dictionary-sharing, stdenv, template-haskell - , testing-type-modifiers - }: - mkDerivation { - pname = "size-based"; - version = "0.1.2.0"; - sha256 = "779ff6c45476d20ffd2ad7327b44cefaaf0436ed89f43b2967761c0b58a4151a"; - revision = "1"; - editedCabalFile = "0kax1ypjyglkn6iff1x4yz12y7f2n249m95xvdhrc63hsa4xlcqv"; - libraryHaskellDepends = [ - base dictionary-sharing template-haskell testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - description = "Sized functors, for size-based enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, skylighting-core, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "skylighting"; - version = "0.7.5"; - sha256 = "7de100e42e7dac3687372f85225a6d905d534f75990c5a25c6e640acf0ad1320"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe skylighting-core text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, stdenv, text, transformers - , utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.7.5"; - sha256 = "f706a2eb5d37d1323525d9c4944da2ad8d29c1ccf7d0ae7b433695d981413889"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe text transformers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slack-web" = callPackage - ({ mkDerivation, aeson, base, containers, errors, http-api-data - , http-client, http-client-tls, megaparsec, mtl, servant - , servant-client, servant-client-core, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "slack-web"; - version = "0.2.0.9"; - sha256 = "421d2cd3a1626b637224e94c800312673b1a0f0c980d7346c0061e71bb8287d3"; - libraryHaskellDepends = [ - aeson base containers errors http-api-data http-client - http-client-tls megaparsec mtl servant servant-client - servant-client-core text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jpvillaisaza/slack-web"; - description = "Bindings for the Slack web API"; - license = stdenv.lib.licenses.mit; - }) {}; - "slave-thread" = callPackage - ({ mkDerivation, base, base-prelude, list-t, mmorph - , partial-handler, stdenv, stm-containers, transformers - }: - mkDerivation { - pname = "slave-thread"; - version = "1.0.2"; - sha256 = "e47120598dd65ebee33253911a31518021323a5ccfa52588e13c44fd5f5b4b13"; - libraryHaskellDepends = [ - base base-prelude list-t mmorph partial-handler stm-containers - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/slave-thread"; - description = "A principal solution to ghost threads and silent exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.5"; - sha256 = "9020e67895a57bde02d7df2c0af06a4c769eff56d48b6a830f6d803df891aea4"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.9"; - sha256 = "d3cafbc34a5d03363ddd41e59bd681168cd2d0aa8be4678db9ae1904ad202a4f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smtp-mail" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , bytestring, cryptohash, filepath, mime-mail, network, stdenv - , text - }: - mkDerivation { - pname = "smtp-mail"; - version = "0.1.4.6"; - sha256 = "86dacbef87a2519222a1165b49401a437887a249f5bfd63a99702198dad214bc"; - revision = "1"; - editedCabalFile = "1lvzami2vzrkgz5na71k1yi7346xdarxm0sbi6alq3wbpj1raakq"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring bytestring - cryptohash filepath mime-mail network text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jhickner/smtp-mail"; - description = "Simple email sending via SMTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-blaze" = callPackage - ({ mkDerivation, base, blaze-html, snap-core, stdenv }: - mkDerivation { - pname = "snap-blaze"; - version = "0.2.1.5"; - sha256 = "b36e35bd4ba3087b3de92702e488ba6570675719243b5dbdf4eae0b819988841"; - libraryHaskellDepends = [ base blaze-html snap-core ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/snap-blaze"; - description = "blaze-html integration for Snap"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-core" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , case-insensitive, containers, directory, filepath, hashable - , HUnit, io-streams, lifted-base, monad-control, mtl, network - , network-uri, old-locale, random, readable, regex-posix, stdenv - , text, time, transformers, transformers-base, unix-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "snap-core"; - version = "1.0.3.2"; - sha256 = "4c4398476fe882122ce8adc03f69509588d071fc011f50162cd69706093dd88c"; - revision = "3"; - editedCabalFile = "0wlhn33r7c9g7j23y006ddq9d87lkmianvvfrbl8jd8mvjvj2gfa"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder case-insensitive - containers directory filepath hashable HUnit io-streams lifted-base - monad-control mtl network network-uri old-locale random readable - regex-posix text time transformers transformers-base unix-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "Snap: A Haskell Web Framework (core interfaces and types)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-server" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , bytestring-builder, case-insensitive, clock, containers, filepath - , HsOpenSSL, io-streams, io-streams-haproxy, lifted-base, mtl - , network, old-locale, openssl-streams, snap-core, stdenv, text - , time, unix, unix-compat, vector - }: - mkDerivation { - pname = "snap-server"; - version = "1.1.0.0"; - sha256 = "249ea390a4e54899b310c0dd13b91af007a2b685bd0d9769c3e208dd914d7c6f"; - revision = "3"; - editedCabalFile = "0a9d3nqb5rvgm25nak68lp6yj9m6cwhbgdbg5l7ib5i2czcg7yjh"; - configureFlags = [ "-fopenssl" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring bytestring-builder - case-insensitive clock containers filepath HsOpenSSL io-streams - io-streams-haproxy lifted-base mtl network old-locale - openssl-streams snap-core text time unix unix-compat vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "A web server for the Snap Framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snappy" = callPackage - ({ mkDerivation, base, bytestring, snappy, stdenv }: - mkDerivation { - pname = "snappy"; - version = "0.2.0.2"; - sha256 = "0565df326a87c6ea67f8fb638e01acb0562cabd16a67fc6f9ea9cd191de8cd91"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ snappy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/snappy"; - description = "Bindings to the Google Snappy library for fast compression/decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) snappy;}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-openssl" = callPackage - ({ mkDerivation, base, configurator, data-default, HsOpenSSL - , http-client, http-client-openssl, soap, stdenv, text - }: - mkDerivation { - pname = "soap-openssl"; - version = "0.1.0.2"; - sha256 = "2008547f4fd22063479ce1cd1c483db926f5f08a2ff6fb0c60fb2f0f7d42830f"; - revision = "1"; - editedCabalFile = "1b3aivn9jfaax00id7x4cqvpmd6lgynslchlry0qsmq1lj466cdf"; - libraryHaskellDepends = [ - base configurator data-default HsOpenSSL http-client - http-client-openssl soap text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using openssl bindings)"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socket-activation" = callPackage - ({ mkDerivation, base, network, stdenv, transformers, unix }: - mkDerivation { - pname = "socket-activation"; - version = "0.1.0.2"; - sha256 = "b99e7b4f296cd462aac84e5bb61fb02953e2080d1351e9e10a63d35dc34eb43b"; - revision = "1"; - editedCabalFile = "0bvm8ik8fp0v5gjw6q4h767zgs1i4ydckdypvqa85sarc985hkmp"; - libraryHaskellDepends = [ base network transformers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddfisher/haskell-socket-activation"; - description = "systemd socket activation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, basement, bytestring, cereal, network - , stdenv - }: - mkDerivation { - pname = "socks"; - version = "0.6.1"; - sha256 = "734447558bb061ce768f53a0df1f2401902c6bee396cc96ce627edd986ef6a73"; - libraryHaskellDepends = [ - base basement bytestring cereal network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3.1"; - sha256 = "70a6ab47d1e16271332574667dd30f77eefb331a6e7dda4e959f48ac3359aa45"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3.1"; - sha256 = "cde9c76515588257fddece108376537bcda7698d0107bf0386b968ea5189ec38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparkle" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, choice - , constraints, distributed-closure, filepath, inline-java, jni, jvm - , jvm-streaming, process, regex-tdfa, singletons, stdenv, streaming - , temporary, text, unix, vector, zip-archive - }: - mkDerivation { - pname = "sparkle"; - version = "0.7.4"; - sha256 = "7858c1b4627f01dc144b984d6b841d29365f8d73ef436d07ce83c8e782d0999c"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal inline-java jvm-streaming ]; - libraryHaskellDepends = [ - base binary bytestring choice constraints distributed-closure - inline-java jni jvm jvm-streaming singletons streaming text vector - ]; - executableHaskellDepends = [ - base bytestring filepath process regex-tdfa temporary text unix - zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tweag/sparkle#readme"; - description = "Distributed Apache Spark applications in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "spatial-math" = callPackage - ({ mkDerivation, base, binary, cereal, ghc-prim, lens, linear - , stdenv, TypeCompose - }: - mkDerivation { - pname = "spatial-math"; - version = "0.5.0.1"; - sha256 = "c91cf29157c2a3425f40afdd6fb763f2fc4299eb4c32725ac64d2ba568c2a410"; - libraryHaskellDepends = [ - base binary cereal ghc-prim lens linear TypeCompose - ]; - doHaddock = false; - doCheck = false; - description = "3d math including quaternions/euler angles/dcms and utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, leancheck, stdenv }: - mkDerivation { - pname = "speculate"; - version = "0.3.5"; - sha256 = "706cb2ac18b2d646bc20cc80135bad10e30bd0096ab479308cd110077035ea44"; - libraryHaskellDepends = [ base cmdargs containers leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speculation" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, stm, transformers }: - mkDerivation { - pname = "speculation"; - version = "1.5.0.3"; - sha256 = "73bf641a87e0d28a2ba233922db936e0776c3dc24ed421f6f963f015e2eb4d3f"; - libraryHaskellDepends = [ base ghc-prim stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/speculation"; - description = "A framework for safe, programmable, speculative parallelism"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "sphinx" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , network, stdenv, text, text-icu, xml - }: - mkDerivation { - pname = "sphinx"; - version = "0.6.0.2"; - sha256 = "76a977c6ce6e71c220bd5fed7acd0be500c2a1b5c8d081a29564a8e37ba7a6df"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 network text text-icu - xml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/haskell-sphinx-client"; - description = "Haskell bindings to the Sphinx full-text searching daemon"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.1"; - sha256 = "2a6c8003a941640ceab9dc358aadf69e08800e2cb10a267422e4436fe1e8772f"; - revision = "1"; - editedCabalFile = "0c38sajdpqcmicdh4lfy6vpg8wnzpiyamvbximdsqs605frs3mqs"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spoon" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "spoon"; - version = "0.3.1"; - sha256 = "b9b350b6730e34c246bbf7e228a86b3d4925b52c95542f7676d719ef2a9881d4"; - revision = "1"; - editedCabalFile = "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Catch errors thrown from pure computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.8"; - sha256 = "646716e795f3cd82f0277ffb672eca26a03f6897d85da3c267ee04cf4dc4a765"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.2"; - sha256 = "3f6a5a0cf8f8aaf452caa2389db54e09494be3fd9dce111fbf06df2b7eddeb38"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual - , bytestring, containers, direct-sqlite, Only, semigroups, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "sqlite-simple"; - version = "0.4.16.0"; - sha256 = "60d2a188d1967ebc0d3ec9175776c45a6e1e6e7a4d44567548cb7fe6961d30de"; - revision = "1"; - editedCabalFile = "123bykwxl3p6918bjxv073ksf8k1hn6s0rlph934h18400n51fdf"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-textual bytestring containers - direct-sqlite Only semigroups template-haskell text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nurpax/sqlite-simple"; - description = "Mid-Level SQLite client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple-errors" = callPackage - ({ mkDerivation, base, parsec, sqlite-simple, stdenv, text }: - mkDerivation { - pname = "sqlite-simple-errors"; - version = "0.6.1.0"; - sha256 = "5101f84a6d74d658398cc4ef557ad3c6158d53e9c948301cc47ed0cc3eaa716f"; - libraryHaskellDepends = [ base parsec sqlite-simple text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/sqlite-simple-errors"; - description = "Wrapper around errors from sqlite-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "squeal-postgresql" = callPackage - ({ mkDerivation, aeson, base, binary-parser, bytestring - , bytestring-strict-builder, deepseq, generics-sop, lifted-base - , mmorph, monad-control, mtl, network-ip, postgresql-binary - , postgresql-libpq, profunctors, resource-pool, scientific, stdenv - , text, time, transformers, transformers-base, uuid-types, vector - }: - mkDerivation { - pname = "squeal-postgresql"; - version = "0.3.2.0"; - sha256 = "98b22c9e3278e6b00feb4c6c449d1daad498ba3a4c16aa588cf3b192c5804b08"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary-parser bytestring bytestring-strict-builder - deepseq generics-sop lifted-base mmorph monad-control mtl - network-ip postgresql-binary postgresql-libpq profunctors - resource-pool scientific text time transformers transformers-base - uuid-types vector - ]; - executableHaskellDepends = [ - base bytestring generics-sop mtl text transformers - transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/morphismtech/squeal"; - description = "Squeal PostgreSQL Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "1.2.1"; - sha256 = "6bfbdd2755c606f7b146243db1eefc2f49c720264ba9072a9d170a1bbdbc113b"; - revision = "8"; - editedCabalFile = "0jz9cg3w71nvxc4y6hrwjayxl2291q5xm5r4qrhz1ag1lvzk26yn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stack" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, async - , attoparsec, base, base64-bytestring, bindings-uname, bytestring - , Cabal, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, deepseq, directory, echo, exceptions, extra - , file-embed, filelock, filepath, fsnotify, generic-deriving - , hackage-security, hashable, hpack, hpc, http-client - , http-client-tls, http-conduit, http-types, memory, microlens - , mintty, monad-logger, mono-traversable, mtl, mustache - , neat-interpolation, network-uri, open-browser - , optparse-applicative, path, path-io, persistent - , persistent-sqlite, persistent-template, pretty, primitive - , process, project-template, regex-applicative-text, resourcet - , retry, rio, semigroups, split, stdenv, stm, store, store-core - , streaming-commons, tar, template-haskell, temporary, text - , text-metrics, th-reify-many, time, tls, transformers - , typed-process, unicode-transforms, unix, unix-compat, unliftio - , unordered-containers, vector, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "stack"; - version = "1.7.1"; - sha256 = "19c4f2e02975bb797a339cfe2893c9e1f40241a910da45be34c5c2f05d62329f"; - revision = "10"; - editedCabalFile = "1985lm9m6pm9mi4h4m2nrn9v2rnnfh14slcnqgyxy6k934xqvg35"; - configureFlags = [ - "-fdisable-git-info" "-fhide-dependency-versions" - "-fsupported-build" - ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath ]; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - executableHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - preCheck = "export HOME=$TMPDIR"; - postInstall = '' - exe=$out/bin/stack - mkdir -p $out/share/bash-completion/completions - $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack - ''; - homepage = "http://haskellstack.org"; - description = "The Haskell Tool Stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "fd569cd27cfd62fb9d3e544e222450ec2734c44a3293994f35a26af982ce3d93"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "state-codes" = callPackage - ({ mkDerivation, aeson, base, shakespeare, stdenv, text }: - mkDerivation { - pname = "state-codes"; - version = "0.1.3"; - sha256 = "1667dc977607fc89a0ca736294b2f0a19608fbe861f03f404c3f8ee91fd0f4a1"; - libraryHaskellDepends = [ aeson base shakespeare text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acamino/state-codes#README"; - description = "ISO 3166-2:US state codes and i18n names"; - license = stdenv.lib.licenses.mit; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statestack" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "statestack"; - version = "0.2.0.5"; - sha256 = "f4eadcf9b08c14cb084436f81e16edf78d6eeda77a3f93e38ba5d7e263ea5f66"; - revision = "3"; - editedCabalFile = "0s9v88gcc5wnfj4c6xq86asadmh4y8z8ycv2wz5nwfwfazfgzcy3"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simple State-like monad transformer with saveable and restorable state"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-canvas" = callPackage - ({ mkDerivation, base, double-conversion, free, mtl, stdenv, text - }: - mkDerivation { - pname = "static-canvas"; - version = "0.2.0.3"; - sha256 = "370824df08cedef2aacbbc8b855fd5cd3c80cfcc07ae2931e0f25397a61dd749"; - revision = "1"; - editedCabalFile = "1z3mi5z590xxmipd5fxylcmf39rrwvmwva2rkk6km1nxb5kfasl7"; - libraryHaskellDepends = [ base double-conversion free mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeffreyrosenbluth/static-canvas"; - description = "DSL to generate HTML5 Canvas javascript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - , vector - }: - mkDerivation { - pname = "static-text"; - version = "0.2.0.3"; - sha256 = "599d7a3e432f37128aa6d5ffa985bea7d35961698fc0df7c1cba7e3875413da1"; - libraryHaskellDepends = [ - base bytestring template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/static-text#readme"; - description = "Lists, Texts, ByteStrings and Vectors of statically known length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, base, base-orphans, binary, deepseq, erf - , math-functions, monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.14.0.2"; - sha256 = "3495df2da42c9fcc5b594b97f16c02353bfd6616d6e134ac031dac389d7a4778"; - revision = "2"; - editedCabalFile = "1bx70yqkn62ii17fjv3pig4hklrzkqd09zj67zzjiyjzmn04fir3"; - libraryHaskellDepends = [ - aeson base base-orphans binary deepseq erf math-functions monad-par - mwc-random primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.2"; - sha256 = "3bf41af8950ecf0ac5645634fdd233f941a904c6c56222ff4efb03f5d17043e8"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "stm"; - version = "2.4.5.1"; - sha256 = "6cf0c280062736c9980ba1c2316587648b8e9d4e4ecc5aed16a41979c0a3a3f4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Software_transactional_memory"; - description = "Software Transactional Memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.1"; - sha256 = "e80e5be72a4564fa45e1e27f91c0984e12d2a736d0ceb9594350d573efee1442"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-containers" = callPackage - ({ mkDerivation, base, base-prelude, focus, hashable, list-t - , primitive, stdenv, transformers - }: - mkDerivation { - pname = "stm-containers"; - version = "0.2.16"; - sha256 = "69042f06647cdc69e1ecf83863d88d67acd377f631d8a15966df67245152502f"; - libraryHaskellDepends = [ - base base-prelude focus hashable list-t primitive transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-containers"; - description = "Containers for STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2.1"; - sha256 = "e8e687268c86a6b635e7ee08415f31921d4a46eed267fe573a57981ec00d8419"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-stats" = callPackage - ({ mkDerivation, base, containers, stdenv, stm, template-haskell - , time - }: - mkDerivation { - pname = "stm-stats"; - version = "0.2.0.0"; - sha256 = "0a4f39b1e9fffe50d6dfaa9c0b04977e510fae8b6bd3d7abb7076e8aa8f01345"; - libraryHaskellDepends = [ - base containers stm template-haskell time - ]; - doHaddock = false; - doCheck = false; - description = "retry statistics for STM transactions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.5"; - sha256 = "461ed69edf8d68cdadd8d0c6159e9c2fef71d1a440c6feded0b07c77d9113461"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.3.0"; - sha256 = "9af499b2b19b2f173f97db37f843938efd2c59c30285e436564aefd2aa5bdc3a"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-endian" = callPackage - ({ mkDerivation, base, byteorder, stdenv }: - mkDerivation { - pname = "storable-endian"; - version = "0.2.6"; - sha256 = "3743ac8f084ed3187b83f17b4fac280e77c5df01f7910f42b6a1bf09d5a65489"; - revision = "1"; - editedCabalFile = "12f8sscsvsarlwz3p6kk9vbvqsbyhs8lhafgn9h7c0z6pz1amrya"; - libraryHaskellDepends = [ base byteorder ]; - doHaddock = false; - doCheck = false; - description = "Storable instances with endianness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "store" = callPackage - ({ mkDerivation, array, async, base, base-orphans - , base64-bytestring, bifunctors, bytestring, containers - , contravariant, cryptohash, deepseq, directory, filepath, free - , ghc-prim, hashable, hspec, hspec-smallcheck, integer-gmp - , lifted-base, monad-control, mono-traversable, network, primitive - , resourcet, safe, semigroups, smallcheck, stdenv, store-core, syb - , template-haskell, text, th-lift, th-lift-instances, th-orphans - , th-reify-many, th-utilities, time, transformers - , unordered-containers, vector, void - }: - mkDerivation { - pname = "store"; - version = "0.5.0.1"; - sha256 = "238e8585de3cc551a39003499b4f8ade161630ef18525b30a790a22bca39f536"; - libraryHaskellDepends = [ - array async base base-orphans base64-bytestring bifunctors - bytestring containers contravariant cryptohash deepseq directory - filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp - lifted-base monad-control mono-traversable network primitive - resourcet safe semigroups smallcheck store-core syb - template-haskell text th-lift th-lift-instances th-orphans - th-reify-many th-utilities time transformers unordered-containers - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "store-core" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, primitive, stdenv - , text, transformers - }: - mkDerivation { - pname = "store-core"; - version = "0.4.4"; - sha256 = "5baecf8c074ff8dca4633630adc979696d7e8ee0a58e143e4d6d0f5c79f30991"; - libraryHaskellDepends = [ - base bytestring ghc-prim primitive text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast and lightweight binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.24.4"; - sha256 = "8afe606e3eed9ef81f5fb350950c52616ca9191cdf339bfc2666e1b789cf8f58"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl - , semigroups, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.2.0"; - sha256 = "5a6b7744695a2651e9835789a7c4ce48dbd5f13ee99f35f63261f9501ce1cd11"; - revision = "2"; - editedCabalFile = "0cfxibcf0lkzbbyxl96dpnmacxv39ljwrlr3935bxykihr83j9xf"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl semigroups transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, streaming - , streaming-bytestring - }: - mkDerivation { - pname = "streaming-attoparsec"; - version = "1.0.0"; - sha256 = "ff28925269ed98f03ef10a482980030dd7c8ef4c05ef6e32d147db9331df6102"; - revision = "2"; - editedCabalFile = "07hqs8nn1rhsqckqmw46yp19kd0vk35q139al6yq0k1dzpvsrcsx"; - libraryHaskellDepends = [ - attoparsec base bytestring streaming streaming-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-attoparsec"; - description = "Attoparsec integration for the streaming ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-bytestring" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl - , resourcet, stdenv, streaming, transformers, transformers-base - }: - mkDerivation { - pname = "streaming-bytestring"; - version = "0.1.6"; - sha256 = "c1d723fc9676b85f62f9fc937d756af61d81f69c9c6591e5d38c9b09b7a253d3"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions mmorph mtl resourcet streaming - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-bytestring"; - description = "effectful byte steams, or: bytestring io done right"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.1.0"; - sha256 = "d8d1fe588924479ea7eefce8c6af77dfb373ee6bde7f4691bdfcbd782b36d68d"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming-wai" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, http-types - , stdenv, streaming, wai - }: - mkDerivation { - pname = "streaming-wai"; - version = "0.1.1"; - sha256 = "35b4182386cc1d23731b3eac78dda79a1b7878c0b6bd78fd99907c776dbfaf30"; - libraryHaskellDepends = [ - base bytestring bytestring-builder http-types streaming wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jb55/streaming-wai"; - description = "Streaming Wai utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, containers, exceptions - , heaps, lockfree-queue, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.3.0"; - sha256 = "33d4b3d03e6e7b66a25c3259b0c80a51a0366e6bfb35686eeacb2d8cb831576b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base containers exceptions heaps lockfree-queue - monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streamproc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "streamproc"; - version = "1.6.2"; - sha256 = "e76effaaff83e6a066df949415db109b405bda0aaeb95f0710906c65892584f2"; - revision = "1"; - editedCabalFile = "19c51gks028x8mnywkx1nz0s6bwn2mxs5ddmaj2q8n9l5pvfkcgs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/streamproc"; - description = "Stream Processer Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.3"; - sha256 = "02d934ec5053d3d42031798e5a3cd25547ccde5973d562f9fc943d635d9956c0"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, Cabal, process, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.2"; - sha256 = "9757cad387856a313729caffe0639215a10be7d72b09c44bcab9e55ee2a8c218"; - revision = "1"; - editedCabalFile = "1flc6mr1nnv8mx69cy1ilwk5gxsidcns82vjdg8dcs8z5axg95kp"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.0"; - sha256 = "4d7daffe1d58671af5111c7179905653d692884cac21f09061768a5a6354e6b8"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , http-client, http-client-tls, http-types, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "strive"; - version = "5.0.7"; - sha256 = "6f16cd578bff7cafc0cf923477effc880fe5eb49344a88da329a3297ed2fbe43"; - libraryHaskellDepends = [ - aeson base bytestring data-default gpolyline http-client - http-client-tls http-types template-haskell text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/strive#readme"; - description = "A client for the Strava V3 API"; - license = stdenv.lib.licenses.mit; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.1"; - sha256 = "df60ac419775ad96959338c7f14e93a3d47b82728234df206b0145d33694aa41"; - revision = "2"; - editedCabalFile = "1v9gmnj17cm4p491rizvw9xdj255lk1y24gz6s8bqcz56sdb4d4s"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stylish-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , file-embed, filepath, haskell-src-exts, mtl, optparse-applicative - , semigroups, stdenv, strict, syb, yaml - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.9.2.0"; - sha256 = "db9f10056a949ad361b5fe3c6fc189601eec2c0058ff2b705ebe68e043b5229b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl semigroups syb yaml - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl optparse-applicative strict syb yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jaspervdj/stylish-haskell"; - description = "Haskell code prettifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-builder" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hashable, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "svg-builder"; - version = "0.1.1"; - sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc"; - revision = "2"; - editedCabalFile = "100nmkgcm1ncv4mkr1xcsa7bb3z6zx0lfayk8innd4hm62xsvhj3"; - libraryHaskellDepends = [ - base blaze-builder bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diagrams/svg-builder.git"; - description = "DSL for building SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.3"; - sha256 = "29e5154e3992413ef13a4c50407b9753df2e60f9fddaae03b5475e77a8d8db6a"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, bytestring - , Cabal, cabal-doctest, containers, generics-sop, hashable - , http-media, insert-ordered-containers, lens, mtl, network - , scientific, stdenv, template-haskell, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.2.2"; - sha256 = "82d352881041baaaa1ed63cc3262953df101dad5e401272dc62ee346b3ab6eca"; - revision = "3"; - editedCabalFile = "187jl8slpyr6blcxnhdp7wf85ab54pgqnbl11n816xg6fyqy7ylk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson base base-compat-batteries bytestring containers generics-sop - hashable http-media insert-ordered-containers lens mtl network - scientific template-haskell text time transformers - transformers-compat unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swish" = callPackage - ({ mkDerivation, base, containers, directory, filepath, hashable - , intern, mtl, network-uri, old-locale, polyparse, semigroups - , stdenv, text, time - }: - mkDerivation { - pname = "swish"; - version = "0.9.2.1"; - sha256 = "ef43bedf12c4f9c9b379a8aa00f339d9487769e4388a57ff108f16cb1f8c3f7f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers directory filepath hashable intern mtl network-uri - old-locale polyparse semigroups text time - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home"; - description = "A semantic web toolkit"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7"; - sha256 = "b8757dce5ab4045c49a0ae90407d575b87ee5523a7dd5dfa5c9d54fcceff42b5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.4"; - sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "syz" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "syz"; - version = "0.2.0.0"; - sha256 = "3e85801a83fa2a7e57093a7d0aa52f21cba07a0bd6d1ba82d2ddfb335249a3d4"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.indiana.edu/~adamsmd/papers/scrap_your_zippers/"; - description = "Scrap Your Zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1.1"; - sha256 = "e5b4ee185f30a64d854fb02291f7bdf60f8846f1fcc3d67ebc6ab1f61e74ee88"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "tagged"; - version = "0.8.5"; - sha256 = "e47c51c955ed77b0fa36897f652df990aa0a8c4eb278efaddcd604be00fc8d99"; - revision = "2"; - editedCabalFile = "0r2knfcq0b4s652vlvlnfwxlc2mkc2ra9kl8bp4zdn1awmfy0ia5"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.2"; - sha256 = "916dd7fdd15452f3d760c345e023ce99496806b813ab01b03ff1b240bbd50210"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagshare" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "d2314bae2e6820700f2a61db9c9f7976e1b53547a49cdd3352bdf29ac3856ce0"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "TagShare - explicit sharing with tags"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.7"; - sha256 = "9980f28169dd0ee8d9e0a65d553044d9bb24c6f2c7e5f6cf0a53dbd25cf1ec25"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagstream-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, conduit-extra, data-default, resourcet - , stdenv, text, transformers, xml-conduit - }: - mkDerivation { - pname = "tagstream-conduit"; - version = "0.5.5.3"; - sha256 = "b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring case-insensitive conduit - conduit-extra data-default resourcet text transformers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yihuang/tagstream-conduit"; - description = "streamlined html tag parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.0"; - sha256 = "c89d697b6472b739db50e61201251fcaf8a8f5b595b1d9a488d395d7d5ce4b68"; - revision = "1"; - editedCabalFile = "1lydbwsmccf2av0g61j07bx7r5mzbcfgwvmh0qwg3a91857x264x"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.2.5"; - sha256 = "43ed3d6cdad9b0b33bd4ec16a969618847df9aa335d46e5135896c9cf8a4d33e"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - , wcwidth - }: - mkDerivation { - pname = "tasty"; - version = "1.1.0.4"; - sha256 = "3b4e3fa2c7dce8452c2636e5fe22323919461f52e905c132aae8dc12f10beebf"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix wcwidth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-ant-xml" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, ghc-prim, mtl, stdenv, stm, tagged, tasty - , transformers, xml - }: - mkDerivation { - pname = "tasty-ant-xml"; - version = "1.1.5"; - sha256 = "62ccee94bc5c3d7c6ed99037788262d8d971eeac487fe43b06760f969430a5df"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving ghc-prim mtl - stm tagged tasty transformers xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-ant-xml"; - description = "Render tasty output to XML for Jenkins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "1.2.0.8"; - sha256 = "24b7cfb2c9d59b878b785ab3c261faa533801059effbfadc1feade2d781a296d"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.1"; - sha256 = "be6c5b384614a592fb056e2e4f7806416aa37f114db77d0f8986938ba7cc1d3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "http://git.coop/lwm/tasty-discover"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.1"; - sha256 = "519a5c0d2ef9dd60355479f11ca47423133364f20ad3151f3c8b105313405ac4"; - revision = "1"; - editedCabalFile = "1b3fn7d3zwhhwm3gp8cmmsdcrvn9dhshd665xrx1mk6cmy4m8k16"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.2"; - sha256 = "04103d2a2fd6acc8f66b67d943060e88a2ea36b799502bf3e76c2726a15c714c"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-hedgehog"; - version = "0.2.0.0"; - sha256 = "5a107fc3094efc50663e4634331a296281318b38c9902969c2d2d215d754a182"; - revision = "6"; - editedCabalFile = "0d7s1474pvnyad6ilr5rvpama7s468ya9ns4ksbl0827z9vvga43"; - libraryHaskellDepends = [ base hedgehog tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/tasty-hedgehog"; - description = "Integration for tasty and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.5.1"; - sha256 = "fe889ec0f7b3991c46a07d9ff9cf09608a73a18f434a7480d2a09c79e56f3345"; - revision = "4"; - editedCabalFile = "1yppwhs2r2rlwrzli9ccv5ldgl95h5p7pqhsr898r3das6daf6sk"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.1"; - sha256 = "8f903bef276ef503e4ef8b66a1e201c224588e426bc76f7581480f66d47b7048"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10"; - sha256 = "10fd30cef4a0c2cefb70afecef5adcee1f32f0fd287f108321458fbfd6d7266f"; - revision = "1"; - editedCabalFile = "1ndkkywcqgb2wj339vgckjv5915da5kd4ixlkaww9fsba3qsrnwx"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-rerun" = callPackage - ({ mkDerivation, base, containers, mtl, optparse-applicative - , reducers, split, stdenv, stm, tagged, tasty, transformers - }: - mkDerivation { - pname = "tasty-rerun"; - version = "1.1.13"; - sha256 = "f7e52d160419b441b23f2438088f7b37ac85808b0faab081876f7fede288c7d1"; - libraryHaskellDepends = [ - base containers mtl optparse-applicative reducers split stm tagged - tasty transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-rerun"; - description = "Run tests by filtering the test tree depending on the result of previous test runs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.12"; - sha256 = "9eba31a2b0ca4857ed7cea15f6da7a6a9224419f1499e5f11b0cd68e3ef8cc68"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-stats" = callPackage - ({ mkDerivation, base, containers, directory, process, stdenv, stm - , tagged, tasty, time - }: - mkDerivation { - pname = "tasty-stats"; - version = "0.2.0.4"; - sha256 = "a64d018056c746efde87e830ff2e7bcd0b65b6582de96d493ca706ea0325447c"; - libraryHaskellDepends = [ - base containers directory process stm tagged tasty time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/tasty-stats#readme"; - description = "Collect statistics of your Tasty testsuite"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, io-streams - , network, pem, stdenv, tls, x509, x509-store, x509-system - }: - mkDerivation { - pname = "tcp-streams"; - version = "1.0.1.0"; - sha256 = "77d812e5db567875ca26c2682ceddf4bcf825d90dd10dcb171279bd7e96e4861"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class io-streams network pem tls x509 - x509-store x509-system - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "One stop solution for tcp client and server with tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system - , io-streams, network, stdenv, tcp-streams - }: - mkDerivation { - pname = "tcp-streams-openssl"; - version = "1.0.1.0"; - sha256 = "c3e7588ba7348fac87a9dcc531909f90bb3b4a1c01da9eb871a918d02b146afe"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL HsOpenSSL-x509-system io-streams network - tcp-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "Tcp streams using openssl for tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2.1"; - sha256 = "d46e38067c4d064f3c9c77219f570ba4e9dbbd7273a5edc4860610cde4afb84e"; - revision = "4"; - editedCabalFile = "0830zzgbf5xffa1yqwcvy4xm1wzzydvy5wmy3sqk3a5n85v295by"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "teardown" = callPackage - ({ mkDerivation, base, prettyprinter, rio, stdenv, typed-process - , unliftio - }: - mkDerivation { - pname = "teardown"; - version = "0.5.0.0"; - sha256 = "50eac07b244bd2d662731929e8b1785df3e8a5014b4bb62f6e843e33e896395c"; - libraryHaskellDepends = [ - base prettyprinter rio typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-teardown#readme"; - description = "Build safe and composable teardown sub-routines for resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "telegram-bot-simple" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron - , hashable, http-api-data, http-client, http-client-tls - , monad-control, mtl, pretty-show, profunctors, servant - , servant-client, split, stdenv, stm, template-haskell, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "telegram-bot-simple"; - version = "0.2.0"; - sha256 = "8a8cc572880a792d1ed722bd0ac961892d79113c9fa1b2fbdf3019f98f904ea9"; - revision = "1"; - editedCabalFile = "1li6b3m9glhfg8agr9h0mrbxpr8zr46l57mzjfdqndm248ddbklv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring cron hashable http-api-data - http-client http-client-tls monad-control mtl pretty-show - profunctors servant servant-client split stm template-haskell text - time transformers unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring cron hashable http-api-data - http-client http-client-tls monad-control mtl pretty-show - profunctors servant servant-client split stm template-haskell text - time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fizruk/telegram-bot-simple#readme"; - description = "Easy to use library for building Telegram bots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.5"; - sha256 = "c9f678d4ec30599172eb887031f0bce2012b532daeb713836bd912bff64eee59"; - revision = "1"; - editedCabalFile = "1vmpk70h1594h9s216d3ngkb399fpny1d3sh4gg0vrc75p4as68d"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-feat" = callPackage - ({ mkDerivation, base, QuickCheck, size-based, stdenv - , testing-type-modifiers - }: - mkDerivation { - pname = "testing-feat"; - version = "1.1.0.0"; - sha256 = "1904d31ddce611474e8c836582efbca1ae7d1c7dc76083cf4300e8e0eeff58ec"; - libraryHaskellDepends = [ - base QuickCheck size-based testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JonasDuregard/testing-feat"; - description = "Functional Enumeration of Algebraic Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.11.1.2"; - sha256 = "373f1281832c0f397976eec8f94117d2e298443ae2591f64a92e734631224cf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq, ghc-prim - , integer-gmp, stdenv - }: - mkDerivation { - pname = "text"; - version = "1.2.3.1"; - sha256 = "8360624d5d01f278da320eebd16fd5d6f366b7f876d0ad424041d58e5e1147a6"; - revision = "2"; - editedCabalFile = "0ax6h9mvs4567nzi936jkd8f94bi8jnxis4wikjzyaxqfwm5zc6f"; - configureFlags = [ "-f-integer-simple" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq ghc-prim integer-gmp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/text"; - description = "An efficient packed Unicode text type"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "text-builder"; - version = "0.5.4.3"; - sha256 = "5058f50cc5814c7dc59d82f38347d6d8db8d42e5801156a0fa5611c2d7889ef5"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.13"; - sha256 = "ec174c30333548e21b045554329e6332d54bc355d96e0951ea3ea524463a2a34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.1"; - sha256 = "c6e26888d2751b78e3102747d0bccedeee4002a1eb6c76dd1fe6c3836b5082e8"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5"; - sha256 = "8f0c01a6a15b4314c2d47ab5f0772d176ec38f1c1fe190b9fa7db5149a6c4a0b"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.2"; - sha256 = "b3f2b867d14c7c2586ea580028606b6662293ad080726d5241def937e5e31167"; - revision = "2"; - editedCabalFile = "106p7c0399zxdlh9f9qkgy7g2gp3bxqdpy6m6lnfhzi0pm5y8mks"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, contravariant - , generic-deriving, ghc-boot-th, ghc-prim, integer-gmp, nats - , semigroups, stdenv, tagged, template-haskell, text - , th-abstraction, th-lift, transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "3.7.4"; - sha256 = "3efb643349e288f0d92dc2fd26a76d38d08686e827db1d99df707932c9b91e19"; - revision = "3"; - editedCabalFile = "1r2g3g0bcl7xgxw35bhp6a9n1rdz3bf1qhiqb2hhjscmm2szq3jd"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers contravariant generic-deriving - ghc-boot-th ghc-prim integer-gmp nats semigroups tagged - template-haskell text th-abstraction th-lift transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show-instances" = callPackage - ({ mkDerivation, base, base-compat-batteries, bifunctors, binary - , containers, directory, ghc-boot-th, haskeline, hoopl, hpc - , old-locale, old-time, pretty, random, semigroups, stdenv, tagged - , template-haskell, terminfo, text, text-show, time, transformers - , transformers-compat, unix, unordered-containers, vector, xhtml - }: - mkDerivation { - pname = "text-show-instances"; - version = "3.6.5"; - sha256 = "14b3f03f14b61bcbb633bf6c95eb279221e5d97b30b27b114f298c1a06c49242"; - revision = "2"; - editedCabalFile = "1lqvwm9ciazk13jabyr81rl4hsmwksjmks7ckxrdgz3jk201yr6i"; - libraryHaskellDepends = [ - base base-compat-batteries bifunctors binary containers directory - ghc-boot-th haskeline hoopl hpc old-locale old-time pretty random - semigroups tagged template-haskell terminfo text text-show time - transformers transformers-compat unix unordered-containers vector - xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show-instances"; - description = "Additional instances for text-show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-zipper" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text, vector }: - mkDerivation { - pname = "text-zipper"; - version = "0.10.1"; - sha256 = "9afaeb93d55b0bb6d0d6f495e3ff0789a60d0dee57fb6103f52e4c05ae64b14b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base deepseq text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/text-zipper/"; - description = "A text editor zipper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.0.2"; - sha256 = "9a817090cb91f78424affc3bfb6a7ea65b520087b779c9fd501fc9779e654cda"; - revision = "1"; - editedCabalFile = "062rvn5ba3x5fjhnqs8lid6mra3vqz5ikaixck1mlmafkqmxhvw9"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.3.1.0"; - sha256 = "4b9e1bcc6ec3d897fb09c3d7fa2f37f0672d5370e0e3e49809886da81fe001b9"; - revision = "1"; - editedCabalFile = "1c0sy614vfcdvshn0z09nzfiq89v5if31yvvpxzrivrdy9gf912s"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.0.2.7"; - sha256 = "13aaff2410e39e518f6de74a5bdd20de0e0139fc4af2c344e7c282cf63fa4e7a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, syb - , template-haskell, th-expand-syns, th-lift, th-orphans - }: - mkDerivation { - pname = "th-desugar"; - version = "1.8"; - sha256 = "bb4d1f1f4f63b77f8b0fdb545f0fd90a4183c80f4bb61edc2052d64e877b7a59"; - revision = "1"; - editedCabalFile = "13jvl6ijxjwbd7df0cq5pnijs3wrs8x5r9ykyyj180dak66909wd"; - libraryHaskellDepends = [ - base containers mtl syb template-haskell th-expand-syns th-lift - th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.4.0"; - sha256 = "cc0f52d1364ace9ba56f51afd9106a5fe01ed3f5ae45c958c1b0f83be0a6f906"; - revision = "1"; - editedCabalFile = "1zbdg3hrqv7rzlsrw4a2vjr3g4nzny32wvjcpxamlvx77b1jvsw9"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.7.11"; - sha256 = "d53cd1479d3cf35c513095f3954eee539e73c55266cec5f1fa0a82d53f30238c"; - revision = "1"; - editedCabalFile = "0whppp0p9df3fphv6pyg8f70bnm2kpyb3ylznknrklsl5vn2c49d"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mboes/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, th-lift, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.11"; - sha256 = "1da46afabdc73c86f279a0557d5a8f9af1296f9f6043264ba354b1c9cc65a6b8"; - revision = "1"; - editedCabalFile = "03jdc34ms54dphjd69w3md3vj1gf0r975rc946iiw3png5z1myk2"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text th-lift vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-nowq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, time }: - mkDerivation { - pname = "th-nowq"; - version = "0.1.0.2"; - sha256 = "0112f4385eb0856fd186b43a491c6538331d74ca6f86d5dfef4d15ae86e438e5"; - libraryHaskellDepends = [ base template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/th-nowq#readme"; - description = "Template Haskell splice that expands to current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.6"; - sha256 = "7745e6b93a73cbc0a6aa0da0a7b7377f0be4fffb4fd311e5502de199ec1dd469"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-printf" = callPackage - ({ mkDerivation, ansi-wl-pprint, attoparsec, base, charset - , containers, stdenv, template-haskell, text, transformers - , trifecta, utf8-string - }: - mkDerivation { - pname = "th-printf"; - version = "0.5.1"; - sha256 = "86921f308a9446da5fa0e87b25c2f397d4ab8c85df56d9750c91fdb1ee48f135"; - libraryHaskellDepends = [ - ansi-wl-pprint attoparsec base charset containers template-haskell - text transformers trifecta utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pikajude/th-printf"; - description = "Compile-time printf"; - license = stdenv.lib.licenses.mit; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.5"; - sha256 = "af1b2e7e39e029d8c9a20efdd7b49d4d15616ac360adddc7a09560b9a223359c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.8"; - sha256 = "cecaae187df911de515d08929e1394d6d6f7ce129795be8189a6b10d3734fe43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-utilities" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , primitive, stdenv, syb, template-haskell, text, th-orphans - }: - mkDerivation { - pname = "th-utilities"; - version = "0.2.0.1"; - sha256 = "65c64cee69c0d9bf8d0d5d4590aaea7dcf4177f97818526cbb3fac20901671d6"; - libraryHaskellDepends = [ - base bytestring containers directory filepath primitive syb - template-haskell text th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/th-utilities#readme"; - description = "Collection of useful functions for use with Template Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, containers - , data-default-class, deepseq, hashable, keys, mtl, profunctors - , QuickCheck, semigroupoids, stdenv, transformers - , transformers-compat, unordered-containers, vector - , vector-instances - }: - mkDerivation { - pname = "these"; - version = "0.7.5"; - sha256 = "dbac2412ad609d2ccd180722ac73a3f0fb2df300460a78d687660135efec35fb"; - libraryHaskellDepends = [ - aeson base bifunctors binary containers data-default-class deepseq - hashable keys mtl profunctors QuickCheck semigroupoids transformers - transformers-compat unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.1"; - sha256 = "8181448452c759b660f6d7c8775fd99479ccc382cd291460903b15574e5d5c34"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.2"; - sha256 = "d648e01631189036a386d91de22f2b862e830ad0625b1f6096b347974f465294"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads-extras" = callPackage - ({ mkDerivation, base, stdenv, stm, threads }: - mkDerivation { - pname = "threads-extras"; - version = "0.1.0.2"; - sha256 = "4defab98b8a767b9580413d530e6823e53f6169671e53b6f8b6bfea89fde2575"; - libraryHaskellDepends = [ base stm threads ]; - doHaddock = false; - doCheck = false; - description = "Extends the threads package with a bounded thread group"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threepenny-gui" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, containers - , data-default, deepseq, exceptions, file-embed, filepath, hashable - , safe, snap-core, snap-server, stdenv, stm, template-haskell, text - , transformers, unordered-containers, vault, vector, websockets - , websockets-snap - }: - mkDerivation { - pname = "threepenny-gui"; - version = "0.8.3.0"; - sha256 = "c661b206987d6c85821e6b5206c563e3182138dfddda62cda454b8cd34536a9c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default deepseq - exceptions file-embed filepath hashable safe snap-core snap-server - stm template-haskell text transformers unordered-containers vault - vector websockets websockets-snap - ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Threepenny-gui"; - description = "GUI framework that uses the web browser as a display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "through-text" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, stdenv, text - }: - mkDerivation { - pname = "through-text"; - version = "0.1.0.0"; - sha256 = "933225da128906e61865ccd1da73463781b890d742cbb38f52524d94ac19b4cd"; - revision = "4"; - editedCabalFile = "1clc4g6rg5970654fd596ygly79axkhyzn773by1wi4grvhw96fi"; - libraryHaskellDepends = [ base bytestring case-insensitive text ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/bergmark/through-text"; - description = "Convert textual types through Text without needing O(n^2) instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "tibetan-utils" = callPackage - ({ mkDerivation, base, composition-prelude, either, megaparsec - , stdenv, text, text-show - }: - mkDerivation { - pname = "tibetan-utils"; - version = "0.1.1.5"; - sha256 = "38007ff5e5ae38bbd68ff2ee6fd850bedb0da2e81891736146494ba1448f7825"; - revision = "2"; - editedCabalFile = "17zyhdxwnq85kr60bnxirmyvw3b1679j5mhm3i30ri65896pjdwf"; - libraryHaskellDepends = [ - base composition-prelude either megaparsec text text-show - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vmchale/tibetan-utils#readme"; - description = "Parse and display tibetan numerals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.5"; - sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-manager" = callPackage - ({ mkDerivation, auto-update, base, stdenv }: - mkDerivation { - pname = "time-manager"; - version = "0.0.0"; - sha256 = "90a616ed20b2119bb64f78f84230b6798cde22a35e87bc8d9ee08cdf1d90fcdb"; - libraryHaskellDepends = [ auto-update base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Scalable timer"; - license = stdenv.lib.licenses.mit; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.0"; - sha256 = "4e50d40f13f8e6c5175be22b91586f909607ecb631f8209ff45bce2031bb3c24"; - revision = "3"; - editedCabalFile = "0im963wjcmwf6ii9a00mbi8lhmx5cy7cs6rmp0qi2j2jddba78j2"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tintin" = callPackage - ({ mkDerivation, base, clay, containers, data-has, directory - , frontmatter, inliterate, lucid, optparse-generic, process - , require, stdenv, temporary, text, universum, yaml - }: - mkDerivation { - pname = "tintin"; - version = "1.9.2"; - sha256 = "980e579fe87722837fb1417b0c8a47d9ed982cae1ab5129fd1521594553a2dde"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base clay containers data-has directory frontmatter inliterate - lucid process require temporary text universum yaml - ]; - libraryToolDepends = [ require ]; - executableHaskellDepends = [ - base optparse-generic require universum - ]; - executableToolDepends = [ require ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/tintin#readme"; - description = "A softer alternative to Haddock"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.14.1"; - sha256 = "d13e96117dfcedc861185bee5d1d130a92bce7876cc1ffd041ace2426820df07"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, memory, mtl, network - , stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.4.1"; - sha256 = "bbead1afc0b808bd5cff7bddaeae84ade37f18bbe72bd78d45a2fa4ac41908f8"; - revision = "1"; - editedCabalFile = "0qk07miindqvynhgsqj8jjk1d6i95lbgwipanwnn4vh1707z8xhv"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class memory mtl network transformers x509 x509-store - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, time, tls, x509, x509-store, x509-system - , x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.5"; - sha256 = "a345c4863bf923829d73abb8e2b706dab8058b12cdf73859d3860eaf7223eb9b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem time tls - x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, clock, psqueues, stdenv, tls }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.0.2"; - sha256 = "c586ccfd8da578ed2174352bea1952f55fe38023e476f851d7f0ed428aa57567"; - libraryHaskellDepends = [ auto-update base clock psqueues tls ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, base, bytestring, directory, network - , postgresql-simple, process, stdenv, temporary, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "0.1.1.1"; - sha256 = "2c5d557c53f60179d5e5e8c7fb6e393ff703e45b55c126359b308ab7a82be863"; - libraryHaskellDepends = [ - base bytestring directory network postgresql-simple process - temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres for testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, hashable, megaparsec, mtl - , parser-combinators, stdenv, text, time, transformers - , unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "0.3.1"; - sha256 = "fc8560bb6c5127c9a3bcfeea5a4046ed5652e1bdd6675266b4a08ad12366ef4e"; - revision = "1"; - editedCabalFile = "0pxc2065zjvsw3qwxhj2iw4d08f4j6y40nr51k6nxkz1px855gyk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base hashable megaparsec mtl parser-combinators text time - transformers unordered-containers - ]; - executableHaskellDepends = [ base text time unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "TOML parser"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.2"; - sha256 = "dc06228b7b8a546f9d257b4fe2b369fc2cb279240bbe4312aa8f47bb2752e4be"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-lift" = callPackage - ({ mkDerivation, base, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "transformers-lift"; - version = "0.2.0.1"; - sha256 = "0bd8bf23fb29874daf9ff990bf25035e21208cfa292f9f18e8cfdb0b4b1ee09d"; - revision = "3"; - editedCabalFile = "0rkbjlpn460gn93qr0l7025ggkgj46j6pkcil6m2chkzk91cpk9i"; - libraryHaskellDepends = [ - base transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - description = "Ad-hoc type classes for lifting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.0.0"; - sha256 = "65a220f1652b68269dfe8cc283a6e9292941eb12bdbd79344e073ba766191fbb"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, containers, generics-sop, hashable - , MemoTrie, parsec, parsers, pretty, QuickCheck, scientific, stdenv - , tagged, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.0.2"; - sha256 = "f8690bd14977f66292759f432a9f0d1b15f00b37001e7c4ea1a04c3fa38a9b7e"; - revision = "2"; - editedCabalFile = "07pz7mhzvh7iwgn2rvw29valfdm4y845zqqffxb89ywbb6gnm8x8"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - containers generics-sop hashable MemoTrie parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base - , blaze-builder, blaze-html, blaze-markup, bytestring, Cabal - , cabal-doctest, charset, comonad, containers, deepseq, fingertree - , ghc-prim, hashable, lens, mtl, parsers, profunctors, reducers - , semigroups, stdenv, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "2"; - sha256 = "53972fe9d206eab6ae1a654fe8c57274f01b373b0c8b3882ef01e962226af643"; - revision = "4"; - editedCabalFile = "0xbwyvwl6f2zylk60f2akwgq03qv49113xil7b1z1s3vlwbn5aj1"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html - blaze-markup bytestring charset comonad containers deepseq - fingertree ghc-prim hashable lens mtl parsers profunctors reducers - semigroups transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.1.2.0"; - sha256 = "86b8749e708fd288a874d23ebeb9ff5e3a584ada13bc22c3a9b596418bd57063"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple" = callPackage - ({ mkDerivation, base, OneTuple, stdenv }: - mkDerivation { - pname = "tuple"; - version = "0.3.0.2"; - sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624"; - libraryHaskellDepends = [ base OneTuple ]; - doHaddock = false; - doCheck = false; - description = "Various functions on tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.1.0"; - sha256 = "f6e18d0f444993c959eaa7d1aca87993c779b929260b1c6dd823715d3e736043"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, system-fileio, system-filepath, temporary, text, time - , transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.13"; - sha256 = "0f06763f7a50b19862bd048e9387ddc441f085c5e1aa3a392322210a38f44484"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm system-fileio - system-filepath temporary text time transformers unix unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-equality" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-equality"; - version = "1"; - sha256 = "4728b502a211454ef682a10d7a3e817c22d06ba509df114bb267ef9d43a08ce8"; - revision = "1"; - editedCabalFile = "13lsff17dxz852f5bhjz8d1by704rzvwr67qqfc5dz5s7xc28qyk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hesselink/type-equality"; - description = "Data.Type.Equality compat package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, double-conversion, ghc-prim - , stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.4.1.0"; - sha256 = "bb21ad768625b7e140c4f0e199caf3b59388c0b6f94456a56e87efe896ce8915"; - libraryHaskellDepends = [ - base bytestring double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.1.0.4"; - sha256 = "dbbcedf368c23c46abac04f157cb4f2c812099a4f75d606b24f1ac1116d40b74"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.3.0.1"; - sha256 = "aecd1a319efc13eb42b73b489cf374f94bf126f19fdc28b2f5cd6f73dda3a241"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.3.0"; - sha256 = "c0dea5591a4730d151d5c146685d0fa3db1f390d2a63be70a981209e58de6648"; - revision = "1"; - editedCabalFile = "05mg8cggrdvplb7l3rgdfrn2rnrbxx394qi37n0ldfr6v3jirf0p"; - libraryHaskellDepends = [ - async base bytestring process stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typelits-witnesses" = callPackage - ({ mkDerivation, base, constraints, reflection, stdenv }: - mkDerivation { - pname = "typelits-witnesses"; - version = "0.3.0.3"; - sha256 = "4edd4aff3f49961a1eb87130c4d36c39f4cc81d411ff20100ef5f33fd74d191d"; - libraryHaskellDepends = [ base constraints reflection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/typelits-witnesses"; - description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; - license = stdenv.lib.licenses.mit; - }) {}; - "typenums" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "typenums"; - version = "0.1.2.1"; - sha256 = "c6b4e083e664ecea40be2555f24c2e8b322b4f32a4a434e6514fecd6d6d6991b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adituv/typenums#readme"; - description = "Type level numbers using existing Nat functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typography-geometry" = callPackage - ({ mkDerivation, base, containers, parallel, polynomials-bernstein - , stdenv, vector - }: - mkDerivation { - pname = "typography-geometry"; - version = "1.0.0.1"; - sha256 = "edaeafb60126be19f0e4fdda54be89b92317dd03b59e9d8b6f119064c1642ad7"; - libraryHaskellDepends = [ - base containers parallel polynomials-bernstein vector - ]; - doHaddock = false; - doCheck = false; - description = "Drawings for printed text documents"; - license = "GPL"; - }) {}; - "tz" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-default - , deepseq, stdenv, template-haskell, time, tzdata, vector - }: - mkDerivation { - pname = "tz"; - version = "0.1.3.2"; - sha256 = "f0d066d0169f283b199193d8825aa56de6e3818cd85d8979791c0e7504bf654c"; - libraryHaskellDepends = [ - base binary bytestring containers data-default deepseq - template-haskell time tzdata vector - ]; - doHaddock = false; - doCheck = false; - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; - homepage = "https://github.com/nilcons/haskell-tz"; - description = "Efficient time zone handling"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20181026.0"; - sha256 = "ee99daf34ed04513ec69d4d97b719f0f8adbc1a1a2b12b3f217898c59a0fa32c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unbound-generics" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, contravariant - , deepseq, exceptions, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "unbound-generics"; - version = "0.3.4"; - sha256 = "6abb810768abba05320b79289a918095b79987aad39d22991bf4d19b1cfce805"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers contravariant deepseq exceptions mtl - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lambdageek/unbound-generics"; - description = "Support for programming with names and binders using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unfoldable" = callPackage - ({ mkDerivation, base, containers, ghc-prim, one-liner, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "unfoldable"; - version = "0.9.6"; - sha256 = "cd90eae9ba258cfaf2554b4946c9b60def83c92548bbeb7269fec97a8657eaa1"; - revision = "2"; - editedCabalFile = "08rx8ci2jpa77q1dl4lghlyhd27if990ic9kaz30hczsazlzi44b"; - libraryHaskellDepends = [ - base containers ghc-prim one-liner QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/unfoldable"; - description = "Class of data structures that can be unfolded"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unfoldable-restricted" = callPackage - ({ mkDerivation, base, constraints, containers, hashable, stdenv - , transformers, unfoldable, unit-constraint, unordered-containers - }: - mkDerivation { - pname = "unfoldable-restricted"; - version = "0.0.3"; - sha256 = "0b19287719453617f3883863f32be75ba62aad68151cb79aea3a5fa90dc7836e"; - libraryHaskellDepends = [ - base constraints containers hashable transformers unfoldable - unit-constraint unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "An alternative to the Unfoldable typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1.1"; - sha256 = "6fdbaa2f45e191c4226b305b4f56a1c43149eb4e253b0a3ebf80ab77e9b5f8c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.3"; - sha256 = "3f2e33277ce6e2e3d8644fd68d945a799ff86d0cbefee05cf3441c29a1769c21"; - revision = "1"; - editedCabalFile = "0sw9kn147kbgp0x9823hwiqn1yiyfxqkrchk34lsjfx2lq3igrzv"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-jp/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.5"; - sha256 = "c9f7d138ab43ed2e11de5973b0bd771c8f5c14cc0d87d3fbd1c6980c176fa03e"; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union" = callPackage - ({ mkDerivation, base, deepseq, hashable, profunctors, stdenv - , tagged, vinyl - }: - mkDerivation { - pname = "union"; - version = "0.1.2"; - sha256 = "63e9dc2901a7d857e278445ca2b03bb869ecb01264206a14319d073e39dd8ec4"; - revision = "4"; - editedCabalFile = "09b6wqnmv4g2pnjzl5k90yp78jcif8pk40c0spdrbr2vr5766clj"; - libraryHaskellDepends = [ - base deepseq hashable profunctors tagged vinyl - ]; - doHaddock = false; - doCheck = false; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "uniq-deep"; - version = "1.1.0.0"; - sha256 = "f8953f91cbf90c5073ca90d4e9235dbe0a399ff811709d051b037a8a7db0d38e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep"; - description = "uniq-deep"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe" = callPackage - ({ mkDerivation, stdenv, universe-instances-base - , universe-instances-extended, universe-instances-trans - , universe-reverse-instances - }: - mkDerivation { - pname = "universe"; - version = "1.0"; - sha256 = "1f80e4788d348d53e39a32c8514940418a71c49c5423eb70b94e1786d94ff9a7"; - libraryHaskellDepends = [ - universe-instances-base universe-instances-extended - universe-instances-trans universe-reverse-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Classes for types where we know all the values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "universe-base"; - version = "1.0.2.1"; - sha256 = "07c48350afacdc0b5569f72e3d6a27a8ff3c208b7a6f22d00e149a201798bb51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types and some helper functions for enumerating them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.0"; - sha256 = "a21150ee3bb71283522a573bf092c8d96b2e28a95336a95505aa4c2a067dd212"; - revision = "2"; - editedCabalFile = "0c9zxmifhy2qjvsikgm168n8k8ka8ia88ldy8qjqkz5pqknlr9sj"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-extended" = callPackage - ({ mkDerivation, adjunctions, base, comonad, stdenv - , universe-instances-base, void - }: - mkDerivation { - pname = "universe-instances-extended"; - version = "1.0.0.1"; - sha256 = "665b272701b16a6bb8d40a5396aa1dcb038f002452ebdc29d353e3be2070c997"; - revision = "3"; - editedCabalFile = "1f7mzwn97kmnm1p1hscz5mzly700q2pw5awwdzzsxfkxv3law7xn"; - libraryHaskellDepends = [ - adjunctions base comonad universe-instances-base void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from select extra packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers, universe-base - , universe-instances-base - }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.0.0.1"; - sha256 = "0d047cf1eb4af9f2052f44f487e7d2d44c86f51b54a3cc1fc5243ad816e8310e"; - revision = "1"; - editedCabalFile = "0dcwgbgmbkjwzbxlncpl1b5hgjrmkl73djknjkhbnh02pysbwv69"; - libraryHaskellDepends = [ - base mtl transformers universe-base universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-instances-base - }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.0"; - sha256 = "e9d41cbf26eabd77587fddf69493d7ad23028303d1c1d1d2ee1de1bf3d3e8d49"; - revision = "2"; - editedCabalFile = "0cpnsip1iakwkgnwnd21gwrc8qbifzpff6agjwm34jgkq9j646k8"; - libraryHaskellDepends = [ - base containers universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, type-operators, unordered-containers - , utf8-string, vector - }: - mkDerivation { - pname = "universum"; - version = "1.2.0"; - sha256 = "37a10c85d0b4812a9687846cdfe20a61eb102839318149ad036d8c1be47e8518"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - type-operators unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, deepseq, directory, filepath, process - , stdenv, stm, time, transformers, unix, unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.9.0"; - sha256 = "ff6596a932d1b52b409739fd7bbc07234b484cc72f459f2515b27c2b55cd39b8"; - libraryHaskellDepends = [ - async base deepseq directory filepath process stm time transformers - unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.2.0"; - sha256 = "24c38b3d610ca2642ed496d1de3d7b6b398ce0410aa0a15f3c7ce636ba8f7a78"; - revision = "2"; - editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "d8faaf0c23ed143942ba7948616c73134c78e02aa4cf252605c73fb2412876ef"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.1"; - sha256 = "64bd16bed1eca66d844cbc9dfb90a7ffda5b24572066765cf61b3d8d28a1c1fc"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-templater" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, charset - , containers, dlist, HTTP, mtl, parsers, stdenv, template-haskell - , text, time, trifecta, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "uri-templater"; - version = "0.3.1.0"; - sha256 = "21e665ff2600b3de42b6ad01ef342b6165859dc6e66897f84a9075649f1c49c2"; - revision = "1"; - editedCabalFile = "0vl1nv40yzns9fnaz6h34x72vpfaaws8f0zm8qlr82333pxg2scw"; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring charset containers dlist HTTP mtl - parsers template-haskell text time trifecta unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/uri-templater"; - description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.0"; - sha256 = "90bf89265f5ae94d55e395e199a1b9205d4c56720f1edf9390644c2dc88252fb"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-postgresql-simple" = callPackage - ({ mkDerivation, base, bytestring, mtl, postgresql-simple, stdenv - , text, time, users, uuid - }: - mkDerivation { - pname = "users-postgresql-simple"; - version = "0.5.0.2"; - sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100"; - libraryHaskellDepends = [ - base bytestring mtl postgresql-simple text time users uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A PostgreSQL backend for the users package"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-test" = callPackage - ({ mkDerivation, base, hspec, stdenv, text, users }: - mkDerivation { - pname = "users-test"; - version = "0.5.0.1"; - sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e"; - libraryHaskellDepends = [ base hspec text users ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "Library to test backends for the users library"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "util"; - version = "0.1.11.0"; - sha256 = "8bc5a5f56cc94f17bf9460efb47e79f430c98adddaf646be22fe78980207119b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1"; - sha256 = "70455a22637983dbcf7a688ff80c05bb8bf2690d9e4523d6ca4ebcef77abb921"; - revision = "1"; - editedCabalFile = "1x1g4nannz81j1h64l1m3ancc96zc57d1bjhj1wk7bwn1xxbi5h3"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.7.0.0"; - sha256 = "ae2409c221d5c9839fb4991ab1123f3747bacd94aab583388c4e5585125f3177"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.2"; - sha256 = "fac03d29cf3d6f72c288111b68feb3c656574a1ac616b49f40426a9daf0e1d04"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.3.0.2"; - sha256 = "62e1a00e9cc12af6451d4484f392d593a628687a7ff78996f1982ee6d2ed912f"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.3.1.0"; - sha256 = "39096c06200f3ce670c89d557def5dbdd0ba3f608bdc7587b057c2344b3f20b2"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.3.0.2"; - sha256 = "979cda9b9fce257e4793c53e869076cbb41b9516f6a7cef2ea3edca84dc5e146"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.2"; - sha256 = "8132aa43307c7dcb29718b5c1ef7c2b8e0d1fb6f650c0b117b99397c34da8dc1"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.1.0"; - sha256 = "edd3f26e97ea07593c3995002a7ef7670f0306bfc31213f6b49ffe1a6fbc4264"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.2"; - sha256 = "51b24adef82f272a1060d5d0dffaa2eb1e54c0016c7dcd75631e5916df45e265"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.2"; - sha256 = "50547e85c80e42a90143b816b41389cca1e0fccacd8d620a09142cf65b36181b"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.2"; - sha256 = "95dc31e68630951d6971ad5b425e88d492c7400ccd4937a42252d464d89c564c"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.2"; - sha256 = "a7cc60182c9c5c25fa64d1073c1da61e79686fea6d2b2a9cf55690e61b83ce78"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "valor" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "valor"; - version = "0.1.0.0"; - sha256 = "04ce514f40ef954cdd4b45acb6b2bf6228a30e905fdce0b671df3bf789d6bae6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reygoch/valor#readme"; - description = "Simple general structured validation library"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.2"; - sha256 = "9e00e52ec0b054cfb9b1e44d8ce2eefb499cc1dcd4bcdd0d434b370d635e551c"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, deepseq - , distributive, fin, hashable, lens, semigroupoids, stdenv - }: - mkDerivation { - pname = "vec"; - version = "0.1"; - sha256 = "be54ef0a53ff4f27a7a0f14b249d1fd47ede63c085d4c68962db24bf4ba3e054"; - revision = "3"; - editedCabalFile = "093q5qlhlia12ckhvax322lyy3sb554pg46ghabvsvx8znixw2hh"; - libraryHaskellDepends = [ - adjunctions base base-compat deepseq distributive fin hashable lens - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.0.2"; - sha256 = "52e89dacaff10bedb8653181963cae928f9674a099bb706713dae83994bbc0f3"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.7.0.4"; - sha256 = "af618cf0b6e1a1fa681539ab4f73f0c5525531a1b2ac2d6e2034999d5e44ca55"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/vector-algorithms/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.5.1"; - sha256 = "3945b99f8efd319c837700b7cef5163ee23e656e89227357e0b7a41d2a66c512"; - revision = "1"; - editedCabalFile = "1p7cbxdpix0rakvggnnb06kcrb787fyyqlzric6i4s3rn34547q8"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.6"; - sha256 = "c8562d4d5daecbebc175c5895ecc1e2796dd3dfe4a66430fcdcd8fe582baa219"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, deepseq, distributive - , finite-typelits, indexed-list-literals, primitive, stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.0.4.0"; - sha256 = "64be9a8eb50a7ee912b2f7429fc1eb9184283a2b09a9d19fbc6de3e90bf3b9e5"; - revision = "1"; - editedCabalFile = "0vahkbzg745h8v2qby6q3k7f3ifqi8737pw4dqzps1qacnamwcmy"; - libraryHaskellDepends = [ - adjunctions base deepseq distributive finite-typelits - indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.13"; - sha256 = "0291d5778378acbbb1d6709ba57238f3d6ad551b8b2c6ca2b8177e68f748d617"; - revision = "2"; - editedCabalFile = "1p9vibym0ggr1rjyak0wphswdl4vik2b2w85afgvyj9zn32w28bw"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.6"; - sha256 = "be87d4a6f1005ee2d0de6adf521e05c9e83c441568a8a8b60c79efe24ae90235"; - revision = "1"; - editedCabalFile = "1bpxdliw7jmks1rkmb8hbr7hng3niz1pfc6n3s8ndj1acrksmfmv"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vectortiles" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , mtl, protocol-buffers, protocol-buffers-descriptor, stdenv, text - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "vectortiles"; - version = "1.4.0"; - sha256 = "393cc4f3d0f16c8cbf3c1fda99a6823463d4a855b77babae41249d4175e915c0"; - revision = "1"; - editedCabalFile = "1nlkhmfcvlzi96nzq8cpbqw5akrjahnrhl460q07vq6iyhibvf87"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable mtl protocol-buffers - protocol-buffers-descriptor text transformers unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/vectortiles"; - description = "GIS Vector Tiles, as defined by Mapbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.2.3.0"; - sha256 = "8b4ce5ab48aab17b6752dec4efba259964b7084ce10330198ae3ff7ea090f264"; - libraryHaskellDepends = [ base binary data-default-class deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.4.0.1"; - sha256 = "af46d833929f36757e0a50a733b06aa7fce72663c73d3a944f3752faadccec64"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/versions"; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "viewprof" = callPackage - ({ mkDerivation, base, brick, containers, directory, ghc-prof, lens - , scientific, stdenv, text, vector, vector-algorithms, vty - }: - mkDerivation { - pname = "viewprof"; - version = "0.0.0.26"; - sha256 = "8d849f457511229dbc0b4378ef7283622ffb7f9fae3c54680a589611ce08cd86"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base brick containers directory ghc-prof lens scientific text - vector vector-algorithms vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/viewprof"; - description = "Text-based interactive GHC .prof viewer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vinyl" = callPackage - ({ mkDerivation, array, base, ghc-prim, stdenv }: - mkDerivation { - pname = "vinyl"; - version = "0.8.1.1"; - sha256 = "d03a3c53026b91160b30f4f65db1e29bed157ca67f676674488218d7cfd48f3f"; - revision = "1"; - editedCabalFile = "0mb694y03r185r0p473zh6bl4j0l4na9km0r3x8czjil7x9yb0vr"; - libraryHaskellDepends = [ array base ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Extensible Records"; - license = stdenv.lib.licenses.mit; - }) {}; - "vivid" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hashable, MonadRandom, mtl, network, process, random - , random-shuffle, split, stdenv, stm, time, transformers - , utf8-string, vivid-osc, vivid-supercollider - }: - mkDerivation { - pname = "vivid"; - version = "0.3.0.2"; - sha256 = "00e0941c018fc467424d10a94ed568b48bf1fd226cd81a00ced319817d79bb99"; - libraryHaskellDepends = [ - base bytestring containers directory filepath hashable MonadRandom - mtl network process random random-shuffle split stm time - transformers utf8-string vivid-osc vivid-supercollider - ]; - doHaddock = false; - doCheck = false; - description = "Sound synthesis with SuperCollider"; - license = "GPL"; - }) {}; - "vivid-osc" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, stdenv, time }: - mkDerivation { - pname = "vivid-osc"; - version = "0.3.0.0"; - sha256 = "a728f85c60f6b8361d6b973f45c854485a2b061431869934df72c172a4884a94"; - libraryHaskellDepends = [ base binary bytestring cereal time ]; - doHaddock = false; - doCheck = false; - description = "Open Sound Control encode/decode"; - license = "GPL"; - }) {}; - "vivid-supercollider" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, split, stdenv - , utf8-string, vivid-osc - }: - mkDerivation { - pname = "vivid-supercollider"; - version = "0.3.0.0"; - sha256 = "83b79ebc06b4e6db34c91c850191e11488e108b4bf64aa85110c3a389cc4d395"; - libraryHaskellDepends = [ - base binary bytestring cereal split utf8-string vivid-osc - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of SuperCollider server specifications"; - license = "GPL"; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.2"; - sha256 = "d3fffe66a03e4b53db1e459edf75ad8402385a817cae415d857ec0b03ce0cf2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.21"; - sha256 = "5a79b8b5f3a2ead0db01cfbc34e145cfa8ff36315f0bb075e6d364ae0a937a5b"; - revision = "1"; - editedCabalFile = "18dyham92ksdvglmn8h955h6rq3pkyxi6bcgxg7jp3iwryz4zkja"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2.1"; - sha256 = "fef72486e3a9e01f564abfb680f6eac9b553f8195cae8ed903d960da55380815"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.6.2"; - sha256 = "d0b0a566be61ef4c8f800922a71dbc4de64287f8f73782b1461cd5d294c1dc3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cli" = callPackage - ({ mkDerivation, ansi-terminal, base, http-types, monads-tf - , network, options, socket-activation, stdenv, stm - , streaming-commons, unix, wai, wai-extra, warp, warp-tls - }: - mkDerivation { - pname = "wai-cli"; - version = "0.1.1"; - sha256 = "0643ebd8cbd4fcedd2076450b635d020aa2101b26e80f69ade10acd2c3252862"; - libraryHaskellDepends = [ - ansi-terminal base http-types monads-tf network options - socket-activation stm streaming-commons unix wai wai-extra warp - warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/wai-cli"; - description = "Command line runner for Wai apps (using Warp) with TLS, CGI, socket activation & graceful shutdown"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.6"; - sha256 = "cac61023184404ba5abf8d3739e51c4862561ba56f829f6f5e69dd64216aa986"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , iproute, network, old-locale, resourcet, stdenv - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.24.3"; - sha256 = "41e8f93ff03947623f5b447c71806f07819e1006f8267c84fd050e89fbafc439"; - revision = "1"; - editedCabalFile = "16gcs6ppr46vkf534nqir1b9rf63yhxnvyjp8lvk5pawmavgg3j1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types iproute network old-locale - resourcet streaming-commons text time transformers unix unix-compat - vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.2.4"; - sha256 = "0e9d9c61310890380dc87807ba1285bc1ab185914be6367ea4bb0a05d3df2900"; - revision = "1"; - editedCabalFile = "1mjxbzw3a5wybcp8s4x05rx91p2qaabpfci6w2k6p6nw4rjvfijv"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, case-insensitive - , fast-logger, http-types, network, stdenv, unix, unix-time, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.2"; - sha256 = "8dd4ff875d9ac2c115f5d45cc4375635a6c3e55a75c632ff3781d1fb086eb470"; - libraryHaskellDepends = [ - base byteorder bytestring case-insensitive fast-logger http-types - network unix unix-time wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching-lru" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , lrucache, stdenv, text, wai, wai-middleware-caching - }: - mkDerivation { - pname = "wai-middleware-caching-lru"; - version = "0.1.0.0"; - sha256 = "377dc842f5ad77b98e8a817e092c891ccfd0da978fb9f69a380f001a95da28d3"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types lrucache text wai - wai-middleware-caching - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching-lru#readme"; - description = "Initial project template from stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, text, transformers, void, wai, wai-conduit - }: - mkDerivation { - pname = "wai-middleware-consul"; - version = "0.1.0.2"; - sha256 = "d89d5a5bf0b08cf4fcd300d9e16c351a146119c34a9f31949498a874699c0763"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/wai-middleware-consul"; - description = "Wai Middleware for Consul"; - license = stdenv.lib.licenses.mit; - }) {}; - "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 - , stdenv, 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 = "1136b61a6ce7729093664b63a4ab70de73e356d34b0c7a8114b639b18626b058"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Middleware and utilities for using Atlassian Crowd authentication"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-metrics" = callPackage - ({ mkDerivation, base, ekg-core, http-types, stdenv, text, time - , wai - }: - mkDerivation { - pname = "wai-middleware-metrics"; - version = "0.2.4"; - sha256 = "e73685a748f0ba6d16956b500cdc23f3802f794f5259a3d6b8a5b885e928ec74"; - libraryHaskellDepends = [ base ekg-core http-types text time wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Helkafen/wai-middleware-metrics"; - description = "A WAI middleware to collect EKG request metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.2"; - sha256 = "0be4e9fd5252d526334e4e5885a2a75269aaaad560282b5c383c49e4d855befc"; - revision = "2"; - editedCabalFile = "17vq38dh7x1kqzfwla1s0rldd5hzm5mcrx49sjlzy8b66gd2n3ac"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-travisci" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptonite, http-types, stdenv, text, transformers, vault, wai - }: - mkDerivation { - pname = "wai-middleware-travisci"; - version = "0.1.0"; - sha256 = "bbc9f2fea4c0ee3d9a73fd13dd1a2a7ef85fc294bd311ed519c1e41a1fada828"; - revision = "2"; - editedCabalFile = "0j1k2y75gwbny72zf5nrwzanh7sn2plscnrjd4hw5npccxi4dchx"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptonite http-types text - transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/wai-middleware-travisci"; - description = "WAI middleware for authenticating webhook payloads from Travis CI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-predicates" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, case-insensitive, cookie, http-types - , singletons, stdenv, text, transformers, vault, vector, wai - }: - mkDerivation { - pname = "wai-predicates"; - version = "0.10.0"; - sha256 = "b7b3f6d147bbbf7a959c84235d0533763eda8fc4973b42f131fd47fe8ffbd7c2"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion case-insensitive - cookie http-types singletons text transformers vault vector wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/wai-predicates/"; - description = "WAI request predicates"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, cookie, data-default - , entropy, postgresql-simple, resource-pool, stdenv, text, time - , transformers, wai, wai-session - }: - mkDerivation { - pname = "wai-session-postgresql"; - version = "0.2.1.2"; - sha256 = "39d570dd99b4dc38e7803b60b4da4bc804244ed83b3fb250a6e2191a1419ac83"; - libraryHaskellDepends = [ - base bytestring cereal cookie data-default entropy - postgresql-simple resource-pool text time transformers wai - wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hce/postgresql-session#readme"; - description = "PostgreSQL backed Wai session store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-transformers" = callPackage - ({ mkDerivation, base, exceptions, extractable-singleton - , monad-control-aligned, stdenv, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "wai-transformers"; - version = "0.1.0"; - sha256 = "17a330c80bad8a95add5d6efb0a12c774c197a2d19f83e6b9dc08ab73d8c8592"; - libraryHaskellDepends = [ - base exceptions extractable-singleton monad-control-aligned - transformers wai wai-websockets websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/wai-transformers#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, time-manager, unix - , unix-compat, vault, wai, word8 - }: - mkDerivation { - pname = "warp"; - version = "3.2.28"; - sha256 = "872b4d7e56c5454e87f0f4f612318cda37fc3bfb3a62ad3f72625dc6a21a5c70"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - time-manager unix unix-compat vault wai word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.4.3"; - sha256 = "84cd511e32019ba5bef07b0e8a3550b2da06d534bf3df1673d14a5ec4a12f29d"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv - , streaming-commons, unix, wai, warp, warp-tls - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.5"; - sha256 = "b856932108364220abbba3cdebc86740a9b7436684f39936c6dda6a8d6ed73ac"; - libraryHaskellDepends = [ - base bytestring network streaming-commons unix wai warp warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , data-default-class, stdenv, transformers - }: - mkDerivation { - pname = "wave"; - version = "0.1.5"; - sha256 = "250a08b0c36870fb7fd0de7714818784eed0c4ff74377746dc1842967965fe0f"; - revision = "2"; - editedCabalFile = "0zs0mw42z9xzs1r935pd5dssf0x10qbkhxlpfknv0x75n2k0azzj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers data-default-class transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wcwidth" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "wcwidth"; - version = "0.0.2"; - sha256 = "ffc68736a3bbde3e8157710f29f4a99c0ca593c41194579c54a92c62f6c12ed8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/wcwidth/"; - description = "Native wcwidth"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-plugins" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, stm, text }: - mkDerivation { - pname = "web-plugins"; - version = "0.2.9.1"; - sha256 = "02ef4ea3d0fd52a6cbef8d63a516f6bacc47c8223c7a4ab4e834d6b211758b8f"; - libraryHaskellDepends = [ base containers mtl stm text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/clckwrks/web-plugins"; - description = "dynamic plugin system for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, mtl, parsec, split, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "web-routes"; - version = "0.27.14.2"; - sha256 = "af8b349c5d17de1d1accc30ab0a21537414a66e9d9515852098443e1d5d1f74a"; - libraryHaskellDepends = [ - base blaze-builder bytestring exceptions ghc-prim http-types mtl - parsec split text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; - description = "portable, type-safe URL routing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-hsp" = callPackage - ({ mkDerivation, base, hsp, stdenv, text, web-routes }: - mkDerivation { - pname = "web-routes-hsp"; - version = "0.24.6.1"; - sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; - libraryHaskellDepends = [ base hsp text web-routes ]; - doHaddock = false; - doCheck = false; - description = "Adds XMLGenerator instance for RouteT monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, stdenv, text, wai - , web-routes - }: - mkDerivation { - pname = "web-routes-wai"; - version = "0.24.3.1"; - sha256 = "8e1fd187686452af39929bc6b6a31319001859930744e22e2eee1fa9ad103049"; - libraryHaskellDepends = [ - base bytestring http-types text wai web-routes - ]; - doHaddock = false; - doCheck = false; - description = "Library for maintaining correctness of URLs within an application"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web3" = callPackage - ({ mkDerivation, aeson, async, base, basement, bytestring, cereal - , cryptonite, data-default, exceptions, generics-sop, http-client - , machines, memory, mtl, parsec, stdenv, tagged, template-haskell - , text, transformers - }: - mkDerivation { - pname = "web3"; - version = "0.7.3.0"; - sha256 = "af821da95766fcfc74a2dd3cfac867e651443011c2c8251dfad46f63f314c5b9"; - libraryHaskellDepends = [ - aeson async base basement bytestring cereal cryptonite data-default - exceptions generics-sop http-client machines memory mtl parsec - tagged template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/airalab/hs-web3#readme"; - description = "Ethereum API for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, data-default-class, directory, directory-tree - , exceptions, filepath, http-client, http-types, lifted-base - , monad-control, network, network-uri, scientific, stdenv - , temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.8.5"; - sha256 = "a8167a8b147411a929e81727a77bc31fcd7d93424442268913fb522e1932c1be"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webex-teams-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "webex-teams-api"; - version = "0.2.0.0"; - sha256 = "7756e38bd54d4dae1f70e7343259438f98bf58ff484ebc1c798166904178a40b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, data-default - , http-client, optparse-applicative, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-conduit"; - version = "0.2.0.0"; - sha256 = "0d7c7db689092656653d687adadeb92669b647b1d7adc2493d8ca08a87742e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base conduit webex-teams-api ]; - executableHaskellDepends = [ - base bytestring conduit data-default http-client - optparse-applicative text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Conduit wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-pipes" = callPackage - ({ mkDerivation, base, bytestring, data-default, http-client - , optparse-applicative, pipes, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-pipes"; - version = "0.2.0.0"; - sha256 = "77fad574346613e4989997852ca5972185a6321290caa718ce081be985a33100"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base pipes webex-teams-api ]; - executableHaskellDepends = [ - base bytestring data-default http-client optparse-applicative pipes - text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Pipes wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, containers - , entropy, network, random, SHA, stdenv, streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.5.2"; - sha256 = "912d256bce5d460f9185e843c9fa31c772602e6275e980bbd96e4ebda48b4c71"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive containers entropy network - random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "websockets-snap" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams - , mtl, snap-core, snap-server, stdenv, websockets - }: - mkDerivation { - pname = "websockets-snap"; - version = "0.10.3.0"; - sha256 = "b34a40583a2111bb44233b728095fac38b8de1ab74c027fc4ee92a65af373be4"; - libraryHaskellDepends = [ - base bytestring bytestring-builder io-streams mtl snap-core - snap-server websockets - ]; - doHaddock = false; - doCheck = false; - description = "Snap integration for the websockets library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.8"; - sha256 = "26204eeabb0cdce707548b3be451b1947567b0a13bcfe28bbdd7f48340c09cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.12"; - sha256 = "fdc8b86edac17d57a56a04f149f796f55bfffa04e3c8d32afeedf5775252827f"; - libraryHaskellDepends = [ - base deepseq mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.0.7"; - sha256 = "2d7796a5987af65f246e12fac22d1695ea2f74a6069588f220b86bdd75a80a63"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wikicfp-scraper" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scalpel-core, stdenv - , text, time - }: - mkDerivation { - pname = "wikicfp-scraper"; - version = "0.1.0.9"; - sha256 = "9e3cfd6dae669c34c8037cfc0996f371799297f4d08588702399413d8a4242e2"; - libraryHaskellDepends = [ - attoparsec base bytestring scalpel-core text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wikicfp-scraper"; - description = "Scrape WikiCFP web site"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.3"; - sha256 = "22bc0e4bd9dff23fb50869d3f3df67571cf428c7feaae6aba0b51adb09dc83b6"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.6"; - sha256 = "496dc4068050ff1e7fc585c6cced0b7633c0a82d6bdac6efc436b6d15b651d37"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wire-streams" = callPackage - ({ mkDerivation, base, binary, binary-parsers, bytestring - , io-streams, stdenv - }: - mkDerivation { - pname = "wire-streams"; - version = "0.1.1.0"; - sha256 = "96dffb70c08c89589881c96f199d271b55e4a5b3cc5be0f3e24e101858e2fb27"; - revision = "1"; - editedCabalFile = "1j7gpk3k82h0kxnhpv40jmnqxpnr0v0m4lj6bhpga81vlmznr088"; - libraryHaskellDepends = [ - base binary binary-parsers bytestring io-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/wire-streams"; - description = "Fast binary io-streams adapter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "withdependencies" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, profunctors - , stdenv - }: - mkDerivation { - pname = "withdependencies"; - version = "0.2.4.2"; - sha256 = "ff51ed5d94ec0051d61458ef38264e0c21119606377d27cc0d9a5a8ae32bf312"; - libraryHaskellDepends = [ - base conduit containers mtl profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/withdependencies"; - description = "Run computations that depend on one or more elements in a stream"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "witherable" = callPackage - ({ mkDerivation, base, base-orphans, containers, hashable, stdenv - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "witherable"; - version = "0.2"; - sha256 = "9ddb5a2b02fe0f7950742461dfabc9fc4aba245eddeec6afa9e1cd35fa16ea2d"; - libraryHaskellDepends = [ - base base-orphans containers hashable transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/witherable"; - description = "filterable traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.3"; - sha256 = "05650d7bf6dd0e6b87d0d7da6fb003601ce5d7b1f3d69571127ec3c9425b9bb2"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.1"; - sha256 = "6b662b244b2e318a2923dc7057d707369a29ea4a0e721b4710eac7239cc727af"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Pretty printer with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "cb76b445aa338cae075d149e752e53cf30e2480827eff4c157957b013f48b815"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "wl-pprint-extras" = callPackage - ({ mkDerivation, base, containers, nats, semigroupoids, semigroups - , stdenv, text, utf8-string - }: - mkDerivation { - pname = "wl-pprint-extras"; - version = "3.5.0.5"; - sha256 = "a9c21a85a729191fc422938a1f785d61be52f3a2923d8d79dade9b21e8e98d8f"; - libraryHaskellDepends = [ - base containers nats semigroupoids semigroups text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/wl-pprint-extras/"; - description = "A free monad based on the Wadler/Leijen pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-terminfo" = callPackage - ({ mkDerivation, base, bytestring, containers, nats, semigroups - , stdenv, terminfo, text, transformers, wl-pprint-extras - }: - mkDerivation { - pname = "wl-pprint-terminfo"; - version = "3.7.1.4"; - sha256 = "3cdaba571fc3f8c51e39d14773b23f0f8237bb2d33dbaf9230a98d4b2f388d20"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers nats semigroups terminfo text - transformers wl-pprint-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/wl-pprint-terminfo/"; - description = "A color pretty printer with terminfo support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-text" = callPackage - ({ mkDerivation, base, base-compat, stdenv, text }: - mkDerivation { - pname = "wl-pprint-text"; - version = "1.2.0.0"; - sha256 = "40dd4c2d2b8a2884616f3a240f01143d0aadd85f5988e5ee55a59ba6b2487c3c"; - libraryHaskellDepends = [ base base-compat text ]; - doHaddock = false; - doCheck = false; - description = "A Wadler/Leijen Pretty Printer for Text values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word-wrap" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "word-wrap"; - version = "0.4.1"; - sha256 = "eb72f91947c0c62cb862feb33cad9efdc5e720f456fa9ca68ef8ac9d1ec42c97"; - revision = "1"; - editedCabalFile = "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/word-wrap/"; - description = "A library for word-wrapping"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "0.1.0.0"; - sha256 = "737685799cdd97c2178c749a60906d15548b040570b90f1bbb4f259ba0e756a5"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.3.1"; - sha256 = "e33b4ea7a4008ed933744de13d98f6e8d0a54b8778ecf4e7c78812d4fb124ec4"; - revision = "2"; - editedCabalFile = "1rjz4012vp9q7a3szpm8a7rnn62d5cbbp1pp3qwfyi1fgyd5rp6c"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq-stringless" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string, wreq - }: - mkDerivation { - pname = "wreq-stringless"; - version = "0.5.9.1"; - sha256 = "502cd16163ff3356f5477ed7ab1b67147aa6bb445238055450df12b69697f235"; - libraryHaskellDepends = [ base bytestring text utf8-string wreq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/j-keck/wreq-stringless#readme"; - description = "Simple wrapper to use wreq without Strings"; - license = stdenv.lib.licenses.mit; - }) {}; - "writer-cps-full" = callPackage - ({ mkDerivation, base, stdenv, writer-cps-lens, writer-cps-morph - , writer-cps-mtl, writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-full"; - version = "0.1.0.0"; - sha256 = "ba51df5149470be6d70fd179f2af4cae30824a3a63528f1549a97f57610a5e95"; - revision = "1"; - editedCabalFile = "01zizhxk6kk5z3sqv5r7dp2yxbv5q87h5wgb5kbss60ncf042661"; - libraryHaskellDepends = [ - base writer-cps-lens writer-cps-morph writer-cps-mtl - writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-full#readme"; - description = "WriteT and RWST monad transformers (Reexport with all dependencies)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-lens" = callPackage - ({ mkDerivation, base, lens, profunctors, stdenv, transformers - , writer-cps-mtl, writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-lens"; - version = "0.1.0.1"; - sha256 = "2d6b8b6f4f86dcb3cc75bdd25d4ab186d09c2859023f3a6ef2171576b0d306ef"; - libraryHaskellDepends = [ - base lens profunctors transformers writer-cps-mtl - writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/writer-cps-lens#readme"; - description = "Lens instances for the stricter CPS WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-morph" = callPackage - ({ mkDerivation, base, mmorph, stdenv, writer-cps-transformers }: - mkDerivation { - pname = "writer-cps-morph"; - version = "0.1.0.2"; - sha256 = "e91d07b7dce83973c8ad8f489e161ea8092bd3c7d161f4e57cddeedd2f3fd5d8"; - revision = "1"; - editedCabalFile = "0dqpbpaidwa7ahk0n7pv397mv7ncr26p3vcrjh1xzl6vk26bdah5"; - libraryHaskellDepends = [ base mmorph writer-cps-transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/writer-cps-morph#readme"; - description = "MFunctor instance for CPS style WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-mtl" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-mtl"; - version = "0.1.1.5"; - sha256 = "1557f5a4ee9d320f62acd0aee99164774327bdb3578e1f63dd695cc839de5627"; - libraryHaskellDepends = [ - base mtl transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-mtl#readme"; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-transformers" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "writer-cps-transformers"; - version = "0.1.1.4"; - sha256 = "d6f08b4e20399cec93d8f61fd99c2fbaf0abb67364c4a9f713c5fdab110185fd"; - revision = "1"; - editedCabalFile = "16pqi3zraghvmrimdikfpf92w00w9a8zh7av2150mp0ib6dny31a"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-transformers#readme"; - description = "WriteT and RWST monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ws" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-uri, base - , bytestring, exceptions, haskeline, mtl, network - , optparse-applicative, stdenv, strict, text, vector, websockets - , wuss - }: - mkDerivation { - pname = "ws"; - version = "0.0.4"; - sha256 = "d88080c45551cccb8e8de012795852d9ca3c98b97519f2b2e81118d18f3a5f02"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec-uri base bytestring exceptions haskeline mtl - network text websockets wuss - ]; - executableHaskellDepends = [ - async attoparsec attoparsec-uri base bytestring exceptions - haskeline mtl network optparse-applicative strict text vector - websockets wuss - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/ws#readme"; - description = "A simple CLI utility for interacting with a websocket"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.11"; - sha256 = "e06ee98d38d2083f76d82b21ac6d249610102e8f8a828c8a04ab950c507c98d6"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.5"; - sha256 = "b1b0fcbb4aa0d749ed2b54710c2ebd6d900cb932108ad14f97640cf4ca60c7c8"; - revision = "1"; - editedCabalFile = "1z98llpggldy4yb7afcsn3r3q4vklvx2pqyrhy9fir5y2yd5l601"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.7"; - sha256 = "9786356c8bfdf631ea018c3244d0854c6db2cb24e583891ea553961443f61ef9"; - revision = "1"; - editedCabalFile = "04h2h8kdzhd2fp3w4a834xc1n88b1jgrxlgcsynfn0iwpbsb41x7"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.11"; - sha256 = "f94321cbcc4a534adf5889ae6950f3673e38b62b89b6970b477f502ce987d19b"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, hspec, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.5.1"; - sha256 = "c054d631fc0a7258cda979087d462e647a38e8442d0932d6463161407191bbad"; - revision = "1"; - editedCabalFile = "0d9w9x6lwhvshy4dbvd80ckb9p0g4vcmzy6kvwai9rqmszf89cnh"; - libraryHaskellDepends = [ - array base bytestring deepseq hspec mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xenstore" = callPackage - ({ mkDerivation, base, bytestring, cereal, mtl, network, stdenv }: - mkDerivation { - pname = "xenstore"; - version = "0.1.1"; - sha256 = "c2b538c9ce6716f4a1b4c0cb63ed5c6e5ee3e69e80dbb7826ee7f5392f45e874"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring cereal mtl network ]; - doHaddock = false; - doCheck = false; - description = "Xenstore client access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xhtml" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "xhtml"; - version = "3000.2.2.1"; - sha256 = "5cc869013ecc07ff68b3f873c0ab7f03b943fd7fa16d6f8725d4601b2f9f6924"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/xhtml"; - description = "An XHTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.1"; - sha256 = "097711246a78389bdde19484d422ffb2248d46ab62248e4ca653c50e12ff0928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xlsx" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search - , bytestring, conduit, containers, data-default, deepseq, errors - , extra, filepath, lens, mtl, network-uri, old-locale, safe, stdenv - , text, time, transformers, vector, xeno, xml-conduit, zip-archive - , zlib - }: - mkDerivation { - pname = "xlsx"; - version = "0.7.2"; - sha256 = "b2560467ea5639d7bbd97ecf492f2e2cc9fa34e0b05fc5d55243304bbe7f1103"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary-search bytestring conduit - containers data-default deepseq errors extra filepath lens mtl - network-uri old-locale safe text time transformers vector xeno - xml-conduit zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qrilka/xlsx"; - description = "Simple and incomplete Excel file parser/writer"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3.1"; - sha256 = "8d743ff8e489dc52fd256b18b75c21689945cfcb52481f5ca0aa6df50178a3e2"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, resourcet, stdenv, text - , transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.8.0.1"; - sha256 = "980b2f13ab8f54d8c2cbf92d186d5fac6c6ead42197c6687bd81e2fea2afef9c"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq resourcet text - transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-parse" = callPackage - ({ mkDerivation, base, conduit, conduit-parse, containers - , exceptions, parsers, stdenv, text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-parse"; - version = "0.3.1.2"; - sha256 = "c1aae117720128195dbbf2ce196271e4ca2973163c6a03a1b0ead3b32f936308"; - revision = "1"; - editedCabalFile = "0jnnr4z3c6rq2dz0ldiic5zwkrp36igf6gip11qrm9ss2pk9khbl"; - libraryHaskellDepends = [ - base conduit conduit-parse containers exceptions parsers text - xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/xml-conduit-parse"; - description = "Streaming XML parser based on conduits"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0"; - sha256 = "7bcec0aad83e72c2870efd3327553b3d78f6332cf01c12ad4b67c02f499015a3"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-isogen" = callPackage - ({ mkDerivation, base, deepseq, dom-parser, lens, mtl, QuickCheck - , semigroups, stdenv, template-haskell, text, xml-conduit - , xml-conduit-writer - }: - mkDerivation { - pname = "xml-isogen"; - version = "0.3.0"; - sha256 = "9f812d7bb5dd280e62f5013fd77af27e3710fb1a76dcf7a12f0abbfae5400a17"; - libraryHaskellDepends = [ - base deepseq dom-parser lens mtl QuickCheck semigroups - template-haskell text xml-conduit xml-conduit-writer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/xml-isogen"; - description = "Generate XML-isomorphic types"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.1.6.3"; - sha256 = "4dd7f1a91fbb12ae52d5a14badd9f38c0f0d7556f08ee77d79a67cc546dcb1e8"; - revision = "2"; - editedCabalFile = "1phba1j6ggxfsq4ivhd5wibzw1b9hwppqmgichyj3xg9z3widmnl"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlbf" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "xmlbf"; - version = "0.4.1"; - sha256 = "189a02e8b54c3576c3a919799def7b83c0e602b222264901c644c941c34fdc75"; - revision = "1"; - editedCabalFile = "0j5yvsz0ib5w80wp1gc0li376adw8l861xvf5paa2hdq55jkxvi6"; - libraryHaskellDepends = [ - base bytestring containers text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlbf-xeno" = callPackage - ({ mkDerivation, base, bytestring, html-entities, stdenv, text - , unordered-containers, xeno, xmlbf - }: - mkDerivation { - pname = "xmlbf-xeno"; - version = "0.1.1"; - sha256 = "6c1c4e419240c1e480d5543e89883cd2a356c1bb470a452f935424a80367dd32"; - libraryHaskellDepends = [ - base bytestring html-entities text unordered-containers xeno xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "xeno backend support for the xmlbf library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.6"; - sha256 = "b385eea5652c798b701c627dce8b327c3d6cbfd8c92e1e18e7118862d4d0e2b4"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/haskell-xss-sanitize#readme"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql" = callPackage - ({ mkDerivation, base, stdenv, yeshql-core, yeshql-hdbc }: - mkDerivation { - pname = "yeshql"; - version = "4.1.0.1"; - sha256 = "c4c590682d6581cf49893bdcd3c2d0e4046d81240a7f5abd7bcaa17037c29db6"; - libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-core" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, parsec - , stdenv, template-haskell - }: - mkDerivation { - pname = "yeshql-core"; - version = "4.1.0.2"; - sha256 = "c0db2a2f415846236e9c38a652dc38e56f2a68baa72b61bdf5c5238f1b6317fe"; - libraryHaskellDepends = [ - base containers convertible filepath parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (core)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-hdbc" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, HDBC - , parsec, stdenv, template-haskell, yeshql-core - }: - mkDerivation { - pname = "yeshql-hdbc"; - version = "4.1.0.2"; - sha256 = "f4ac521c6970d9a06d321e9f2b1143e6901c9875314281505aafcda3bd0352dc"; - libraryHaskellDepends = [ - base containers convertible filepath HDBC parsec template-haskell - yeshql-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (HDBC backend)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , conduit, data-default-class, directory, fast-logger, monad-logger - , resourcet, semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, transformers, unix, unordered-containers - , wai, wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0"; - sha256 = "8a242ffe1df10bc2c5dffb6e255ad21b11e96a9c4794bac20504b67f973da773"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring conduit - data-default-class directory fast-logger monad-logger resourcet - semigroups shakespeare streaming-commons template-haskell text - transformers unix unordered-containers wai wai-extra wai-logger - warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-alerts" = callPackage - ({ mkDerivation, alerts, base, blaze-html, blaze-markup, safe - , stdenv, text, yesod-core - }: - mkDerivation { - pname = "yesod-alerts"; - version = "0.1.2.0"; - sha256 = "8e52c8a7ec9cdbe7cdc06f39ea4e27b852be0391cf78652e349f0f2c169b146f"; - libraryHaskellDepends = [ - alerts base blaze-html blaze-markup safe text yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/yesod-alerts#readme"; - description = "Alert messages for the Yesod framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, bytestring, conduit, conduit-extra, containers - , cryptonite, data-default, email-validate, file-embed, http-client - , http-client-tls, http-conduit, http-types, memory, network-uri - , nonce, persistent, random, safe, shakespeare, stdenv - , template-haskell, text, time, transformers, unliftio - , unliftio-core, unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.5"; - sha256 = "b9dd963473a4d18d6a6921c0c321d86c77f264d8be2849b4aadcfa8f3ac337b3"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory network-uri nonce persistent random safe shakespeare - template-haskell text time transformers unliftio unliftio-core - unordered-containers wai yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, fb, http-conduit - , resourcet, shakespeare, stdenv, text, time, transformers - , unliftio, wai, yesod-auth, yesod-core, yesod-fb - }: - mkDerivation { - pname = "yesod-auth-fb"; - version = "1.9.1"; - sha256 = "11c836c7f17fa7d6f6ed93ef6037889832e75162cf3773398d7687c26287c88c"; - libraryHaskellDepends = [ - aeson base bytestring conduit fb http-conduit resourcet shakespeare - text time transformers unliftio wai yesod-auth yesod-core yesod-fb - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-auth-fb"; - description = "Authentication backend for Yesod using Facebook"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7.1"; - sha256 = "0d6f27a49aa862af8f4d1a84f8fe540300e42f9208728fba03a7996a5517dfe5"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , bytestring, Cabal, conduit, conduit-extra, containers - , data-default-class, directory, file-embed, filepath, fsnotify - , http-client, http-client-tls, http-reverse-proxy, http-types - , network, optparse-applicative, parsec, process, project-template - , resourcet, say, shakespeare, split, stdenv, stm - , streaming-commons, tar, template-haskell, text, time - , transformers, transformers-compat, unix-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.3"; - sha256 = "e4db295b4c651c205a1730df38501c217d9b600f3dbc1eea21d5fa47e832aedc"; - revision = "4"; - editedCabalFile = "1iw9m3z6m4n9dlwamf1kwr7pp2wpk6awf1m63zjkgw5j4vwxlcpg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec base base64-bytestring blaze-builder bytestring Cabal - conduit conduit-extra containers data-default-class directory - file-embed filepath fsnotify http-client http-client-tls - http-reverse-proxy http-types network optparse-applicative parsec - process project-template resourcet say shakespeare split stm - streaming-commons tar template-haskell text time transformers - transformers-compat unix-compat unliftio unordered-containers wai - wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , byteable, bytestring, case-insensitive, cereal, clientsession - , conduit, conduit-extra, containers, cookie, deepseq, fast-logger - , http-types, monad-logger, mtl, parsec, path-pieces, primitive - , random, resourcet, rio, shakespeare, stdenv, template-haskell - , text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.9"; - sha256 = "ca64d08184c7775e2a985c903e74f32efedcf6c217b3370ca7e136082eeb8e4b"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup byteable bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq fast-logger http-types monad-logger mtl - parsec path-pieces primitive random resourcet rio shakespeare - template-haskell text time transformers unix-compat unliftio - unordered-containers vector wai wai-extra wai-logger warp word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-csp" = callPackage - ({ mkDerivation, attoparsec, base, case-insensitive - , mono-traversable, network-uri, semigroups, stdenv, syb - , template-haskell, text, wai, yesod, yesod-core - }: - mkDerivation { - pname = "yesod-csp"; - version = "0.2.4.0"; - sha256 = "e05d31857d6d0e8aececdd83b6a896267ecab2c29426d559e3dafb259eac92a5"; - libraryHaskellDepends = [ - attoparsec base case-insensitive mono-traversable network-uri - semigroups syb template-haskell text wai yesod yesod-core - ]; - doHaddock = false; - doCheck = false; - description = "Add CSP headers to Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-eventsource" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, stdenv, transformers - , wai, wai-eventsource, wai-extra, yesod-core - }: - mkDerivation { - pname = "yesod-eventsource"; - version = "1.6.0"; - sha256 = "6fceeca34d5e80c8a0d65ab95fab3c53807d1f18eb506abdef67a8f70d0e418b"; - libraryHaskellDepends = [ - base blaze-builder conduit transformers wai wai-eventsource - wai-extra yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Server-sent events support for Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, crypto-api, fb - , http-client-tls, http-conduit, stdenv, text, wai, yesod-core - }: - mkDerivation { - pname = "yesod-fb"; - version = "0.5.0"; - sha256 = "de375004c12e89eec47738d60465c7c63b5f0c7bfc3591c70a35522fdc0841db"; - libraryHaskellDepends = [ - aeson base bytestring conduit crypto-api fb http-client-tls - http-conduit text wai yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-fb"; - description = "Useful glue functions between the fb library and Yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, text, time, transformers, wai, xss-sanitize - , yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.3"; - sha256 = "40d7d85039fb2bb3081f695cfed4a6d4f8adac413d86dd11ccfc948b677e9b97"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare text time - transformers wai xss-sanitize yesod-core yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form-bootstrap4" = callPackage - ({ mkDerivation, base, stdenv, text, yesod-core, yesod-form }: - mkDerivation { - pname = "yesod-form-bootstrap4"; - version = "1.0.2"; - sha256 = "98695338541fab09f27c4df2083ed15f257307d315b0c084e227a265bb99c878"; - libraryHaskellDepends = [ base text yesod-core yesod-form ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-form-bootstrap4#readme"; - description = "renderBootstrap4"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrepo" = callPackage - ({ mkDerivation, base, directory, http-types, process, stdenv - , temporary, text, unliftio, wai, yesod-core - }: - mkDerivation { - pname = "yesod-gitrepo"; - version = "0.3.0"; - sha256 = "b03c67c506bc3fc402cb41759d69f2c3159af47959cbd964cb6531996084981e"; - libraryHaskellDepends = [ - base directory http-types process temporary text unliftio wai - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yesod-gitrepo#readme"; - description = "Host content provided by a Git repo"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, gitrev, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.0.0"; - sha256 = "df9f374e6099e55eb62cc273451605ce8746785a293e76115d25002355fee052"; - revision = "1"; - editedCabalFile = "1b0df34lz569gnwbbz0p20dml6bi2nbva9wfdsxyvva0dhvxjaz5"; - libraryHaskellDepends = [ - aeson base gitrev template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.6.1.0"; - sha256 = "6d0b97592d74ca45e204f1876fb113a4830c5f35612b876175169af3d2f79615"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-paginator" = callPackage - ({ mkDerivation, base, blaze-markup, path-pieces, persistent, safe - , stdenv, text, transformers, uri-encode, yesod-core - }: - mkDerivation { - pname = "yesod-paginator"; - version = "1.1.0.1"; - sha256 = "6e241fb7e55debfe3b674e62faeb02967abb982cd77295847085423d23230b90"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-markup path-pieces persistent safe text transformers - uri-encode yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pbrisbin/yesod-paginator"; - description = "A pagination approach for yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0.1"; - sha256 = "748acc0a08e371548920a1b5e2e8b2c95b95014becd63acf259712d306a9bd4f"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-recaptcha2" = callPackage - ({ mkDerivation, base, classy-prelude-yesod, http-conduit, stdenv - , yesod-auth - }: - mkDerivation { - pname = "yesod-recaptcha2"; - version = "0.2.4"; - sha256 = "2848ecd3fd581cb3beba406640417add2def248c1fc7f20b6ba6a62d220181ab"; - libraryHaskellDepends = [ - base classy-prelude-yesod http-conduit yesod-auth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-recaptcha2#readme"; - description = "yesod recaptcha2"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, conduit, containers, cryptonite - , cryptonite-conduit, css-text, data-default, directory, file-embed - , filepath, hashable, hjsmin, http-types, memory, mime-types - , process, stdenv, template-haskell, text, transformers - , unix-compat, unordered-containers, wai, wai-app-static - , yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0.1"; - sha256 = "abe7e802f5efd064823b827074fea3613f4ba46115afedb5e2d96f919dcfa0c9"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder bytestring - conduit containers cryptonite cryptonite-conduit css-text - data-default directory file-embed filepath hashable hjsmin - http-types memory mime-types process template-haskell text - transformers unix-compat unordered-containers wai wai-app-static - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html - , bytestring, case-insensitive, conduit, containers, cookie - , hspec-core, html-conduit, http-types, HUnit, network, pretty-show - , semigroups, stdenv, text, time, transformers, wai, wai-extra - , xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.5.1"; - sha256 = "523f2f1f8e38a83824433b5c03382f196c8d9f2512e1979650962eb9ac211520"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-html bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit network pretty-show semigroups text time - transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-text-markdown" = callPackage - ({ mkDerivation, aeson, base, markdown, persistent, shakespeare - , stdenv, text, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-text-markdown"; - version = "0.1.10"; - sha256 = "3cee8b3d8d84f30e8b825076d650afb05e79ebd22f34a21fc7ad7f45e1637ddc"; - libraryHaskellDepends = [ - aeson base markdown persistent shakespeare text yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - description = "Yesod support for Text.Markdown."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0.1"; - sha256 = "86c947aa0354c8b98ec7364b51df2ba98ac7c8e184d6ebfcf4bfb9b2e8c381cc"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai-websockets websockets - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-language" = callPackage - ({ mkDerivation, alex, array, base, binary, containers - , data-default, hashable, microlens-platform, oo-prototypes - , pointedlist, regex-base, regex-tdfa, stdenv, template-haskell - , transformers-base, unordered-containers - }: - mkDerivation { - pname = "yi-language"; - version = "0.17.1"; - sha256 = "4aee628b278e9d6b2b2e92a8974696ce6de10c30ef137ababb709bdca193b69e"; - libraryHaskellDepends = [ - array base binary containers data-default hashable - microlens-platform oo-prototypes pointedlist regex-base regex-tdfa - template-haskell transformers-base unordered-containers - ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/yi#readme"; - description = "Collection of language-related Yi libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.5"; - sha256 = "30020283ef7b241787bae810b1f563bd2c7a6ada69a582b8d7cc020365015f91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.4"; - sha256 = "38cdc62d9673b8b40999de69da2ec60dab7a65fb1c22133ecd54e0a2ec61d5d5"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.7.0"; - sha256 = "58d4504ee607cb681fc3da2474ed92afaefdb2dc34752b145aa9f746ab29079f"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.1.0"; - sha256 = "65942d6a2ccef6d2b78183f250a6d8b6c04d081ab3df1f39215de0a76a26d9dc"; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, Cabal, containers - , digest, directory, filepath, mtl, pretty, stdenv, text, time - , unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.3.3"; - sha256 = "988adee77c806e0b497929b24d5526ea68bd3297427da0d0b30b99c094efc84d"; - revision = "1"; - editedCabalFile = "0z0s2abc9bywapjrs8frgz6qdnc0yfc9ac9lyj2p5y2r61jp3y2k"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.1.1"; - sha256 = "b88ce2ad46b218a7f0f31ffe02f61105c0ad2b35bf3a171a8e44f8727590d2f2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, profunctors - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.2.5"; - sha256 = "2d127772564655df0cb99d5191b91a555797e66e535d0b8b4f5ed4d54097c085"; - revision = "3"; - editedCabalFile = "0y0klc2jaj611cjvmqi95dyj9yvribf9xhibn1andrz5rs6ysz3p"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2"; - sha256 = "0dcc7d925769bdbeb323f83b66884101084167501f11d74d21eb9bc515707fed"; - revision = "1"; - editedCabalFile = "1wihqz5arcv5hylwpvjh5ajny88wbys5kas8ic1bchi5k19nvkfa"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.0.0"; - sha256 = "0875840799d987cf8f8dd5e0a7686978084b3088c07123e66f6f88561f474bff"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebookexperimental/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ztail" = callPackage - ({ mkDerivation, array, base, bytestring, filepath, hinotify - , process, regex-posix, stdenv, time, unix, unordered-containers - }: - mkDerivation { - pname = "ztail"; - version = "1.2.0.2"; - sha256 = "a14341d51da6dbef9f0edcdefe185dbd7726880ec4e230855fb9871de7c07717"; - revision = "1"; - editedCabalFile = "0d0cpgb0v849zxl12c2gkm3x4nmyfycka1pcfix43lawx62rky8s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base bytestring filepath hinotify process regex-posix time - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Multi-file, colored, filtered log tailer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/ghc864.nix b/generated/stable/stack2nix/ghc864.nix deleted file mode 100644 index 7f714bb..0000000 --- a/generated/stable/stack2nix/ghc864.nix +++ /dev/null @@ -1,40226 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc864 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hoopl = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.2"; - sha256 = "b8364da380f5f1d85d13e427851a153be2809e1838d16393e37566f34b384b87"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Allure" = callPackage - ({ mkDerivation, async, base, containers, enummapset, filepath - , LambdaHack, optparse-applicative, random, stdenv - , template-haskell, text, transformers, zlib - }: - mkDerivation { - pname = "Allure"; - version = "0.8.3.0"; - sha256 = "6b83013281da6ccc5f0bf4c483a53acdbff7679c7234a1dfa57261c45a8cf8fb"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - async base containers enummapset filepath LambdaHack - optparse-applicative random template-haskell text transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://allureofthestars.com"; - description = "Near-future Sci-Fi roguelike and tactical squad game"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "2.4.1.0"; - sha256 = "736a902da9fb2c826e75e9f7b4b591983bf58a6a62c8cae9866f6a9d5ace3594"; - revision = "2"; - editedCabalFile = "04kg5xh8yabmp1ymk32gw2r66l76338rsglq8i4j2913bhq23vwa"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart" = callPackage - ({ mkDerivation, array, base, colour, data-default-class, lens, mtl - , old-locale, operational, stdenv, time, vector - }: - mkDerivation { - pname = "Chart"; - version = "1.9.1"; - sha256 = "34a1c7f2dd46029efa471689ec3b8ab63321223fbe23d86a5ab4bb986619c7de"; - revision = "1"; - editedCabalFile = "1v7qip375kzn9k9k0c79jj55xigi05s5dl318smqazjdlyj55q55"; - libraryHaskellDepends = [ - array base colour data-default-class lens mtl old-locale - operational time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "A library for generating 2D Charts and Plots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart-diagrams" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour - , containers, data-default-class, diagrams-core, diagrams-lib - , diagrams-postscript, diagrams-svg, lens, mtl, old-locale - , operational, stdenv, svg-builder, SVGFonts, text, time - }: - mkDerivation { - pname = "Chart-diagrams"; - version = "1.9.2"; - sha256 = "96b4bfd1d2f9fae2962defc4f6b73e0490acebb590cfbb3997f12a82260ba52a"; - revision = "1"; - editedCabalFile = "0h57ds1j43h4knnwb75dgsgw90mz7lf8k590dkfdrgsszpb9as50"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-markup bytestring Chart colour containers - data-default-class diagrams-core diagrams-lib diagrams-postscript - diagrams-svg lens mtl old-locale operational svg-builder SVGFonts - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "Diagrams backend for Charts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.3"; - sha256 = "24f49c63bd603b7757569ac0f5842ac30dea2bfcce64d157162a952e576e3991"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DBFunctor" = callPackage - ({ mkDerivation, base, bytestring, cassava, cereal, containers - , deepseq, either, MissingH, stdenv, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "DBFunctor"; - version = "0.1.1.1"; - sha256 = "640686bb59b95eec912dc96b15da298192d4168719c1adedddc5d3e4e4ab7858"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cassava cereal containers deepseq either MissingH - text time transformers unordered-containers vector - ]; - executableHaskellDepends = [ - base bytestring cassava cereal containers deepseq either MissingH - text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nkarag/haskell-DBFunctor#readme"; - description = "DBFunctor - Functional Data Management => ETL/ELT Data Processing in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.3.4"; - sha256 = "77b7daec5a79ade779706748f11b4d9b8f805e57a68e7406c3b5a1dee16e0c2f"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.13.0.1"; - sha256 = "1e60bcfda0d7441ce2886d7f3523e017e74c225506dd9d0e7a3c012959943899"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FloatingHex" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "FloatingHex"; - version = "0.4"; - sha256 = "b277054db48d2dec62e3831586f218cbe0a056dec44dbc032e9a73087425a24c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Read and write hexadecimal floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.4"; - sha256 = "43d3878154d543a337b0cc45f40dcd57153e47fca39122bac0e5ed81b6bc5b3d"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.2.1.0"; - sha256 = "31c022e0ad63f259ff9fa582a235924786e929a95b52efae10a3d29fef7cb6a6"; - revision = "2"; - editedCabalFile = "0xlby7483dv33c13f44kkvmai186g72jhxmcq8749s1hyxi6fqnb"; - libraryHaskellDepends = [ base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.14"; - sha256 = "5cf8f7700a6b6ac33e39b2d7bd300679a245ff7c1498eb423901134f9d302106"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.9.3"; - sha256 = "3a77853eba3700c5346cd6d4008302e70dca93a7e8ac0d679cf41b16c7a4c9e8"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HCodecs" = callPackage - ({ mkDerivation, array, base, bytestring, QuickCheck, random - , semigroups, stdenv - }: - mkDerivation { - pname = "HCodecs"; - version = "0.5.1"; - sha256 = "a724616b79ac12c2d661dc3f54cfa0e7d530d1ba3eafa1e6c3e7116e035a3143"; - libraryHaskellDepends = [ - array base bytestring QuickCheck random semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; - description = "A library to read, write and manipulate MIDI, WAVE, and SoundFont2 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC" = callPackage - ({ mkDerivation, base, bytestring, containers, convertible, mtl - , old-time, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "HDBC"; - version = "2.4.0.2"; - sha256 = "670757fd674b6caf2f456034bdcb54812af2cdf2a32465d7f4b7f0baa377db5a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers convertible mtl old-time text time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdbc/hdbc"; - description = "Haskell Database Connectivity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC-mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, HDBC, mysqlclient - , openssl, stdenv, time, utf8-string, zlib - }: - mkDerivation { - pname = "HDBC-mysql"; - version = "0.7.1.0"; - sha256 = "81c985d4a243c965930fb412b3175ca799ba66985f8b6844014fd600df1da7cf"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring HDBC time utf8-string ]; - librarySystemDepends = [ mysqlclient openssl zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ryantm/hdbc-mysql"; - description = "MySQL driver for HDBC"; - license = "LGPL"; - }) {inherit (pkgs) mysqlclient; inherit (pkgs) openssl; -inherit (pkgs) zlib;}; - "HDBC-session" = callPackage - ({ mkDerivation, base, HDBC, stdenv }: - mkDerivation { - pname = "HDBC-session"; - version = "0.1.2.0"; - sha256 = "aa057f18bbc9d2f9876152246682f546c9cf140192515c7c23b5be2fccc296e3"; - libraryHaskellDepends = [ base HDBC ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Bracketed connection for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSet" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, stdenv }: - mkDerivation { - pname = "HSet"; - version = "0.0.1"; - sha256 = "eba93be5a76581585ae33af6babe9c2718fae307d41989cd36a605d9b0e8d16a"; - libraryHaskellDepends = [ base containers hashable hashtables ]; - doHaddock = false; - doCheck = false; - description = "Faux heterogeneous sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.1.3.22"; - sha256 = "8f348ff87d7312a5a41d99a1df558df72592aa34f4520c4b03fad4376e0f326e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.13.2.5"; - sha256 = "365af323c6254ec5c33745e1d42ceeba0940992a43f523608c4dc64d7c49aece"; - revision = "1"; - editedCabalFile = "0l18mp06jjwpjbnvj548naas1xhnc46c8l0pbgzi3bm6siq5hhv6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.13"; - sha256 = "a718d3db22139f7ede9c8ab71a5d0702720716dffc288072dfa499fc74356675"; - revision = "1"; - editedCabalFile = "07wn0skwbmms9g5lyzaaal6cbjffvisampv85r934cqh7kl9wkzh"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaskellNet" = callPackage - ({ mkDerivation, array, base, base64-string, bytestring, cryptohash - , mime-mail, mtl, network, old-time, pretty, stdenv, text - }: - mkDerivation { - pname = "HaskellNet"; - version = "0.5.1"; - sha256 = "3245d31ad76f9f9013a2f6e2285d73ed37376eeb073c100b9a6d19e87f0ca838"; - revision = "1"; - editedCabalFile = "12p3v58jhr54yzsmqgza3rbrp19w2iq5m43g568hcx20n7zwzwjk"; - libraryHaskellDepends = [ - array base base64-string bytestring cryptohash mime-mail mtl - network old-time pretty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/HaskellNet"; - description = "Client support for POP3, SMTP, and IMAP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, strict - , template-haskell, terminal-size, text, transformers, uniplate - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "Hoed"; - version = "0.5.1"; - sha256 = "a8f6dc9717e15642f00cd84a8d1030ac6a7c7870f7015e380bd728a843c3f4e7"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MaartenFaddegon/Hoed"; - description = "Lightweight algorithmic debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.16"; - sha256 = "29e84933c5f55d2fb9ebd72d44a542fcc8950a3db06c1e1ea0c10fba17cc6bc9"; - revision = "2"; - editedCabalFile = "1cg28q793cg4w8c574yzzfxcn1r8595vs77mlrkw68j8hzgs6lj3"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsOpenSSL-x509-system" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, stdenv, unix }: - mkDerivation { - pname = "HsOpenSSL-x509-system"; - version = "0.1.0.3"; - sha256 = "5bdcb7ae2faba07a374109fea0a1431ae09d080f8574e60ab7a351b46f931f92"; - libraryHaskellDepends = [ base bytestring HsOpenSSL unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/HsOpenSSL-x509-system"; - description = "Use the system's native CA certificate store with HsOpenSSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsYAML" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "HsYAML"; - version = "0.1.1.3"; - sha256 = "5dd03c26c4d82e9cebab4ba6104389790aa0dbd411eafcd56245c7b65ae5932b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/HsYAML"; - description = "Pure Haskell YAML 1.2 parser"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.1.2"; - sha256 = "8bf3f9f1367f193552213473481d92440e3e8038cf375bbfe942fb404894f27e"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.1.1"; - sha256 = "e8955ae2accc7529b41893a540d0c6943d118554d25857c1f6721f0777dfb46d"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.3.3"; - sha256 = "2c04b5b6504a780e9363dc8894837976e18ce0623182e38aab6bc5e76c40b3c4"; - revision = "4"; - editedCabalFile = "1g5rnm670gvshf0l5a2fxpgw9f07mhpkxgzqrq2zahqbz810sbjs"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.4.0"; - sha256 = "0cbff986501adc734742b41414e5d0bb414a02cd2d6ee19be037700e90168ca6"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LambdaHack" = callPackage - ({ mkDerivation, assert-failure, async, base, base-compat, binary - , bytestring, containers, deepseq, directory, enummapset, filepath - , ghc-prim, hashable, hsini, keys, miniutter, optparse-applicative - , pretty-show, random, sdl2, sdl2-ttf, stdenv, stm - , template-haskell, text, time, transformers, unordered-containers - , vector, vector-binary-instances, zlib - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.8.3.0"; - sha256 = "5a9b23a893ba809d8f7ff1ef810d4d542fcd7419876aef4208cf237a3662076c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-prim hashable hsini keys - miniutter optparse-applicative pretty-show random sdl2 sdl2-ttf stm - text time transformers unordered-containers vector - vector-binary-instances zlib - ]; - executableHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-prim hashable hsini keys - miniutter optparse-applicative pretty-show random stm - template-haskell text time transformers unordered-containers vector - vector-binary-instances zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://lambdahack.github.io"; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6"; - sha256 = "c1cdec79a5f585a5839eea26a2afe6a37aab5ed2f402a16e7d59fe9a4e925a9a"; - revision = "2"; - editedCabalFile = "1mca2r4gjznqdh4kck5cjkn53isgkhvkf3ri09qsn7nsssvgki0g"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JohnLato/listlike"; - description = "Generic support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListTree" = callPackage - ({ mkDerivation, base, directory, filepath, List, stdenv - , transformers - }: - mkDerivation { - pname = "ListTree"; - version = "0.2.3"; - sha256 = "0b3aa1d34193d9f7f90b4afeea681a79ab1595e8e651cae093f8fca3c50f60cc"; - libraryHaskellDepends = [ - base directory filepath List transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator/tree"; - description = "Trees and monadic trees expressed as monadic lists where the underlying monad is a list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.9"; - sha256 = "1d6045b8fdf7b89ed6b495e535613f5091cdfc9cdfe05a862207e76ce205f794"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MissingH" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath - , hslogger, HUnit, mtl, network, old-locale, old-time, parsec - , process, random, regex-compat, stdenv, time, unix - }: - mkDerivation { - pname = "MissingH"; - version = "1.4.1.0"; - sha256 = "49ecd2df3ad45d6da64a984e506cd0e2ca02c238a743d757feeea8c4cddce0ca"; - revision = "2"; - editedCabalFile = "1k7d8cgvpmln4imcrfpj4c02n3c5l1gkd5hs4hnar9ln0qh61cfx"; - libraryHaskellDepends = [ - array base containers directory filepath hslogger HUnit mtl network - old-locale old-time parsec process random regex-compat time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/missingh"; - description = "Large utility library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadPrompt" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "MonadPrompt"; - version = "1.0.0.5"; - sha256 = "b012cbbe83650f741c7b7f6eafcc89dec299b0ac74a758b6f3a8cdfc5d3bbeda"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - description = "MonadPrompt, implementation & examples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.1"; - sha256 = "abda4a297acf197e664695b839b4fb70f53e240f5420489dc21bcf6103958470"; - revision = "3"; - editedCabalFile = "0fiblwmwk48d1g9j99qrcg1ak904csgfb86y80d1nl2vr782cq6w"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4.1"; - sha256 = "262c29f630a761356454c2a382d149230ea2e621c95102b3d3b30427d7c0cd57"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OneTuple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "OneTuple"; - version = "0.2.2"; - sha256 = "d82e702485bcbdefbda0d12b6a250d318a269572ee58d63b60eee531e56624dc"; - revision = "3"; - editedCabalFile = "0m3a9fj2h0v529q3i1kq1jfbdj68wxsmhq65hgx2rwjpgb8cqf0z"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Singleton Tuple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.4"; - sha256 = "3989f6c4fe437843551004dd011c4308bf63d787ae4fbb8ce71d44b1b0b1f118"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.2.2"; - sha256 = "4cba40fe8eecee67c8251556b4c05d9e98256c11d49c20e914f8232bfae67da7"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.2.0"; - sha256 = "f24e23a49a9f11aa264f36f95795811580baf534648d238f7f5bcf8a2f0ec4e3"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, erf, random, stdenv - , template-haskell, tf-random, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.12.6.1"; - sha256 = "0b2aa7f5c625b5875c36f5f548926fcdaedf4311bd3a4c291fcf10b8d7faa170"; - revision = "3"; - editedCabalFile = "1cxsn5y6mnzqp681fcghjiqk47bq8mnkvcfc5c8c7yvl258lz5yf"; - libraryHaskellDepends = [ - base containers deepseq erf random template-haskell tf-random - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.3.1"; - sha256 = "5c929c14de467a9f032641e1b79cbb31a796615c89bf90d059aee5b04eb3671a"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.4.2"; - sha256 = "811b41ac7af262d58ae5bd1fe51d4e2cacbd6dd0ef163b7b5e8f98c5361be6e9"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SVGFonts" = callPackage - ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg - , bytestring, cereal, cereal-vector, containers, data-default-class - , diagrams-core, diagrams-lib, directory, parsec, split, stdenv - , text, vector, xml - }: - mkDerivation { - pname = "SVGFonts"; - version = "1.7.0.1"; - sha256 = "30b1eb325312b6dda99da23997197cda9dbc93e0829e2b795849a790e7bc761b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base blaze-markup blaze-svg bytestring cereal - cereal-vector containers data-default-class diagrams-core - diagrams-lib directory parsec split text vector xml - ]; - doHaddock = false; - doCheck = false; - description = "Fonts from the SVG-Font format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SafeSemaphore" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "SafeSemaphore"; - version = "0.10.1"; - sha256 = "21e5b737a378cae9e1faf85cab015316d4c84d4b37e6d9d202111cef8c4cef66"; - revision = "1"; - editedCabalFile = "1k61gqgfh6n3sj8ni8sfvpcm39nqc2msjfxk2pgmhfabvv48w5hv"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/SafeSemaphore"; - description = "Much safer replacement for QSemN, QSem, and SampleVar"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ShellCheck" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, mtl, parsec, process, QuickCheck, regex-tdfa, stdenv - }: - mkDerivation { - pname = "ShellCheck"; - version = "0.6.0"; - sha256 = "f6e79fb34d076504176761cc8b7c3f996f8d31bed23250fb1570e32283cd7df6"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson base bytestring containers directory mtl parsec process - QuickCheck regex-tdfa - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory mtl parsec QuickCheck - regex-tdfa - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.shellcheck.net/"; - description = "Shell script analysis tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "21df2193bf1216d55a0d43691182125993eeadc6f097eaf5eb995c23f2016b13"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.1.1.1"; - sha256 = "eb6436516ab2d5e3d3e070b5a1595c4dceea760a58a9cc8d23dad5f6008f2223"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Strafunski-StrategyLib" = callPackage - ({ mkDerivation, base, directory, mtl, stdenv, syb, transformers }: - mkDerivation { - pname = "Strafunski-StrategyLib"; - version = "5.0.1.0"; - sha256 = "a018c7420289a381d2b491a753f685b9d691be07cea99855cc5c8e05d5a9a295"; - revision = "2"; - editedCabalFile = "1g9ksfgcz8fjasn78zq7w1yw9wk87i4gd5i0pf31gnf4l3963yz8"; - libraryHaskellDepends = [ base directory mtl syb transformers ]; - doHaddock = false; - doCheck = false; - description = "Library for strategic programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TotalMap" = callPackage - ({ mkDerivation, adjunctions, base, distributive, generics-sop - , lens, stdenv - }: - mkDerivation { - pname = "TotalMap"; - version = "0.1.0.0"; - sha256 = "6de8ad8ff44848473ab8bd2fed776de1dfe043dca6ca81ff4877a9a98a2c894c"; - libraryHaskellDepends = [ - adjunctions base distributive generics-sop lens - ]; - doHaddock = false; - doCheck = false; - description = "A total map datatype"; - license = stdenv.lib.licenses.mit; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9"; - sha256 = "10138e863d8c6f860aad1755a6f1a36949cc02d83e5afacf6677fb3999f10db9"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque-tests" = callPackage - ({ mkDerivation, abstract-deque, array, base, containers, HUnit - , random, stdenv, test-framework, test-framework-hunit, time - }: - mkDerivation { - pname = "abstract-deque-tests"; - version = "0.3"; - sha256 = "5f17fb4cc26559f81c777f494622907e8927181175eaa172fb6adbf14b2feba5"; - libraryHaskellDepends = [ - abstract-deque array base containers HUnit random test-framework - test-framework-hunit time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A test-suite for any queue or double-ended queue satisfying an interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "active" = callPackage - ({ mkDerivation, base, lens, linear, semigroupoids, semigroups - , stdenv, vector - }: - mkDerivation { - pname = "active"; - version = "0.2.0.13"; - sha256 = "5d9a141d58bcefbf699ed233a22309ded671c25ed64bcee11a663d00731280fb"; - revision = "9"; - editedCabalFile = "1xq08xn26v3zi3fz1y5lhb1q2xv1d413wdg4pibi98n98nc2ypxz"; - libraryHaskellDepends = [ - base lens linear semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "Abstractions for animation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.6"; - sha256 = "6580f376b4c1a55cd35baccdcfd6ddcc240bcd514743e629df610251e9d8f739"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "advent-of-code-api" = callPackage - ({ mkDerivation, attoparsec, base, containers, curl, deepseq - , directory, filepath, finite-typelits, mtl, stdenv, tagsoup, text - , time, uri-encode - }: - mkDerivation { - pname = "advent-of-code-api"; - version = "0.1.2.3"; - sha256 = "f4d48b2519a0e897bdd5d18bade8adb6065e5aa0c6b155caeb2fc3dd1bea49d5"; - libraryHaskellDepends = [ - attoparsec base containers curl deepseq directory filepath - finite-typelits mtl tagsoup text time uri-encode - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/advent-of-code-api#readme"; - description = "Advent of Code REST API bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aern2-mp" = callPackage - ({ mkDerivation, base, convertible, hspec, integer-logarithms, lens - , mixed-types-num, QuickCheck, regex-tdfa, rounded, stdenv - , template-haskell - }: - mkDerivation { - pname = "aern2-mp"; - version = "0.1.3.1"; - sha256 = "758b01846bf21c90aad334867fb29e3115d4b174ac68bd9286ab7ddc7467d1bf"; - libraryHaskellDepends = [ - base convertible hspec integer-logarithms lens mixed-types-num - QuickCheck regex-tdfa rounded template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/aern2"; - description = "Multi-precision ball (interval) arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, deepseq, dlist, ghc-prim, hashable, primitive - , scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers deepseq dlist - ghc-prim hashable primitive scientific tagged template-haskell text - th-abstraction time time-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.1.1.0"; - sha256 = "0011268f2246b66b94138639a24176bd471302cd77459eb56aab0897b10a1d93"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.9"; - sha256 = "e043941ba761c13a3854fc087521b864b56b2df874154e42aedb67b2a77f23c8"; - revision = "2"; - editedCabalFile = "1y07skwfg22z37fvjmqcpcl1yz1kx2zn4zz3n1bfghk7740c4gyd"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.5"; - sha256 = "61d9dd60b6c19dd5aa350b85083ebed3eab8d8611893db1279e55e43d7c7fbcf"; - revision = "1"; - editedCabalFile = "0a29nph4a1ny365nhsxlm73mk6zgaam4sfx6knzqjy8dxp1gkj48"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-extra" = callPackage - ({ mkDerivation, aeson, aeson-compat, attoparsec - , attoparsec-iso8601, base, base-compat-batteries, bytestring - , containers, deepseq, exceptions, hashable, parsec - , recursion-schemes, scientific, stdenv, template-haskell, text - , these, time, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-extra"; - version = "0.4.1.1"; - sha256 = "d48a65d976cbf496c8e5e9c927118ffcc878d6a83adf2fc9cebd418186d6fdf8"; - revision = "4"; - editedCabalFile = "0ja5vr9w22wyknkjyl7w43frdfdfnxphvrai1b18lhinjqcd9bl5"; - libraryHaskellDepends = [ - aeson aeson-compat attoparsec attoparsec-iso8601 base - base-compat-batteries bytestring containers deepseq exceptions - hashable parsec recursion-schemes scientific template-haskell text - these time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-extra#readme"; - description = "Extra goodies for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.3"; - sha256 = "a6b6ca511483bc9de72c2c640a9f871fe8d329811fb8b87d0a664c4394e223cf"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-iproute" = callPackage - ({ mkDerivation, aeson, base, iproute, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "aeson-iproute"; - version = "0.2"; - sha256 = "ee4d53338bfdc4a6ce0039dea24e797a0ff1e22c312b31be2e73ddc0bddf268f"; - libraryHaskellDepends = [ - aeson base iproute text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/aeson-iproute"; - description = "Aeson instances for iproute types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.4"; - sha256 = "b20e23905c395d7b61fce6c5f6343758e3753a2dbee61800d3e15e753ac7c452"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.2"; - sha256 = "6db252c94601efcb1ce395de0084ccf931a3525339ccdca011a740e7b11cc152"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-typescript" = callPackage - ({ mkDerivation, aeson, base, containers, interpolate, mtl, stdenv - , template-haskell, text, th-abstraction, unordered-containers - }: - mkDerivation { - pname = "aeson-typescript"; - version = "0.1.1.0"; - sha256 = "77a3b10384383f0188feef57015a896e89bac9882df4c83bed765f70b77aa46b"; - revision = "1"; - editedCabalFile = "1y5baadwfpyszd78dfbcln93ypg7ai6qvbdz7r95ili8p0vwikbk"; - libraryHaskellDepends = [ - aeson base containers interpolate mtl template-haskell text - th-abstraction unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/codedownio/aeson-typescript#readme"; - description = "Generate TypeScript definition files from your ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alarmclock" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, time - , unbounded-delays - }: - mkDerivation { - pname = "alarmclock"; - version = "0.6.0.2"; - sha256 = "4cabd649d1fdc17e3ab1658db9491f147bfcefd16ccbfa253b9b946eba1e18fe"; - libraryHaskellDepends = [ - async base clock stm time unbounded-delays - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/davecturner/alarmclock"; - description = "Wake up and perform an action at a certain time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.0.0"; - sha256 = "52418ed3abfff15e802506e5fb45f56d38eee020cb01af3f0acfe163c470ca68"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.4"; - sha256 = "d58e4d708b14ff332a8a8edad4fa8989cb6a9f518a7c6834e96281ac5f8ff232"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.10.0"; - sha256 = "a97d0ad38b01b9d1e37c70dad0b33ec447842a6d9dd6034de4ee0c69ed1cf9fe"; - libraryHaskellDepends = [ base util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebraic-graphs" = callPackage - ({ mkDerivation, array, base, base-compat, containers, deepseq, mtl - , stdenv - }: - mkDerivation { - pname = "algebraic-graphs"; - version = "0.3"; - sha256 = "1492ace011d13757155ae2aca18737095cee9d5b94e810bac0a7ca3e9ea79de0"; - libraryHaskellDepends = [ - array base base-compat containers deepseq mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/alga"; - description = "A library for algebraic graph construction and transformation"; - license = stdenv.lib.licenses.mit; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-mixer" = callPackage - ({ mkDerivation, alsa-core, alsaLib, base, c2hs, stdenv, unix }: - mkDerivation { - pname = "alsa-mixer"; - version = "0.3.0"; - sha256 = "cb6a197de99c6b4339a7f552e1c6b71eaefa11bb96102d5ba4519a23c615de02"; - libraryHaskellDepends = [ alsa-core base unix ]; - librarySystemDepends = [ alsaLib ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ttuegel/alsa-mixer"; - description = "Bindings to the ALSA simple mixer API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1.1"; - sha256 = "6348f63e2858df9c0b516053c7c5111139936faea6edf7cf400b8fba6cca94d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alternators" = callPackage - ({ mkDerivation, base, lens, mmorph, mtl, newtype-generics, stdenv - , stm, transformers - }: - mkDerivation { - pname = "alternators"; - version = "1.0.0.0"; - sha256 = "44395b8b42193fdd78f94fd9f62560bfa69aef345a0fb2602df0d8d3613fd339"; - libraryHaskellDepends = [ - base lens mmorph mtl newtype-generics stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/alternators#readme"; - description = "Handy functions when using transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , stdenv, text, time, transformers, transformers-base - , transformers-compat, unliftio-core, void - }: - mkDerivation { - pname = "amazonka"; - version = "1.6.1"; - sha256 = "edb794b7ed0db3f5955ec08ded68b5eca753f62978312c881f3cb0c6eb769180"; - revision = "1"; - editedCabalFile = "0xn4wy5gb1h4f4wd2h5ic17nb6ilikmsp1qip6xxc3img5rmaqyq"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat unliftio-core void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-apigateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-apigateway"; - version = "1.6.1"; - sha256 = "3b843dd490d09c45aac415269bf3d7db894fad8104cdd76292058adb03adf385"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon API Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-application-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-application-autoscaling"; - version = "1.6.1"; - sha256 = "da0eaaa282cc04c6aa486dfe00cdb5f42afc77e6785493ffdaa2ff7c9a8ad286"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-appstream" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-appstream"; - version = "1.6.1"; - sha256 = "6644fac750a0a415439df14567597de57bbe75cfe259feb42265af58867c088c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon AppStream SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-athena" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-athena"; - version = "1.6.1"; - sha256 = "370ee46f0d9b7f09b911b25d97457d727510fa049b42921f5f6e4a730fe15b9d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Athena SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-autoscaling"; - version = "1.6.1"; - sha256 = "2fb4adc14d35ce6a24b1c294bbf3974317ff8b315fc10dc8f9609399a8acc914"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-budgets" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-budgets"; - version = "1.6.1"; - sha256 = "84ab20850439ba786153a6e0c27bc8a321ef1c79524a8bf2d89adb56442d6273"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Budgets SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-certificatemanager" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-certificatemanager"; - version = "1.6.1"; - sha256 = "833d7b67e7bae4c8633d34109998675edbc95478ac0eb86ec1cf866079689ef2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Certificate Manager SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudformation" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudformation"; - version = "1.6.1"; - sha256 = "e823eab5456b0b6f86f9cd391cf2572998e30ecbed9ce373cd8e3ac6f5d3afc8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFormation SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudfront" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudfront"; - version = "1.6.1"; - sha256 = "8c5900fb0d34878ecfe9470bcd897259e2575dbf7e13fc526a515a0e52dfa779"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFront SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudhsm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudhsm"; - version = "1.6.1"; - sha256 = "34dfe223cf33e207be71c6c0f092e892b549f5332eb392a0c474493be0e0a019"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudHSM SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch"; - version = "1.6.1"; - sha256 = "d04812c26d5c19b5ad00f343e2607e18a91f12743508903ee76f12999bcd7adc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch-domains"; - version = "1.6.1"; - sha256 = "041b6c655878f0ae85803cc4ef338bf1c4eab48ec327c46ffadb78b5c886b11f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch Domain SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudtrail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudtrail"; - version = "1.6.1"; - sha256 = "55cc7c15a2e26824621ddb7e8086605bac315f994ac4cefb56b6b9726e0f7da9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudTrail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch"; - version = "1.6.1"; - sha256 = "4e56b617c7b14f0074812562c52f05059c83921800cf737e231e3a8a4149326d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-events" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-events"; - version = "1.6.1"; - sha256 = "8b323d428e163bebb83bbcc3790666356c53bde5c418c84ac48898ebcc3f7646"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Events SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-logs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-logs"; - version = "1.6.1"; - sha256 = "61dfdebb7c99d7d2875cd5ddba10000923c14a0d8a22e233ed3bbe617aa4d490"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Logs SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codebuild" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codebuild"; - version = "1.6.1"; - sha256 = "1375ef0b6b261e6762a3c35837055af3f0066f1da00c62f00fb28def8d39a6b0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeBuild SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codecommit" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codecommit"; - version = "1.6.1"; - sha256 = "b639a3106095c6dc5d3885a75e20bd9ae4c270ae70b3fb342a40d191da1d0733"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeCommit SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codedeploy" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codedeploy"; - version = "1.6.1"; - sha256 = "3dff6fd082f1dc5c0f5992229499432e97b1a958a810a98330e25cf7175b54fa"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeDeploy SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codepipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codepipeline"; - version = "1.6.1"; - sha256 = "bfa0ffffdf925b5e8693c10d4d73c1fbe310cb8f51a20d155ed08761cb3965c9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodePipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-identity" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-identity"; - version = "1.6.1"; - sha256 = "b97778558ce4ba5b8703d5549cd0ffa0b899812e2dd044d7515435070f9e8204"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-idp" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-idp"; - version = "1.6.1"; - sha256 = "df62c34ef4269974d71cc8a1ed6a8160dd739a4dd7ef5e18a5c061a9f2e8f01b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity Provider SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-sync" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-sync"; - version = "1.6.1"; - sha256 = "e048f9d072b5655f8da36d47c40c45f2d77d85a0a0e4ae0adf14b0e30590db63"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Sync SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-config" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-config"; - version = "1.6.1"; - sha256 = "ff36ba897040319981edf9736115ca541e000eb37fe6fd408f07f32792f06834"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Config SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite, deepseq - , exceptions, hashable, http-client, http-conduit, http-types, lens - , memory, mtl, resourcet, scientific, semigroups, stdenv, tagged - , text, time, transformers, transformers-compat - , unordered-containers, xml-conduit, xml-types - }: - mkDerivation { - pname = "amazonka-core"; - version = "1.6.1"; - sha256 = "4198f52da9d20338bd6a3a18748d4312d3ff2c06bc84503cb18406251b28a243"; - revision = "1"; - editedCabalFile = "1656dyw6fk3gvph6v3xzvdp3p8xny3ji0gxg7qxvmvn60gj9ricv"; - libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Core data types and functionality for Amazonka libraries"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-datapipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-datapipeline"; - version = "1.6.1"; - sha256 = "6bf752844ec49c59be856bb082b600959ec187cc890f1bb7f7d9641e9b78b122"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Data Pipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-devicefarm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-devicefarm"; - version = "1.6.1"; - sha256 = "bed85bba8a891f7c626e0b1e41cb4912974c250a6534e5438a3f51e5379a83ec"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Device Farm SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-directconnect" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-directconnect"; - version = "1.6.1"; - sha256 = "dc61998ad1145118be5138df37bd97cb1a61298e8fbc506ef1a22a33bafa045b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Direct Connect SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-discovery" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-discovery"; - version = "1.6.1"; - sha256 = "02abc932bf71df3ee03f5503d08414e3c01c49f08b4720e14e1a1e8fa13f449d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Discovery Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dms"; - version = "1.6.1"; - sha256 = "8c79f617ccd7035f709ae8057a8e1a6c5a89cdab3aa9c3aabaee7c0628e3ed87"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Database Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ds"; - version = "1.6.1"; - sha256 = "fb4807974a865556eafc99b7c030244cf7da0b5b1ade9365fcb8689a48d6c8ff"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Directory Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb"; - version = "1.6.1"; - sha256 = "0420486c88f10636a4407c8732b927498c5a809b235e2da56750d012f05c1d82"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb-streams"; - version = "1.6.1"; - sha256 = "fe2dab6892599dac4ec9f4408283019d670f6ba0a24723914aabe718b14ed959"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB Streams SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ec2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ec2"; - version = "1.6.1"; - sha256 = "b04a9924ceb3e78a7d7ebdde087cc707e8a51a109f2d15483e6d01d3458aadd3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Compute Cloud SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecr"; - version = "1.6.1"; - sha256 = "2d0d5dd640f63e11b6009d3b486505e93afd379c5f5738df79582b5eeb6c7358"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Registry SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecs"; - version = "1.6.1"; - sha256 = "55071129ab02b9bf3feb5b5ca04feb64ea8709a125b67a35fda15b25cc1a1bba"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-efs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-efs"; - version = "1.6.1"; - sha256 = "741e047eb04c3bbd8dcbb03579bc82e4546abd0ae9a835ae128e2b3843d6b18c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic File System SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticache" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticache"; - version = "1.6.1"; - sha256 = "4d2d8ae02e7c43eb77ba3a52863a4a2be305fb7f219a568709e830d647feeb60"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon ElastiCache SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticbeanstalk" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticbeanstalk"; - version = "1.6.1"; - sha256 = "2ad4f9e80217d544f5fdd837eb2749d54f3ca3b210dcbada70fec1c920879f69"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Beanstalk SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticsearch"; - version = "1.6.1"; - sha256 = "9ef91d5db4b13a0164a83674763ce25cb104ba92afd6f8ee5c70aa379006ca13"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elasticsearch Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elastictranscoder" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elastictranscoder"; - version = "1.6.1"; - sha256 = "df80e7de3db78431eddb2d5413ac5e2271ec282c50ee1a23076aca90d697fb5b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Transcoder SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elb"; - version = "1.6.1"; - sha256 = "5b5eecb81db898daa55ac1628bf65ac124d44e616dca5b33356ced32e6ba109d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elbv2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elbv2"; - version = "1.6.1"; - sha256 = "6740907fe448cbee8512b91b570204d56018e520239fc9f1689601eb382f7b79"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-emr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-emr"; - version = "1.6.1"; - sha256 = "4b93c73647239e0bb1f779c876e933126fae48d51777b15ae4c4750dec2d87bc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic MapReduce SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-gamelift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-gamelift"; - version = "1.6.1"; - sha256 = "c9c85550858c9eac54e86b226d31270de09cc8d71099a075829cc512fbe0e3b2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon GameLift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glacier" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glacier"; - version = "1.6.1"; - sha256 = "5b55cf733d0f987c1b3b61fb3fd0e29cdcfdc2bb7c9fcc0fa3c959d4bd540887"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glacier SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-health" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-health"; - version = "1.6.1"; - sha256 = "a2b533d5ac019b7dce0a8cc07f2515b577cabbd3caa613372018a37fa8764677"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Health APIs and Notifications SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iam" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iam"; - version = "1.6.1"; - sha256 = "1d5106a4af75fae4444a3353b2568d4e1f751e81c7e9e263d26cd81466c3e7d7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Identity and Access Management SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-importexport" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-importexport"; - version = "1.6.1"; - sha256 = "ce142494cc9d5a063ee93224e488380d3730ab507b57ebc53b215dafb0d6dd8e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-inspector" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-inspector"; - version = "1.6.1"; - sha256 = "68b4b3c335ce13754d08726a203fc01a5731f8b9147948b8848a986505efb674"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Inspector SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot"; - version = "1.6.1"; - sha256 = "51763922dbb965d5c01ec60f1090eed03bec959a77e451cef70c55a42a2dc683"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot-dataplane" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot-dataplane"; - version = "1.6.1"; - sha256 = "7b43f97fe9eb1d81c7ec9ea865fb49c4cd364fa532d4c50d8676306bb8c20b48"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT Data Plane SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis"; - version = "1.6.1"; - sha256 = "5fe3dcf3fbf9aded3e27eb430be32400ebb84a01c0aec237e330a9480cbb5167"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-analytics"; - version = "1.6.1"; - sha256 = "af589c9afa3f253efefb95b356a5f2a7a280d6abbf5314f182f0beecb1066e99"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-firehose" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-firehose"; - version = "1.6.1"; - sha256 = "e4a10bfe3f334c9ec27b86096b671b363357c8b417268444b7600dfdcd68872d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Firehose SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kms"; - version = "1.6.1"; - sha256 = "6d333ec392d1f47c850449e78a1071f2265b46f699f3c58ad9e30bd99c956285"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Key Management Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lambda" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lambda"; - version = "1.6.1"; - sha256 = "972b5ff15cad609f44761d485563496ca3584884e1fa367193ddaf76260fcca3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lambda SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lightsail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lightsail"; - version = "1.6.1"; - sha256 = "7c678ea0f8aa5beee2e0473ac5055a17aeb50c148362739adc84c940beb3931e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lightsail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-analytics"; - version = "1.6.1"; - sha256 = "6ff582afb73e30d97d1f74e815ae03cdf919c4be4581b23691346a6d48a2137d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Commerce Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-metering" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-metering"; - version = "1.6.1"; - sha256 = "928bdbe8fbd3b81429ff4936590f3e04fd3632737fb39048afdc6be8ade85037"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Metering SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ml" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ml"; - version = "1.6.1"; - sha256 = "b8c7c0b8663ffe570c79a1abc3d387b02e69b61b3f0d39b9ffa39e3049a7b872"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Machine Learning SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks"; - version = "1.6.1"; - sha256 = "0a1716f0d6e5edaad37d86f2f3c0be043a0b0086d1f7a2f06cdd539f717faa96"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks-cm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks-cm"; - version = "1.6.1"; - sha256 = "51857803a2f0bee215c92119c3c5899df01e9195c2dc133e3f9774d4b93eca57"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks for Chef Automate SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-pinpoint" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-pinpoint"; - version = "1.6.1"; - sha256 = "aa38c2d154b7ad3c16f0760c5304fd7d9875b1e8c7d48bb32b87a5616717fc87"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Pinpoint SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-polly" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-polly"; - version = "1.6.1"; - sha256 = "b0887545cce2a01b16733b1d329570b4c79e6cfd6412813ec5c9c6c0a79fccef"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Polly SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rds"; - version = "1.6.1"; - sha256 = "fcd2400a359093bd075ccfc76e16c42c3f3bdc65828bf4cb24c9e5cfdc389421"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Relational Database Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-redshift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-redshift"; - version = "1.6.1"; - sha256 = "87ea855e565636cc06396172e108df6aeca1e5fac1efc194d7bd98fc56402214"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Redshift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rekognition" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rekognition"; - version = "1.6.1"; - sha256 = "3e20fbeea825447a063684e40b3a3a71342ac32df15f9c40a580279fe6a9f8f8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Rekognition SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv, text }: - mkDerivation { - pname = "amazonka-route53"; - version = "1.6.1"; - sha256 = "7c6442da5b6ded2a26b4f2b642cffe578456ffda8903f424590744f0dbc75773"; - libraryHaskellDepends = [ amazonka-core base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-route53-domains"; - version = "1.6.1"; - sha256 = "2c2bcd7445c391235d3a8af2fcd8f641d5a4996379fbbdb8645a24c77f4ba2e8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 Domains SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-s3" = callPackage - ({ mkDerivation, amazonka-core, base, lens, stdenv, text }: - mkDerivation { - pname = "amazonka-s3"; - version = "1.6.1"; - sha256 = "47a0b0124eaf34b8f14bdac4a8ed2a61f86984da4f6fc9e34b44acda07167e28"; - libraryHaskellDepends = [ amazonka-core base lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Storage Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sdb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sdb"; - version = "1.6.1"; - sha256 = "53b4585f2cc3d192ce85163e23b153e605563b3938d9f9da28244fec8db92a7a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon SimpleDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-servicecatalog" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-servicecatalog"; - version = "1.6.1"; - sha256 = "b4d6ad7c79db7f1b106aa79f7477cff6191aa77d7c1c2b614c108b627507f54b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Service Catalog SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ses" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ses"; - version = "1.6.1"; - sha256 = "054c576d30341d11ce79869ac1ac5bc0d92ecab88f0fffe9895b78f4b614ece8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Email Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-shield" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-shield"; - version = "1.6.1"; - sha256 = "1b8a71a8ef5055e8c100ba81ee0fb0a6af7af1e2b29020f546f896f712a07519"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Shield SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sms"; - version = "1.6.1"; - sha256 = "d6eb434bde9424080f68691775867e119a9f802cb4e7b7761de31e9a800b4b85"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Server Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-snowball" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-snowball"; - version = "1.6.1"; - sha256 = "48c11fb69fed73bb3e7ed7b4cbaba28eb8cd3013b987479d8fb2d35eaa477cd3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export Snowball SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sns" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sns"; - version = "1.6.1"; - sha256 = "db98a53c40addfcff33938cdfc4daf4ca35e49bbab01b804562abfb1e613e735"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Notification Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sqs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sqs"; - version = "1.6.1"; - sha256 = "ee067dd46f51af2ad33ee351d5c85a7d9599a669139fde30fcad825ff80843d4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Queue Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ssm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ssm"; - version = "1.6.1"; - sha256 = "952dff5e1fba8d79cfc5df93c9e6e782e93462554ce446d4ef4e8aaa313cb0af"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Systems Manager (SSM) SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-stepfunctions" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-stepfunctions"; - version = "1.6.1"; - sha256 = "60af76621df8ba65cd64dcba3a8b0ca54445599accd0de8c54338920577dd013"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Step Functions SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-storagegateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-storagegateway"; - version = "1.6.1"; - sha256 = "1041b53029d829dd11b30c08d21a87af8da0b4ed92e51376b3233327b1817e3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Storage Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sts" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sts"; - version = "1.6.1"; - sha256 = "ee2364bb14e931528aa3d271c1688829c0975251bc5ffc5c824710841e1c8fb9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Security Token Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-support" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-support"; - version = "1.6.1"; - sha256 = "5a2d0dd5dd00a067b915e5dfb13c1848683ed7b9bdcfd6ac40d712b417c719ba"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Support SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-swf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-swf"; - version = "1.6.1"; - sha256 = "7b9ce6704f7fe46607722daaa35d11dc2c239fa82ab26ae8a456cdc390b8744a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Workflow Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-test" = callPackage - ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, process, resourcet, stdenv, tasty, tasty-hunit - , template-haskell, temporary, text, time, unordered-containers - , yaml - }: - mkDerivation { - pname = "amazonka-test"; - version = "1.6.1"; - sha256 = "751ed583302c4d8dd1dabe8628e8eb8d97b807a899bb71fe208158fe44f222a9"; - libraryHaskellDepends = [ - aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types process - resourcet tasty tasty-hunit template-haskell temporary text time - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Common functionality for Amazonka library test-suites"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-waf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-waf"; - version = "1.6.1"; - sha256 = "45c2f517d858891fa85e70e73969721c97ee22236d6932f0df87cd139255516a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WAF SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-workspaces" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-workspaces"; - version = "1.6.1"; - sha256 = "e589385b8a86f9997d0831ca350d5591484b9e1245374d3e0e88ab45d45c37bf"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WorkSpaces SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-xray" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-xray"; - version = "1.6.1"; - sha256 = "348cf06a7529d78a1b48d84e46a9c527b590355b4133473e8091052b34a5d00d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon X-Ray SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.18.2"; - sha256 = "bbfb593dce62ab427a66904e571fbe1864d944c10210e6602eacabb77662e76a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.8.2"; - sha256 = "90a7324811e7da0d0aecd66454b1622e3b1ee22ed09bbdae379c0ff079d2fa90"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.8.2"; - sha256 = "a630721bd57678c3bfeb6c703f8249e434cbf85f40daceec4660fb8c6725cb3e"; - revision = "2"; - editedCabalFile = "0xq83bwya8mfijp3dn9zfsqbbkl1wpzfjcmnkw8a06icjh9vg458"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "antiope-athena" = callPackage - ({ mkDerivation, amazonka, amazonka-athena, amazonka-core, base - , lens, resourcet, stdenv, text, unliftio-core - }: - mkDerivation { - pname = "antiope-athena"; - version = "6.2.0"; - sha256 = "b103fd481fb7b35e3b774f02f8ce9ab41b230b8a737b85a464ade594860ea34d"; - libraryHaskellDepends = [ - amazonka amazonka-athena amazonka-core base lens resourcet text - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-core" = callPackage - ({ mkDerivation, amazonka, amazonka-core, base, bytestring - , exceptions, generic-lens, http-client, http-types, lens - , monad-logger, mtl, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "antiope-core"; - version = "6.2.0"; - sha256 = "2357897649729286a5647f4176d699642d390a60126ea5132c6ddab611846b3c"; - libraryHaskellDepends = [ - amazonka amazonka-core base bytestring exceptions generic-lens - http-client http-types lens monad-logger mtl resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-dynamodb" = callPackage - ({ mkDerivation, amazonka, amazonka-core, amazonka-dynamodb - , antiope-core, base, generic-lens, lens, stdenv, text - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "antiope-dynamodb"; - version = "6.2.0"; - sha256 = "5266d990b35e4b3d3ae1204d8e6eba5980ef3f783a21f2ff5b2e0964168c66cf"; - libraryHaskellDepends = [ - amazonka amazonka-core amazonka-dynamodb antiope-core base - generic-lens lens text unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-messages" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 - , amazonka-sqs, antiope-s3, base, generic-lens, lens, lens-aeson - , monad-loops, network-uri, stdenv, text, unliftio-core - }: - mkDerivation { - pname = "antiope-messages"; - version = "6.2.0"; - sha256 = "bffd6c5b27ea376fba61b028f1f8f00190ef8729109a91edef583b03b6f3f387"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-s3 amazonka-sqs antiope-s3 - base generic-lens lens lens-aeson monad-loops network-uri text - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-s3" = callPackage - ({ mkDerivation, amazonka, amazonka-core, amazonka-s3, antiope-core - , attoparsec, base, bytestring, conduit, conduit-extra, exceptions - , generic-lens, http-types, lens, monad-logger, mtl, network-uri - , resourcet, stdenv, text, unliftio-core - }: - mkDerivation { - pname = "antiope-s3"; - version = "6.2.0"; - sha256 = "12e77e8d966cb90637a359ea7a1e365af05b86929a90c7ec9fd8dc57e4f569bd"; - libraryHaskellDepends = [ - amazonka amazonka-core amazonka-s3 antiope-core attoparsec base - bytestring conduit conduit-extra exceptions generic-lens http-types - lens monad-logger mtl network-uri resourcet text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-sns" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sns, base - , generic-lens, lens, stdenv, text, unliftio-core - }: - mkDerivation { - pname = "antiope-sns"; - version = "6.2.0"; - sha256 = "7b56576a1153a7e285f835893f35d054ea5b6037ac73ed398ed20ab7074ef55a"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-sns base generic-lens lens - text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-sqs" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 - , amazonka-sqs, antiope-messages, antiope-s3, base, generic-lens - , lens, lens-aeson, monad-loops, network-uri, stdenv, text - , unliftio-core - }: - mkDerivation { - pname = "antiope-sqs"; - version = "6.2.0"; - sha256 = "45a035ee3cc2988c8b6dd60c988fc1f22a42fd829c8849565a6e7386786c636c"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-s3 amazonka-sqs - antiope-messages antiope-s3 base generic-lens lens lens-aeson - monad-loops network-uri text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "aos-signature" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, memory, mtl - , protolude, random, stdenv - }: - mkDerivation { - pname = "aos-signature"; - version = "0.1.1"; - sha256 = "c38a353c8bedd9710aa56f9aa8caf17db4313997afd9733921d1c5917511a9ea"; - libraryHaskellDepends = [ - base bytestring cryptonite memory mtl protolude random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/aos-signature#readme"; - description = "An implementation of the AOS signatures"; - license = stdenv.lib.licenses.asl20; - }) {}; - "apecs" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, template-haskell - , vector - }: - mkDerivation { - pname = "apecs"; - version = "0.7.3"; - sha256 = "1425137b691819a574ff3590b159ee135d2df53a6c064c51e35ec378edad2eef"; - libraryHaskellDepends = [ - base containers mtl template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonascarpay/apecs#readme"; - description = "Fast Entity-Component-System library for game programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apecs-gloss" = callPackage - ({ mkDerivation, apecs, apecs-physics, base, containers, gloss - , linear, stdenv - }: - mkDerivation { - pname = "apecs-gloss"; - version = "0.2.0"; - sha256 = "70bbaa46929fce5cc3d2db8645abd71c86c6a0cdbc2313f2ef90dbbcac926d62"; - libraryHaskellDepends = [ - apecs apecs-physics base containers gloss linear - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonascarpay/apecs-physics#readme"; - description = "Simple gloss renderer for apecs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apecs-physics" = callPackage - ({ mkDerivation, apecs, base, Cabal, containers, inline-c, linear - , stdenv, template-haskell, vector - }: - mkDerivation { - pname = "apecs-physics"; - version = "0.3.2"; - sha256 = "4e7b98e1221a409450f13d75a72ec56099d556842a9cb47dde593d60a284bc97"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - apecs base containers inline-c linear template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonascarpay/apecs#readme"; - description = "2D physics for apecs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "2bd198b97077090476f8f512a7c03f3ab4147a6df51cf8cd22b5145c37b2ccda"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.7"; - sha256 = "f6de4f1d1332d665057a9fd1af6b805f66cf04299b03f53696f3c9db4f7ff21f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appendmap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "appendmap"; - version = "0.1.5"; - sha256 = "2dbfa21a3702c30e0bdf764f5775f4ed8ac63b48a830b8931ea994f52030b90e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/koterpillar/appendmap#readme"; - description = "Map with a Semigroup and Monoid instances delegating to Semigroup of the elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.6.0.0"; - sha256 = "2fbe0e3d4dca8f67e4a423116a947e2a7cf40ef620bf8f66653f64cce4c3555c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.3"; - sha256 = "8f71d0b77152edb048e9f75c72a82b9d7ae1b15432fc011610fe9f1b83225b18"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.1"; - sha256 = "d837f716d9e73d68a53a17321f0433dd9ffe71df24d550aed6a34ec1c2ad2ea2"; - revision = "1"; - editedCabalFile = "1sd3s1ibn5dmgwzlqwshj7im4lmgpfzcv43ax6lpp9bdmxa6lmz9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arbor-lru-cache" = callPackage - ({ mkDerivation, base, containers, generic-lens, lens, stdenv, stm - }: - mkDerivation { - pname = "arbor-lru-cache"; - version = "0.1.1.0"; - sha256 = "8f47df22ec2d1fa8b39e5234c3db229be681f8d3979bef55bf98c0686762fe5a"; - libraryHaskellDepends = [ base containers generic-lens lens stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/arbor-lru-cache#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, containers, deepseq, exact-pi - , ghc-prim, integer-gmp, integer-logarithms, random, stdenv - , transformers, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.8.0.0"; - sha256 = "82d33a3c8deb52f8efc7d0192e468eba125c0ba1b48c82b881182c979005d39e"; - revision = "3"; - editedCabalFile = "1cn6axcdiahaqnq1rsm0snr78lrypay6cxh3yxw3vrrwilavri1i"; - configureFlags = [ "-f-llvm" ]; - libraryHaskellDepends = [ - array base containers deepseq exact-pi ghc-prim integer-gmp - integer-logarithms random transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asciidiagram" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative - , rasterific-svg, stdenv, svg-tree, text, vector - }: - mkDerivation { - pname = "asciidiagram"; - version = "1.3.3.2"; - sha256 = "2b343441f4c7f6e0260d0810d3b22848512c3dd11a80e949076dfbc6b5246e4d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers FontyFruity JuicyPixels lens linear mtl - rasterific-svg svg-tree text vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative rasterific-svg svg-tree text - ]; - doHaddock = false; - doCheck = false; - description = "Pretty rendering of Ascii diagram into svg or png"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asif" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, conduit-extra, containers, cpu, directory - , either, exceptions, generic-lens, hw-bits, hw-ip, iproute, lens - , network, old-locale, optparse-applicative, resourcet, stdenv - , temporary-resourcet, text, thyme, vector - }: - mkDerivation { - pname = "asif"; - version = "3.2.0"; - sha256 = "00430428ae65728721b7509edfffe31dd697eb83ec424091c809c5437319cf67"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - conduit-extra containers cpu either exceptions generic-lens hw-bits - hw-ip iproute lens network old-locale resourcet temporary-resourcet - text thyme vector - ]; - executableHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - conduit-extra containers cpu directory either exceptions - generic-lens hw-bits hw-ip iproute lens network old-locale - optparse-applicative resourcet temporary-resourcet text thyme - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/packetloop/asif#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.5"; - sha256 = "1e863bfd363f6c3760cc80f2c0d422e17845a9f79fe006030db202ecab5aaf29"; - revision = "1"; - editedCabalFile = "0vsw8rd6fxd87rx3jyh3bb96sjd7ag0mrlylhkcmgaps2ma8sw5b"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.4"; - sha256 = "c6a328f570c69db73f8d2416f9251e8a03753f90d5d19e76cbe69509a3ceb708"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.2"; - sha256 = "0c571fff4a10559c6a630d4851ba3cdf1d558185ce3dcfca1136f9883d647217"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1-types"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.1"; - sha256 = "da5dde1bcf42e4f48f5f23dbf3a890a2904ecaf86df3d75e365e071b924afe29"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.1"; - sha256 = "8f0b86022a1319d3c1c68655790da4b7f98017982e27ec3f3dbfe01029d39027"; - revision = "2"; - editedCabalFile = "130rc6icx3h471qs417lkw9b2pfn27xd009liw58cmdk66zscizp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.2"; - sha256 = "67f8872e0c1e634d819a967365eb4ad514e9b2cde967fbc710da7cdc4d17d933"; - revision = "1"; - editedCabalFile = "0gdcd84x2s4jiry0was74rzv9l53an1q6ad8jiaj37fr4fim0wcc"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.6"; - sha256 = "d4634b777ea8df551bc619125b6240047c74b6454c1a3caaad10496a39d443f7"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.2"; - sha256 = "dd93471eb969172cc4408222a3842d867adda3dd7fb39ad8a4df1b121a67d848"; - revision = "4"; - editedCabalFile = "1vz6jz7cwd80sryabpa99hccamgccjf2l7907wjblbs7dy66a8cb"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv, vector }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.5"; - sha256 = "f5864859694fb9faa64cabea17fdf8f506e325fa4704c23036ea1cc17102c76f"; - libraryHaskellDepends = [ attoparsec base ip vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.1.0"; - sha256 = "499ffbd2d39e79cc4fda5ad0129dbf94fdb72a84aa932dfe2a5f5c5c02074142"; - revision = "1"; - editedCabalFile = "1rjhscmczgs1bwyqx7lvkm8py3ylxjd2797mrzgnq60fvm292750"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , QuickCheck, quickcheck-instances, stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.7"; - sha256 = "369d49c342f90bcc5e07c53b12dc642d6e03aa991900262abc48127d4b25725c"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip QuickCheck - quickcheck-instances strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, http-conduit, http-types - , network-uri, resourcet, stdenv, tagstream-conduit, text - , transformers, unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.4"; - sha256 = "3fd566dbfdf75d81ad1bebd19facb9f01509ead6e27d9aed802404ecde932fb8"; - revision = "1"; - editedCabalFile = "0ipbmf633c0kmcwwb7d51ac8s4220nfyk5xghhq66mpgna77j2c2"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers http-conduit http-types network-uri resourcet - tagstream-conduit text transformers unordered-containers - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6"; - sha256 = "d26d9f10fd57e06fa2af066df65e578ff3ec7541efc3e6648b29a743b13f8375"; - revision = "1"; - editedCabalFile = "1fxwn8bn6qs8dhxq0q04psq7zp1qvw1b6g3vmsclgyj9p7kr77ms"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.4.1"; - sha256 = "35ff4b15ecf505f1cf3eb78f83deaa89879d92d40335b6580b2383c622efcfc9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "autoexporter"; - version = "1.1.13"; - sha256 = "7bb6fbf567f56a5a3ec53036fe82aa8e17452c46778a34e9dd00477e5cdcaf16"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "avers" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, clock - , containers, cryptonite, filepath, inflections, memory - , MonadRandom, mtl, network, network-uri, resource-pool - , rethinkdb-client-driver, safe, scrypt, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "avers"; - version = "0.0.17.1"; - sha256 = "1b45d8aa036b3c2ec7ea180327ff3cdce28dc1e1ef319c062be79f0ffa7626f5"; - revision = "34"; - editedCabalFile = "0mj6881npk0xdkf4nkcy52sn6y4414wdpysbw03kkb5vx6cgjws9"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers cryptonite - filepath inflections memory MonadRandom mtl network network-uri - resource-pool rethinkdb-client-driver safe scrypt stm - template-haskell text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Server-side implementation of the Avers storage model"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "avers-api" = callPackage - ({ mkDerivation, aeson, avers, base, bytestring, cookie - , http-api-data, servant, stdenv, text, time, vector - }: - mkDerivation { - pname = "avers-api"; - version = "0.1.0"; - sha256 = "5c1765976fd1ac49444023452e31cbe5200fd9c8480e1927aa4334e8752d5a3e"; - libraryHaskellDepends = [ - aeson avers base bytestring cookie http-api-data servant text time - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/wereHamster/avers-api"; - description = "Types describing the core and extended Avers APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "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 - , stdenv, stm, text, time, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "avers-server"; - version = "0.1.0.1"; - sha256 = "becd96d702ba85bfa105f799da27e9fb1e483b59643345503e60888a8860518e"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/wereHamster/avers-server"; - description = "Server implementation of the Avers API"; - license = stdenv.lib.licenses.mit; - }) {}; - "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors - , binary, bytestring, containers, data-binary-ieee754, deepseq - , fail, hashable, mtl, scientific, semigroups, stdenv, tagged - , template-haskell, text, tf-random, unordered-containers, vector - , zlib - }: - mkDerivation { - pname = "avro"; - version = "0.4.4.2"; - sha256 = "809752b326f9787219fac0ba1de0b558aac44e4025aabffe86967c980b7001f4"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bifunctors binary bytestring - containers data-binary-ieee754 deepseq fail hashable mtl scientific - semigroups tagged template-haskell text tf-random - unordered-containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/avro#readme"; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "avwx" = callPackage - ({ mkDerivation, attoparsec, base, HTTP, lens, optparse-applicative - , parsers, pretty-show, stdenv, text - }: - mkDerivation { - pname = "avwx"; - version = "0.3.0.2"; - sha256 = "b4299cc4e05a4c94f53d06f05b30baac1e15c59663b59afd1dd32417a280fb0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; - executableHaskellDepends = [ - base optparse-applicative pretty-show text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.hcesperer.org/posts/2016-09-20-avwx.html"; - description = "Parse aviation weather reports"; - license = stdenv.lib.licenses.mit; - }) {}; - "axel" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , freer-simple, ghcid, haskell-src-exts, lens, lens-aeson - , optparse-applicative, parsec, process, regex-pcre, singletons - , stdenv, strict, template-haskell, text, typed-process, vector - , yaml - }: - mkDerivation { - pname = "axel"; - version = "0.0.9"; - sha256 = "ee5c222094c86eac3b6fe85f619b2ee69f2eb4cdcd8aeabf74b40d21e98a274f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath freer-simple ghcid - haskell-src-exts lens lens-aeson optparse-applicative parsec - process regex-pcre singletons strict template-haskell text - typed-process vector yaml - ]; - executableHaskellDepends = [ - base containers freer-simple optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/axellang/axel#readme"; - description = "The Axel programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "backprop" = callPackage - ({ mkDerivation, base, containers, deepseq, microlens, primitive - , reflection, stdenv, transformers, vector, vinyl - }: - mkDerivation { - pname = "backprop"; - version = "0.2.6.2"; - sha256 = "b58d70a2191ebcb1529dfd433e16696d7d58de51a04143d51afa7059c4728383"; - libraryHaskellDepends = [ - base containers deepseq microlens primitive reflection transformers - vector vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://backprop.jle.im"; - description = "Heterogeneous automatic differentation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bank-holidays-england" = callPackage - ({ mkDerivation, base, containers, stdenv, time }: - mkDerivation { - pname = "bank-holidays-england"; - version = "0.1.0.8"; - sha256 = "3219472077c4093809dc7c986b693aee2b76c12d44b6063d1b7055af3aa9672a"; - libraryHaskellDepends = [ base containers time ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/davecturner/bank-holidays-england"; - description = "Calculation of bank holidays in England and Wales"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "barbies" = callPackage - ({ mkDerivation, base, bifunctors, stdenv }: - mkDerivation { - pname = "barbies"; - version = "1.1.2.1"; - sha256 = "3edcf3e994d8ce6f71325030dea17d3482c90e1d377f3c1ef499c401b46c6c6b"; - libraryHaskellDepends = [ base bifunctors ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcpetruzza/barbies#readme"; - description = "Classes for working with types that can change clothes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "barrier" = callPackage - ({ mkDerivation, base, blaze-svg, bytestring, stdenv - , template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "barrier"; - version = "0.1.1"; - sha256 = "6395da01eea1984c7bcc85c624b1b5dfbe0b6b764adeed7b04c9fa4d8de91ed9"; - revision = "1"; - editedCabalFile = "167akvi72l47gcqbq5609m24469pq0xmv0kjbmivnrxs796gh890"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-svg bytestring template-haskell text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/philopon/barrier"; - description = "Shields.io style badge generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.10.5"; - sha256 = "990aea21568956d44ab018c5dbfbaea014b9a0d5295d29ca7550149419a6fb41"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.10.5"; - sha256 = "175dcfd1453bd02ec955c05181cbf4278af145183b5899c62d3be29d866170ee"; - revision = "1"; - editedCabalFile = "15sn2qc8k0hxbb2nai341kkrci98hlhzcj2ci087m0zxcg5jcdbp"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-noprelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-noprelude"; - version = "4.12.0.0"; - sha256 = "abfa32167a9b4a68d4ae5acda2e9d66ffe883cdb780c4e626794cc44a42d62c1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/base-noprelude"; - description = "\"base\" package sans \"Prelude\" module"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.1"; - sha256 = "442bd63aed102e753b2fed15df8ae19f35ee07af26590da63837c523b64a99db"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.3"; - sha256 = "e3cc66e99d6c83aac548c4d8e6a166e5bd9cf557947cde49161026d0341267fe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.3"; - sha256 = "ee7bbe2bd314e8860a641264e956c2b5100ef5b2d5b847a69a3f3c894fa446c5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.2"; - sha256 = "193654ed9bd9e7f20163c9b70bab32d33010be50a5e1e8e2258229faf32a608c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, http-api-data - , QuickCheck, serialise, stdenv, text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1.0.1"; - sha256 = "f607d07c4aab227b4536c495fa7c07b35ddc9c2c013d385c16c02f236526780e"; - revision = "3"; - editedCabalFile = "0gqyij803y0shpc5knljbffss6c1pbdanfzwlws01vkl4y10sfja"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable http-api-data QuickCheck serialise text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.10"; - sha256 = "e3471b037187da02814fa710c4d59a804c5446a3617122aca63f32d4f8c4f505"; - revision = "2"; - editedCabalFile = "0ysyr6ir3i05a52rphsd3sp5izw397b0idamb7hm23jzl58qhj5v"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation#readme"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bazel-runfiles" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "bazel-runfiles"; - version = "0.7.0.1"; - sha256 = "4d217f74a7eee5dced014d74ac8a3be886d9d0c5ce8e556d8ef16535bde40a00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/rules_haskell#readme"; - description = "Locate Bazel runfiles location"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "beam-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist, free - , ghc-prim, hashable, microlens, mtl, network-uri, scientific - , stdenv, tagged, text, time, vector, vector-sized - }: - mkDerivation { - pname = "beam-core"; - version = "0.8.0.0"; - sha256 = "2893b34228b6888fdd0c49b0c7e2498d40628e74db390d9b33ce026febeee1d0"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist free ghc-prim hashable - microlens mtl network-uri scientific tagged text time vector - vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "http://travis.athougies.net/projects/beam.html"; - description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.12"; - sha256 = "a6376f4741588201ab6e5195efb1e9921bc0a899f77a5d9ac84a5db32f3ec9eb"; - revision = "1"; - editedCabalFile = "0sk6vkjwk7g1diwah67ifj7s69qvwi52ngaijkfx5prn0vz24ldn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "benchpress" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, time }: - mkDerivation { - pname = "benchpress"; - version = "0.2.2.12"; - sha256 = "d571e8d37f5ded433f184dcf8319757284abe6c0fce3106dd716812a5b0dab64"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl time ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/WillSewell/benchpress"; - description = "Micro-benchmarking with detailed statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bencode" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, parsec - , stdenv - }: - mkDerivation { - pname = "bencode"; - version = "0.6.0.0"; - sha256 = "3b8efdfecee9bc486d9bcdbb633b7128ca235360f102478a7e0f8c895281f68a"; - revision = "1"; - editedCabalFile = "0nvph7frmrra9k57v01saxgnhf1ma3m8qzwj1i53pswssfnj41mv"; - libraryHaskellDepends = [ - base binary bytestring containers parsec - ]; - doHaddock = false; - doCheck = false; - description = "Parser and printer for bencoded data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.4"; - sha256 = "29d62cf43fcef94534a585623357ab6d89a940db8d3931cb092485c6c3b19b8c"; - revision = "1"; - editedCabalFile = "05qh2xh2j3w5f1q94wfgfp06z9c4fyrgm4cncy6y2lbb1ficsh3j"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.3.3"; - sha256 = "73829355c7bcbd3eedba22a382a04a3ab641702b00828790ec082ec2db3a8ad1"; - libraryHaskellDepends = [ base containers exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-bits" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "binary-bits"; - version = "0.5"; - sha256 = "16534a018a4754d8d1eab051711c23fb741f41a0d141b289001c52824b5be794"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Bit parsing/writing on top of binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3.1"; - sha256 = "0480c3ff498bdbba6913ee8ad70d4828cf7a766bf9336a3ed8eb73676c46d29f"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ext" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, data-binary-ieee754, errors, exceptions - , monad-control, monad-loops, mono-traversable, mtl, scientific - , stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "binary-ext"; - version = "2.0.4"; - sha256 = "6e58e19bde26d6f271916ceb43a28903136e28cf7868d86f65e68a60152ade08"; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - data-binary-ieee754 errors exceptions monad-control monad-loops - mono-traversable mtl scientific text transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/binary-ext#readme"; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = stdenv.lib.licenses.asl20; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, aeson, base, binary, case-insensitive, hashable - , scientific, stdenv, tagged, text, text-binary, time - , unordered-containers, vector, vector-binary-instances - }: - mkDerivation { - pname = "binary-orphans"; - version = "0.1.8.0"; - sha256 = "f17557ccd98931df2bea038f25e7f835f38019ea7d53bd763f71fe64f931c0cc"; - revision = "5"; - editedCabalFile = "1dny1jvwwcyrbzhqvymmn6n7ib48bpy0nasbrcrdrpzjypkmg500"; - libraryHaskellDepends = [ - aeson base binary case-insensitive hashable scientific tagged text - text-binary time unordered-containers vector - vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-orphans#readme"; - description = "Orphan instances for binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.3.0"; - sha256 = "bc6195493b950efcbeb9ef54dfe47a6badf894dff934cf02a4b170331c1b217a"; - revision = "1"; - editedCabalFile = "09ag18yr1m26fl3w7ab1d5q5j201ygbw7qsbsy41bwd6iq87rq15"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, generics-sop, hashable, scientific, SHA - , stdenv, tagged, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.1.5.1"; - sha256 = "70cb8fff540937f1d9753a71e0343039ee1718a0f029d4df698164b04fd5d5a4"; - revision = "1"; - editedCabalFile = "1z612d3wbrlywcx96lc52svi9b2s6nskdnwnwm3d5mylcqaqckcx"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - generics-sop hashable scientific SHA tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.2.1.1"; - sha256 = "6b24c66b20ebfd8ff2e4ac32e3b435889bba0a32477598ba69fc7adc9608160e"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bins" = callPackage - ({ mkDerivation, base, containers, finite-typelits - , ghc-typelits-knownnat, ghc-typelits-natnormalise, math-functions - , profunctors, reflection, stdenv, tagged, vector-sized - }: - mkDerivation { - pname = "bins"; - version = "0.1.1.1"; - sha256 = "28739d05b7946d6237426294a9ded16d99d674f307cf25ac2482bc52ef2da8ec"; - libraryHaskellDepends = [ - base containers finite-typelits ghc-typelits-knownnat - ghc-typelits-natnormalise math-functions profunctors reflection - tagged vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/bins#readme"; - description = "Aggregate continuous values into discrete bins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bit-stream" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bit-stream"; - version = "0.1.0.2"; - sha256 = "811f2e7d4a827440bc21557e48c5310fe91e1b17f337ec35208546e1c5639bf4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bit-stream#readme"; - description = "Lazy, infinite, compact stream of Bool with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitcoin-block" = callPackage - ({ mkDerivation, base, binary, bitcoin-tx, bitcoin-types - , bytestring, cryptohash, hexstring, largeword, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-block"; - version = "0.13.1"; - sha256 = "d7f57c0fe71045dab85d223dc15d64db3a15cc7fd8446bfe4ebd98cd9d417d5a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-tx bitcoin-types bytestring cryptohash - hexstring largeword lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin blocks"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-script" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-script"; - version = "0.11.1"; - sha256 = "398c1d86e918731b5b2026351bb3b0b90b20606517e7c21e42f05d6c6e197b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Compilation, manipulation and decompilation of Bitcoin scripts"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-tx" = callPackage - ({ mkDerivation, base, binary, bitcoin-script, bitcoin-types - , bytestring, cryptohash, hexstring, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-tx"; - version = "0.13.1"; - sha256 = "3bb88265353066c394e96a56b2dc555fa13d37ca7f820978b793196c6829cc00"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-script bitcoin-types bytestring cryptohash - hexstring lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-types" = callPackage - ({ mkDerivation, base, base58string, binary, bytestring, hexstring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-types"; - version = "0.9.2"; - sha256 = "b72f9448508b64706d5f443748dc9b8abde8e749959187ce3d8356cde0d6c40b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base58string binary bytestring hexstring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides consistent low-level types used commonly among Bitcoin implementations"; - license = stdenv.lib.licenses.mit; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.1"; - sha256 = "657e557bb913b53fb3b3fc7eda820cf3c85a5b89692d242275d3e8e8d9479c93"; - revision = "5"; - editedCabalFile = "012qycmsfz5l6y82d3zgjmp1k3pgvhlpjdk6rwlpc1wlfbpdqiaw"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.3"; - sha256 = "692b08b3e9a490f5b2776b8f20277320fad247d9c4ea158225fee0f27f91afed"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - description = "Useful bitwise operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.1"; - sha256 = "ffc0f8508049717192021dabcfe77d65f604cbe107da6b8b76d45b891dbe52de"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, scientific, split, stdenv, text, time - }: - mkDerivation { - pname = "bitx-bitcoin"; - version = "0.12.0.0"; - sha256 = "31f2398bbb0deff80361fdabb108c1552ae097b15a44c6ca6674977ae735c871"; - libraryHaskellDepends = [ - aeson base bytestring deepseq exceptions http-client - http-client-tls http-types microlens microlens-th network - QuickCheck scientific split text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tebello-thejane/bitx.hs"; - description = "A Haskell library for working with the BitX bitcoin exchange"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.2.0"; - sha256 = "07d910e3f5c6e98f5a6b9d53dbe5f52506c3859b513bc7493b52552a28382cfc"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.1"; - sha256 = "85a77bd66dc55e48a0922ca1c10c484f4a01bddb31008e24bd5a7b75460fbcfe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blas-hs" = callPackage - ({ mkDerivation, base, blas, stdenv, storable-complex }: - mkDerivation { - pname = "blas-hs"; - version = "0.1.1.0"; - sha256 = "80e06b0927982b391d239f8656ed437cd29665969d1a078ea4e42a2bf196b086"; - libraryHaskellDepends = [ base storable-complex ]; - librarySystemDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Rufflewind/blas-hs"; - description = "Low-level Haskell bindings to Blas"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-colonnade" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, colonnade, stdenv - , text - }: - mkDerivation { - pname = "blaze-colonnade"; - version = "1.2.2"; - sha256 = "1f2f7116ffea5ad2a04337b9bdc1277de0b12a71fb4b830b216c37911d8ea14c"; - libraryHaskellDepends = [ - base blaze-html blaze-markup colonnade text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Helper functions for using blaze-html with colonnade"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.1.1"; - sha256 = "ea0e944298dbbd692b41af4f15dbd1a1574aec7b8f91f38391d25106b143bb1b"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.2"; - sha256 = "c6f0cf8fd707ba8c0b700e0c5ad6a1212c8b57d46a9cbdfb904d8bf585ad82e1"; - revision = "1"; - editedCabalFile = "0ivspcxz0b2r7kcas5hlw0fh92883r8ghwz9lck7nyqn6wn5i8zx"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "bno055-haskell" = callPackage - ({ mkDerivation, base, bytestring, cereal, h2c, mtl, resourcet - , stdenv - }: - mkDerivation { - pname = "bno055-haskell"; - version = "0.1.0"; - sha256 = "7adc29f94755047b4214115c23b63041e9d3970d2648f53dcd38b84725059ad8"; - libraryHaskellDepends = [ - base bytestring cereal h2c mtl resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/bno055-haskell"; - description = "Library for communication with the Bosch BNO055 orientation sensor"; - license = stdenv.lib.licenses.mit; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolean-normal-forms" = callPackage - ({ mkDerivation, base, cond, containers, deepseq, stdenv }: - mkDerivation { - pname = "boolean-normal-forms"; - version = "0.0.1"; - sha256 = "8b90942bcbda0c761e683931bd813613f3819f804f02fed115f89dbdb292208a"; - revision = "1"; - editedCabalFile = "1p31kqxp77xdhkszppmnzqgxp883vasrh5910qfif50lch39myfm"; - libraryHaskellDepends = [ base cond containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "Boolean normal form: NNF, DNF & CNF"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, constraints, fin - , generics-sop, stdenv, streams, tagged, transformers - , transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1.1"; - sha256 = "8fc34a3b0f97834fd0aa56f3f39866c6d8716619ad4a154c38143c9c89ac63ec"; - libraryHaskellDepends = [ - adjunctions base base-compat constraints fin generics-sop streams - tagged transformers transformers-compat vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.4"; - sha256 = "148309e23eb8b261c1de374712372d62d8c8dc8ee504c392809c7ec33c0a0e7c"; - revision = "2"; - editedCabalFile = "0bz62lxdbnwkfr1d4ngm8xi4y1ndpdflbv71s6h43vp5lbd546hr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bson" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash - , data-binary-ieee754, mtl, network, stdenv, text, time - }: - mkDerivation { - pname = "bson"; - version = "0.3.2.7"; - sha256 = "27329dcd593fd7503e7cf6705c863ed5c76b2fc816342e194c79d5a1d4c87f2b"; - revision = "1"; - editedCabalFile = "1y6gy4rq2wb123p1qc35p0hnk8dqh2hnlys2c97znwcjjsd5p203"; - libraryHaskellDepends = [ - base binary bytestring cryptohash data-binary-ieee754 mtl network - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mongodb-haskell/bson"; - description = "BSON documents are JSON-like objects with a standard binary encoding"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bson-lens" = callPackage - ({ mkDerivation, base, bson, lens, stdenv, text }: - mkDerivation { - pname = "bson-lens"; - version = "0.1.1"; - sha256 = "d73bb417def2d8cb1efebfc22482a859e119bcc4005dd10106c82dff5ceeb160"; - libraryHaskellDepends = [ base bson lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/bson-lens"; - description = "BSON lenses"; - license = stdenv.lib.licenses.mit; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.2.0.0"; - sha256 = "22ffcc2c0168992f4fcf06bd2b3467392b889801b2d3ab45212cc4a1c8f2a6c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.7"; - sha256 = "b389fac5ce61818adb8451550762aca135c34b9007b68be5a8d9a0fa45583f58"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bugsnag-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, Glob, http-client, http-client-tls, http-conduit - , http-types, iproute, network, parsec, stdenv, template-haskell - , text, th-lift-instances, time, ua-parser, wai - }: - mkDerivation { - pname = "bugsnag-haskell"; - version = "0.0.3.0"; - sha256 = "98258f64568d1898a70e5c3d8faaacfd1c06c3fa79f30e1c9abe3dba87c63cbc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers Glob http-client - http-client-tls http-conduit http-types iproute network parsec - template-haskell text th-lift-instances time ua-parser wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/bugsnag-haskell#readme"; - description = "Bugsnag error reporter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "bulletproofs" = callPackage - ({ mkDerivation, arithmoi, base, containers, cryptonite, memory - , MonadRandom, protolude, random-shuffle, stdenv, text - }: - mkDerivation { - pname = "bulletproofs"; - version = "0.4.0"; - sha256 = "6c6ea840f4d22e07bc0325dcbc6f41004b627e1868ddd13939fdd6105e41842b"; - libraryHaskellDepends = [ - arithmoi base containers cryptonite memory MonadRandom protolude - random-shuffle text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/bulletproofs#readme"; - license = stdenv.lib.licenses.asl20; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.2.1"; - sha256 = "aad95fdb21453769d390da9b0f4d8c81759209229115f6620816be4c87845c9a"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butter" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , forkable-monad, free, HUnit, network-simple, stdenv, stm - , template-haskell, text, transformers - }: - mkDerivation { - pname = "butter"; - version = "0.1.0.6"; - sha256 = "8640b2681a57c0bc545684c821e80a97d57fe14bc6036e9030dc4cc63c2e4164"; - libraryHaskellDepends = [ - aeson base bytestring containers forkable-monad free HUnit - network-simple stm template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/Butter#readme"; - description = "Monad Transformer for Asyncronous Message Passing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp - , mono-traversable, primitive, QuickCheck, stdenv - }: - mkDerivation { - pname = "bv-little"; - version = "0.1.2"; - sha256 = "8c8d394050d154e100e29df7daf75235eb870aeb3946d8a68f58472e31c14c77"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp mono-traversable primitive - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest - , cereal, containers, hashable, mtl, scientific, stdenv, text, time - , transformers, transformers-compat, unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.15.5"; - sha256 = "039935e6b367eb8657aa3eb109e719b257a06524b0d9ff5246e8029bb7a07118"; - revision = "1"; - editedCabalFile = "0k05cszpxmdwgnbxhmlmmvsxkwlanvz8dn0p3f6bzs8qlv3kbhm7"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytestring cereal containers hashable mtl scientific - text time transformers transformers-compat unordered-containers - void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.2.0"; - sha256 = "27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5.1"; - sha256 = "1879edb56e530169f5c4a738fff46ac56faeb30f9ac3d59f1361183111a5c69e"; - revision = "1"; - editedCabalFile = "1snn8qb17maa76zji75i4yfz9x8ci16xp6zwg6kgwb33lf06imnd"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.2"; - sha256 = "a12df2ef970eab34c7bb968ba1a157fb01e478cd9abada097fc3e4ec61b5020e"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib" = callPackage - ({ mkDerivation, base, bytestring, bzip2, stdenv }: - mkDerivation { - pname = "bzlib"; - version = "0.5.0.5"; - sha256 = "9ee7d0ac7461b330820af928c13c6668bf4fe3601f171c42432a85c33718017e"; - revision = "1"; - editedCabalFile = "1d4ra5prh2q9h8inpwvrsmkmg1ndisdj47jv06iijpj6xdp5bapl"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the bzip2 format"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.1"; - sha256 = "43d811549f7fb0710e4895ad54f78418271579f7e27d75e3c3470b74b285a239"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.6"; - sha256 = "91dd121ac565009f2fc215c50f3365ed66705071a698a545e869041b5d7ff4da"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.6"; - sha256 = "decaaa5a73eaabaf3c4f8c644bd7f6e3f428b6244e935c0cf105f75f9b24ed2d"; - revision = "2"; - editedCabalFile = "1kbiwqm4fxrsdpcqijdq98h8wzmxydcvxd03f1z8dliqzyqsbd60"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-install" = callPackage - ({ mkDerivation, array, async, base, base16-bytestring, binary - , bytestring, Cabal, containers, cryptohash-sha256, deepseq - , directory, echo, edit-distance, filepath, hackage-security - , hashable, HTTP, mtl, network, network-uri, parsec, pretty - , process, random, stdenv, stm, tar, text, time, unix, zip-archive - , zlib - }: - mkDerivation { - pname = "cabal-install"; - version = "2.4.1.0"; - sha256 = "69bcb2b54a064982412e1587c3c5c1b4fada3344b41b568aab25730034cb21ad"; - revision = "3"; - editedCabalFile = "1mnm6mfrgavq3blvkm3wz45pqrj10apjihg1g9cds58qp19m9r1h"; - configureFlags = [ "-f-native-dns" ]; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath process ]; - executableHaskellDepends = [ - array async base base16-bytestring binary bytestring Cabal - containers cryptohash-sha256 deepseq directory echo edit-distance - filepath hackage-security hashable HTTP mtl network network-uri - parsec pretty process random stm tar text time unix zip-archive - zlib - ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir $out/etc - mv bash-completion $out/etc/bash_completion.d - ''; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base-compat - , base-orphans, base16-bytestring, bytestring, containers - , directory, filepath, mtl, optparse-applicative, parsec, stdenv - , text, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.5.0.0"; - sha256 = "18c6cc4d79ef73f932f8cc410a5f8c99cff6538aa7f21ca8b76443e93825caed"; - revision = "1"; - editedCabalFile = "0nnh6qq36cpfwzqrv1i1cn93n6n32nbl6ddp0y22jmmxnx9xsrvp"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat base-orphans base16-bytestring bytestring - containers directory filepath text vector - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat bytestring containers directory mtl - optparse-applicative parsec text vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = "GPL-2.0-or-later AND BSD-3-Clause"; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, process, simple-cmd - , stdenv, time, unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "0.12.6"; - sha256 = "da26117406caca76e85729b69c8ef573499b5fb1a816951aeb861fb4cf16c0cc"; - revision = "1"; - editedCabalFile = "0wfj9gcygm1c9fy86973ybs8ww8g6fn3l7f5v2kvs28204g8i18g"; - configureFlags = [ "-f-old-locale" ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit process simple-cmd time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal - , containers, deepseq, directory, distribution-nixpkgs, filepath - , hackage-db, hopenssl, hpack, language-nix, lens, monad-par - , monad-par-extras, mtl, optparse-applicative, pretty, process - , split, stdenv, text, time, transformers, yaml - }: - mkDerivation { - pname = "cabal2nix"; - version = "2.12"; - sha256 = "7b1cf2f4cdfa4a5c723993644e4827a1442f2420d88a2aa967b3314eba2aa87e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db hopenssl hpack - language-nix lens optparse-applicative pretty process split text - time transformers yaml - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory - distribution-nixpkgs filepath hopenssl language-nix lens monad-par - monad-par-extras mtl optparse-applicative pretty - ]; - doHaddock = false; - doCheck = false; - preCheck = '' - export PATH="$PWD/dist/build/cabal2nix:$PATH" - export HOME="$TMPDIR/home" - ''; - homepage = "https://github.com/nixos/cabal2nix#readme"; - description = "Convert Cabal files into Nix build instructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.2.2.1"; - sha256 = "5ed56787f30468750cd356a160e7c73eda58c5ca100634ae343efc6d5619634b"; - revision = "1"; - editedCabalFile = "09bkjwnr01mgn1yf861p3dai18kgpm5mvw8nmh5zvdr8sgqi207v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.1.1"; - sha256 = "1029991d52add00d7ea68cc03e7d87301cf23f644a0ffa8dbbaed91c9eb05f11"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cachix" = callPackage - ({ mkDerivation, async, base, base16-bytestring, base64-bytestring - , bytestring, cachix-api, conduit, conduit-extra, cookie - , cryptonite, data-default, dhall, directory, ed25519, filepath - , fsnotify, here, hspec-discover, http-client, http-client-tls - , http-conduit, http-types, lzma-conduit, megaparsec, memory - , mmorph, netrc, optparse-applicative, process, protolude, retry - , safe-exceptions, servant, servant-auth, servant-auth-client - , servant-client, servant-client-core, servant-conduit, stdenv - , text, unix, uri-bytestring, versions - }: - mkDerivation { - pname = "cachix"; - version = "0.2.0"; - sha256 = "16ba70af7f2ba4bc147ba84c34c9884bee589237a1d935f932c5e0b68157665a"; - revision = "1"; - editedCabalFile = "103ypqp0kclc1814q2ci5fi2jpfbxwmjqfsnkvwf3c1vr8cqplmh"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async base base16-bytestring base64-bytestring bytestring - cachix-api conduit conduit-extra cookie cryptonite data-default - dhall directory ed25519 filepath fsnotify here http-client - http-client-tls http-conduit http-types lzma-conduit megaparsec - memory mmorph netrc optparse-applicative process protolude retry - safe-exceptions servant servant-auth servant-auth-client - servant-client servant-client-core servant-conduit text unix - uri-bytestring versions - ]; - executableHaskellDepends = [ base cachix-api ]; - executableToolDepends = [ hspec-discover ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cachix/cachix#readme"; - description = "Command line client for Nix binary cache hosting https://cachix.org"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cachix-api" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, cookie, cryptonite, deepseq, exceptions, http-api-data - , http-media, lens, memory, resourcet, servant, servant-auth - , servant-auth-server, servant-auth-swagger, servant-client - , servant-swagger, stdenv, string-conv, swagger2, text - , transformers - }: - mkDerivation { - pname = "cachix-api"; - version = "0.2.0"; - sha256 = "73f27484d3748fe02ce834549dd3a04c92110390f7d9adb4c391bad2ececbef2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit cookie cryptonite - deepseq exceptions http-api-data http-media lens memory resourcet - servant servant-auth servant-auth-server servant-auth-swagger - servant-client servant-swagger string-conv swagger2 text - transformers - ]; - executableHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cachix/cachix#readme"; - description = "Servant HTTP API specification for https://cachix.org"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cacophony" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, exceptions, free - , lens, memory, monad-coroutine, mtl, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "cacophony"; - version = "0.10.1"; - sha256 = "52c5ac525767c89e103fcf50ebf8db2a9425904abea2e570b37c7fdf2a013bf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cryptonite exceptions free lens memory - monad-coroutine mtl safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/cacophony#readme"; - description = "A library implementing the Noise protocol"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0.0.1"; - sha256 = "8cd39ccf4fbe538f8e5d434d0efd0c559074420b9283d2c7c4b7ab6262b4d529"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.1.0"; - sha256 = "f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.0.11"; - sha256 = "a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.0"; - sha256 = "8e8a3631ef5823ae53dfeb7497ad4856c6758e3e380ff164f6a261f41685f6d7"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.1.0"; - sha256 = "762c8aaea2cdad61f52bad1b9f1f3b32764b4b6da03371aba6e5017f69614277"; - revision = "3"; - editedCabalFile = "0q9hwcn5jr5vs52n246qw8iw9jmc1d3dla071hhc0hdpck4igq6m"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-conduit" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, containers, mtl, stdenv, text - }: - mkDerivation { - pname = "cassava-conduit"; - version = "0.5.1"; - sha256 = "b55b72e9d52a40473f609c0c406db41bd92178a493f191295a7d8f23d89677f8"; - libraryHaskellDepends = [ - array base bifunctors bytestring cassava conduit containers mtl - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domdere/cassava-conduit"; - description = "Conduit interface for cassava package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-megaparsec" = callPackage - ({ mkDerivation, base, bytestring, cassava, megaparsec, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava-megaparsec"; - version = "2.0.0"; - sha256 = "cee6286a13a9884c3d725f3e7c57579b649fe7b850a5c898b9fdf637dddb904b"; - libraryHaskellDepends = [ - base bytestring cassava megaparsec unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/cassava-megaparsec"; - description = "Megaparsec parser of CSV files that plays nicely with Cassava"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava-records" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, foldl - , stdenv, template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "cassava-records"; - version = "0.1.0.4"; - sha256 = "11f832c11125bd7a73b57941284d9aeb7f1e7572004da7e37311b34d3366af8d"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava foldl template-haskell text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/cassava-records#readme"; - description = "Auto-generation of records data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, stdenv, transformers }: - mkDerivation { - pname = "category"; - version = "0.2.4.0"; - sha256 = "d1da3da972543c6a7dea7f2774e4cf79221d21bc563316007121e541f7012530"; - libraryHaskellDepends = [ alg base transformers ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cayley-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , exceptions, http-client, http-conduit, lens, lens-aeson, mtl - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cayley-client"; - version = "0.4.9"; - sha256 = "ff9ce08f141477cb855ac1f91505f7ab400722ee74b6e420a3179288bb182016"; - libraryHaskellDepends = [ - aeson attoparsec base binary bytestring exceptions http-client - http-conduit lens lens-aeson mtl text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/cayley-client"; - description = "A Haskell client for the Cayley graph database"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , ghc-prim, half, integer-gmp, primitive, stdenv, text - }: - mkDerivation { - pname = "cborg"; - version = "0.2.1.0"; - sha256 = "9198735f7645ae492345505448f790433f5fe407b19e1c6b2ec2a4c76bd97483"; - revision = "1"; - editedCabalFile = "0v3z332gfi3mf0ilw94qwa0afkz7w1n5rnjjj0g170dmqrjphvrg"; - libraryHaskellDepends = [ - array base bytestring containers deepseq ghc-prim half integer-gmp - primitive text - ]; - doHaddock = false; - doCheck = false; - description = "Concise Binary Object Representation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, cborg, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "cborg-json"; - version = "0.2.1.0"; - sha256 = "3fb6b54e6ddd322880689fb461f7911aca45b9758482c9f9949619c7d7b52006"; - libraryHaskellDepends = [ - aeson aeson-pretty base cborg scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A library for encoding JSON as CBOR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.8.0"; - sha256 = "37d3668aba37babc83321aa1538841da041476b5423722e6f5210c4e5e014282"; - revision = "1"; - editedCabalFile = "0rn97yfx53ljhhjwvfcsnqq27ih7wmbb85q67hjklllsflbm5g7v"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-time" = callPackage - ({ mkDerivation, base, cereal, stdenv, time }: - mkDerivation { - pname = "cereal-time"; - version = "0.1.0.0"; - sha256 = "bec6d5103ec45bee242825da4cf695f574f101bb1d48778bf7823175dfa43cb2"; - libraryHaskellDepends = [ base cereal time ]; - doHaddock = false; - doCheck = false; - description = "Serialize instances for types from `time` package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cfenv" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "cfenv"; - version = "0.1.0.0"; - sha256 = "8ce96643559ebe4504c0641f9817d8795b22631f614084af50c88e51277e747e"; - libraryHaskellDepends = [ aeson base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomphp/haskell-cfenv#readme"; - description = "A library getting the environment when running on Cloud Foundry"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cgi" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, mtl - , multipart, network, network-uri, parsec, stdenv, time, xhtml - }: - mkDerivation { - pname = "cgi"; - version = "3001.3.0.3"; - sha256 = "eb8144d7d0b74643c43b73c63e4d9fa88a110c4be719b9436917ca7d0d32b4e6"; - revision = "4"; - editedCabalFile = "05b10dq22lzr19yi9mns8asvdhc3kplv5jl84mj20rjakv86hdsg"; - libraryHaskellDepends = [ - base bytestring containers exceptions mtl multipart network - network-uri parsec time xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cheecheeo/haskell-cgi"; - description = "A library for writing CGI programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.4.1"; - sha256 = "926fcb205f6d43ed3a2b85b8e88a6c99a2deb097bc7988116c493a04a52547cf"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , data-default, deepseq, mtl, stdenv, syb, text, uniplate - , xss-sanitize - }: - mkDerivation { - pname = "cheapskate"; - version = "0.1.1.1"; - sha256 = "d50d4f6978343f4990aeb6debf11e33054d8dc5ec4390196f12b8b68176ade62"; - revision = "1"; - editedCabalFile = "0mf6qdpgh56n0ynyy272vhkk2bjrdhppks2vrw79gk0kzn29fggh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html containers data-default deepseq mtl syb text - uniplate xss-sanitize - ]; - executableHaskellDepends = [ base blaze-html bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/cheapskate"; - description = "Experimental markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-highlight" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate - , stdenv, text - }: - mkDerivation { - pname = "cheapskate-highlight"; - version = "0.1.0.0"; - sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; - revision = "1"; - editedCabalFile = "1c8kxqdqf0j962xjdrrjfcbjsl0c1kax31rjykymv7w16d6hmlj4"; - libraryHaskellDepends = [ - base blaze-html cheapskate highlighting-kate text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-highlight"; - description = "Code highlighting for cheapskate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-lucid" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, lucid, stdenv }: - mkDerivation { - pname = "cheapskate-lucid"; - version = "0.1.0.0"; - sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; - revision = "1"; - editedCabalFile = "197nx95xw21i7zyvgzcgnr36ab6vrk17c66iz8ndwz61vp1jf6hc"; - libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-lucid"; - description = "Use cheapskate with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "check-email" = callPackage - ({ mkDerivation, base, bytestring, email-validate, resolv, stdenv - }: - mkDerivation { - pname = "check-email"; - version = "1.0.2"; - sha256 = "1c2615fadba09a5d7aa5c68648d12218a595efb759842fb4f524cf380afa9327"; - libraryHaskellDepends = [ base bytestring email-validate ]; - librarySystemDepends = [ resolv ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qoelet/check-email#readme"; - description = "Confirm whether an email is valid and probably existant"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) resolv;}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.4.14"; - sha256 = "7fc50d394490541e21fba90f0e9f744e144ec00a9f910691e09960055b3fcb5e"; - revision = "1"; - editedCabalFile = "0grdkhnwml893688bpsdd0lvdln0zjgay9bn51dqfbnkflhnmla9"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-aes128" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cereal, crypto-api - , process, stdenv, tagged - }: - mkDerivation { - pname = "cipher-aes128"; - version = "0.7.0.4"; - sha256 = "cd8d8987c1a1839f3c66e655277981083be85489d34b6b47f95d7e82d2d10285"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/cipher-aes128"; - description = "AES and common modes using AES-NI when available"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-blowfish" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-blowfish"; - version = "0.0.3"; - sha256 = "8f41170a851dba6d0b6f07298af3213baca09ab2a8aaf2adb733631feb3b6641"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Blowfish cipher"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "circle-packing" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "circle-packing"; - version = "0.1.0.6"; - sha256 = "64ee44a90da3e5fe20d5b78bfe6eba93102a6b52c65f8a7b99af7799798ee81b"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Simple heuristic for packing discs of varying radii in a circle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.4"; - sha256 = "6f550e999cb3b3bf1d4d041363c0bead0eec02f078dc51301873cc450143a244"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "DEPRECATED in favor of webex-teams-api"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.5.0"; - sha256 = "d3bae4b17fdf73d7255f550ad172b1f709a8743371aa3a40c13c2cdc9fa7a4da"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.5.0"; - sha256 = "da27783595cd6b94ea5cb93f3e81084a664e65ed4766757a5e7f81fb3df8fd00"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.5.0"; - sha256 = "9ffbc4447ec2df8131ca32c259da19f379109d6e44569a7ee16714ab67029f83"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "classyplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "classyplate"; - version = "0.3.2.0"; - sha256 = "712eefbe6b6fd92d6e5e7982d82a27e45b7992a83c2b09fc8696b1e30752527a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Fuseable type-class based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.1"; - sha256 = "844e9101cc1835eb12bac50e289d00f19c24eeee12bcdebae1b633edffa328a3"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "fe2abf0386c96df6e51cbae4f45e074b54452fc01f9308b098198ade4ffc5ea4"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.2"; - sha256 = "eca2c21c6d3d9d3e6f26f7ca36db99680120c8f959fdbfef8c970aac131936c0"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark"; - version = "0.5.6.3"; - sha256 = "eee2e205d6502d3eb19c6940e58154802353835365edf34f9e1e08a8a1597f27"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/cmark-hs"; - description = "Fast, accurate CommonMark (Markdown) parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.1.8"; - sha256 = "34ed9c997d08936bb6abd9d84be45918e69f803504f570601cab9cd4159cbf7c"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "co-log" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, co-log-core - , containers, contravariant, directory, filepath, markdown-unlit - , mtl, stdenv, stm, text, time, transformers, typerep-map - }: - mkDerivation { - pname = "co-log"; - version = "0.2.0"; - sha256 = "592e2a5cb7fbe5ae48e7d5682337ac197ef3e41f3577a185b3a9989ab31ea8f5"; - revision = "1"; - editedCabalFile = "0np7g6sqm6iyjyrypwlgrz67n0vhasvgp1k6cwrcj2lnmvjcrmvl"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring co-log-core containers contravariant - directory filepath mtl stm text time transformers typerep-map - ]; - executableHaskellDepends = [ base text typerep-map ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "co-log-core" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "co-log-core"; - version = "0.1.1"; - sha256 = "bc0071c6f09dd45b8eee9a990696490dfa96e60425c2c5d4c5b591da999f1303"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.2"; - sha256 = "bfe32a8c4be9cf0d5a088267bf3fdf4adda8ba3f109e85675c93e70d575e1844"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec" = callPackage - ({ mkDerivation, aeson, base, binary, binary-bits, bytestring, mtl - , profunctors, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "codec"; - version = "0.2.1"; - sha256 = "ffc261b58108c3d90c0b0b68461857d1148208d1a9645916e63241aaa3c25b28"; - libraryHaskellDepends = [ - aeson base binary binary-bits bytestring mtl profunctors - template-haskell text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chpatrick/codec"; - description = "Simple bidirectional serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.2.0"; - sha256 = "61eb624e5f347ec9249f976bc8b62ae597777604d82ab0e62acb9901374ae365"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "codo-notation" = callPackage - ({ mkDerivation, base, comonad, haskell-src-meta, parsec, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "codo-notation"; - version = "0.5.2"; - sha256 = "78eb57004541ed29eb4c54196b91ac2dd1028a3315f51cd4dc00debfc0938eaf"; - libraryHaskellDepends = [ - base comonad haskell-src-meta parsec template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - description = "A notation for comonads, analogous to the do-notation for monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "coercible-utils" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "coercible-utils"; - version = "0.0.0"; - sha256 = "2a624986cdc010c7fc3e90f8c94f722995af9fe6e88b9d52a94ebaa319b08c98"; - revision = "1"; - editedCabalFile = "1xbnkv6fqf4mizqkha8b073p0r84l1rx1kzdsd6nh8b0adrp6i4d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/coercible-utils"; - description = "Utility functions for Coercible types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colonnade" = callPackage - ({ mkDerivation, base, bytestring, contravariant, profunctors - , stdenv, text, vector - }: - mkDerivation { - pname = "colonnade"; - version = "1.2.0.1"; - sha256 = "32ebd86360c9a363d62a2490b7120de5651a6674a79c4f9d85e13d2cc8cb3e8b"; - libraryHaskellDepends = [ - base bytestring contravariant profunctors text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Generic types and functions for columnar encoding and decoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.2"; - sha256 = "0b42ff47e011f011f73e444d7121b7bc54324077cb2a1011ee01766483706578"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.4"; - sha256 = "0f439f00b322ce3d551f28a4dd1520aa2c91d699de4cdc6d485b9b04be0dc5eb"; - revision = "1"; - editedCabalFile = "1awhbn3pk4zgzpnbbhb10rbxzbb4fz5gywa5h3xl589dclv912ls"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1.0.1"; - sha256 = "c4d67854fecd353f5e7e6be009ffbd16cd6e9f6f41af16f072ae89778596db70"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3.1"; - sha256 = "c926189971d0b416b4b078a1652de65a12a9fabd013d2373204bbe96fef8b562"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv, vector }: - mkDerivation { - pname = "commutative"; - version = "0.0.2"; - sha256 = "ccbc6a445bbc5c26a504a322664b2275e9834fdc17c80a2bdcef0dc517609969"; - libraryHaskellDepends = [ base random semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/commutative#readme"; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , contravariant, distributive, semigroups, stdenv, tagged - , transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.4"; - sha256 = "78a89d7f9f0975b40b3294adcb70885649572b687ac5f5dc98e452471838e825"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers contravariant distributive semigroups tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.7.2"; - sha256 = "c7f9bf47a586720deda33b82ddc633d3507c8bc199eb5555c80931f6c323cae2"; - revision = "2"; - editedCabalFile = "1f5hfmzi2bk7xldxgmcd85gyi4dqm7q18cgmwmzpyz7f67p7awhz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.6.2.0"; - sha256 = "c8e43e6d19f075e7a66a7191350eba0d177b5339ba6db6d3bcfde2d73a0f9000"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.9"; - sha256 = "8cc49408e957c65359182fbfcda80717b931915d101e4be55ccb26c44b098e57"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1.1"; - sha256 = "ae0028cfaf27da2c4d0e70783e8f45e82d33f402af1dfc6778c8ab81cf542f45"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-supply" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "concurrent-supply"; - version = "0.1.8"; - sha256 = "ccf827dcd221298ae93fad6021c63a06707456de0671706b44f1f2fed867f21f"; - revision = "1"; - editedCabalFile = "1yzrr68k81w3jmrarx3y6z7ymzaaxwab509pp6kkd2fjia3g8wwk"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/concurrent-supply/"; - description = "A fast concurrent unique identifier supply with a pure API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.1.1"; - sha256 = "84dfafc92e9553c7bae4b4fe0cba3da29b37def606f88b989db95ee2dc933fa2"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, conduit-zstd, containers - , deepseq, exceptions, lzma-conduit, monad-control, mtl, pqueue - , resourcet, stdenv, stm, stm-conduit, streaming-commons - , transformers, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.9.0"; - sha256 = "11dd94dd4264f6985f35a6c102c3716178757be21da0dce9a4e7d83aa64a4db4"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra conduit-zstd containers deepseq exceptions - lzma-conduit monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-concurrent-map" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, resourcet, stdenv - , unliftio, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-concurrent-map"; - version = "0.1.1"; - sha256 = "527c429c39eaf5181e2aa8e5a6fcafd552149cc37b0b9d21003ff6507cd6c766"; - libraryHaskellDepends = [ - base conduit containers mtl resourcet unliftio unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/conduit-concurrent-map"; - description = "Concurrent, order-preserving mapping Conduit"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-connection" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "conduit-connection"; - version = "0.1.0.4"; - sha256 = "5e784117f3698dc653b286fbb53d530068d0cdadbe130ec02abf42e3f2c821fc"; - libraryHaskellDepends = [ - base bytestring conduit connection resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-connection"; - description = "Conduit source and sink for Network.Connection."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.1.1"; - sha256 = "dcb1a9d6b5e1f34454133adeb29b97f9bbcf1ff998f1f68c58ab9abd41195249"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-iconv" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv }: - mkDerivation { - pname = "conduit-iconv"; - version = "0.1.1.3"; - sha256 = "1c71304782e4599a2987321028b50356c4982b45d9096d954e0b7c0b7ad3acb6"; - libraryHaskellDepends = [ base bytestring conduit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-iconv"; - description = "Conduit for character encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-throttle" = callPackage - ({ mkDerivation, async, base, conduit, conduit-combinators - , conduit-extra, monad-control, resourcet, stdenv, stm, stm-chans - , throttle-io-stream, unliftio, unliftio-core - }: - mkDerivation { - pname = "conduit-throttle"; - version = "0.3.1.0"; - sha256 = "8dd6d616f5ddce25668bb34069bfdcdfe2a866c8d708b725a9b2e450a95aa329"; - libraryHaskellDepends = [ - async base conduit conduit-combinators conduit-extra monad-control - resourcet stm stm-chans throttle-io-stream unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/conduit-throttle#readme"; - description = "Throttle Conduit Producers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-zstd" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv, zstd }: - mkDerivation { - pname = "conduit-zstd"; - version = "0.0.1.1"; - sha256 = "8681f59d08399f92478329b0cdd555ae5a1b7d12ef8acee423fcc10192e00712"; - libraryHaskellDepends = [ base bytestring conduit zstd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-zstd#readme"; - description = "Conduit-based ZStd Compression"; - license = stdenv.lib.licenses.mit; - }) {}; - "confcrypt" = callPackage - ({ mkDerivation, amazonka, amazonka-kms, base, base64-bytestring - , bytestring, conduit, containers, crypto-pubkey-openssh - , crypto-pubkey-types, cryptonite, deepseq, lens, megaparsec, mtl - , optparse-applicative, parser-combinators, stdenv, text - , transformers - }: - mkDerivation { - pname = "confcrypt"; - version = "0.1.0.4"; - sha256 = "6b358692cf5ab9bd92094df93aa774dcfa846577a5eb291dbe02206eafec45b0"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/https://github.com/collegevine/confcrypt#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "configuration-tools" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base-unicode-symbols, base64-bytestring, bytestring, Cabal - , case-insensitive, connection, data-default, deepseq, directory - , dlist, enclosed-exceptions, filepath, http-client - , http-client-tls, http-types, monad-control, mtl, network-uri - , optparse-applicative, process, profunctors, semigroups, stdenv - , text, tls, transformers, unordered-containers, x509, x509-system - , x509-validation, yaml - }: - mkDerivation { - pname = "configuration-tools"; - version = "0.4.0"; - sha256 = "fdb68289ee0a681269e3e4c4d89159b2717f962b7a89515bfa303f06dbda5d2f"; - setupHaskellDepends = [ - base bytestring Cabal directory filepath process - ]; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base-unicode-symbols - base64-bytestring bytestring Cabal case-insensitive connection - data-default deepseq directory dlist enclosed-exceptions filepath - http-client http-client-tls http-types monad-control mtl - network-uri optparse-applicative process profunctors semigroups - text tls transformers unordered-containers x509 x509-system - x509-validation yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alephcloud/hs-configuration-tools"; - description = "Tools for specifying and parsing configurations"; - license = stdenv.lib.licenses.mit; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, byteable, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.2.8"; - sha256 = "70b1f44e8786320c18b26fc5d4ec115fc8ac016ba1f852fa8137f55d785a93eb"; - revision = "2"; - editedCabalFile = "0bhwcd9dqa2jk23bdz3z3vn2p1gzssinp96dxzznb7af4y5x2gmk"; - libraryHaskellDepends = [ - base byteable bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv, unconstrained }: - mkDerivation { - pname = "constraint"; - version = "0.1.3.0"; - sha256 = "de53772aad12dc4a4542d6372a21b46a924019ac0622e8993db77498de4ee07a"; - libraryHaskellDepends = [ base category unconstrained ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "constraints"; - version = "0.10.1"; - sha256 = "5880ec261e053841b307c7c8c59614f46c2efbd5189f0f2a3c817589cedec3f7"; - revision = "1"; - editedCabalFile = "1i2rd805mjz5q7s98ryy1m91zd4b9hx92gw1rwr6kpibqqw9smcb"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers }: - mkDerivation { - pname = "contravariant"; - version = "1.5"; - sha256 = "6ef067b692ad69ffff294b953aa85f3ded459d4ae133c37896222a09280fc3c2"; - libraryHaskellDepends = [ base StateVar transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, base-prelude, contravariant, semigroups - , stdenv, template-haskell, tuple-th - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.4"; - sha256 = "36a9239d5a84bc6a418a3aa1a0df145d76ece24d00b76deb817b92441913e63d"; - revision = "1"; - editedCabalFile = "1h2955ahga6i4fn7k8v66l03v77p6fhsac6ck8gpabkc08ij60wp"; - libraryHaskellDepends = [ - base base-prelude contravariant semigroups template-haskell - tuple-th - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-dsl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-dsl"; - version = "0.2.1.3"; - sha256 = "e8c795e256030194ef9beb8009ed49f1257790ad1b51d3f629c98f6ce5e56967"; - revision = "2"; - editedCabalFile = "18jypzsawq0mp12i35f58px80i3k07ri0g07wcrh6af93vqkhvil"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Atry/Control.Dsl#readme"; - description = "An alternative to monads in do-notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.2"; - sha256 = "63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.1"; - sha256 = "383b98ecf5db5add42f318672af9eb1c8b9d99ec42d48c240e209a93b5cf1186"; - revision = "1"; - editedCabalFile = "029v5j0mnlzzn6my7jgw26gdm5fbs2h7y395zk1q7r5bfar00q58"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.4"; - sha256 = "3245ed04ae933cf7becede816d1f76043b851472700abf558ae90b28414cc0e3"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "country" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , ghc-prim, hashable, primitive, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "country"; - version = "0.1.6"; - sha256 = "09b36e30dfb1fa5fa7a2c5c38f316a70e0c740b8a4dd6e340abe9770ad149928"; - revision = "3"; - editedCabalFile = "034cd94hiwgci0qhkdkkqmx2igmf1wxmd4b70g6sdlk1kklcn7x1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq ghc-prim hashable - primitive scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/country#readme"; - description = "Country data type and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "courier" = callPackage - ({ mkDerivation, async, base, bytestring, cereal, containers - , hslogger, network, stdenv, stm, text, uuid - }: - mkDerivation { - pname = "courier"; - version = "0.1.1.5"; - sha256 = "ac9e674ff33de347b173da2892859b3807a408b341d10d6101d2a7d07ac334d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring cereal containers hslogger network stm text - uuid - ]; - executableHaskellDepends = [ base cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/hargettp/courier"; - description = "A message-passing library for simplifying network applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "cql" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, Decimal - , iproute, network, stdenv, template-haskell, text, time - , transformers, uuid, vector - }: - mkDerivation { - pname = "cql"; - version = "4.0.1"; - sha256 = "89294c6a6ed2c6f8c6037ee2ca4236d3606bf9019a39df9e39b7ad8dcd573808"; - libraryHaskellDepends = [ - base bytestring cereal containers Decimal iproute network - template-haskell text time transformers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql/"; - description = "Cassandra CQL binary protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cql-io" = callPackage - ({ mkDerivation, async, auto-update, base, bytestring, containers - , cql, cryptohash, data-default-class, exceptions, hashable - , HsOpenSSL, iproute, lens, monad-control, mtl, mwc-random, network - , retry, semigroups, stdenv, stm, text, time, tinylog, transformers - , transformers-base, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "cql-io"; - version = "1.0.1.1"; - sha256 = "ac1353fc3ae4b182877aa518282ea1bd839cf5a3ffb936d6da4807b11d00bbcd"; - libraryHaskellDepends = [ - async auto-update base bytestring containers cql cryptohash - data-default-class exceptions hashable HsOpenSSL iproute lens - monad-control mtl mwc-random network retry semigroups stm text time - tinylog transformers transformers-base unordered-containers uuid - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql-io/"; - description = "Cassandra CQL client"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "crackNum" = callPackage - ({ mkDerivation, array, base, FloatingHex, stdenv }: - mkDerivation { - pname = "crackNum"; - version = "2.3"; - sha256 = "428f25cfa0f7c4c126ee96fb9122966c2b175a194d59c200470a6f689ec038f3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base FloatingHex ]; - executableHaskellDepends = [ array base FloatingHex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/LeventErkok/CrackNum"; - description = "Crack various integer, floating-point data formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, bytestring, cassava, code-page, containers - , criterion-measurement, deepseq, directory, exceptions, filepath - , Glob, js-flot, js-jquery, microstache, mtl, mwc-random - , optparse-applicative, parsec, statistics, stdenv, text, time - , transformers, transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.5.4.0"; - sha256 = "6f616a9577d884f8941a388b370c17606169626212d92ac597a39908c96c04fa"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary bytestring - cassava code-page containers criterion-measurement deepseq - directory exceptions filepath Glob js-flot js-jquery microstache - mtl mwc-random optparse-applicative parsec statistics text time - transformers transformers-compat vector vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "criterion-measurement" = callPackage - ({ mkDerivation, aeson, base, base-compat, binary, containers - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "criterion-measurement"; - version = "0.1.1.0"; - sha256 = "f5f87769386a927dbf487d2f256fc6804f2902078e86dcf113e35178a582ab56"; - libraryHaskellDepends = [ - aeson base base-compat binary containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/criterion"; - description = "Criterion measurement functionality and associated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.1"; - sha256 = "8c1af53bde729026809b722468f6b36c4f96cb532f26a390f32f1c91fb8b3251"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api-tests" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, directory - , filepath, HUnit, QuickCheck, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-api-tests"; - version = "0.3"; - sha256 = "f44aecdd4ceb9da9f38330e84d9c17745a82b0611085ebb34442d2dce4207270"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api directory filepath HUnit - QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/crypto-api/wiki"; - description = "A test framework and KATs for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-tests" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , HUnit, mtl, QuickCheck, securemem, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-cipher-tests"; - version = "0.0.11"; - sha256 = "dfb670b73d4091b8683634d0d4d5a40576d573ad160650d5e518244ced8b98a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types HUnit mtl QuickCheck - securemem test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, ansi-terminal, base, containers - , optparse-applicative, split, stdenv, text - }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.1.1.5"; - sha256 = "829a349dc7945cb257300ba97f9701863b3ca12ed3b7b3093199bb6709a23300"; - revision = "1"; - editedCabalFile = "0ld72k1zq13vg1xh75qj1zrrrc4w5fzj0jv7idrynybjwmhvq92n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers split text ]; - executableHaskellDepends = [ - ansi-terminal base containers optparse-applicative split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-openssh" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, attoparsec, base - , base64-bytestring, bytestring, cereal, crypto-pubkey-types, pem - , stdenv - }: - mkDerivation { - pname = "crypto-pubkey-openssh"; - version = "0.2.7"; - sha256 = "849085c854c561b94974f2086bf1ad4004fb17be7168b75068ab0f2a330bab59"; - libraryHaskellDepends = [ - asn1-encoding asn1-types attoparsec base base64-bytestring - bytestring cereal crypto-pubkey-types pem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knsd/crypto-pubkey-openssh"; - description = "OpenSSH keys decoder/encoder"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocipher" = callPackage - ({ mkDerivation, base, cipher-aes, cipher-blowfish, cipher-camellia - , cipher-des, cipher-rc4, crypto-cipher-types, stdenv - }: - mkDerivation { - pname = "cryptocipher"; - version = "0.6.2"; - sha256 = "34b9e62dee36c4019dd0c0e86576295d0bd1bb573eeb24686ec635a09550e346"; - libraryHaskellDepends = [ - base cipher-aes cipher-blowfish cipher-camellia cipher-des - cipher-rc4 crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Symmetrical block and stream ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocompare" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , exceptions, http-conduit, MissingH, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "cryptocompare"; - version = "0.1.1"; - sha256 = "d12e0f6fd133e538852e5700b0a31d81c6885dc8b1e9e88d1b331dcec38316b3"; - libraryHaskellDepends = [ - aeson base bytestring containers directory exceptions http-conduit - MissingH text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/cryptocompare"; - description = "Haskell wrapper for the cryptocompare API"; - license = stdenv.lib.licenses.mit; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.25"; - sha256 = "89be1a18af8730a7bfe4d718d7d5f6ce858e9df93a411566d15bf992db5a3c8c"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-syntax" = callPackage - ({ mkDerivation, base, scientific, stdenv, text }: - mkDerivation { - pname = "css-syntax"; - version = "0.1.0.0"; - sha256 = "50f386171dc691f2280a695eaafea64ba1ac1cc102fd702994b001f62d00c009"; - revision = "1"; - editedCabalFile = "14241m9nm3wbbhajw95gdj9mvfzf4hmrzvk2wgjvkm71mg4yhwnr"; - libraryHaskellDepends = [ base scientific text ]; - doHaddock = false; - doCheck = false; - description = "High-performance CSS tokenizer and serializer"; - license = stdenv.lib.licenses.mit; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.5"; - sha256 = "c5c9825782d97c4059b2261dddd6471fdb270ddac0ff97d6d02d4f0d44b62758"; - revision = "1"; - editedCabalFile = "0dii4z0cl1ylvay1n5z90d6rbvnk9k30q81i6izhgxbgdawwhh33"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cublas" = callPackage - ({ mkDerivation, base, c2hs, Cabal, cuda, directory, filepath, half - , stdenv, storable-complex, template-haskell - }: - mkDerivation { - pname = "cublas"; - version = "0.5.0.0"; - sha256 = "2e3c94f63fc6f7df9cc517b5a444342654d4314266fc46aabfad8c456be68768"; - setupHaskellDepends = [ base Cabal cuda directory filepath ]; - libraryHaskellDepends = [ - base cuda half storable-complex template-haskell - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - description = "FFI bindings to the CUDA BLAS library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cuckoo-filter" = callPackage - ({ mkDerivation, aeson, array, base, bytestring, cereal, containers - , criterion, hashable, random, stdenv, time - }: - mkDerivation { - pname = "cuckoo-filter"; - version = "0.2.0.2"; - sha256 = "ac495fb589ba939688e7c163ec07f7c591e183278c8ddb4148baf2174746cafb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base bytestring cereal containers hashable time - ]; - executableHaskellDepends = [ - aeson array base bytestring cereal containers criterion hashable - random time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/cuckoo-filter#readme"; - description = "Pure and impure Cuckoo Filter"; - license = stdenv.lib.licenses.mit; - }) {}; - "cuda" = callPackage - ({ mkDerivation, base, bytestring, c2hs, Cabal, directory, filepath - , pretty, stdenv, template-haskell, uuid-types - }: - mkDerivation { - pname = "cuda"; - version = "0.10.0.0"; - sha256 = "a79fb18d33b8ec5862fdc4f74cde5a58e9057a035df51a10207d32659d40849e"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - base bytestring filepath template-haskell uuid-types - ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcdonell/cuda"; - description = "FFI binding to the CUDA interface for programming NVIDIA GPUs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions - , megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "2.0.1"; - sha256 = "71e42497329b9ebf74e94920ed2bd7a2ffe15e385906a37cbd5160d607a5575d"; - revision = "1"; - editedCabalFile = "0md9051a0jp4vkss15dyyf1w7ylpqmvzfdj9xb1rgj95s1x7cx2g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers exceptions megaparsec mtl QuickCheck - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cufft" = callPackage - ({ mkDerivation, base, c2hs, Cabal, cuda, directory, filepath - , stdenv, template-haskell - }: - mkDerivation { - pname = "cufft"; - version = "0.9.0.1"; - sha256 = "c312aafe408d466eb32b15d9b59b805008f631147f7e0ef4ba2b8548540cc1b1"; - setupHaskellDepends = [ - base Cabal cuda directory filepath template-haskell - ]; - libraryHaskellDepends = [ base cuda ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robeverest/cufft"; - description = "Haskell bindings for the CUFFT library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.2.0.0"; - sha256 = "fb7292d4a5b9c4389690d1386fe24ce6a93eacbcfa952936ca6d4fd3afa98499"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "currency" = callPackage - ({ mkDerivation, base, containers, hashable, iso3166-country-codes - , stdenv - }: - mkDerivation { - pname = "currency"; - version = "0.2.0.0"; - sha256 = "bcd517f3d9f47f0dd3c4e802143159239e4a90db2fc552be4a99d759ffe9417a"; - libraryHaskellDepends = [ - base containers hashable iso3166-country-codes - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/currency-haskell"; - description = "Types representing standard and non-standard currencies"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cusparse" = callPackage - ({ mkDerivation, base, c2hs, Cabal, cuda, directory, filepath, half - , stdenv, storable-complex - }: - mkDerivation { - pname = "cusparse"; - version = "0.2.0.0"; - sha256 = "06ee8332c9a4f540a9566d09d0903034e06b080281902beb987170d65cb7d8f8"; - setupHaskellDepends = [ base Cabal cuda directory filepath ]; - libraryHaskellDepends = [ base cuda half storable-complex ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - description = "FFI bindings to the CUDA Sparse BLAS library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.1"; - sha256 = "4a148579f4ef822544b721a4b59f7a9e62a965e270dee9d2a54a98ceab494243"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.2.8"; - sha256 = "ac3f95162df227a16eabf6be65d1d6563e5207d581edf72b680bfcd59f7f04bb"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-template" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, template-haskell - , utility-ht - }: - mkDerivation { - pname = "data-accessor-template"; - version = "0.2.1.16"; - sha256 = "93e7f2120b8974d81a4acc56bd6a5b7121dac4672d974a42512c169c6937ed95"; - libraryHaskellDepends = [ - base data-accessor template-haskell utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.6.0.0"; - sha256 = "094d44446b2429bad5707b4aef0f1f63a9d101739d9a244cb2131f7646eccbd4"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse-lens" = callPackage - ({ mkDerivation, base, data-diverse, data-has, lens, profunctors - , stdenv, tagged - }: - mkDerivation { - pname = "data-diverse-lens"; - version = "4.3.0.0"; - sha256 = "97d049769f0a3693428bac8eb8de73e004f6fc9a1d0e3dc0c567f9d39f8ed986"; - libraryHaskellDepends = [ - base data-diverse data-has lens profunctors tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse-lens#readme"; - description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.2"; - sha256 = "6b677600221de86eaee21dd2d4c23c04320370c594a56f7bb3477ef4e4b69120"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-inttrie" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-inttrie"; - version = "0.1.4"; - sha256 = "6b3a7d8d49b0676c09486ac08107b0e5a6dfd66d9627443be440e9fd11e7bd54"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luqui/data-inttrie"; - description = "A simple lazy, infinite trie from integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-memocombinators" = callPackage - ({ mkDerivation, array, base, data-inttrie, stdenv }: - mkDerivation { - pname = "data-memocombinators"; - version = "0.5.1"; - sha256 = "b4341d2024b84a43f92edc39f6d6766bf4f0f00a40fd834b9f6f8e987b606ed7"; - libraryHaskellDepends = [ array base data-inttrie ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/data-memocombinators"; - description = "Combinators for building memo tables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , data-msgpack-types, groom, stdenv, text - }: - mkDerivation { - pname = "data-msgpack"; - version = "0.0.12"; - sha256 = "5c9f8b04fbc30368e0a085de2c33e08cb0601fc9e95f767c38435d5a0ce1f487"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 data-msgpack-types text - ]; - executableHaskellDepends = [ base bytestring groom ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack-types" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , QuickCheck, stdenv, text, unordered-containers, vector, void - }: - mkDerivation { - pname = "data-msgpack-types"; - version = "0.0.2"; - sha256 = "54fdda1fa485c9f86f1f0f2aa8cc71d111b2f36504b7fb9c0a2de95c0b1287a5"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable QuickCheck text - unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.2"; - sha256 = "7b14399e9d8df50ed7ee3b10ea2ea4b7fdd8922896da000b171eac742ffb0f77"; - libraryHaskellDepends = [ base data-accessor stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4"; - sha256 = "e793156aa2262ca294183a9d045f37e6ff2070825b40d2ffe5a8d64e0b455ec6"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.2"; - sha256 = "44c530b081a486c50d668004637814223d1f1890716d39f7b692c83644d29830"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.2"; - sha256 = "c3ef24d803946a3caf0ff0e51f0c0b9f49055d7dc790518ad518d568d5195002"; - revision = "1"; - editedCabalFile = "1r6dnvc7d50q5p9fdqqwfvi7kwn7r89319plj7v284sjai9b6ld4"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, containers, dlist, http-client, http-client-tls - , http-types, lens, lifted-base, monad-control, network, old-locale - , stdenv, text, time, transformers-base, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.3.0"; - sha256 = "9bb5eda1c704261160e0714499eef8c03dc2dd4d8673ad085e80c164445c1934"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring containers dlist - http-client http-client-tls http-types lens lifted-base - monad-control network old-locale text time transformers-base - unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbcleaner" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv, text }: - mkDerivation { - pname = "dbcleaner"; - version = "0.1.3"; - sha256 = "0817b0e1698d8d48ac58d631f51dc6e34663f4e97af7bac3fd03e31349830f35"; - libraryHaskellDepends = [ base postgresql-simple text ]; - doHaddock = false; - doCheck = false; - description = "Clean database tables automatically around hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, containers - , deepseq, exceptions, filepath, lens, network, parsec, random - , split, stdenv, template-haskell, text, th-lift, transformers - , unix, vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.2.6"; - sha256 = "f471af3bb453fd6b062e200b4f989911a24c43ee833ad0f3f36e847020330a63"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.1.2"; - sha256 = "1cd3b5f099f0d26d0f14e2611b11b6599e4fad4cc217b88b61d1e478d3ec1641"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, template-haskell - , text, uniplate, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "debug"; - version = "0.1.1"; - sha256 = "330f44c6341833c5e0cccf08fa7674dd54f14a843a2b5703e25ce08ffed49248"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/debug"; - description = "Simple trace-based debugger"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "debug-trace-var" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, unicode-show }: - mkDerivation { - pname = "debug-trace-var"; - version = "0.2.0"; - sha256 = "174f79d31d905c99adc880dd79899b3f335e1a7c552a7bcff8664abbffb6b489"; - libraryHaskellDepends = [ base template-haskell unicode-show ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/debug-trace-var#readme"; - description = "You do not have to write variable names twice in Debug.Trace"; - license = stdenv.lib.licenses.mit; - }) {}; - "decidable" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "decidable"; - version = "0.1.5.0"; - sha256 = "72f139dd300898388ec41d0ba128c24358adb3d915c2788db8b192be76e54fe7"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/decidable#readme"; - description = "Combinators for manipulating dependently-typed predicates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "deferred-folds" = callPackage - ({ mkDerivation, base, bytestring, containers, foldl, hashable - , primitive, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "deferred-folds"; - version = "0.9.10"; - sha256 = "dd01a39903e9395d0fa38c05609176b3742f55dab5919ae54140f742363b6b67"; - libraryHaskellDepends = [ - base bytestring containers foldl hashable primitive transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/deferred-folds"; - description = "Abstractions over deferred folds"; - license = stdenv.lib.licenses.mit; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "1.11.0.5"; - sha256 = "62736971b8c77ba0401efd3e78b1c06523e880780509b5304a07870ccc94eca2"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dense-linear-algebra" = callPackage - ({ mkDerivation, base, deepseq, math-functions, primitive, stdenv - , vector, vector-algorithms, vector-binary-instances - , vector-th-unbox - }: - mkDerivation { - pname = "dense-linear-algebra"; - version = "0.1.0.0"; - sha256 = "f7777a7931b40332ebbc716f64abb63697cbab0128e5c1228d47760c5597f2d4"; - libraryHaskellDepends = [ - base deepseq math-functions primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - description = "Simple and incomplete pure haskell implementation of linear algebra"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum, stdenv }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.4.0"; - sha256 = "5db396bdb5d156434af920c074316c3b84b4d39ba8e1cd349c7bb6679cb28246"; - revision = "1"; - editedCabalFile = "0a5f35d1sgfq1cl1r5bgb5pwfjniiycxiif4ycxglaizp8g5rlr1"; - libraryHaskellDepends = [ base containers dependent-sum ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "dependent-sum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dependent-sum"; - version = "0.4"; - sha256 = "a8deecb4153a1878173f8d0a18de0378ab068bc15e5035b9e4cb478e8e4e1a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-sum"; - description = "Dependent sum type"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dependent-sum-template" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv, template-haskell - , th-extras - }: - mkDerivation { - pname = "dependent-sum-template"; - version = "0.0.0.6"; - sha256 = "994cb4891949cad1b9ca268052377c58c174f77a469cae44742ac83727be91ad"; - libraryHaskellDepends = [ - base dependent-sum template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "/dev/null"; - description = "Template Haskell code to generate instances of classes in dependent-sum package"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "deque"; - version = "0.2.7"; - sha256 = "99513020c8048ad8c13962b8774a5e21d50216cde22c6b3184834b6539f550f3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queue"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriveJsonNoPrefix" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "deriveJsonNoPrefix"; - version = "0.1.0.1"; - sha256 = "1ae39ca61cdb6df1630a3b5e532a139767b0fc1b5fb5c1cd66603bc4020a93ff"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/deriveJsonNoPrefix"; - description = "Derive ToJSON/FromJSON instances in a more prefix-friendly manner"; - license = stdenv.lib.licenses.asl20; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.5.5"; - sha256 = "8aad0b4b271d5dda270dfe1a1a90b4d272c64682ee9877d83497646578f13df8"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.5"; - sha256 = "9ed69dd320fafe190d296ae24aaf4d1e85688cdb8240cf1fea187a0bb3a1cadf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "detour-via-sci" = callPackage - ({ mkDerivation, aeson, base, cassava, newtype, scientific - , siggy-chardust, stdenv, template-haskell - }: - mkDerivation { - pname = "detour-via-sci"; - version = "1.0.0"; - sha256 = "451e1194f7bf6a7dea02379679c790313cc20423271fd8e98f164c942e3d81e4"; - revision = "1"; - editedCabalFile = "00dj8vf9gg9ww37sir6mblf3xhcpam8qgfz5bfana23arhf2cixj"; - libraryHaskellDepends = [ - aeson base cassava newtype scientific siggy-chardust - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/detour-via-sci#readme"; - description = "JSON and CSV encoding for rationals as decimal point numbers"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "dhall" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, case-insensitive - , cborg, containers, contravariant, cryptonite, Diff, directory - , dotgen, exceptions, filepath, haskeline, http-client - , http-client-tls, http-types, lens-family-core, megaparsec, memory - , mtl, optparse-applicative, parsers, prettyprinter - , prettyprinter-ansi-terminal, repline, scientific, serialise - , stdenv, template-haskell, text, transformers - , unordered-containers, uri-encode, vector - }: - mkDerivation { - pname = "dhall"; - version = "1.19.1"; - sha256 = "f8d32a4415c67bbae43d90780c5707cd471a408f20959d233f14b91c3577d291"; - revision = "1"; - editedCabalFile = "193h4dmlz1asfr1ldy0saa9spgp64xh60xh3yywzn9lz0hxzbfpg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring case-insensitive cborg containers - contravariant cryptonite Diff directory dotgen exceptions filepath - haskeline http-client http-client-tls http-types lens-family-core - megaparsec memory mtl optparse-applicative parsers prettyprinter - prettyprinter-ansi-terminal repline scientific serialise - template-haskell text transformers unordered-containers uri-encode - vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall - , neat-interpolation, optparse-generic, shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.18"; - sha256 = "ceed4dae99f78da28ce68a04cecac2f221167b2301d28207a05b413ec367cc0c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall neat-interpolation shell-escape - text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall - , optparse-applicative, stdenv, text, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "dhall-json"; - version = "1.2.6"; - sha256 = "9989a705a780ccc8b40f242e5dcb8949ade590a0180ae9559bffa25d829d2838"; - revision = "1"; - editedCabalFile = "1x6dgsqcgd8mvqwqq53aj8xgnfin6c66wn8vc7ikxiy0gilp686x"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base dhall optparse-applicative text unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall optparse-applicative text - vector yaml - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-text" = callPackage - ({ mkDerivation, base, dhall, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "dhall-text"; - version = "1.0.16"; - sha256 = "a1f14c45d3454e0e8a3fea91923bd186d3fa397e32119aed9d3721b907a858c2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base dhall optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "Template text using Dhall"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, safe-exceptions, stdenv, stm - , time - }: - mkDerivation { - pname = "di-core"; - version = "1.0.3"; - sha256 = "f0900e071c6a4fd99ac5588b1801333bcd50aa73a212222b29c731494d52dfe5"; - libraryHaskellDepends = [ - base containers safe-exceptions stm time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.3"; - sha256 = "54e35bfbd60bcf18b72591a261cdc9cac0cde00858b697eb63066e3a983c3305"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams" = callPackage - ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib - , diagrams-svg, stdenv - }: - mkDerivation { - pname = "diagrams"; - version = "1.4"; - sha256 = "8608f6fa682b8c43b9fbe7c42c033c7a6de0680bd7383f6a81ea8bca37999139"; - libraryHaskellDepends = [ - diagrams-contrib diagrams-core diagrams-lib diagrams-svg - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative vector graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-contrib" = callPackage - ({ mkDerivation, base, circle-packing, colour, containers - , cubicbezier, data-default, data-default-class, diagrams-core - , diagrams-lib, diagrams-solve, force-layout, hashable, lens - , linear, mfsolve, MonadRandom, monoid-extras, mtl, mtl-compat - , parsec, random, semigroups, split, stdenv, text - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.3"; - sha256 = "65fba87bb7752b1053fb3ab8e4ae30d5920208ff48441c4d8969cdbe73402007"; - revision = "3"; - editedCabalFile = "0mm1mmagx6q8g6dxk1cagqka38z6393ihp0lvf6095prlvidasqs"; - libraryHaskellDepends = [ - base circle-packing colour containers cubicbezier data-default - data-default-class diagrams-core diagrams-lib diagrams-solve - force-layout hashable lens linear mfsolve MonadRandom monoid-extras - mtl mtl-compat parsec random semigroups split text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Collection of user contributions to diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-core" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive - , dual-tree, lens, linear, monoid-extras, mtl, profunctors - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "diagrams-core"; - version = "1.4.1.1"; - sha256 = "a182e9f99e3664efdfa5e18f4b403703112fba33c5b877a91c9eabed1d8bb682"; - revision = "2"; - editedCabalFile = "1lf7xcq42l4hjksgp1nhj7600shvw9q5a27bh729fyfphmvv3xkf"; - libraryHaskellDepends = [ - adjunctions base containers distributive dual-tree lens linear - monoid-extras mtl profunctors semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Core libraries for diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-lib" = callPackage - ({ mkDerivation, active, adjunctions, array, base, bytestring - , cereal, colour, containers, data-default-class, diagrams-core - , diagrams-solve, directory, distributive, dual-tree, exceptions - , filepath, fingertree, fsnotify, hashable, intervals, JuicyPixels - , lens, linear, monoid-extras, mtl, optparse-applicative, process - , profunctors, semigroups, stdenv, tagged, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.2.3"; - sha256 = "25a7adccbe3175cdb081a3824413ba431e561026c6ddd9a647cd133e4bfcbe9c"; - revision = "3"; - editedCabalFile = "157y2qdsh0aczs81vzlm377mks976mpv6y3aqnchwsnr7apzp8ai"; - libraryHaskellDepends = [ - active adjunctions array base bytestring cereal colour containers - data-default-class diagrams-core diagrams-solve directory - distributive dual-tree exceptions filepath fingertree fsnotify - hashable intervals JuicyPixels lens linear monoid-extras mtl - optparse-applicative process profunctors semigroups tagged text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-postscript" = callPackage - ({ mkDerivation, base, containers, data-default-class - , diagrams-core, diagrams-lib, dlist, hashable, lens, monoid-extras - , mtl, semigroups, split, statestack, stdenv - }: - mkDerivation { - pname = "diagrams-postscript"; - version = "1.4.1"; - sha256 = "a758191d99c30bd663dc0df2dedef13cd735a33c143e77906aa88baceb282c9c"; - revision = "2"; - editedCabalFile = "0s6z3kaj1dm5kifaydnd2nx97g5qbc6jjqy3wn4dwa9rm7w49753"; - libraryHaskellDepends = [ - base containers data-default-class diagrams-core diagrams-lib dlist - hashable lens monoid-extras mtl semigroups split statestack - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Postscript backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity - , hashable, JuicyPixels, lens, mtl, optparse-applicative - , Rasterific, stdenv - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.1.1"; - sha256 = "f72a87b421b1da874757256d9c9603c40fdad1f0a82be17bf1806820188a5365"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels - lens mtl optparse-applicative Rasterific - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Rasterific backend for diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-solve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "diagrams-solve"; - version = "0.1.1"; - sha256 = "a41f5f410b10f162b1e5c07bd4ca3305544870ff1314ae4f5824c83a31644f9d"; - revision = "5"; - editedCabalFile = "1yl8cs05fzqcz49p601am1ij66m9pa70yamhfxgcvya2pf8nimlf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Pure Haskell solver routines used by diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-svg" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, colour - , containers, diagrams-core, diagrams-lib, filepath, hashable - , JuicyPixels, lens, monoid-extras, mtl, optparse-applicative - , semigroups, split, stdenv, svg-builder, text - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.2"; - sha256 = "5455b68d92826a5405d51490976870cc0fa5b8b56aef0a8f56982b5f48efded2"; - revision = "2"; - editedCabalFile = "15sn85xaachw4cj56w61bjcwrbf4qmnkfl8mbgdapxi5k0y4f2qv"; - libraryHaskellDepends = [ - base base64-bytestring bytestring colour containers diagrams-core - diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl - optparse-applicative semigroups split svg-builder text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "SVG backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "direct-sqlite" = callPackage - ({ mkDerivation, base, bytestring, semigroups, stdenv, text }: - mkDerivation { - pname = "direct-sqlite"; - version = "2.3.24"; - sha256 = "41d23bee2c48407300bd3a118802131b5c73a263ada5f624e64d7da82be3a675"; - revision = "1"; - editedCabalFile = "0cfl7h43q2qib1qq8sipgcxcm3i9d6cp1diwmxv8n7ygx7awz6w6"; - libraryHaskellDepends = [ base bytestring semigroups text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/IreneKnapp/direct-sqlite"; - description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , stdenv, syb, template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.1.1"; - sha256 = "3921de35800d1e96d651f5810945fb119b94adcb3bea010b6726b60cd4087670"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - executableHaskellDepends = [ async base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.1.1"; - sha256 = "55eb858a98995f4f2b2eec5fcbc44ba1901284e915ef5e18609e253a5a662499"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs#readme"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-opensuse" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, Diff, extra, foldl, hashable, hsemail, mtl, parsec-class - , pretty, stdenv, text, time, turtle - }: - mkDerivation { - pname = "distribution-opensuse"; - version = "1.1.1"; - sha256 = "067f08a458aed98e4a67e80ffc42edf99393a861a0d0ecb1950d913d15a332b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq Diff extra foldl - hashable hsemail mtl parsec-class pretty text time turtle - ]; - executableHaskellDepends = [ base containers text turtle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-opensuse/"; - description = "Types, functions, and tools to manipulate the openSUSE distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers - }: - mkDerivation { - pname = "distributive"; - version = "0.6"; - sha256 = "a4af1341a63a430dc569dd1e59631f127c40ebdd353a945a74d18682f6bdc1d4"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base base-orphans tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.6"; - sha256 = "780b4ac91d6e88e77ebf1629568bddd45959b8e0cd295b17c7d55d835c03c73f"; - revision = "1"; - editedCabalFile = "0f3r78gjdrhg5zg693dgdfx78ds6vbp5bg1sws1y1vbamraa65sf"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dns" = callPackage - ({ mkDerivation, async, attoparsec, auto-update, base - , base64-bytestring, binary, bytestring, containers, cryptonite - , iproute, mtl, network, psqueues, safe, stdenv, time - }: - mkDerivation { - pname = "dns"; - version = "3.0.4"; - sha256 = "7b3433b536b7d225914d7b8495c7af1927d9554538d7d86c2644ccf9d3fa44a9"; - revision = "1"; - editedCabalFile = "15jafrm919w4p23m7kpmyc1yvzpy88jcccycc00dza69d119zjdr"; - libraryHaskellDepends = [ - async attoparsec auto-update base base64-bytestring binary - bytestring containers cryptonite iproute mtl network psqueues safe - time - ]; - doHaddock = false; - doCheck = false; - testTarget = "spec"; - description = "DNS library in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.2.0"; - sha256 = "97a1992559bf510a7b17e5678fd29e3b5c4a9059a0483e4ab36ef8ec723fb5aa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/dockerfile#readme"; - description = "A Haskell DSL for generating Dockerfiles"; - license = stdenv.lib.licenses.mit; - }) {}; - "docopt" = callPackage - ({ mkDerivation, base, containers, parsec, stdenv, template-haskell - , th-lift - }: - mkDerivation { - pname = "docopt"; - version = "0.7.0.5"; - sha256 = "15790808a4896bbf0748c1c0f3ab63c07aea4621d95b93a39886813f829d05ee"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers parsec template-haskell th-lift - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/docopt/docopt.hs"; - description = "A command-line interface parser that will make you smile"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, parsec, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.2.2.1"; - sha256 = "6b0cfb565fc7fa90d71ac56b83aedecf670678e6f1441278877fbf399e9bccbf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers parsec - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.16.0.1"; - sha256 = "9b5275497330607f66aaf2625b798b2ad566867fed3f52cea9de31a23361d780"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-discover" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, stdenv - }: - mkDerivation { - pname = "doctest-discover"; - version = "0.2.0.0"; - sha256 = "a953aa50837e52efc766a77e382c2be2acbc887fa6dadbc54b756f59d6c49ec8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - executableHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/karun012/doctest-discover"; - description = "Easy way to run doctests via cabal"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.3.0.1"; - sha256 = "56af5e7401d0995f7ac89b0239e6e123afef265bff0548200013d1ca033b44e9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dom-parser" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, mtl - , scientific, semigroups, stdenv, text, transformers, xml-conduit - , xml-lens - }: - mkDerivation { - pname = "dom-parser"; - version = "3.1.0"; - sha256 = "d7e15cae0b27d708389160517b1616343da1911baf95f2c97e213732a0262ac3"; - libraryHaskellDepends = [ - base case-insensitive containers lens mtl scientific semigroups - text transformers xml-conduit xml-lens - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/dom-parser"; - description = "Simple monadic DOM parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, containers, directory - , exceptions, megaparsec, optparse-applicative, process, stdenv - , text, transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.8.0.0"; - sha256 = "9e9621053792480de87fd0344bf7fdbe7c118d9ec48317a7d4c0cd02f9f9372c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat containers directory exceptions megaparsec process - text transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotgen" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dotgen"; - version = "0.4.2"; - sha256 = "cf0de20a435d74aeb9a32b8bcb3ebfa1b6659ac3f26edefe2df9e1aaf1481891"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/dotgen"; - description = "A simple interface for building .dot graph files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "download" = callPackage - ({ mkDerivation, base, bytestring, feed, stdenv, tagsoup, xml }: - mkDerivation { - pname = "download"; - version = "0.3.2.7"; - sha256 = "7154571d2c55c14b7a2d36a924ee10fd56511b70fe856dddbfbd15f04f0be6e1"; - libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/download"; - description = "High-level file download based on URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drinkery" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv, transformers }: - mkDerivation { - pname = "drinkery"; - version = "0.4"; - sha256 = "3860b076f71e05179c7adfc988baf90cf85d0206cfd6a0945e5b354827d8b5b0"; - libraryHaskellDepends = [ base exceptions mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/drinkery#readme"; - description = "Boozy streaming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.4.1"; - sha256 = "3322954e87b279a94c1fb43a5d16e4d0022e7d422a2d2b9be0f3c4b4d346e42c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual-tree" = callPackage - ({ mkDerivation, base, monoid-extras, newtype-generics, semigroups - , stdenv - }: - mkDerivation { - pname = "dual-tree"; - version = "0.2.2"; - sha256 = "7412d70cf239da98b5a21df1cbbeab7319fd23d757427d4f5ce71b907dbaa9eb"; - revision = "3"; - editedCabalFile = "00gwdgzy80p9c5r4wafm1fiqnh2hy1xjsbl86h1qkk7xg33g2ssi"; - libraryHaskellDepends = [ - base monoid-extras newtype-generics semigroups - ]; - doHaddock = false; - doCheck = false; - description = "Rose trees with cached and accumulating monoidal annotations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.5.1"; - sha256 = "27a5ba03273afe4e5d3e947fb65e2d70e2f82cb929316b0c3175d1f2cf95731d"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dunai-core" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai-core"; - version = "0.5.1.0"; - sha256 = "ffaf15694944fe046ba2dd385be2edad7a7bd2b9d766804770af85636a3001dd"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/turion/dunai-core"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP. (Core library fork.)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "duration" = callPackage - ({ mkDerivation, base, parsec, stdenv, template-haskell, time }: - mkDerivation { - pname = "duration"; - version = "0.1.0.0"; - sha256 = "a0b154c270be1d9c42a92fdf8198ab1030bf09a119157df33a2a43694fb212a3"; - libraryHaskellDepends = [ base parsec template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ryota-ka/duration#readme"; - description = "A tiny compile-time time utility library inspired by zeit/ms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dynamic-state" = callPackage - ({ mkDerivation, base, binary, bytestring, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.1"; - sha256 = "c4d50bdf03e7b2af05ee2b78fdd5dd5d16e72ef5edf78cada60bf4cdc6a23537"; - libraryHaskellDepends = [ - base binary bytestring hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Optionally serializable dynamic state keyed by type"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easytest" = callPackage - ({ mkDerivation, async, base, call-stack, containers, mtl, random - , stdenv, stm, text, transformers - }: - mkDerivation { - pname = "easytest"; - version = "0.2.1"; - sha256 = "1155c3da78460eae48762e041c033d0f64f7644fa94479be2fa1194e3f57be3d"; - libraryHaskellDepends = [ - async base call-stack containers mtl random stm text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelburget/easytest"; - description = "Simple, expressive testing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "either"; - version = "5.0.1"; - sha256 = "6cb6eb3f60223f5ffedfcd749589e870a81d272e130cafd1d17fb6d3a8939018"; - revision = "2"; - editedCabalFile = "0859h2dc77fq0f14jh11h4i89hrg3iqvzk0yrk78516k6m7n96zc"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-both" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-both"; - version = "0.1.0.0"; - sha256 = "f4b6bbafbc658f028f000fa0711e038206688c9b9ce842bf62e6c3ba16547bd1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Either or both"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, network, snap-core, snap-server, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "ekg"; - version = "0.4.0.15"; - sha256 = "482ae3be495cfe4f03332ad1c79ce8b5ad4f9c8eec824980c664808ae32c6dcc"; - revision = "6"; - editedCabalFile = "012y235n8k7hhx651l01xf88vgr2wskapbsn83w18ls1h1njqnzk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath network snap-core - snap-server text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-core" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-core"; - version = "0.1.1.6"; - sha256 = "66a8dd79ad27659052168f08dd41fabb8593e364de00fb857ef5cc943acd5742"; - libraryHaskellDepends = [ - base containers ghc-prim text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-core"; - description = "Tracking of system metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-json" = callPackage - ({ mkDerivation, aeson, base, ekg-core, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-json"; - version = "0.1.0.6"; - sha256 = "1e6a80aa0a28bbf41c9c6364cbb5731160d14fa54145f27a82d0b3467a04dd47"; - revision = "4"; - editedCabalFile = "16sn4nbqm0rxkf0swi6r2jn6z9x92qmcg9xlx258d98kqb5fkwjg"; - libraryHaskellDepends = [ - aeson base ekg-core text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-json"; - description = "JSON encoding of ekg metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-statsd" = callPackage - ({ mkDerivation, base, bytestring, ekg-core, network, stdenv, text - , time, unordered-containers - }: - mkDerivation { - pname = "ekg-statsd"; - version = "0.2.4.0"; - sha256 = "5e74bf63a1cd347c939d4eb7beb9181556b7bd033a60e5f6f4df0505e98a7adb"; - revision = "3"; - editedCabalFile = "0va7fliya7g546f5qbc42bl7dyh74al38sspd2smjyl7a9d5mmlk"; - libraryHaskellDepends = [ - base bytestring ekg-core network text time unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-statsd"; - description = "Push metrics to statsd"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elf" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "elf"; - version = "0.29"; - sha256 = "426509f12279bdc5a0228f74edef86997dbb47fddc19d83e9815dd301d4a8fac"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/elf"; - description = "An Elf parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.5.1"; - sha256 = "8166f2697acebd23ebf27416f489f5bf731ae081fe49fd34834a9b7194760f4f"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-export" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , formatting, mtl, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "elm-export"; - version = "0.6.0.1"; - sha256 = "bf9862015918c72b54b421efcd9d858969dcd94ef0a3d0cb92d9bc0c4363f9d5"; - libraryHaskellDepends = [ - base bytestring containers directory formatting mtl text time - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/krisajenkins/elm-export"; - description = "A library to generate Elm types from Haskell source"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "elm2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, async, base, binary - , bytestring, containers, data-default, directory, filepath, here - , mtl, optparse-applicative, process, req, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "elm2nix"; - version = "0.1.1"; - sha256 = "974be3482f2ea85f87440ffb449ffeaa8946eb9514e602debc15d966cfde6799"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base binary bytestring containers data-default - directory filepath here mtl process req text transformers - unordered-containers - ]; - executableHaskellDepends = [ - ansi-wl-pprint base directory here optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domenkozar/elm2nix#readme"; - description = "Turn your Elm project into buildable Nix project"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emacs-module" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions - , monad-control, mtl, prettyprinter, resourcet - , safe-exceptions-checked, stdenv, template-haskell, text - , transformers-base, vector, void - }: - mkDerivation { - pname = "emacs-module"; - version = "0.1.1"; - sha256 = "1ee0fd9cde2e218d604c5d1670f24194575f975510936510fe9fc2f6e066d9d4"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions monad-control mtl prettyprinter - resourcet safe-exceptions-checked template-haskell text - transformers-base vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sergv/emacs-module"; - description = "Utilities to write Emacs dynamic modules"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.11"; - sha256 = "ebbaacb562ef0c01c144678e1e698b1939aebf18beeb159e14f336d20d0d3014"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emd" = callPackage - ({ mkDerivation, base, binary, containers, data-default-class - , finite-typelits, ghc-typelits-knownnat, ghc-typelits-natnormalise - , stdenv, transformers, typelits-witnesses, vector, vector-sized - }: - mkDerivation { - pname = "emd"; - version = "0.1.4.0"; - sha256 = "fc2775d68f625ae6d3f4bff02b3d62e7ee15f09c123345a0f15a12eb8cf73357"; - libraryHaskellDepends = [ - base binary containers data-default-class finite-typelits - ghc-typelits-knownnat ghc-typelits-natnormalise transformers - typelits-witnesses vector vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/emd#readme"; - description = "Empirical Mode Decomposition and Hilbert-Huang Transform"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.3"; - sha256 = "af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.4"; - sha256 = "2e3f6a65c8fde3551a8fb03b0a519b718762fc3278b1a5750f96d399e821eeb9"; - revision = "1"; - editedCabalFile = "0h9wvpq4hw5ipn15ni0qdsrssjil0m59wm4l5hl607l3w2lif864"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-text" = callPackage - ({ mkDerivation, array, base, bytestring, fmt, hashable, possibly - , stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "enum-text"; - version = "0.5.0.0"; - sha256 = "44bbacfebf3f2c264fd79938258e94a1e79bf4cacbcf39790d99ebc0d7cce779"; - libraryHaskellDepends = [ - array base bytestring fmt hashable possibly text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text#readme"; - description = "A text rendering and parsing toolkit for enumerated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.6.0.1"; - sha256 = "f8b8defb03621ab36a450dbae559eff0afa4ef103bc05a288f97cceecaba925a"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.4.1"; - sha256 = "5f9d115f7f2b2d4dba290f9d62cd7e9f52f6f6f8235ac5ed9bbf6e982a51d054"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "1.5.1.0"; - sha256 = "2dcacbb9901603f44e8e933849b532ba7b56ee2d7feff3980f9c7b556c4041e4"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "error-util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "error-util"; - version = "0.0.1.2"; - sha256 = "df1916a2de007697b7b1a9f83eacab4588d8dc472fd0f21395dce83b085e4e06"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/error-util"; - description = "Set of utils and operators for error handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.2"; - sha256 = "406e65338046d6c1d6994072b529272fab4ad7abbdb2c3b63576788fd8dd9618"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.4"; - sha256 = "42dca507046c32e00459bf6167d02bb508b72bb47669470a0eb3fba20b73a019"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "esqueleto" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, conduit - , monad-logger, persistent, resourcet, stdenv, tagged, text, time - , transformers, unliftio, unordered-containers - }: - mkDerivation { - pname = "esqueleto"; - version = "2.6.0"; - sha256 = "d62653a7187b9ad2303d742c0bcd2ac955ec362bc428a45d26a4f95525db4bab"; - libraryHaskellDepends = [ - base blaze-html bytestring conduit monad-logger persistent - resourcet tagged text time transformers unliftio - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitemyapp/esqueleto"; - description = "Type-safe EDSL for SQL queries on persistent backends"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, rio, stdenv, template-haskell, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "61b4d5f29a1fc66df082623e5fc9269bdbb49d28ebf4cbb740c71319257a27c8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base rio template-haskell text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-memory" = callPackage - ({ mkDerivation, base, containers, eventful-core, mtl, safe, stdenv - , stm - }: - mkDerivation { - pname = "eventful-memory"; - version = "0.2.0"; - sha256 = "6a7c3e0a12e3c4e572927929020ad92075933e5d3c66ea61ff615a3ac217adb9"; - libraryHaskellDepends = [ - base containers eventful-core mtl safe stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "In-memory implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sql-common" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core, mtl - , persistent, persistent-template, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sql-common"; - version = "0.2.0"; - sha256 = "a46ea18cbbb5bd04b3a6846273e8161b7e4208660d0abf5a401192b07636aebc"; - revision = "1"; - editedCabalFile = "1w2qq0p4304zsjkwmqx79azpq5v0ajz5grg740vwkca8qvdvdq91"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core mtl persistent - persistent-template text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common library for SQL event stores"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core - , eventful-sql-common, mtl, persistent, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sqlite"; - version = "0.2.0"; - sha256 = "c0bbea0ebd1f0a4891a74b190f499caf85ac026f49b9401fc76f181b0041dfef"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core eventful-sql-common mtl - persistent text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "SQLite implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventstore" = callPackage - ({ mkDerivation, aeson, array, base, bifunctors, bytestring, cereal - , clock, connection, containers, dns, dotnet-timespan, ekg-core - , exceptions, fast-logger, hashable, http-client, interpolate - , lifted-async, lifted-base, machines, monad-control, monad-logger - , mono-traversable, mtl, protobuf, random, safe, safe-exceptions - , semigroups, stdenv, stm, stm-chans, streaming, text, time - , transformers-base, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "eventstore"; - version = "1.2.4"; - sha256 = "b567b5442c56a46db52a1e257ce4d89ae682d633a08095fcfa6e6c7430edf614"; - libraryHaskellDepends = [ - aeson array base bifunctors bytestring cereal clock connection - containers dns dotnet-timespan ekg-core exceptions fast-logger - hashable http-client interpolate lifted-async lifted-base machines - monad-control monad-logger mono-traversable mtl protobuf random - safe safe-exceptions semigroups stm stm-chans streaming text time - transformers-base unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/YoEight/eventstore-hs"; - description = "EventStore TCP Client"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" "x86_64-linux" ]; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.9"; - sha256 = "725785ac22c252b0753aefffd8eb591f8a4184cec08a5d50bca1d57c5345c9ab"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wrengr.org/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.5.0.1"; - sha256 = "5d8156ec8b044a36c2ac789b85bf65116be24304868fff472d033977ebcc1860"; - revision = "1"; - editedCabalFile = "1l55d7x61i2d5rlh7sh2nhn0af9cyp92gzdmqqnnjzg55d347qsm"; - libraryHaskellDepends = [ base numtype-dk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.7"; - sha256 = "925b61eb3d19148a521e79f8b4c8ac097f6e0dea6a09cc2f533279f3abf1f2ef"; - revision = "1"; - editedCabalFile = "0sahi93f75acvmqagkjc1lcwx31crja6z9hyww9abj85x45pqa6f"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptional" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "exceptional"; - version = "0.3.0.0"; - sha256 = "da866ed28ea14d245cc065271f4ddd6da0a91b83e8d83daddcd1ef0623e99f06"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/"; - description = "Essentially the Maybe type with error messages"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.1"; - sha256 = "3ba4032df6b115bab1dad294948cf43fb9e1f566d3c513e9e1c363131739df9d"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-hash" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cryptohash, directory - , executable-path, file-embed, filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "executable-hash"; - version = "0.2.0.4"; - sha256 = "34eaf5662d90d3b7841f66b322ac5bc54900b0e3cb06792852b08b3c05a42ba4"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base bytestring Cabal cryptohash directory file-embed filepath - template-haskell - ]; - libraryHaskellDepends = [ - base bytestring cryptohash directory executable-path file-embed - template-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/executable-hash"; - description = "Provides the SHA1 hash of the program executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exit-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exit-codes"; - version = "1.0.0"; - sha256 = "4aa2499a18b0453a9f921bb3262aefe24c8fa98ef9633ab284d8cf6f52a49e01"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JustusAdam/exit-codes"; - description = "Exit codes as defined by BSD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exomizer" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "exomizer"; - version = "1.0.0"; - sha256 = "94c24d436d12666d16cb7171c83cedec449b992dc3aeaaa6decdc0faf8e2cfd2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/exomizer#readme"; - description = "Compression and decompression in the exomizer format"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.2.0.0"; - sha256 = "57471bfd498570247c03863ec4532ff06c20198efe7a7fe4484478d7139ac967"; - revision = "1"; - editedCabalFile = "1fkllbgsygzm1lw3g3a9l8fg8ap74bx0x7ja8yx3lbrjjsaqh8pa"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.9.2"; - sha256 = "60f6029777f80ec958e28cef19a15723242987a01f09f6bfef252f24207649f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.3.3"; - sha256 = "22fff22a2c5b36a6545b27495c0eba63e8e3f72baccb3f9d687967c6532381d5"; - libraryHaskellDepends = [ - base leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix-compat, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "2.4.15"; - sha256 = "ce2794db18be51077a0af6fe5eb843ff6ad3f74f699f2c59e5660cb63d57c2d5"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix-compat unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base16-bytestring - , base64-bytestring, bytestring, cereal, conduit, conduit-extra - , crypto-api, cryptohash, cryptohash-cryptoapi, data-default - , http-client, http-conduit, http-types, monad-logger, old-locale - , resourcet, stdenv, text, time, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "1.2.1"; - sha256 = "a9d670a763e2ccf3e457e6b310769d5d8977cb1c00a78c8825861999da055d15"; - libraryHaskellDepends = [ - aeson attoparsec base base16-bytestring base64-bytestring - bytestring cereal conduit conduit-extra crypto-api cryptohash - cryptohash-cryptoapi data-default http-client http-conduit - http-types monad-logger old-locale resourcet text time transformers - transformers-base unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fclabels" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "fclabels"; - version = "2.0.3.3"; - sha256 = "9a9472a46dc23b5acc0545d345ecd708f7b003f72ab212e2d12125b902b9c2e0"; - revision = "4"; - editedCabalFile = "09pn1q4gjlhw956asmhzva1rhrafmn69xmd1sc80fh3c8vjd3icz"; - libraryHaskellDepends = [ base mtl template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sebastiaanvisser/fclabels"; - description = "First class accessor labels implemented as lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-dists" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fedora-dists"; - version = "1.0.1"; - sha256 = "942ea841f4ec99e79f0934da7eb29741560e68afa36cd7297c65b8e0c69dfe80"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/fedora-dists"; - description = "Library for Fedora distribution versions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fedora-haskell-tools" = callPackage - ({ mkDerivation, base, csv, directory, filepath, HTTP, process - , stdenv, time, unix - }: - mkDerivation { - pname = "fedora-haskell-tools"; - version = "0.6"; - sha256 = "a47af60fe0fba6934cea3d10414e96329419311ba202aea7051f373d3d34d91b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base csv directory filepath HTTP process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fedora-haskell/fedora-haskell-tools"; - description = "Building and maintenance tools for Fedora Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.0.1.0"; - sha256 = "87bd055b13c43f54e997f716a33d647c6bc1cdb78337c840d144c0b5fdccd31c"; - revision = "1"; - editedCabalFile = "10xjd3syr70g3blnjy7xvd6s21y68vxsi69f6bmizpsylbfb0245"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.7.0.1"; - sha256 = "ffce7af67d4e7ee2f6a7c44fbb749c4253ce9bb35b8b1ffe1c93a173a01fe910"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11"; - sha256 = "eea5d00973808e440f346972b7477c8d8c2194a7036cc532eafeffc5189fcd50"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-modules" = callPackage - ({ mkDerivation, async, base, directory, filepath, haskell-src-exts - , MissingH, regex-compat, regex-pcre, stdenv - }: - mkDerivation { - pname = "file-modules"; - version = "0.1.2.4"; - sha256 = "ffea2dbd51f77ed76f8559d8519674a1210611a35e2dbea72dfb41d7d5f0f235"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - executableHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/stack-run-auto"; - description = "Takes a Haskell source-code file and outputs its modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.4.1"; - sha256 = "c502a8b43cf08694c8d2657dc282306d811cdd91f284614a6a9945267c93cb9d"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.2"; - sha256 = "0ff1dcb13ec619f72496035e2a1298ef9dc6a814ba304d882cd9b145eae3203d"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filter-logger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base - , bytestring, data-default, fast-logger, http-types, scotty - , semigroups, stdenv, time, wai, wai-extra, wai-logger - }: - mkDerivation { - pname = "filter-logger"; - version = "0.6.0.0"; - sha256 = "7884124056950a7f7ff393ebb7d1622695f9b66f898c60aeb8bc991c73642f21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring data-default - fast-logger http-types semigroups time wai wai-extra wai-logger - ]; - executableHaskellDepends = [ aeson base bytestring scotty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/filter-logger#readme"; - description = "Filterable request logging wai middleware. Change how data is logged and when."; - license = stdenv.lib.licenses.mit; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.1.0"; - sha256 = "d6a53889a7d114a7ea411026b994c9f73ebfeffe68ea338ce2abf9dc977e363c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "fin"; - version = "0.0.2"; - sha256 = "b17427744cf39b5b8328ca1f736f0c67f9c8da7872fca32622661086fd9fbeb9"; - revision = "1"; - editedCabalFile = "11jxsij60l69n79sws23sgvbal2kbw7w5yv2fbp5580f8swj95c4"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.2"; - sha256 = "95a948341570bad5a9b2468c388c0eb2c20c57e10dd8fbfc994c7b8764b36a7f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.4.2"; - sha256 = "d207a46c911b69ecc1f7c50d9d65ea1aca6c6efacec6342bc3294ed1bc4bd747"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "first-class-families" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "first-class-families"; - version = "0.3.0.1"; - sha256 = "2b761dcb4361d2628147c13f2d024782d02f8a7e0df78df004439c14640b491c"; - revision = "1"; - editedCabalFile = "1gybi18yw6dzp3r82x0xq9364m3isqq31gvaa1agf6hk9c9szfl2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/first-class-families#readme"; - description = "First class type families"; - license = stdenv.lib.licenses.mit; - }) {}; - "first-class-patterns" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.4"; - sha256 = "3bf42829097277a89043021d02b82bde24950de9c30d19b33c0ffa5e1f2482b5"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/first-class-patterns"; - description = "First class patterns and pattern matching, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fitspec" = callPackage - ({ mkDerivation, base, cmdargs, leancheck, stdenv, template-haskell - }: - mkDerivation { - pname = "fitspec"; - version = "0.4.7"; - sha256 = "b8dc00aad234b30d1d383075062c0756bb7d412a5bf4b766f2aad0d7ac30716a"; - libraryHaskellDepends = [ - base cmdargs leancheck template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/fitspec#readme"; - description = "refining property sets for testing Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.2.1.1"; - sha256 = "24a9e1e251998c9d06037bb771d9eab2980a91132de59a19d0166a1c51e715e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, storable-record, tfp - , utility-ht - }: - mkDerivation { - pname = "fixed-length"; - version = "0.2.1"; - sha256 = "a151b68802538e8f98d05f582bd23fad94c869e1ad1f5506579524f5d2764b49"; - libraryHaskellDepends = [ - base non-empty storable-record tfp utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.2.0.0"; - sha256 = "dc67e4f139f07018be73a5f2e44ddfb3e8dab8b884a66a93c7676b2a9f3604a5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , directory, exceptions, filepath, FLAC, mtl, stdenv, text - , transformers, vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.1.2"; - sha256 = "5692b3dfc561cbeed25b1cf9280705f58eadd8c400aa2e6a725fd5562042ac29"; - revision = "5"; - editedCabalFile = "0rwwq8qrxd497rd5m0kidz4v69frj72ds7a6zrdqigj5f5471rhd"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-default-class directory exceptions - filepath mtl text transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.2"; - sha256 = "15689d14d382588697ec0da88a0025c2b156061c060979deaec0d75ecc37030a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flat-mcmc" = callPackage - ({ mkDerivation, base, formatting, mcmc-types, monad-par - , monad-par-extras, mwc-probability, pipes, primitive, stdenv, text - , transformers, vector - }: - mkDerivation { - pname = "flat-mcmc"; - version = "1.5.0"; - sha256 = "87cea9deac6e2d32d9984741ba222ccb2fb0d5f8c58e843684476bfe7632f1fd"; - revision = "1"; - editedCabalFile = "1pjkyvs4c6yx6jva08zw2b1qfhhv9q71sy806f5lddjsknnym2fn"; - libraryHaskellDepends = [ - base formatting mcmc-types monad-par monad-par-extras - mwc-probability pipes primitive text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/flat-mcmc"; - description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "flay" = callPackage - ({ mkDerivation, base, constraints, stdenv, transformers }: - mkDerivation { - pname = "flay"; - version = "0.4"; - sha256 = "01ff3e642eab48807e4369fd8c1336e22d7abdcf4374cd1322b1fe259c9413ef"; - libraryHaskellDepends = [ base constraints transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/flay"; - description = "Work generically on your datatype without knowing its shape nor its contents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flexible-defaults" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-extras, transformers - }: - mkDerivation { - pname = "flexible-defaults"; - version = "0.0.2"; - sha256 = "f3d5d41a6dd69dbb585dd10fe6b7fe9023bc4308bac1320a55b62758acc18a64"; - revision = "1"; - editedCabalFile = "1bmqmxv5nijb837xwxnb46w3bglmakfj1qs3xwkcnfh5ab0zazwr"; - libraryHaskellDepends = [ - base containers template-haskell th-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/flexible-defaults"; - description = "Generate default function implementations for complex type classes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flow" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "flow"; - version = "1.0.18"; - sha256 = "f08e388d5e9104fb764f87386045fbe119481999908ad6ee84e7dda36860cab3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/flow#readme"; - description = "Write more understandable Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.2"; - sha256 = "8fc4b55d04e7f216740a01acd2f38293e3bd9409a9495e6042a162580c420609"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fmt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, call-stack - , containers, formatting, microlens, stdenv, text, time - , time-locale-compat - }: - mkDerivation { - pname = "fmt"; - version = "0.6.1.1"; - sha256 = "26220b578d56591cb154cfcb1d98ee8f81c1df97f5955dba91dd00061549d2ad"; - revision = "2"; - editedCabalFile = "1prdnb8a8n338clkvjx0c8hmbkiy8x2c9j87b94302bq6x7rmf9d"; - libraryHaskellDepends = [ - base base64-bytestring bytestring call-stack containers formatting - microlens text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/fmt"; - description = "A new formatting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "focus"; - version = "1.0.1.3"; - sha256 = "bdb56955fdd0fe0f97e2292d121bdc7d679c37f7a87aed9195ab4c73fc7720bc"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "focuslist" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers, lens - , mono-traversable, QuickCheck, stdenv - }: - mkDerivation { - pname = "focuslist"; - version = "0.1.0.2"; - sha256 = "78527aad6212617d4c8c3183c02750693d5bd30be1a26f1caff7db434b31481b"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers lens mono-traversable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/focuslist"; - description = "Lists with a focused element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.8"; - sha256 = "fc6b3ef028517f642886c2ffa270726cc38c79be75d1233e28f760816d08fbc8"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.3"; - sha256 = "97c80c4ca7f84260539829ee7ebf0eaa6b127005158eb910411ae0b17157ef67"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldable1" = callPackage - ({ mkDerivation, base, stdenv, transformers, util }: - mkDerivation { - pname = "foldable1"; - version = "0.1.0.0"; - sha256 = "85d684e5caab9e0c87dd04d016432f4a9effb5c8c62354aedcf85c96c1e3e90a"; - libraryHaskellDepends = [ base transformers util ]; - doHaddock = false; - doCheck = false; - description = "Foldable types with at least 1 element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.5"; - sha256 = "0ba0bd8a8b4273feef61b66b6e251e70f70537c113f8b7f0e3aeab77d8af12a7"; - revision = "4"; - editedCabalFile = "12qrmlazijyz5dn73p50klyny7x4vx8yw2isfmjikmrr12nhc5g0"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroupoids semigroups text - transformers unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.4"; - sha256 = "5c6e6f7c9c852cbe3d5372f93ed99f82400d15ae99ecf8e9e005481647734572"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "force-layout" = callPackage - ({ mkDerivation, base, containers, data-default-class, lens, linear - , stdenv - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "f7729855b1b14e0b255325faaca9f4834004e02bd21def6a865d2c55c734259d"; - revision = "5"; - editedCabalFile = "14d494pa7hcxmq9cvy039y5x7da6j4p5jp8kw0kmrlb9q8h6rh18"; - libraryHaskellDepends = [ - base containers data-default-class lens linear - ]; - doHaddock = false; - doCheck = false; - description = "Simple force-directed layout"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forkable-monad" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "571e33effa5baaef4e2dc910010e2b02c01d8b8e06f051e96906f288f71ad462"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/ForkableMonad#readme"; - description = "An implementation of forkIO for monad stacks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.1"; - sha256 = "abef8c326efdeca2b69fca3b396abad530b0c5093499022a16091af3a5370083"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.7"; - sha256 = "0cdb4fc2c33612db08cd07926ac4fbea6b9f3c31955ed7d212ae04586f585c1a"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.23"; - sha256 = "a26036f61909fdfdde7e014800741cea1246620dbee0f29c1408d8ff301b043c"; - revision = "1"; - editedCabalFile = "1zdlh81dii11p3bw3ffm3sr69l7nlhj622mca81swj59klgmaxwh"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, comonad, containers, distributive - , exceptions, mtl, profunctors, semigroupoids, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "free"; - version = "5.1"; - sha256 = "70424d5c82dea36a0a29c4f5f6bc047597a947ad46f3d66312e47bbee2eeea84"; - revision = "1"; - editedCabalFile = "0j0klr5qr489y75z55vkmgh4qalffn5vzqc4l0ysnxbsv08a7p68"; - libraryHaskellDepends = [ - base comonad containers distributive exceptions mtl profunctors - semigroupoids template-haskell transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , template-haskell, transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.2.1.0"; - sha256 = "ac288f691a86e2e3cbf94601f9964ddd4a10b9c6c7fd96ab8033744efc782ca5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation template-haskell transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frisby" = callPackage - ({ mkDerivation, array, base, containers, mtl, semigroups, stdenv - }: - mkDerivation { - pname = "frisby"; - version = "0.2.2"; - sha256 = "c1b318dbf54d56e1012955cc47a1633af5fd77facc128c725353718c0663b6d5"; - libraryHaskellDepends = [ array base containers mtl semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://repetae.net/computer/frisby/"; - description = "Linear time composable parser for PEG grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "from-sum"; - version = "0.2.1.0"; - sha256 = "a1ed8a433b98df8a70be2f9199abae3e5ed7fb4c2f2b3fb1268b6b588f326667"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Canonical fromMaybeM and fromEitherM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, shelly, stdenv, text, time, unix, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.3.0.1"; - sha256 = "ded2165f72a2b4971f941cb83ef7f58b200e3e04159be78da55ba6c5d35f6da5"; - revision = "1"; - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify shelly - text time unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "03990f311f7d66a6996b88722602b6058fbae7ad33e74073875ef0466ef001ce"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "ftp-client" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, connection - , containers, exceptions, network, stdenv, transformers - }: - mkDerivation { - pname = "ftp-client"; - version = "0.5.1.1"; - sha256 = "6432f8a933051ac890420cf49ce89d57d05df97f1f8d1b84cb785ae1c468c805"; - libraryHaskellDepends = [ - attoparsec base bytestring connection containers exceptions network - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mr/ftp-client"; - description = "Transfer files with FTP and FTPS"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ftp-client-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, exceptions - , ftp-client, resourcet, stdenv - }: - mkDerivation { - pname = "ftp-client-conduit"; - version = "0.5.0.4"; - sha256 = "b1c58ff47c1555a39762c26dede087a0c3b4a16ca52ada7b748c328f89729a70"; - libraryHaskellDepends = [ - base bytestring conduit connection exceptions ftp-client resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mr/ftp-client"; - description = "Transfer file with FTP and FTPS with Conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fused-effects" = callPackage - ({ mkDerivation, base, deepseq, MonadRandom, random, stdenv }: - mkDerivation { - pname = "fused-effects"; - version = "0.1.2.1"; - sha256 = "d6274dba440c69c2d0d5aaee05f99d00754094581c3d1cc1176586e8be289902"; - revision = "1"; - editedCabalFile = "16qlqgxj2y54kkyhpfv3jjca9hzis9vvbz3mcx9cgg8iy2ffx65n"; - libraryHaskellDepends = [ base deepseq MonadRandom random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robrix/fused-effects"; - description = "A fast, flexible, fused effect system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, base-unicode-symbols, data-default, lens - , stdenv, text, text-metrics, unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.1.0.8"; - sha256 = "9b975a5e54d3025c25ed01963d0d8e2b0bea0435f6fc88516ccf0da59dfbd124"; - libraryHaskellDepends = [ - base base-unicode-symbols data-default lens text text-metrics - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.4"; - sha256 = "297fa02ceeb8be23c111ecbd15bfb2203dfa22a757fce51f8ed2829d35630add"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gc" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "gc"; - version = "0.0.2"; - sha256 = "39cc5ac887319aeb184ee0d6ddb5b5a34e3f3d38c3fdf3ecc60bdf31a53dc30c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/gc/"; - description = "Poor Richard's Memory Manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; inherit (pkgs) zlib;}; - "gdp" = callPackage - ({ mkDerivation, base, lawful, stdenv }: - mkDerivation { - pname = "gdp"; - version = "0.0.0.2"; - sha256 = "214fff5ae2e4952cb8f15e7209be125e760b6d97fac4cd99b2e0592f790a1abf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base lawful ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/githubuser/gdp#readme"; - description = "Reason about invariants and preconditions with ghosts of departed proofs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-data" = callPackage - ({ mkDerivation, base, base-orphans, contravariant - , show-combinators, stdenv - }: - mkDerivation { - pname = "generic-data"; - version = "0.3.0.0"; - sha256 = "4c82444def5db474389ba66e47370dd1cd8c194d951bd40344ab3a5e77faa358"; - libraryHaskellDepends = [ - base base-orphans contravariant show-combinators - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/generic-data#readme"; - description = "Utilities for GHC.Generics"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.12.4"; - sha256 = "4401c13d38938338fb152bbc1049c5e1f880199afc2015421d5496811b4eaf6d"; - revision = "1"; - editedCabalFile = "16z0748pw4j28ib6vg5yzjm8wrarqkclr7l597q5zjxabjdn1ygj"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged }: - mkDerivation { - pname = "generic-lens"; - version = "1.1.0.0"; - sha256 = "ecf2946dbf7c84cb80febdd6c0574668ba7213644662cc1157f392f9767936bb"; - libraryHaskellDepends = [ base profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.2.0.0"; - sha256 = "9b1e00d2f06b582695a34cfdb2d8b62b32f64152c6ed43f5c2d776e6e9aa148c"; - revision = "1"; - editedCabalFile = "1d0hx41r7yq2a86ydnfh2fv540ah8cz05l071s2z4wxcjw0ymyn4"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generics-eot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generics-eot"; - version = "0.4.0.1"; - sha256 = "9be6de962c003365752b6fcb181ca9f443b68223c69c728c7991f5408d86df68"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://generics-eot.readthedocs.io/"; - description = "A library for generic programming that aims to be easy to understand"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-mrsop" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "generics-mrsop"; - version = "1.2.2"; - sha256 = "dbcb6e1d998a3412448a9d96d09ba3f3fcd760f54a492287048e885d2ddb9b76"; - libraryHaskellDepends = [ base containers mtl template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming with Mutually Recursive Sums of Products"; - license = stdenv.lib.licenses.mit; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, ghc-prim, sop-core, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.4.0.1"; - sha256 = "dc99fa6c597b7ce256bdbdfc89fc615f26013e25256dd7e813f05b7845b61398"; - libraryHaskellDepends = [ - base ghc-prim sop-core template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.1.2.1"; - sha256 = "4e49d4cc580d45e25e0abdeee12b1191ae75937af1c7ca03333979584a8a525c"; - revision = "6"; - editedCabalFile = "0j4j3kk2nsl5n5gp0vrzqdc5y9ly31b4nvhq0bpgcpzibvik7ssw"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.7.0.2"; - sha256 = "dbbfa8d7542ca9ab68d19fb2b7174861b76cb8f6d2fd796ca534f772dc5d5bfa"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.2.0.2"; - sha256 = "d1244fea0a0a7cad4f783a72b9ff98c606131445a3f2fe9bced5194ff8a2e7b0"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.3.0.1"; - sha256 = "e8e71e9e6bd9841ab2fdbe6f50f819d3b2e6deef61d51a165dbb34a54a8383c9"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.5.1.1"; - sha256 = "cfb99413ded6bc2b11da5f78a905e731fc53b6addab751dfa4de1e10f9aaebfc"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, transformers, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.6.2.3"; - sha256 = "462c423ab80fe9f60e438e3aca29e2e2fd423ede558d6060533b3df4f900468a"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - transformers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.3.0.1"; - sha256 = "a2d2e232b521f15bb4fdcf139621b9fdb6bad7de6cb888597d62a96dda50b274"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.3"; - sha256 = "b99ba22694a36af01f6617463a38a35f305e55c46c52ee727302f2e1585ea9aa"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.3"; - sha256 = "947ec34b6befa40f12eb16ad1d37aba97c5daf91efcbb25c564e8ae2ac887185"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.3"; - sha256 = "c61432a1899af3d916c7892fe16d5ed1a7fa30a4e24504a19f6bb90376546151"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-optics" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec - , microlens, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-optics"; - version = "0.1.1.1"; - sha256 = "0a92cb7d1f98dc17634434f715473cc19596864146eee6256eaf86576c943788"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec hspec microlens QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for optics"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.2"; - sha256 = "00fc6d2f4d54cda700ad4af04efea62db002cab4fbb3ca8da4d20b1a03a340ba"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.3.0.0"; - sha256 = "3aea3cc0833ee2ecdffe2da24e33770ef4e82fd0bfe5e66792d76357f1ac970d"; - libraryHaskellDepends = [ - base genvalidity hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.1.0"; - sha256 = "af11d48c53455eb250e68c6cb4f6e8159ddc16fb635879fc2973d57d8bd5903d"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.5.1.0"; - sha256 = "ef3d7ebe85cf5ce10675f350dd80dfdb3c3f700e109170d0c4929afdbfe8ee48"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.1.1"; - sha256 = "c555c206edddbd70355b295ccf9ff053463c137735c4aebcc340091f6d6b7874"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.2.0.4"; - sha256 = "78502e46cc717aba80ee9c8f6778b30c7e4e583361b65b3a43f4ad1a4be57b66"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.2"; - sha256 = "d1354bdfc0a75a1f228cfed22cd0edb0cc13a925e4b2514a634d56eb5b53f412"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.2.0.3"; - sha256 = "b3c42019fea54c0da0b0947b01cad510679b3b6c2dc55a43326806f9a02e3c98"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geojson" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, lens, scientific - , semigroups, stdenv, text, transformers, validation - }: - mkDerivation { - pname = "geojson"; - version = "3.0.4"; - sha256 = "85b30c38948bbca401b53117989aa432de94cb3096fecf51b78f237f164bd336"; - revision = "1"; - editedCabalFile = "1dp2hmnh77il2nx809bbkhhq4bz7ycy38ai5bhyklagc4k5bxl1c"; - libraryHaskellDepends = [ - aeson base containers deepseq lens scientific semigroups text - transformers validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/indicatrix/hs-geojson"; - description = "A thin GeoJSON Layer above the aeson library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.3"; - sha256 = "ab05824897afa59304fd653685b5d9580cc91b1d6783d30234a03dbf9dee0288"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc-lib-parser, stdenv, uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc-lib-parser uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.9"; - sha256 = "afa68fb86123004c37c1dc354286af2d87a9dcfb12ddcb80e8bd0cd55bc87945"; - revision = "4"; - editedCabalFile = "1fp0jyvi6prqsv0dxn010c7q4mmiwlcy1xk6ppd4d539adxxy67d"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.5"; - sha256 = "e42d1acd9947c1396adcf1ae3a0627144884af5cf13176fb09cce0e9bcfbfe32"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-syntax-highlighter" = callPackage - ({ mkDerivation, base, ghc, stdenv, text }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.3.1"; - sha256 = "a73dc70ef9ef4e53d64962792754a89abf88afd92de3316dccc54266494985e4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ghc text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; - description = "Syntax highlighter for Haskell using lexer of GHC itself"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.3"; - sha256 = "30acfd21d590809c16d990512fc8fcb98361ec540a76438233bd8aa23e82374c"; - revision = "2"; - editedCabalFile = "1hrbvixm25x1dx1ljy9x7f63kcan4ffz885xj6qsl8l070wj96s1"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-knownnat, ghc-typelits-natnormalise, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.3"; - sha256 = "47de9b6abbee64586c819616597c3768bea61b7aedb7f1c6d3231a163b6413ce"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-knownnat - ghc-typelits-natnormalise integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.6"; - sha256 = "4b529b27b226cc3df47d95cb8f0a145ed0c25486dec4f99be8dcd700ddc7f237"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.6.2"; - sha256 = "801ceb41442dfa992fad04c64f2989d1d701bcfe0874a55aa8d250e63c1a4311"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghci-hexcalc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghci-hexcalc"; - version = "0.1.0.2"; - sha256 = "db8d0605e68be1b402086128dd4a188a315dc4200068ddba05941040845f968c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/takenobu-hs/ghci-hexcalc"; - description = "GHCi as a Hex Calculator interactive"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.7.4"; - sha256 = "f73e3180812c6866d4861b787f265aeffed6271d17c38f92c4e0be483b3aa2f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.2"; - sha256 = "6cbb2c649f6d4a874eb7486a2dd33db2ed0f138f1f8289a6447460d39b4b2097"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gi-atk" = callPackage - ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-atk"; - version = "2.0.15"; - sha256 = "89753b4517e77ea956dcfd1294b4b98032c6e50df912e28c9a796d2b825fbfee"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ atk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Atk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) atk;}; - "gi-cairo" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-cairo"; - version = "1.0.17"; - sha256 = "5dbda70a038a93cb07130597407de9cde1436603beca3f2a0a6b43953c55a7ab"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Cairo bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo;}; - "gi-gdk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo - , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gdk"; - version = "3.0.16"; - sha256 = "7eb0aa493d268cd040c7ff70ad09d7bf7787e0e7619617ba220b88eafe68e34a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gdk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf - , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gdkpixbuf"; - version = "2.0.18"; - sha256 = "f232978dde69f4b2a2459ffb5280c33c2a8a079b3a1ce2f34bd9477dc0be3ead"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GdkPixbuf bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; - "gi-gio" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, glib, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gio"; - version = "2.0.19"; - sha256 = "0c43d7ab172afad8d7e30bb6d7e4c18d3b78552cb57914f3b50890db2b0ccff7"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gio bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-glib"; - version = "2.0.17"; - sha256 = "9d7abe0a9d66689c5102629edb43a2336d1bb8dc805f0cbe214e5a4e799eab67"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GLib bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gobject" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gobject"; - version = "2.0.16"; - sha256 = "c57844d5b9566834ece584bfbbdff1c3ef2de5aa67c711c406fe92d4b927f6ad"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GObject bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gtk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.27"; - sha256 = "79061e4d4f428b6c67056250d57555e8fa11ee83234fff0f52105d6a0ace1dc5"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gtk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gtk-hs" = callPackage - ({ mkDerivation, base, base-compat, containers, gi-gdk - , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk-hs"; - version = "0.3.6.3"; - sha256 = "5e894629b84bb79bb8b91e2d006965e351d24665c1dd37f354a77ce5acd6d976"; - libraryHaskellDepends = [ - base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject - gi-gtk haskell-gi-base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/gi-gtk-hs"; - description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "gi-gtksource" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtksource"; - version = "3.0.16"; - sha256 = "97b91b9f48b9e0c65a3936beb6e814ac5a55ab20aefbd9a167313982bd5da53a"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtksourceview3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GtkSource bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtksourceview3;}; - "gi-javascriptcore" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers, webkitgtk - }: - mkDerivation { - pname = "gi-javascriptcore"; - version = "4.0.16"; - sha256 = "5f30d7da8cca149b0234de871f18e4ff96288c928f678c649a620a7275c2304e"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ webkitgtk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "JavaScriptCore bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) webkitgtk;}; - "gi-pango" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, pango, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-pango"; - version = "1.0.16"; - sha256 = "a7bcc68413d7f7479e9b746eacf08b0c29a93b7c8af17005d96607ce090e78f4"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo pango ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Pango bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; - "gi-vte" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi - , haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers, vte_291 - }: - mkDerivation { - pname = "gi-vte"; - version = "2.91.19"; - sha256 = "9eb476c66295f9786df59bcf429d16a94462846dd3486a048a07ca93658bd0c2"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject - gi-gtk gi-pango haskell-gi haskell-gi-base haskell-gi-overloading - text transformers - ]; - libraryPkgconfigDepends = [ vte_291 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Vte bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {vte_291 = pkgs.vte;}; - "gingersnap" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-types - , postgresql-simple, resource-pool, snap-core, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "gingersnap"; - version = "0.3.1.0"; - sha256 = "01509dbfc31e865128d2ef13efc56502f9a716f7b30f0890a0616612aed08c82"; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-types postgresql-simple - resource-pool snap-core text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Consistent and safe JSON APIs with snap-core and (by default) postgresql-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "giphy-api" = callPackage - ({ mkDerivation, aeson, base, containers, http-api-data - , http-client, http-client-tls, microlens, microlens-th, mtl - , network-uri, servant, servant-client, stdenv, text, transformers - }: - mkDerivation { - pname = "giphy-api"; - version = "0.6.0.1"; - sha256 = "8ddfb5005bc26553850366c527c0a1a93e6b1efaf4334f195a4f5ab647408604"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "githash" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "githash"; - version = "0.1.3.1"; - sha256 = "ea58689a525e4953aaf91415d9a70b593fae88c7858e37f761bc836ce1fafc6e"; - libraryHaskellDepends = [ - base bytestring directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/githash#readme"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-release" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, mime-types, optparse-generic, stdenv - , text, unordered-containers, uri-templater - }: - mkDerivation { - pname = "github-release"; - version = "1.2.4"; - sha256 = "cb0f6564eca150f39b2211f2013a84531cb352edfe2619dd2c831ffc33ae9be8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - executableHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/github-release#readme"; - description = "Upload files to GitHub releases"; - license = stdenv.lib.licenses.mit; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "github-webhooks" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, deepseq, deepseq-generics, memory, stdenv, text, time - , vector - }: - mkDerivation { - pname = "github-webhooks"; - version = "0.10.1"; - sha256 = "ddc410e81a607b1b758d5e0e94ba707bb85631b184fd50120507c2be9f2f54c2"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite deepseq - deepseq-generics memory text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/onrock-eng/github-webhooks#readme"; - description = "Aeson instances for GitHub Webhook payloads"; - license = stdenv.lib.licenses.mit; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , fixed, half, hxt, libGL, stdenv, transformers - }: - mkDerivation { - pname = "gl"; - version = "0.8.0"; - sha256 = "aa4d2838157c86da920bda651458a4266fccc7c291ea93a69558ab02540e1439"; - revision = "3"; - editedCabalFile = "0q8d4237ds78y4p35xl2arlmmpgs2ag7krw9chby6q9dcs00zxrl"; - setupHaskellDepends = [ - base Cabal containers directory filepath hxt transformers - ]; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "1.0.1"; - sha256 = "434fadf483c4fb0aaec37fe3767c2bc9f7ba0e21543809040408abb129744787"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glaze" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "glaze"; - version = "0.3.0.1"; - sha256 = "bbb184408bcf24e8c4f89a960cf7a69ab0c51e98bf84c5fa9901aae1702e22a1"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glaze#readme"; - description = "Framework for rendering things with metadata/headers and values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glazier" = callPackage - ({ mkDerivation, alternators, base, data-diverse, data-diverse-lens - , dlist, lens, mtl, stdenv, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "glazier"; - version = "1.0.0.0"; - sha256 = "e9c56250e48b99bfe6280c58d1458c5d35203bf3676705355a4d0bd89c7b71a4"; - libraryHaskellDepends = [ - alternators base data-diverse data-diverse-lens dlist lens mtl - transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glazier#readme"; - description = "Extensible effects using ContT, State and variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gloss" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim - , gloss-rendering, GLUT, OpenGL, stdenv - }: - mkDerivation { - pname = "gloss"; - version = "1.13.0.1"; - sha256 = "381c0fecd9532c38bf3d0faf18a1be8d5394c8b103dd223cbd6f5a313add29b8"; - revision = "1"; - editedCabalFile = "1nyg324icnlky647zq4c21sqxv2bgnwnzgh2hz5d5ys6ba69j59h"; - libraryHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Painless 2D vector graphics, animations and simulations"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-algorithms" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, stdenv }: - mkDerivation { - pname = "gloss-algorithms"; - version = "1.13.0.1"; - sha256 = "25391db76e21e70c912d818a5f28f1b647a801034b3960540264b1e8b766786d"; - revision = "1"; - editedCabalFile = "140zmk3br0nn98mjc6ri36nk8yl93n4v69zybzv2vc41yxgvnac5"; - libraryHaskellDepends = [ base containers ghc-prim gloss ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Data structures and algorithms for working with 2D graphics"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-examples" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim, gloss - , gloss-algorithms, gloss-raster, random, repa, repa-algorithms - , repa-io, stdenv, vector - }: - mkDerivation { - pname = "gloss-examples"; - version = "1.13.0.2"; - sha256 = "ab216c95cf26879154db0d7ee36def7a2d9b2cd6aaae4278e2b55621a51c54bc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss gloss-algorithms - gloss-raster random repa repa-algorithms repa-io vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Examples using the gloss library"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-raster" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, gloss-rendering - , repa, stdenv - }: - mkDerivation { - pname = "gloss-raster"; - version = "1.13.0.2"; - sha256 = "895c678b7c7951937c9a881c3367952352bd62a1150b0c2f093a5817580a94cc"; - libraryHaskellDepends = [ - base containers ghc-prim gloss gloss-rendering repa - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Parallel rendering of raster images"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-rendering" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL - , stdenv - }: - mkDerivation { - pname = "gloss-rendering"; - version = "1.13.0.2"; - sha256 = "003b992a84bbaee82c7fc3f3e7904afbfddffe02b86630712419d83eb18c7f47"; - revision = "1"; - editedCabalFile = "0r57zc8ryxgjb4ydcdlmq19hl3nj6gjm3z85wrmdkn0wrx16mqih"; - libraryHaskellDepends = [ - base bmp bytestring containers GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - description = "Gloss picture data types and rendering functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "gnuplot" = callPackage - ({ mkDerivation, array, base, containers, data-accessor - , data-accessor-transformers, deepseq, filepath, process - , semigroups, stdenv, temporary, time, transformers, utility-ht - }: - mkDerivation { - pname = "gnuplot"; - version = "0.5.6"; - sha256 = "f7658e15f6d3b8051a753393bef26e46e86d053d98e66077dcea0438a97dddbc"; - revision = "1"; - editedCabalFile = "15ydlmw9a6dfiy0ffxqxy7iiszbysqn2jlhxrh4lfi21ck9n15kq"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers data-accessor data-accessor-transformers - deepseq filepath process semigroups temporary time transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Gnuplot"; - description = "2D and 3D plots using gnuplot"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "goggles" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring, binary - , bytestring, containers, cryptonite, exceptions, filepath - , http-client, http-client-tls, http-types, memory, mtl, pem, req - , scientific, stdenv, stm, text, time, transformers, unix-time - , x509, x509-store - }: - mkDerivation { - pname = "goggles"; - version = "0.3.2"; - sha256 = "a64d25c6506b172ec6f3b8a55f7934c23ccedc66c1acfb62432063dff743e93c"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring binary bytestring - containers cryptonite exceptions filepath http-client - http-client-tls http-types memory mtl pem req scientific stm text - time transformers unix-time x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/goggles"; - description = "Extensible interface to Web APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-isbn" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-conduit, stdenv, text - }: - mkDerivation { - pname = "google-isbn"; - version = "1.0.3"; - sha256 = "3a4df734785c46d381cff3cb44a553b0f9d5ffb051279367a193d64928c2322f"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-conduit text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/google-isbn#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-oauth2-jwt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, HsOpenSSL - , RSA, stdenv, text, unix-time - }: - mkDerivation { - pname = "google-oauth2-jwt"; - version = "0.3.1"; - sha256 = "71d7704aad64fbd2398d8b0dcb6f39311a8e710385fc80ee2b665bd6b43b2f88"; - libraryHaskellDepends = [ - base base64-bytestring bytestring HsOpenSSL RSA text unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/google-oauth2-jwt"; - description = "Get a signed JWT for Google Service Accounts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.6.0"; - sha256 = "b89ed6f47a6d44b9466d090eabddc9d9ec4b2d7e4b52a61b26d0cf19dac95ba6"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "graylog" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, network - , random, scientific, stdenv, text, time, vector - }: - mkDerivation { - pname = "graylog"; - version = "0.1.0.1"; - sha256 = "2d8173e61da8d02c39cb95e6ccea8a167c792f682a496aed5fe4edfd0e6a0082"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring network random scientific text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/haskell-graylog"; - description = "Support for graylog output"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "greskell" = callPackage - ({ mkDerivation, aeson, base, exceptions, greskell-core, semigroups - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "greskell"; - version = "0.2.3.0"; - sha256 = "a851a131d4ebb8b5beda62b58a2268670a7dff8370d6cc795ce092615d642560"; - configureFlags = [ "-f-hint-test" ]; - libraryHaskellDepends = [ - aeson base exceptions greskell-core semigroups text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-core" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, scientific - , semigroups, stdenv, text, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "greskell-core"; - version = "0.1.2.5"; - sha256 = "b772c09a65dc657992652555656bc31340ebf4ce03de8dbd7f123964124dbfd3"; - libraryHaskellDepends = [ - aeson base containers hashable scientific semigroups text - unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language - core data types and tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-websocket" = callPackage - ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , greskell-core, hashtables, safe-exceptions, stdenv, stm, text - , unordered-containers, uuid, vector, websockets - }: - mkDerivation { - pname = "greskell-websocket"; - version = "0.1.1.2"; - sha256 = "9062b34fec1855b0262a0cf529dcc3ebf5bb20738712195420d832dd46e2cde7"; - libraryHaskellDepends = [ - aeson async base base64-bytestring bytestring greskell-core - hashtables safe-exceptions stm text unordered-containers uuid - vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell client for Gremlin Server using WebSocket serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, containers, monad-control, mtl - , resourcet, safe-exceptions, scientific, stdenv, text, time - , transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "groundhog"; - version = "0.10.0"; - sha256 = "38fb65889878a50fd16e2ad8a04f0a9e2c774794086fbe156361d797b1a893f1"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - containers monad-control mtl resourcet safe-exceptions scientific - text time transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lykahb/groundhog"; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-inspector" = callPackage - ({ mkDerivation, aeson-pretty, base, bytestring, cmdargs - , containers, groundhog, groundhog-sqlite, groundhog-th, mtl - , regex-compat, stdenv, syb, template-haskell, text, time - , transformers - }: - mkDerivation { - pname = "groundhog-inspector"; - version = "0.10.0"; - sha256 = "4215ad3d497d0e9b66f0a3430a1db68abecdc013ed1cec1976f761dc7cac9ad0"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lykahb/groundhog"; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-mysql" = callPackage - ({ mkDerivation, base, bytestring, containers, groundhog - , monad-control, monad-logger, mysql, mysql-simple, resource-pool - , resourcet, stdenv, text, time, transformers - }: - mkDerivation { - pname = "groundhog-mysql"; - version = "0.10"; - sha256 = "ddf26a56078d815c77b0d36230183fe8ab804c5dc12ed09c2332ae06a88ebec5"; - libraryHaskellDepends = [ - base bytestring containers groundhog monad-control monad-logger - mysql mysql-simple resource-pool resourcet text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "MySQL backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-postgresql" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , containers, groundhog, monad-control, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, vector - }: - mkDerivation { - pname = "groundhog-postgresql"; - version = "0.10"; - sha256 = "8916f26dfe8b3a8523792ce44899fa7ee984c002100c10850819159551dc2fb6"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring containers groundhog - monad-control postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "PostgreSQL backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-sqlite" = callPackage - ({ mkDerivation, base, bytestring, containers, direct-sqlite - , groundhog, monad-control, resource-pool, resourcet, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "groundhog-sqlite"; - version = "0.10.0"; - sha256 = "fdf0377924ac6214ced50a5670b2d4811801c1a20e480b22090a705582d6defc"; - libraryHaskellDepends = [ - base bytestring containers direct-sqlite groundhog monad-control - resource-pool resourcet text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Sqlite3 backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-th" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, groundhog - , libyaml, stdenv, template-haskell, text, time - , unordered-containers, yaml - }: - mkDerivation { - pname = "groundhog-th"; - version = "0.10.2"; - sha256 = "f3532d16633e0a8592696a5e4f92064e44fbefba9b4a1f4a9ac6b4aef3ddfdae"; - libraryHaskellDepends = [ - aeson base bytestring containers groundhog libyaml template-haskell - text time unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "guarded-allocation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "guarded-allocation"; - version = "0.0.1"; - sha256 = "0cac10d1790817bdbc44ffe4ee8fcb649e350bb831987ee80739393917784695"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/guarded-allocation/"; - description = "Memory allocation with added stress tests and integrity checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gym-http-api" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-client, servant - , servant-client, servant-lucid, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "gym-http-api"; - version = "0.1.0.1"; - sha256 = "2c3fd9b261cd7bc3a004d41f582cd6c629956c78f7236eb91d615ca0c9b0c910"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base servant servant-client servant-lucid text - unordered-containers - ]; - executableHaskellDepends = [ - base exceptions http-client servant-client - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stites/gym-http-api#readme"; - description = "REST client to the gym-http-api project"; - license = stdenv.lib.licenses.mit; - }) {}; - "h2c" = callPackage - ({ mkDerivation, base, bytestring, mtl, resourcet, stdenv }: - mkDerivation { - pname = "h2c"; - version = "1.0.0"; - sha256 = "4be2c9d54084175777624770640850aba33d7e4a31e2dc8096c122f737965499"; - libraryHaskellDepends = [ base bytestring mtl resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/fmapE/h2c"; - description = "Bindings to Linux I2C with support for repeated-start transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hOpenPGP" = callPackage - ({ mkDerivation, aeson, asn1-encoding, attoparsec, base - , base16-bytestring, base64-bytestring, bifunctors, binary - , binary-conduit, bytestring, bzlib, conduit, conduit-extra - , containers, crypto-cipher-types, cryptonite, errors, hashable - , incremental-parser, ixset-typed, lens, memory, monad-loops - , nettle, network-uri, newtype, openpgp-asciiarmor, prettyprinter - , resourcet, semigroups, split, stdenv, text, time - , time-locale-compat, transformers, unliftio-core - , unordered-containers, zlib - }: - mkDerivation { - pname = "hOpenPGP"; - version = "2.7.4.1"; - sha256 = "1aa868310f2c1fe4a768034e8114fe7d5d91479b5f34850c27890537f3419539"; - libraryHaskellDepends = [ - aeson asn1-encoding attoparsec base base16-bytestring - base64-bytestring bifunctors binary binary-conduit bytestring bzlib - conduit conduit-extra containers crypto-cipher-types cryptonite - errors hashable incremental-parser ixset-typed lens memory - monad-loops nettle network-uri newtype openpgp-asciiarmor - prettyprinter resourcet semigroups split text time - time-locale-compat transformers unliftio-core unordered-containers - zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "native Haskell implementation of OpenPGP (RFC4880)"; - license = stdenv.lib.licenses.mit; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.0.1"; - sha256 = "f0aac1af6d8d29b7fc2ffd43efaf5a7a5b00f2ead8dacff180bc3714c591ef8d"; - revision = "2"; - editedCabalFile = "0qscq4d3xwvjhqi1fiky7g12iwbkwn9qrypwzg9lx4p3c5xlwlvn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory filepath tar time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access Hackage's package database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-security" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, Cabal, containers, cryptohash-sha256, directory - , ed25519, filepath, ghc-prim, mtl, network, network-uri, parsec - , pretty, stdenv, tar, template-haskell, time, transformers, zlib - }: - mkDerivation { - pname = "hackage-security"; - version = "0.5.3.0"; - sha256 = "db986e17e9265aa9e40901690815b890b97d53159eb24d0a6cafaa7c18577c21"; - revision = "6"; - editedCabalFile = "1xs2nkzlvkdz8g27yzfxbjdbdadfmgiydnlpn5dm77cg18r495ay"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring Cabal - containers cryptohash-sha256 directory ed25519 filepath ghc-prim - mtl network network-uri parsec pretty tar template-haskell time - transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hackage-security"; - description = "Hackage security library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers - , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths - , haddock-library, stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.22.0"; - sha256 = "24804f7e9da006a97712822da8afd7b24b00a9135638457266fc54e2e8273891"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring Cabal containers deepseq directory filepath - ghc ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, parsec, stdenv, text - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.7.0"; - sha256 = "e7c2794a7eb352824f098cafa07bc0506f2c3633808bfbf4c64aef0ba664d011"; - libraryHaskellDepends = [ - base bytestring containers parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hailgun" = callPackage - ({ mkDerivation, aeson, base, bytestring, email-validate - , exceptions, filepath, http-client, http-client-tls, http-types - , stdenv, tagsoup, text, time, transformers - }: - mkDerivation { - pname = "hailgun"; - version = "0.4.2"; - sha256 = "7416c800f1bb652136c5d6b6e36e2fa30455d56a96f89f8819cfb06b5b794b97"; - libraryHaskellDepends = [ - aeson base bytestring email-validate exceptions filepath - http-client http-client-tls http-types tagsoup text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/hailgun"; - description = "Mailgun REST api interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamilton" = callPackage - ({ mkDerivation, ad, ansi-wl-pprint, base, containers - , finite-typelits, ghc-typelits-knownnat, hmatrix, hmatrix-gsl - , hmatrix-vector-sized, optparse-applicative, stdenv - , typelits-witnesses, vector, vector-sized, vty - }: - mkDerivation { - pname = "hamilton"; - version = "0.1.0.3"; - sha256 = "3c7623217c8e49cabc6620835e53609e7b7339f39a1523da2467076252addb1b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hamilton#readme"; - description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hapistrano" = callPackage - ({ mkDerivation, aeson, async, base, filepath, formatting, gitrev - , mtl, optparse-applicative, path, path-io, process, stdenv, stm - , time, transformers, typed-process, yaml - }: - mkDerivation { - pname = "hapistrano"; - version = "0.3.9.2"; - sha256 = "0deee3a40075e1bd3e215f5f01f8392b2f216275205cfec29d9dd36d70c94011"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base filepath formatting gitrev mtl path process stm time - transformers typed-process - ]; - executableHaskellDepends = [ - aeson async base formatting gitrev optparse-applicative path - path-io stm yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hapistrano"; - description = "A deployment library for Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, Cabal, containers, directory - , filepath, mtl, stdenv - }: - mkDerivation { - pname = "happy"; - version = "1.19.9"; - sha256 = "3e81a3e813acca3aae52721c412cde18b7b7c71ecbacfaeaa5c2f4b35abf1d8d"; - revision = "3"; - editedCabalFile = "0kwlh964nyqvfbm02np8vpc28gbhsby0r65jhz1918rm0wip9izq"; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hasbolt" = callPackage - ({ mkDerivation, base, binary, bytestring, connection, containers - , data-binary-ieee754, data-default, network, stdenv, text - , transformers - }: - mkDerivation { - pname = "hasbolt"; - version = "0.1.3.3"; - sha256 = "6b695962e0f63ef47687a40c9197cbb3c5bb4473cc3456b26221a2997e4c37d0"; - revision = "1"; - editedCabalFile = "0v4ksld4qs1ll5a5c6x5kvrcb584yskhbda7zv9r9lrqvcsjwg5i"; - libraryHaskellDepends = [ - base binary bytestring connection containers data-binary-ieee754 - data-default network text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmactep/hasbolt#readme"; - description = "Haskell driver for Neo4j 3+ (BOLT protocol)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.2.7.0"; - sha256 = "ecb5efc0586023f5a0dc861100621c1dbb4cbb2f0516829a16ebac39f0432abf"; - revision = "1"; - editedCabalFile = "197063dpl0wn67dp7a06yc2hxp81n24ykk7klbjx0fndm5n87dh3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable-time" = callPackage - ({ mkDerivation, base, hashable, stdenv, time }: - mkDerivation { - pname = "hashable-time"; - version = "0.2.0.2"; - sha256 = "fa61f7fbd493b5a54f2aeb10e0c1c4144111ecf34e74080d12c5738ce925fee0"; - revision = "2"; - editedCabalFile = "006phc5y9rrvsshdcmjmhxzxh8dpgs685mpqbkjm9c40xb1ydjbz"; - libraryHaskellDepends = [ base hashable time ]; - doHaddock = false; - doCheck = false; - description = "Hashable instances for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.1"; - sha256 = "8fd1c7c77c267eae6af01f1d9ca427754fb092cfffc8041cd50764a9144b3cbe"; - revision = "1"; - editedCabalFile = "1yyqnqn85mlw03f2bpvwa1w9gigswk9n30i918myqyxwr595l7rr"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.5.0"; - sha256 = "d26508444914efcd6a0369f89c3ade57feae7732c73f5329b610c0c8f1c1dec6"; - revision = "1"; - editedCabalFile = "0i8fyhk7fvz2bxnh5xsmdw5rr7yywzc2wv115034q1g4sb018zrd"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.21.5"; - sha256 = "12d116c6effae4da3f97afaad46faab6766f4a58be2c8fb434f8e0feea4a71e7"; - revision = "1"; - editedCabalFile = "144knmzybslqz8w9cwgl5s4sk1crs9qhynwiqv68wdq67q0s4k80"; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.21.5"; - sha256 = "f04d372ce57821f84524d7191b769ee2ae7f14dd1db5c306cadd771625e5b6df"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, ormolu, parsec, process, safe, sorted-list - , stdenv, stm, syb, tagsoup, text, transformers, unix-time - , unliftio, unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple ormolu parsec process safe sorted-list stm syb - tagsoup text transformers unix-time unliftio unordered-containers - vector versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.0.2"; - sha256 = "d8cdf3122ee384ec440269108fd85ccf207a413015ceeffb2e9bf4313a6addf3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yav/haskell-lexer"; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-names" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , data-lens-light, filepath, haskell-src-exts, mtl, stdenv - , transformers, traverse-with-class, uniplate - }: - mkDerivation { - pname = "haskell-names"; - version = "0.9.4"; - sha256 = "1e3d9a393b677981cf7e77d54306b041983abe6ba371148095a754ed7b2e6e35"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers data-lens-light filepath - haskell-src-exts mtl transformers traverse-with-class uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/haskell-suite/haskell-names"; - description = "Name resolution library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-spacegoo" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , mtl, pretty, pretty-show, stdenv, text, vector, vector-space - }: - mkDerivation { - pname = "haskell-spacegoo"; - version = "0.2.0.1"; - sha256 = "1eb3faa9a7f6a5870337eeb0bb3ad915f58987dfe4643fe95c91cbb2738ddd3c"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra mtl pretty pretty-show - text vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Client API for Rocket Scissor Spacegoo"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.0"; - sha256 = "b4b4941e8883da32c3f2b93f3ecdd5cff82ff9304cb91e89850b19095c908dbc"; - revision = "1"; - editedCabalFile = "1pnrvh9wzdkhvkkky4rlq1imycl9k76x9rvgq7cmfp8rf1iwqi5q"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.2"; - sha256 = "7970d29ef9a96dc21c4ac94b4072c7dddec663cf64e8b5ab221d21868cc1166f"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.0"; - sha256 = "90387d9a8e2afb22f9a4ace4b8f3b1a2045b955c1283c70a614abeff2294465a"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskoin-core" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring - , cereal, conduit, containers, cryptonite, entropy, hashable - , memory, mtl, murmur3, network, QuickCheck, scientific - , secp256k1-haskell, split, stdenv, string-conversions, text, time - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haskoin-core"; - version = "0.8.4"; - sha256 = "5c2746a075af13a7b40fa4592ba4f3c0ee5599ee6177c1f6bcbb7b6ec45fea42"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bytestring cereal conduit - containers cryptonite entropy hashable memory mtl murmur3 network - QuickCheck scientific secp256k1-haskell split string-conversions - text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/haskoin#readme"; - description = "Bitcoin & Bitcoin Cash library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , data-default-class, dlist, hashable, hashtables, loch-th, mtl - , placeholders, postgresql-binary, postgresql-libpq, profunctors - , stdenv, text, text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.3.0.5"; - sha256 = "5b2ed858f2d7346209706b169d85fd191bd6f71982ac1d9bedd939b51ee94263"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras data-default-class dlist - hashable hashtables loch-th mtl placeholders postgresql-binary - postgresql-libpq profunctors text text-builder transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver and a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.3"; - sha256 = "63b4c3da21434bac9a98521cdcfda7815bcebb8829feb889f4050fffd7f06334"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5.0.2"; - sha256 = "24ab7c97eceac5d5e7ef512ccffc8d256fe724e32b0180342af61ddb8d4a4888"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, bytestring, bytestring-tree-builder - , contravariant, contravariant-extras, hasql, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "0.7.1"; - sha256 = "49a335195797b8975500f37cbcb85daf7267ea5e57fcf78f2a17b6d1bf7c3a0a"; - libraryHaskellDepends = [ - base bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "A composable abstraction over the retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "haxl" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, exceptions, filepath, ghc-prim, hashable, pretty, stdenv - , stm, text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haxl"; - version = "2.0.1.1"; - sha256 = "59f30d1bde6c70736071ccf3b561776d1a060af4c5a854c66664df1a47e4d6f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq exceptions filepath - ghc-prim hashable pretty stm text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebook/Haxl"; - description = "A Haskell library for efficient, concurrent, and concise data access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hbeanstalk" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, network, stdenv - }: - mkDerivation { - pname = "hbeanstalk"; - version = "0.2.4"; - sha256 = "feaf97fd18fedb3e5abf337e61c98a03108d917d9f87f885c8d02b6b838aac8f"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/scsibug/hbeanstalk/"; - description = "Client for the beanstalkd workqueue service"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.5"; - sha256 = "d250cb0c066ec45aa9b8e9e0df094677f9e7788b01eaf51ab5bc9bbd52fe029f"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/greydot/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6.1"; - sha256 = "91d552f3c8992f745607de39239b950db78295b533eda43d083699872a4ee36d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.2"; - sha256 = "4316e2ab829a7344900fe15966460bc553e3a60989a14c08ecadf00d2674462b"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time#readme"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, exceptions - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, th-lift, time, transformers, transformers-base, unix - , wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "0.6.1"; - sha256 = "d2f94024906af37fed427fa1f03177d9a530078a2e54cfb24d7397da9807e177"; - revision = "5"; - editedCabalFile = "0kwmxjb1y3gk85njacw5wcvmq3bzp1649dbjzgzpiba2w342f7il"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory exceptions lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text th-lift time transformers transformers-base - unix wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Hedgehog will eat all your bugs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.1.0"; - sha256 = "c3569cd8316770115871acf334587350e887b046e35abc0d52a90dd0e6d719f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedis" = callPackage - ({ mkDerivation, async, base, bytestring, bytestring-lexing - , deepseq, errors, HTTP, mtl, network, network-uri, resource-pool - , scanner, stdenv, stm, text, time, tls, unordered-containers - , vector - }: - mkDerivation { - pname = "hedis"; - version = "0.10.10"; - sha256 = "1ad2452dc78065035d58f124547caa8ae927c9a470dbe85988e2ed1b19837241"; - revision = "1"; - editedCabalFile = "0fcpf0jqga8wh0ikbpkma8sw7f5376wbc9w9rsiqp51q8f23x04h"; - libraryHaskellDepends = [ - async base bytestring bytestring-lexing deepseq errors HTTP mtl - network network-uri resource-pool scanner stm text time tls - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/informatikr/hedis"; - description = "Client library for the Redis datastore: supports full command set, pipelining"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedn" = callPackage - ({ mkDerivation, base, containers, deepseq, deriving-compat - , megaparsec, parser-combinators, prettyprinter, scientific, stdenv - , template-haskell, text, time, uuid-types, vector - }: - mkDerivation { - pname = "hedn"; - version = "0.2.0.1"; - sha256 = "326c54efc9a6bc92b2f7b5a6900442b8aff8cb9dac93c6f15bea1ff14c27d19b"; - revision = "1"; - editedCabalFile = "1wr3zv0bj1714y1ip40va34zysmypicd6qp0l50bg9wj2db0misz"; - libraryHaskellDepends = [ - base containers deepseq deriving-compat megaparsec - parser-combinators prettyprinter scientific template-haskell text - time uuid-types vector - ]; - doHaddock = false; - doCheck = false; - description = "EDN parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.3"; - sha256 = "4723e03896cc91d524da36fe1b8c5b174b81120c323a3fad692f9ada4bd8794f"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hex"; - version = "0.1.2"; - sha256 = "12ee1243edd80570a486521565fb0c9b5e39374f21a12f050636e71d55ec61ec"; - revision = "1"; - editedCabalFile = "0khmrdni6njr4wxgz15yz77l8ar4qm2jj6v0lvfnwqdms4s6i80y"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Convert strings into hexadecimal and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.4"; - sha256 = "937401802ed6593aad8c5acf0ea963d0f1f4473bf72185702b12eb30e52bbe2a"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hformat" = callPackage - ({ mkDerivation, ansi-terminal, base, base-unicode-symbols, stdenv - , text - }: - mkDerivation { - pname = "hformat"; - version = "0.3.3.1"; - sha256 = "302eda1d9ca71b73c5a5d31561d4ef3e7d4ff9ef1b86329aa019b5df20c5a773"; - libraryHaskellDepends = [ - ansi-terminal base base-unicode-symbols text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/hformat"; - description = "Simple Haskell formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hgmp" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "hgmp"; - version = "0.1.1"; - sha256 = "b905720ad455ef54a167ed6c2a44dfb01f8e8f8efc6fe4f0a2a21ff22f5b3ac2"; - revision = "4"; - editedCabalFile = "00rg7f223716dlqk0w92ixnyj7a9imj6yqcs5qx833jv7lk8lbyj"; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/hgmp"; - description = "Haskell interface to GMP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.5"; - sha256 = "3726e0bcbdbda309b919241d86629625e732fd07d78cc90ad39cb39b51cd595e"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hidden-char" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hidden-char"; - version = "0.1.0.2"; - sha256 = "ea909372a7cc06cda7ee8e9c1a6a5c16be19fef256ad4bd2c0b39e61d940f498"; - revision = "3"; - editedCabalFile = "0f6qghr4i3ar993pjlswdd2rl671lrnxj8740i2yhn89z410vzsa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/hidden-char#readme"; - description = "Provides cross-platform getHiddenChar function"; - license = stdenv.lib.licenses.mit; - }) {}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.2"; - sha256 = "2afc228104a29aed6b208b1aeba93631e96fdf11efbe68ad036f838f95f8aff2"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinfo" = callPackage - ({ mkDerivation, aeson, base, optparse-applicative, stdenv, text - , yaml - }: - mkDerivation { - pname = "hinfo"; - version = "0.0.3.0"; - sha256 = "9bcee53af6ff558efe131ff22ab678b1fc6423a7f176026fc50fbabbab620413"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - executableHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/hinfo#readme"; - description = "Command Line App With Info on your Haskell App"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.4"; - sha256 = "7d182c524384aaa15eec666803643d067671e8e806f315c10758685e90a934f4"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hint" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, ghc - , ghc-boot, ghc-paths, mtl, random, stdenv, temporary, unix - }: - mkDerivation { - pname = "hint"; - version = "0.9.0"; - sha256 = "7425af412a66d22f254608b4e9f552d65fd96c6cc5885af7b2ed0af62923f8bc"; - libraryHaskellDepends = [ - base directory exceptions filepath ghc ghc-boot ghc-paths mtl - random temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-hint/hint"; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , language-javascript, optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.2"; - sha256 = "bec153d2396962c63998eb12d0a2c7c9f7df6f774cb00e41b6cdb1f5a4905484"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers language-javascript text - ]; - executableHaskellDepends = [ - base blaze-builder bytestring containers language-javascript - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat-batteries - , bytestring, cmdargs, containers, data-default, Decimal, Diff - , directory, easytest, file-embed, filepath, hashable, haskeline - , here, hledger-lib, lucid, math-functions, megaparsec, mtl - , mtl-compat, old-time, parsec, pretty-show, process, regex-tdfa - , safe, shakespeare, split, stdenv, tabular, temporary, terminfo - , text, time, transformers, unordered-containers, utf8-string - , utility-ht, wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.12.1"; - sha256 = "3c94f63bd66cd9229e1e1e220a0ee80d3a8d2cfa812990e6cee0fd0c33dd3fad"; - revision = "1"; - editedCabalFile = "0vcqj1jvpmlamsifdrzxsvm69pjiiavhvyz85sh7kvpdl689gfhk"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal Diff directory easytest file-embed - filepath hashable haskeline here hledger-lib lucid math-functions - megaparsec mtl mtl-compat old-time parsec pretty-show process - regex-tdfa safe shakespeare split tabular temporary terminfo text - time transformers unordered-containers utf8-string utility-ht - wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal directory easytest file-embed - filepath haskeline here hledger-lib math-functions megaparsec mtl - mtl-compat old-time parsec pretty-show process regex-tdfa safe - shakespeare split tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , Decimal, docopt, either, hledger, hledger-lib, microlens - , microlens-platform, safe, servant-server, servant-swagger, stdenv - , swagger2, text, transformers, wai, wai-extra, warp - }: - mkDerivation { - pname = "hledger-api"; - version = "1.12"; - sha256 = "5df5766fcb971b33f48f0e8762e5673be3ab92a4adc2281b7aeaa392cb53846e"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web API server for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "7a7f5d437c98e42ba1f1529f2645e5df88d18962ae28b71b8c07e428fe08c1b9"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat-batteries - , blaze-markup, bytestring, call-stack, cassava, cassava-megaparsec - , cmdargs, containers, data-default, Decimal, deepseq, directory - , easytest, extra, filepath, Glob, hashtables, megaparsec, mtl - , mtl-compat, old-time, parsec, parser-combinators, pretty-show - , regex-tdfa, safe, split, stdenv, tabular, text, time - , transformers, uglymemo, utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.12"; - sha256 = "7095d03bf9375fbe886467d98a3c4c34c8ea566ea9a3490a85bd31667eca68d4"; - revision = "1"; - editedCabalFile = "0ql74vd4g802hh07lnrasajwnmp1rkk66rjd9d7hzpr2ysxbqbx8"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat-batteries blaze-markup - bytestring call-stack cassava cassava-megaparsec cmdargs containers - data-default Decimal deepseq directory easytest extra filepath Glob - hashtables megaparsec mtl mtl-compat old-time parsec - parser-combinators pretty-show regex-tdfa safe split tabular text - time transformers uglymemo utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , case-insensitive, clientsession, cmdargs, conduit, conduit-extra - , data-default, directory, filepath, hjsmin, hledger, hledger-lib - , http-client, http-conduit, json, megaparsec, mtl, semigroups - , shakespeare, stdenv, template-haskell, text, time, transformers - , wai, wai-extra, wai-handler-launch, warp, yaml, yesod, yesod-core - , yesod-form, yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.12"; - sha256 = "6668e9922490d1b742ab285200c337681ae1b988b315c03f7bce96941bc4c392"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring case-insensitive - clientsession cmdargs conduit conduit-extra data-default directory - filepath hjsmin hledger hledger-lib http-client http-conduit json - megaparsec mtl semigroups shakespeare template-haskell text time - transformers wai wai-extra wai-handler-launch warp yaml yesod - yesod-core yesod-form yesod-static - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlibsass" = callPackage - ({ mkDerivation, base, Cabal, directory, libsass, stdenv }: - mkDerivation { - pname = "hlibsass"; - version = "0.1.8.0"; - sha256 = "26de9a1275e0c1cae5afbe79ad3aa1a857c3bfc0b6dcc97698e9d02d41de4feb"; - configureFlags = [ "-fexternalLibsass" ]; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ libsass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hlibsass"; - description = "Low-level bindings to Libsass"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsass;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern - ghc-lib-parser ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.19.0.0"; - sha256 = "52eb2e42edc5839bfd9d2dec6c4fb29997eca737537a06df7b2d09bf6c324d82"; - revision = "1"; - editedCabalFile = "0krx0ds5mcj28y6zpg0r50lljn8681wi4c5lqcdz2c71nhixfq8h"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-backprop" = callPackage - ({ mkDerivation, backprop, base, ghc-typelits-knownnat - , ghc-typelits-natnormalise, hmatrix, hmatrix-vector-sized - , microlens, stdenv, vector, vector-sized, vinyl - }: - mkDerivation { - pname = "hmatrix-backprop"; - version = "0.1.2.5"; - sha256 = "4ebb6e5073bd6652fcac22275e47411ca1076699100bc928a692a1c7f6aed1d4"; - revision = "1"; - editedCabalFile = "0bqngjaxyz354bp38pqxdb2hk2jd5n8zxg7hrwnb4hhy0lvf2251"; - libraryHaskellDepends = [ - backprop base ghc-typelits-knownnat ghc-typelits-natnormalise - hmatrix hmatrix-vector-sized microlens vector vector-sized vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-backprop#readme"; - description = "hmatrix operations lifted for backprop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.7"; - sha256 = "4a0f8b6ea1caefebd30f1e726c94f238d96c0f873bdeb5d920367e8aca7c54bf"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.2"; - sha256 = "f2f3ee02607096a56c7c5c7f1ddff2f7f91ee05211ec2bd659add8208b1505a7"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.1.3"; - sha256 = "8f151601331ffa2002237595e1938d366031d68321a0516b53a8f684b31082dc"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hoauth2" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-conduit - , http-types, microlens, stdenv, text, unordered-containers - , uri-bytestring, uri-bytestring-aeson - }: - mkDerivation { - pname = "hoauth2"; - version = "1.8.4"; - sha256 = "5d5313221980bad30a30649633c821ad25604b09dd9065aa2170115cda5ff14c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-conduit http-types microlens - text unordered-containers uri-bytestring uri-bytestring-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/freizl/hoauth2"; - description = "Haskell OAuth2 authentication client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, openssl, stdenv }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.4"; - sha256 = "9df46c328fc4c1d1566e2d1539770c9fe9d0422e09ee254721b35ee7d48a7671"; - revision = "1"; - editedCabalFile = "14bs0wjrqnnn1v8c4yznfzggvmgypm2lssgl0cr498kmp54if0lf"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hosc" = callPackage - ({ mkDerivation, base, binary, blaze-builder, bytestring - , data-binary-ieee754, network, stdenv, time, transformers - }: - mkDerivation { - pname = "hosc"; - version = "0.17"; - sha256 = "66439c416246cb56c15a0f3fb0cf07b178202c7755034b648f02d4f81ba5800c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-builder bytestring data-binary-ieee754 network - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://rohandrape.net/t/hosc"; - description = "Haskell Open Sound Control"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.12"; - sha256 = "44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.9"; - sha256 = "56fc8ba0ad862668179f5bab032c3738fa42d10abce6b59f8dd01b3a11e52b52"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://mathr.co.uk/blog/hp2pretty.html"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hpack" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal - , containers, cryptonite, deepseq, directory, filepath, Glob - , http-client, http-client-tls, http-types, infer-license, pretty - , scientific, stdenv, text, transformers, unordered-containers - , vector, yaml - }: - mkDerivation { - pname = "hpack"; - version = "0.31.2"; - sha256 = "6f00834e99463f022fe9346b9c2cdb1054a6d89e9d6b70a4869c2b5a50304dd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types infer-license pretty scientific text transformers - unordered-containers vector yaml - ]; - executableHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types infer-license pretty scientific text transformers - unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/hpack#readme"; - description = "A modern format for Haskell packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "hpack-dhall" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall - , dhall-json, filepath, hpack, megaparsec, microlens - , optparse-applicative, prettyprinter, stdenv, text, transformers - , yaml - }: - mkDerivation { - pname = "hpack-dhall"; - version = "0.5.2"; - sha256 = "f187092f60fddda9f4f453cbbf9c536b3f3af193ebd23c2c234280cb6182b69a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring dhall dhall-json filepath hpack - megaparsec microlens prettyprinter text transformers yaml - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall dhall-json filepath hpack - megaparsec microlens optparse-applicative prettyprinter text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/hpack-dhall#readme"; - description = "hpack's dhalling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , process, ruby, scientific, stdenv, stm, text - , unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.6"; - sha256 = "dda3b4fb243b612915c8a5c415a95c7d68c0d860901fd01b5d0315b7ccda1519"; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.7.0.0"; - sha256 = "c5d205294ff372306504b03c4334fd96215727087ee4ee1378a45273a8d6dee1"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.4.0"; - sha256 = "4e8536fa34a50585239ceb84d69c405c742201d8e16bd6490d1cbc1f76803133"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hs-php-session" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hs-php-session"; - version = "0.0.9.3"; - sha256 = "0e717e90933f9e861d9cf374baa0dedac51d8ae7a1746ef2f7bd098fe38c8df7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/hs-php-session"; - description = "PHP session and values serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsass" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, filepath - , hlibsass, monad-loops, stdenv, transformers - }: - mkDerivation { - pname = "hsass"; - version = "0.8.0"; - sha256 = "afb4d904253e59c4f0e271fee24fabb97090372cb53c12d7bc8bd5db8cdcd2ae"; - libraryHaskellDepends = [ - base bytestring data-default-class filepath hlibsass monad-loops - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hsass"; - description = "Integrating Sass into Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hschema" = callPackage - ({ mkDerivation, base, comonad, contravariant, free, hashable - , invariant, lens, mtl, natural-transformation, profunctors, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hschema"; - version = "0.0.1.1"; - sha256 = "3218cf757cd0ca57b47d3f63c2f599e785ee225e7d17cae0b15656ffa32785e8"; - libraryHaskellDepends = [ - base comonad contravariant free hashable invariant lens mtl - natural-transformation profunctors text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hschema-aeson" = callPackage - ({ mkDerivation, aeson, base, comonad, contravariant, free, hschema - , hschema-prettyprinter, hschema-quickcheck, lens, mtl - , natural-transformation, prettyprinter - , prettyprinter-ansi-terminal, QuickCheck, quickcheck-instances - , scientific, stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "hschema-aeson"; - version = "0.0.1.1"; - sha256 = "4c5f8b24c25ca385f16a6adbad175240b258746594083aa8213257eba35e057d"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hschema-prettyprinter" = callPackage - ({ mkDerivation, base, contravariant, free, hschema, lens, mtl - , natural-transformation, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "hschema-prettyprinter"; - version = "0.0.1.1"; - sha256 = "eff29fe173f759b80f5a2f762f35a730aa914ffe94a250955de1f134c5c07fee"; - libraryHaskellDepends = [ - base contravariant free hschema lens mtl natural-transformation - prettyprinter prettyprinter-ansi-terminal text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hschema-quickcheck" = callPackage - ({ mkDerivation, base, free, hschema, lens, mtl - , natural-transformation, QuickCheck, quickcheck-instances, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hschema-quickcheck"; - version = "0.0.1.1"; - sha256 = "b94aedaacddcadd935ec1dec43568826b6c98e3933a7e22d877df96cac75a9e5"; - libraryHaskellDepends = [ - base free hschema lens mtl natural-transformation QuickCheck - quickcheck-instances text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdev" = callPackage - ({ mkDerivation, aeson, aeson-pretty, array, async, attoparsec - , base, bytestring, Cabal, containers, cpphs, data-default, deepseq - , direct-sqlite, directory, exceptions, filepath, fsnotify, ghc - , ghc-boot, ghc-paths, haskell-names, haskell-src-exts, hformat - , hlint, HTTP, lens, lifted-base, mmorph, monad-control - , monad-loops, mtl, network, optparse-applicative, process - , regex-pcre-builtin, scientific, simple-log, sqlite-simple, stdenv - , stm, syb, template-haskell, text, text-region, time, transformers - , transformers-base, traverse-with-class, uniplate, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "hsdev"; - version = "0.3.2.3"; - sha256 = "3bb80c8afb08919e373a8fb8cf5e4baa286ac97d19845e8e2123ec7634a5610f"; - configureFlags = [ "-f-docs" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty array async attoparsec base bytestring Cabal - containers cpphs data-default deepseq direct-sqlite directory - exceptions filepath fsnotify ghc ghc-boot ghc-paths haskell-names - haskell-src-exts hformat hlint HTTP lens lifted-base mmorph - monad-control monad-loops mtl network optparse-applicative process - regex-pcre-builtin scientific simple-log sqlite-simple stm syb - template-haskell text text-region time transformers - transformers-base traverse-with-class uniplate unix - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring containers deepseq directory - exceptions filepath monad-loops mtl network optparse-applicative - process text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvoidex/hsdev"; - description = "Haskell development library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.7.1"; - sha256 = "4fcd00e85cde989652ab5c6b179610c9514180a00cd7b161ea33ebfec3b8a044"; - revision = "1"; - editedCabalFile = "0w4hrmj7ph5dgarl82xpa0g77ncjdqk0wc9wp771pry98xxihzl8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, mtl, old-time, parsec, stdenv }: - mkDerivation { - pname = "hsemail"; - version = "2"; - sha256 = "f5f08a879444abd1f9a8a3e620d7fc83bc632ae3ba9b545bebdf58d5f4bfa8d9"; - libraryHaskellDepends = [ base mtl old-time parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the RFC2822 Internet Message format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsexif" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, iconv - , stdenv, text, time - }: - mkDerivation { - pname = "hsexif"; - version = "0.6.1.6"; - sha256 = "0f7e14cdec698c4e8e17ec84971ca5a604c9e75a861806dbf7088cdfc706b55d"; - revision = "1"; - editedCabalFile = "1dgcgsmx0k5p3ibfv3n5k0c5p1is2m5zfsd2s6nc6d0pz34d4wl9"; - libraryHaskellDepends = [ - base binary bytestring containers iconv text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/hsexif"; - description = "EXIF handling library in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - }: - mkDerivation { - pname = "hsini"; - version = "0.5.1.2"; - sha256 = "eaa6ae68c6271d5c3187054e702719b3ee7916524ffda27bb328cc9aad9ed8e4"; - revision = "1"; - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - doHaddock = false; - doCheck = false; - description = "ini configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, heredoc, process - , safe-exceptions, stdenv - }: - mkDerivation { - pname = "hsinstall"; - version = "2.2"; - sha256 = "23a702c43e0f42ad916aedd5b53970a6e64708ffc50d1d509904ebad3d478991"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ - base Cabal directory filepath heredoc process safe-exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dino-/hsinstall#readme"; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, containers, directory, mtl, network - , old-locale, process, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.2.12"; - sha256 = "f97a4c89d0921f237999de5d44950127dbe8baa177960ccccbfb79cccfd46c7a"; - revision = "1"; - editedCabalFile = "1rk2lrg3959nbgbyd1aacvwbv865lsrnczqdmj4ivkfn0c8nkidh"; - libraryHaskellDepends = [ - base containers directory mtl network old-locale process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/hslogger"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "1.0.2"; - sha256 = "fda9b291051769a02c175f744bc2175f5ff49732c83e7063cf6c786bcc654f70"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://hslua.github.io/"; - description = "Bindings to Lua, an embeddable scripting language"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "1.0.0"; - sha256 = "ffa7c2f6cb90a914f796334c8f07b1eb7bfd9b3717c55d8f756589dd14706c73"; - revision = "1"; - editedCabalFile = "1ysgh5s99zv0khkwqw1kcli2r2vi77r7wz3yc0y0i7qr35shzklh"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, bytestring, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.2.0"; - sha256 = "711705b9befac9b65cc44e13483dc5b6ddcca45bc049813863653276908d8f7e"; - libraryHaskellDepends = [ base bytestring hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-text"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, hspec-core, hspec-discover - , hspec-expectations, QuickCheck, stdenv - }: - mkDerivation { - pname = "hspec"; - version = "2.6.1"; - sha256 = "8bf646f45bfd3d30f41f7b686af3317708456f1582555af1cfc2e4ea1bc46eca"; - libraryHaskellDepends = [ - base hspec-core hspec-discover hspec-expectations QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.1"; - sha256 = "2c1bf064a815af9a3ac8af79d1bf1e761d855276366b86cbace5773794ea1f42"; - revision = "1"; - editedCabalFile = "0vjmyrsb878914b4khwdy3fcn9n217q8k5xnszlrp7dl1jnbqyi4"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.6.1"; - sha256 = "7b2b421bc407c149e480c8028bee02781916a3671c1f814a84cadc63d51ce475"; - revision = "1"; - editedCabalFile = "1cpsfxag9h4xa68p3ymidrrh80kv5fff469rx5qvz4r2pjsxlh0c"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.6.1"; - sha256 = "9d569a9587d2034272d287442855490a06266192eba1da871cae7d971b922fa1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.4"; - sha256 = "1bbfd524330be3cb0b27945556d01f48e3005e042ee475cdf6e441ba21b51b0a"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-leancheck" = callPackage - ({ mkDerivation, base, hspec, hspec-core, HUnit, leancheck, stdenv - }: - mkDerivation { - pname = "hspec-leancheck"; - version = "0.0.3"; - sha256 = "38de8e98ca16e54370f2387c2ceb22fadab53ada5e9c0505ce9fe23f1b99d852"; - libraryHaskellDepends = [ base hspec hspec-core HUnit leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/hspec-leancheck#readme"; - description = "LeanCheck support for the Hspec test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "2.0.0"; - sha256 = "a8f96f685cf6bbad06b70822c6c55bf7bc70e7e444402825c8ca232f18589b30"; - revision = "1"; - editedCabalFile = "15hpf1v1d4dwzdvk7xhgj37yd37pcyj6yzw750k1fcj6j0hk4rb7"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.6.0"; - sha256 = "e6d701c9f366f6762eb2a86022d1c7a7d7631c100945491ff53b3a3e86212ad8"; - revision = "1"; - editedCabalFile = "1qh3j6mhlz2bvdk8qc5fa4nqh93q4vqnvxmqqisg4agacnvyp4b2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-need-env" = callPackage - ({ mkDerivation, base, hspec-core, hspec-expectations, stdenv }: - mkDerivation { - pname = "hspec-need-env"; - version = "0.1.0.3"; - sha256 = "8649736f8ef49b5a80a5e00ea4a84f5d73dc914ef12b0eb6e0b7a5e5f3799698"; - libraryHaskellDepends = [ base hspec-core hspec-expectations ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/hspec-need-env"; - description = "Read environment variables for hspec tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-pg-transact" = callPackage - ({ mkDerivation, base, bytestring, hspec, pg-transact - , postgresql-simple, resource-pool, stdenv, text, tmp-postgres - }: - mkDerivation { - pname = "hspec-pg-transact"; - version = "0.1.0.2"; - sha256 = "a5ec2a978a730500f03c15d16eff7e207a4135ebc63afe4cbca7392ad5f01c0c"; - libraryHaskellDepends = [ - base bytestring hspec pg-transact postgresql-simple resource-pool - text tmp-postgres - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact-hspec#readme"; - description = "Helpers for creating database tests with hspec and pg-transact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.9.2"; - sha256 = "055e414bd6531d3454496f9c4bfa1164b861aa9a9102867d7ffeef8d3a92283f"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai-json" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, bytestring - , case-insensitive, hspec-wai, stdenv, template-haskell - }: - mkDerivation { - pname = "hspec-wai-json"; - version = "0.9.2"; - sha256 = "82e324482e04662121a14fc75232e7359d6d1454623c37253b6550a8ec6ccadc"; - libraryHaskellDepends = [ - aeson aeson-qq base bytestring case-insensitive hspec-wai - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Testing JSON APIs with hspec-wai"; - license = stdenv.lib.licenses.mit; - }) {}; - "hstatsd" = callPackage - ({ mkDerivation, base, bytestring, mtl, network, stdenv, text }: - mkDerivation { - pname = "hstatsd"; - version = "0.1"; - sha256 = "446779594257c0fa02d5271c997ee0c22f74f7636d89e34394ad87e5bd285824"; - libraryHaskellDepends = [ base bytestring mtl network text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/hstatsd"; - description = "Quick and dirty statsd interface"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.2"; - sha256 = "3eec43c8fb42c23d03f1db7b0b594d39cd94275c2284dcd0c64aa4d680bd7ece"; - revision = "1"; - editedCabalFile = "0k1j46nk3z64zw4bqmvw5lgy16ih200m66rv4b6ygjqv7nglqq0b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit - , conduit-extra, containers, resourcet, stdenv, text, transformers - , xml-conduit, xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.2"; - sha256 = "05fdbdbf9d7b610bd8d7a67e0036b52b1ec1aec276f3017194e59ee2d661b050"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit conduit-extra containers - resourcet text transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-email-validate" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "html-email-validate"; - version = "0.2.0.0"; - sha256 = "3d2a3ec75b638cec71df57512473052d485dc118aec4662d5a8dae5e95aa6daf"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - description = "Validating an email address against HTML standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.3"; - sha256 = "ceeab562184a5921381e41eddd7a91dc98e85431ab445e286320ba3aa0ad5556"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, base-compat - , bytestring, Cabal, cabal-doctest, containers, cookie, hashable - , http-types, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.4"; - sha256 = "837e3f39f23df2caa23d75a4608f4a0505a1ab23f7290006976a37a373164a8a"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base base-compat bytestring - containers cookie hashable http-types tagged text time - time-locale-compat unordered-containers uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.5.14"; - sha256 = "8e50409704021c51a8955b2d03bfec900ebc3e11fbaebf973f2e654d7bde3647"; - revision = "1"; - editedCabalFile = "0xw5ac4cvcd4hcwl7j12adi7sgffjryqhk0x992k3qs1cxyv5028"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-client, http-client-tls, http-types, mtl - , resourcet, stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.7"; - sha256 = "fe043c89d1df1fec9bee207b125e2c96a9ab83a80b3781abf0591cfa8a3bf2a2"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.8"; - sha256 = "0f4c6348487abe4f9d58e43d3c23bdefc7fd1fd5672effd3c7d84aaff05f5427"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-directory" = callPackage - ({ mkDerivation, base, bytestring, html-conduit, http-client - , http-date, http-types, stdenv, text, time, xml-conduit - }: - mkDerivation { - pname = "http-directory"; - version = "0.1.1"; - sha256 = "9964562b5d3d31f61e21a856b6d33d00617776efd844859327b76bd7061769f3"; - libraryHaskellDepends = [ - base bytestring html-conduit http-client http-date http-types text - time xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/http-directory"; - description = "http directory listing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3.1"; - sha256 = "da26db73df1eaebb20df2837b0352cc62a6c151d467bea9442767fd3d51c2a2d"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.7.1.3"; - sha256 = "394ffcfb4f655721d5965870bf9861c324c14d40ed4dc173e926235fe0fe124f"; - revision = "1"; - editedCabalFile = "19py5pspx80gg679p9dzqr3iidflppxc1x4vkldamjkidyi406j8"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-streams" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, Cabal, case-insensitive, directory - , HsOpenSSL, http-common, io-streams, mtl, network, network-uri - , openssl-streams, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "http-streams"; - version = "0.8.6.1"; - sha256 = "b8d71f2753ac7cda35b4f03ec64e4b3c7cc4ec5c2435b5e5237fe863cb687da3"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - case-insensitive directory HsOpenSSL http-common io-streams mtl - network network-uri openssl-streams text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/http-streams/"; - description = "An HTTP client using io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.3"; - sha256 = "4e8a4a66477459fa436a331c75e46857ec8026283df984d54f90576cd3024016"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive - , containers, network-byte-order, psqueues, stdenv, stm - }: - mkDerivation { - pname = "http2"; - version = "1.6.5"; - sha256 = "16ebd1ee766f7a62a2cd2bd6ff98d68dbef85d512a847c8515b49a6b37f295ee"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring case-insensitive containers - network-byte-order psqueues stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library including frames, priority queues and HPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "httpd-shed" = callPackage - ({ mkDerivation, base, network, network-uri, stdenv }: - mkDerivation { - pname = "httpd-shed"; - version = "0.4.0.3"; - sha256 = "b0ff87d81e61f788d3920d952e4469d984742ba49c006df086c159886bf09218"; - revision = "2"; - editedCabalFile = "12y9qf8s0aq4dc80wrvh14cjvvm4mcygrqq72w4z8w9n8mp8jg9p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base network network-uri ]; - doHaddock = false; - doCheck = false; - description = "A simple web-server with an interact style API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.1.3"; - sha256 = "66888464010654f560c5a300799ebc2e06113898c4664cd364e3303bd32e08ff"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.esy.fun/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "1.2.1.0"; - sha256 = "2c7bbc213648cbd380ec83d869518d3960c709f82e4f7a0190beaff0b3e9bd1c"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvega" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, vector }: - mkDerivation { - pname = "hvega"; - version = "0.1.0.3"; - sha256 = "0a7759965ad969e2b541f4ea39dc7f9d53442e39a61893edf7446bc3eb8f0542"; - libraryHaskellDepends = [ aeson base text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "Create Vega and Vega-Lite visualizations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, hw-bits, hw-excess, hw-prim - , hw-rankselect-base, stdenv, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.2.0.2"; - sha256 = "1622757f59d5fc789fc27c2311ba5147cd9491ad80d4e517755cb158ae87575d"; - libraryHaskellDepends = [ - base hw-bits hw-excess hw-prim hw-rankselect-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bytestring, hw-int, hw-prim, hw-string-parse - , safe, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.0.6"; - sha256 = "75c350b867fa851ad94e8829b1cd48d89edfddeaa4d8e8c7dddb89d249766b30"; - revision = "2"; - editedCabalFile = "1lp2kbmdc5lq7xqi2ix7jccw1gmjxl1q01bflj8fzr2f713m9yrr"; - libraryHaskellDepends = [ - base bytestring hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, transformers, unliftio-core - , word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.5"; - sha256 = "047d5abec487bf522050d2a7f318ce9f0e67766a58cf67669d2d6fa7ae8dd701"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time transformers - unliftio-core word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-conduit-merges" = callPackage - ({ mkDerivation, base, conduit, conduit-extra, mtl, stdenv }: - mkDerivation { - pname = "hw-conduit-merges"; - version = "0.2.0.0"; - sha256 = "9bcea270cc01a117c892315fff0dd46de3e58466e9ef82f7571eedad9b58028c"; - revision = "1"; - editedCabalFile = "1azji7zc0ygqjgd2shbqw7p8a2ll2qp3b1yq5i3665448brlwpvc"; - libraryHaskellDepends = [ base conduit conduit-extra mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-conduit-merges#readme"; - description = "Additional merges and joins for Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.5"; - sha256 = "5ceaec01c446c5a507e889f514201e4739ea6f1cc22a4c68894bb023257bd931"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-eliasfano" = callPackage - ({ mkDerivation, base, hw-bits, hw-int, hw-packed-vector, hw-prim - , safe, stdenv, vector - }: - mkDerivation { - pname = "hw-eliasfano"; - version = "0.1.0.1"; - sha256 = "14710bcbfe4e44bfe683fa0db73d9546268c24101770968c13083defca2048e6"; - libraryHaskellDepends = [ - base hw-bits hw-int hw-packed-vector hw-prim safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-eliasfano#readme"; - description = "Elias-Fano"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.0.2"; - sha256 = "6735d0cd4ee86d5c13d5ea067251c6b1126f7569d78c6241f3147eb114b7a1f6"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.1"; - sha256 = "1127b7cff38319a292ca6d57c8b7a1996bb80b90e86488a0f82a76eba9f91268"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.4"; - sha256 = "58bd37f98e59d10cd27cf90fc04e6fdb459f3caff1f47b0e51e746aaa6ce99ee"; - revision = "2"; - editedCabalFile = "1jh0p4i87c2bn926s0d7qx6ykssjj26fia0d24grlklkd14bnmpq"; - libraryHaskellDepends = [ base call-stack hedgehog hspec HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.3"; - sha256 = "8336a5111638d3298266c9a1458233a09798bfa6d558219d4fe3bdd35d8d4a3f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, appar, base, containers, generic-lens, hw-bits - , iproute, stdenv, text - }: - mkDerivation { - pname = "hw-ip"; - version = "2.0.1.0"; - sha256 = "196b99e9f439ca361fec7bb5ced42202ee6a8a8143dcdbc24afdb408129a2ce4"; - libraryHaskellDepends = [ - appar base containers generic-lens hw-bits iproute text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, containers, criterion, dlist, hw-balancedparens - , hw-bits, hw-mquery, hw-parser, hw-prim, hw-rankselect - , hw-rankselect-base, lens, mmap, optparse-applicative, stdenv - , text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "0.9.0.1"; - sha256 = "1cbffc0840050d3d021d337481887c56e1db6ef7f005bc457a02ac2c47dcf902"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring containers dlist - hw-balancedparens hw-bits hw-mquery hw-parser hw-prim hw-rankselect - hw-rankselect-base mmap text vector word8 - ]; - executableHaskellDepends = [ - base bytestring criterion dlist hw-balancedparens hw-bits hw-mquery - hw-prim hw-rankselect hw-rankselect-base lens mmap - optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, lens, semigroups - , stdenv - }: - mkDerivation { - pname = "hw-mquery"; - version = "0.1.0.3"; - sha256 = "458f5730abc50c60d35f43cd00ee7bfee74963ead58596019ad30a17e8060244"; - revision = "1"; - editedCabalFile = "1i5kir4fxv564h01sjj29zs460w23rj7q5ykq98x3cwmynlrkl6l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base dlist lens semigroups - ]; - executableHaskellDepends = [ - ansi-wl-pprint base dlist lens semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Monadic query DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-packed-vector" = callPackage - ({ mkDerivation, base, bytestring, hw-bits, hw-int, hw-prim - , hw-string-parse, safe, stdenv, vector - }: - mkDerivation { - pname = "hw-packed-vector"; - version = "0.0.0.1"; - sha256 = "b6980a80cb23cd6e889a4bb6302f684a158c9d81d7b80873812ea6b3c6014931"; - libraryHaskellDepends = [ - base bytestring hw-bits hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-packed-vector#readme"; - description = "Packed Vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim, stdenv - , text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.1.0.0"; - sha256 = "5de02aca124597dc7f51a5ab72c175a327a8dcd9efda8eef3ffb47076a0a9391"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, mmap, semigroups, stdenv - , transformers, vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.23"; - sha256 = "bee666cf324dfeeb505260963f734a4392aac35221780cd37f84c86770f434ce"; - revision = "2"; - editedCabalFile = "0lks6rlf0lqygj2dnh2pdn9r48xgblrjqysh3qd2v6a1fdsbzjws"; - libraryHaskellDepends = [ - base bytestring mmap semigroups transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, hw-balancedparens - , hw-bits, hw-prim, hw-rankselect-base, lens, mmap, mtl - , optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.12.0.4"; - sha256 = "70e278abdec4c9baf9e208f1740242bf0ca5fbdb4b4c782ea189c68db5bb4750"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-balancedparens hw-bits hw-prim hw-rankselect-base - vector - ]; - executableHaskellDepends = [ - base directory hw-bits hw-prim hw-rankselect-base lens mmap mtl - optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, hw-bits, hw-int, hw-prim - , hw-string-parse, safe, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.2.1"; - sha256 = "d20a6cab42189cf71a85b355d0ed52167bc2991210c3af76139a2e6229f79360"; - revision = "3"; - editedCabalFile = "1hbbxxzmar0djj4r43nr3ar9nsl659wnq20rw6cp6q974ivlglx2"; - libraryHaskellDepends = [ - base bits-extra hw-bits hw-int hw-prim hw-string-parse safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-streams" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, hw-bits, hw-prim, mmap - , primitive, semigroups, stdenv, transformers, vector - }: - mkDerivation { - pname = "hw-streams"; - version = "0.0.0.10"; - sha256 = "bcf7bbf4d28913fc59b2412e39e498cba195ae417204e1570d6b84e6df96f021"; - revision = "1"; - editedCabalFile = "141vh52p5mwxv77gdnbs6n0k9kkapz4wnwdbm4jpirmhl45bxzph"; - libraryHaskellDepends = [ - base bytestring ghc-prim hw-bits hw-prim mmap primitive semigroups - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-streams#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.16"; - sha256 = "0d55e35cc718891d0987b7c8e6c43499efa727c68bc92e88e8b99461dff403e3"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.2.0.1"; - sha256 = "e46614d6bf0390b2a6a1aeeb0771e6d366944da40fb21c12c2f8a94d1f47b4d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, safecopy, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.2"; - sha256 = "f5b83cfcc2c9d1e40e04bbc9724428b2655c3b54b26beef714c98dabee5f1048"; - revision = "1"; - editedCabalFile = "1zh47rrwih6933hhq9vd0ly5s42w0bn196znkg9l8q6r6drl7xsf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection safecopy - semigroupoids semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.7.1"; - sha256 = "a25c5073f42896ccf81ff5936f3a42f290730f61da7f225b126ad22ff601b1c0"; - revision = "5"; - editedCabalFile = "00wsp69aqi5i906liqa4sfs0p2yclhr1ihz8y1700b3ymb70lzql"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hyraxAbif" = callPackage - ({ mkDerivation, base, binary, bytestring, directory, filepath - , hscolour, pretty-show, protolude, stdenv, text - }: - mkDerivation { - pname = "hyraxAbif"; - version = "0.2.3.15"; - sha256 = "013a861a57bb71af8394ee68404d52411ae65d627e36d0c1903194331fa6d5f1"; - revision = "1"; - editedCabalFile = "07i4ippga6cnwr9yl6nkrhakl9sim73fprf29lnmsvdc8ynbifcd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring directory filepath protolude text - ]; - executableHaskellDepends = [ - base bytestring hscolour pretty-show protolude text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hyraxbio/hyraxAbif/#readme"; - description = "Modules for parsing, generating and manipulating AB1 files"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.3"; - sha256 = "13bf923ad64d5dd1c517a64c0fd017fe94951a18ebbfe7e587b11e3ad6ebd5fd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, Cabal, random, stdenv - , template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.4"; - sha256 = "5b1f93482bc5ed85bbe04a1c63fa8bee6d4156b79cee43f812db92765fa1666e"; - setupHaskellDepends = [ base bytestring Cabal random ]; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, stdenv }: - mkDerivation { - pname = "incremental-parser"; - version = "0.3.2.2"; - sha256 = "a7bb3daef40c36407d1982fad383ce1ff66aaadb9c3d72ae0b5417681d88d856"; - libraryHaskellDepends = [ base monoid-subclasses ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indentation-core" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "indentation-core"; - version = "0.0.0.2"; - sha256 = "099a3e3bb82c6af1b99172722bb01e954d1722d468e2d0722415f4f479993fd0"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators core library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indentation-parsec" = callPackage - ({ mkDerivation, base, indentation-core, mtl, parsec, stdenv }: - mkDerivation { - pname = "indentation-parsec"; - version = "0.0.0.2"; - sha256 = "0e37846ef1ea045d6c365be38f2b55ff7dd36e960f21ba28e879137874c8f2d4"; - libraryHaskellDepends = [ base indentation-core mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators for Parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.5.0.0"; - sha256 = "16bcc7ca0c1292e196a9c545df507e20e96f54a94392b775a686312503d9c3d3"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.1.2"; - sha256 = "d896ae5b3919a7a9fecdd9336e8f330d055fbdae4821be04b7c1266ccaa07d10"; - revision = "1"; - editedCabalFile = "198hmw2m3539vmh3s58d33h6vl5d0fqpdms8rp8cwj196diipjlc"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "infer-license" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, text - , text-metrics - }: - mkDerivation { - pname = "infer-license"; - version = "0.2.0"; - sha256 = "12e6fe616575159c03cf6fd4a4f30021ecf264a529ab4e4edd6e96e296a98e72"; - libraryHaskellDepends = [ - base directory filepath text text-metrics - ]; - doHaddock = false; - doCheck = false; - description = "Infer software license from a given license file"; - license = stdenv.lib.licenses.mit; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.4"; - sha256 = "94393624bb73e5a8f436c8f823292bab9b5ca5bb47ebf733379848773b585753"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.6.1.3"; - sha256 = "0715a5d7a9a3e81a72eeb8e64e27ab47243d4d30d28d8d146482acce2b5f03d0"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.3.6"; - sha256 = "fcbbe3745a125e80dd6d0b4fe9b3a590507cf73dfaa62e115b20a46f0fd53cd9"; - revision = "1"; - editedCabalFile = "0gfikdal67aws20i5r4wg4r0lgn844glykcn3nnmbmyvwsks049l"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.7.0.1"; - sha256 = "daf2f2f286ff549e319ebc9f9491ea809f27996e234ac99a5e2eecc8e35e4ca7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "inline-c-cpp" = callPackage - ({ mkDerivation, base, inline-c, safe-exceptions, stdenv - , template-haskell - }: - mkDerivation { - pname = "inline-c-cpp"; - version = "0.3.0.1"; - sha256 = "019c1706259c9ca2ffe961fda29d04840bfe6cdd9837e79d65c55bb3b3700403"; - libraryHaskellDepends = [ - base inline-c safe-exceptions template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Lets you embed C++ code into Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "inliterate" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, containers - , haskell-src-exts, lucid, lucid-extras, plotlyhs, stdenv, text - , time - }: - mkDerivation { - pname = "inliterate"; - version = "0.1.0"; - sha256 = "2d96cc64e3b923003668c88fd73c30d5da09a2c9e2fb6af62912f54478d1e39f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html cheapskate containers haskell-src-exts lucid - lucid-extras plotlyhs text time - ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/inliterate"; - description = "Interactive literate programming"; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.1.0"; - sha256 = "d71d126bf455898492e1d2ba18b2ad04453f8b0e4daff3926a67f0560a712298"; - revision = "9"; - editedCabalFile = "02d4zqyb9dbahkpcbpgxylrc5xxc0zbw1awj5w0jyrql2g2b6a5f"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens semigroupoids semigroups text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.4.1.2"; - sha256 = "9be094b294240e0edb77d5fa22436b969cbf72e938ed272637f150ae2d2107e6"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.3"; - sha256 = "5ae262018698af35bb74916fad170d96d3eb44669c72ed36db9a19a3392cec16"; - revision = "2"; - editedCabalFile = "0a6j3313vz7n7dn8abddyib4jggblaq89f87ib4imdwjxjajbm33"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolatedstring-perl6" = callPackage - ({ mkDerivation, base, bytestring, Cabal, haskell-src-meta, process - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "interpolatedstring-perl6"; - version = "1.0.1"; - sha256 = "5eadba4ba24c10a8f2a4a1cc48af6eb0f07190d7c0e691a22c5a99fb37367258"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for Perl6-style multi-line interpolated strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.1"; - sha256 = "c71f502252914caadbb57f789fbef6a8e1d475c270def41de31d34ca3e8dff66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolator" = callPackage - ({ mkDerivation, aeson, base, containers, either, mono-traversable - , mtl, product-profunctors, profunctors, QuickCheck, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "interpolator"; - version = "0.1.1"; - sha256 = "c065b48e36af4d9cfc301403c9224af78c7b5e5ae826428eed4decdd21ac5e8f"; - libraryHaskellDepends = [ - aeson base containers either mono-traversable mtl - product-profunctors profunctors QuickCheck template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvision-insights/interpolator"; - description = "Runtime interpolation of environment variables in records using profunctors"; - license = stdenv.lib.licenses.mit; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.8.1"; - sha256 = "9ce3bf9d31b9ab2296fccc25031fd52e1c3e4abeca5d3bb452a725b586eb7e03"; - revision = "4"; - editedCabalFile = "1qx3q0v13l1zaln9zdk8chxpxhshbz5x0vqm0qda7d1kpv7h6a7r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intset-imperative" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "intset-imperative"; - version = "0.1.0.0"; - sha256 = "ae549187370f562724f453965519abf65abd3159f70b4715aa6079da48099042"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-intset-imperative#readme"; - description = "An imperative integer set written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.2"; - sha256 = "8037d03bccf11aa54e57ba9caa569d6790044b8ffae27891b43aa9f75f81794c"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-choice" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "io-choice"; - version = "0.0.7"; - sha256 = "394a60c4b0bcb3ce0dab6618891ab6e7405e583f724ca445ddc58b59725a669b"; - libraryHaskellDepends = [ - base lifted-base monad-control template-haskell transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Choice for IO and lifted IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.1.0"; - sha256 = "8aa2f0afb83ee2e43c472509ecd45475b9ed4409dfaec16eb781f44152f6ebb0"; - revision = "1"; - editedCabalFile = "0n0qs5lgryh3zxy73j3qbpnxand43yd2bj6pclvyii8apqqp901a"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams-haproxy" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, io-streams, network - , stdenv, transformers - }: - mkDerivation { - pname = "io-streams-haproxy"; - version = "1.0.1.0"; - sha256 = "b74eca9290fe838a0e3be857a38b62cf6fb7478acee400eac19e47471a2c96b5"; - revision = "2"; - editedCabalFile = "1pvw39f0vrzb5hdx6nqpdg4ccsxa59vwjspfjkh6vvw1zwmidgja"; - libraryHaskellDepends = [ - attoparsec base bytestring io-streams network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "HAProxy protocol 1.5 support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, primitive, stdenv, text, vector - }: - mkDerivation { - pname = "ip"; - version = "1.4.2.1"; - sha256 = "41c92e12ba99adc31d1d2113909ae85784d9f0bb42ff054f4252b4b79e5fc118"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable primitive text - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "1.0.0"; - sha256 = "e805be52d77edfb0e71740dbfa57403654cb34929083589d79d44757c01f80f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to generate IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.7"; - sha256 = "e6a3fe4a6f2a78fcee0f98255f97232d8b6b9b1fa48faee3bef96f0b462a4b3d"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, containers - , cryptonite, directory, filepath, memory, mtl, process, stdenv - , temporary, text, transformers, unordered-containers, uuid - , zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.9.1.0"; - sha256 = "53616435d1fef56a5ba3ad219e9ccf9d8845024b0f2cc5864575440078cc8424"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal containers cryptonite directory - filepath memory mtl process temporary text transformers - unordered-containers uuid zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.0.5"; - sha256 = "27e224e1323cdc56ae3b536283a133e7e2b8051e4c5dfa9505a8bd79992a0c8f"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.1"; - sha256 = "b0a8f935eb3b4613e74efce7a913592f72835194b8977271f35eb09c578b3b52"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.5"; - sha256 = "f2cd444b2be68402c773a4b451912817f06d33093aea691b42ebeed3630ff0c8"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ixset-typed" = callPackage - ({ mkDerivation, base, containers, deepseq, safecopy, stdenv, syb - , template-haskell - }: - mkDerivation { - pname = "ixset-typed"; - version = "0.4.0.1"; - sha256 = "a8d3655f4cebf66013363a4456287052391faad76f00f5b4001ba7d11073ac8c"; - revision = "1"; - editedCabalFile = "0kfklsbjn4gmx76vl7vm1s149f13h2p537930yaq8s2671lzc79p"; - libraryHaskellDepends = [ - base containers deepseq safecopy syb template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Efficient relational queries on Haskell sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.4"; - sha256 = "42aeb281fb62a08bbaca4b20801d55879b0688e25a92962158fbd0578bd21405"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.4"; - sha256 = "c8e0e72acf380b770483878798faa266cab17c4b14b72989c4fd21158c6d7277"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal#readme"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jose" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, concise, containers, cryptonite, lens, memory - , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances - , safe, semigroups, stdenv, template-haskell, text, time, unix - , unordered-containers, vector, x509 - }: - mkDerivation { - pname = "jose"; - version = "0.8.0.0"; - sha256 = "84e1bc59670a49430aa4197926bf0cd184cbf12f4c8f0e04b111d1823b4ae608"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups template-haskell - text time unordered-containers vector x509 - ]; - executableHaskellDepends = [ - aeson base bytestring lens mtl semigroups text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-jose"; - description = "Javascript Object Signing and Encryption and JSON Web Token library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.8.0"; - sha256 = "4fb098e8ec18ebec7ab93f229dbaca992c704d006bc0f1ca98e8f00a579db6c2"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-dgtable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-dgtable"; - version = "0.5.2"; - sha256 = "e28dd65bee8083b17210134e22e01c6349dc33c3b7bd17705973cd014e9f20ac"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-dgtable#readme"; - description = "Obtain minified jquery.dgtable code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , pretty, stdenv, syb, text - }: - mkDerivation { - pname = "json"; - version = "0.9.3"; - sha256 = "8baf1de09983df8036fda854c4d1446f156a52d4988b863175e29af35c1d1afd"; - revision = "2"; - editedCabalFile = "0iqmwfq6s1fc8jj16yx2d7jpzf94scd1hc4yvz281zxj7kds2ms5"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec pretty syb text - ]; - doHaddock = false; - doCheck = false; - description = "Support for serialising Haskell to and from JSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-alt" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "json-alt"; - version = "1.0.0"; - sha256 = "b850533adf93fbda01d4aee1f0116cfd67bfce17baf0a035ddc20cfe4a5d75c7"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Union 'alternative' or Either that has untagged JSON encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-autotype" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, filepath - , GenericPretty, hashable, json-alt, lens, mtl - , optparse-applicative, pretty, process, QuickCheck, scientific - , smallcheck, stdenv, template-haskell, text, uniplate - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "json-autotype"; - version = "3.0.1"; - sha256 = "6aae99110b29fcdbd3e7918eabc4ebf1d1f4bc1a6a94a33f0814324eba25395a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers filepath GenericPretty hashable json-alt lens - mtl pretty process QuickCheck 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Automatic type declaration for JSON input data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.6"; - sha256 = "c7edd32e030dd956ec7d09bea9e95e8f1000fe45db854a2a2223a0ae562cbdc8"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, deepseq, hashable, monad-logger, mtl, QuickCheck - , stdenv, stm-conduit, text, time, unliftio, unordered-containers - , vector - }: - mkDerivation { - pname = "json-rpc"; - version = "1.0.0"; - sha256 = "73b1f10ebccbd8860f10da5362399dc15a5b1b4da73e83f4c125239e06e6f85a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra deepseq - hashable monad-logger mtl QuickCheck stm-conduit text time unliftio - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring conduit conduit-extra monad-logger mtl - QuickCheck stm-conduit text time unliftio unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/json-rpc.git#readme"; - description = "Fully-featured JSON-RPC 2.0 library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "json-rpc-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, json-rpc-server, mtl - , stdenv, text, unordered-containers, vector, vector-algorithms - }: - mkDerivation { - pname = "json-rpc-client"; - version = "0.2.5.0"; - sha256 = "5349f5c0b0fa8f6c5433152d6effc10846cfb3480e78c5aa99adb7540bcff49c"; - revision = "10"; - editedCabalFile = "19vf7gibvqgcm27b5n0ls4s7wi1kr87crn776ifqc9gbr2l9bfpi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring json-rpc-server mtl text unordered-containers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-client"; - description = "JSON-RPC 2.0 on the client side."; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.5"; - sha256 = "9f917ba4b01e1a439482cda9be9fff865043915067cc26571e3df682a3bf3ac0"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-rpc-server" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, mtl, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-server"; - version = "0.2.6.0"; - sha256 = "169e9997734bd1d7d07a13b5ae0223d5363c43de93b0d5fbb845a598f9eaccf5"; - revision = "7"; - editedCabalFile = "1fjkl0p5glkk01jny6ar62356pmp2a2vf9v1jq67ly3y14dcvywq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-server"; - description = "JSON-RPC 2.0 on the server side."; - license = stdenv.lib.licenses.mit; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, free, invariant, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.2"; - sha256 = "6b727e586f744b96529415eeabc745dfe05feea61f6b6bad90c224c879f4dbd3"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive free invariant mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.0"; - sha256 = "d945ded925216b8f260c62c2fce593631d772bffa1f203550a6b9750ca3a81f1"; - revision = "2"; - editedCabalFile = "1bcc3kh6kndmkqi3vaxp27mg1qb7xbg1h8pgjc1kk1iawnhl930j"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "katip" = callPackage - ({ mkDerivation, aeson, async, auto-update, base, bytestring - , containers, either, hostname, microlens, microlens-th - , monad-control, mtl, old-locale, resourcet, safe-exceptions - , scientific, semigroups, stdenv, stm, string-conv - , template-haskell, text, time, transformers, transformers-base - , transformers-compat, unix, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "katip"; - version = "0.7.0.0"; - sha256 = "0ba53e13cfa9e717c3e040f0c858f0d1de1417cffaf670542d546951d21885fc"; - revision = "1"; - editedCabalFile = "1lzla1iv5ll9iks5xh8399vs2mjxb33pbdg115kqbq9r5z3h84qp"; - libraryHaskellDepends = [ - aeson async auto-update base bytestring containers either hostname - microlens microlens-th monad-control mtl old-locale resourcet - safe-exceptions scientific semigroups stm string-conv - template-haskell text time transformers transformers-base - transformers-compat unix unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/katip"; - description = "A structured logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kazura-queue" = callPackage - ({ mkDerivation, atomic-primops, base, primitive, stdenv }: - mkDerivation { - pname = "kazura-queue"; - version = "0.1.0.4"; - sha256 = "5e5441f0eee97a4752f485ad2a3e7c0add7a2928190d416b8f83e2939a59237e"; - libraryHaskellDepends = [ atomic-primops base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/asakamirai/kazura-queue#readme"; - description = "Fast concurrent queues much inspired by unagi-chan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12.1"; - sha256 = "7fcea48187df82c02c159dea07a581cddf371023e6a3c34de7fa69a8ef2315fb"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-apply" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kind-apply"; - version = "0.3.0.0"; - sha256 = "078bcb06aeb6b0942b5065c96ee0a4a242ed8a78ee1753e296570379dca497cc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities to work with lists of types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics" = callPackage - ({ mkDerivation, base, kind-apply, stdenv }: - mkDerivation { - pname = "kind-generics"; - version = "0.3.0.0"; - sha256 = "1df923a4a223c8c3c69135bd4be65bab6d6404cad026d90539fd350ab98c7976"; - libraryHaskellDepends = [ base kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming in GHC style for arbitrary kinds and GADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics-th" = callPackage - ({ mkDerivation, base, kind-generics, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "kind-generics-th"; - version = "0.1.0.0"; - sha256 = "ed6f8f2ff36b2b4535a77f6b10d3ee54c3df261367989eac3ebe46b43c117db5"; - libraryHaskellDepends = [ - base kind-generics template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - description = "Template Haskell support for generating `GenericK` instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kleene" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, lattices - , MemoTrie, QuickCheck, range-set-list, regex-applicative, stdenv - , step-function, text, transformers - }: - mkDerivation { - pname = "kleene"; - version = "0"; - sha256 = "c652aecfb2a42fec6b7cc0135fe95764a27fe099c6934071ef5fa55075cd0b02"; - revision = "1"; - editedCabalFile = "1izdmr7a2d7qssnj732m2qc02inm3hrc882x9nyvz68648pvwwsx"; - libraryHaskellDepends = [ - base base-compat-batteries containers lattices MemoTrie QuickCheck - range-set-list regex-applicative step-function text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/kleene"; - description = "Kleene algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "kraken" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, mtl, stdenv - }: - mkDerivation { - pname = "kraken"; - version = "0.1.0"; - sha256 = "335ce7cb85f7d3ed71eb067ad9642d13d2ca1d62ce8670596c8b69aacc27828a"; - revision = "2"; - editedCabalFile = "141qx2fb3dimv20qsl2q1bagwcn9i0r72z2ha1w7191m557in319"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls mtl - ]; - doHaddock = false; - doCheck = false; - description = "Kraken.io API client"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lackey" = callPackage - ({ mkDerivation, base, servant, servant-foreign, stdenv, text }: - mkDerivation { - pname = "lackey"; - version = "1.0.9"; - sha256 = "99ee0589c3f62193837361c3973822118add643954ff31862a7500975457335f"; - libraryHaskellDepends = [ base servant servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby clients from Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, directory - , exceptions, filepath, mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.1.1"; - sha256 = "b36009a35c02f7f18b4ba91d9ead7e5b47aef4eb5c0d014d4d60dd0bddfd6548"; - revision = "4"; - editedCabalFile = "0r364limqm570a8xd82wwpcvmcx2j7nfndg5kad022vz2v5n0smz"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class directory exceptions filepath - text transformers wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.8.2"; - sha256 = "b729d3b2263b0f029a66c37ae1c05b86b68bad1cde6c0b407bfd5201b91fce15"; - revision = "2"; - editedCabalFile = "074mypdymg7543waq68c72viw912w94v94y1287sp67lzwpyiixd"; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath pretty - process syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2"; - sha256 = "eb319b4d1154f88f4d0f8817c85efad34c14d774c47d4c9193c89c9064cb8695"; - revision = "1"; - editedCabalFile = "099w1lln1vm000sf06wrmq6gya5sx2w4flrlwqz2c8wwvv8c9j9h"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-docker" = callPackage - ({ mkDerivation, base, bytestring, containers, free, megaparsec - , mtl, prettyprinter, split, stdenv, template-haskell, text - , th-lift, time - }: - mkDerivation { - pname = "language-docker"; - version = "8.0.2"; - sha256 = "32424a420f5a95a5be370a56826a801fb9d5351a38643a593f30d4485bebcf01"; - libraryHaskellDepends = [ - base bytestring containers free megaparsec mtl prettyprinter split - template-haskell text th-lift time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hadolint/language-docker#readme"; - description = "Dockerfile parser, pretty-printer and embedded DSL"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "language-ecmascript" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, charset, containers - , data-default-class, Diff, mtl, parsec, QuickCheck, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "language-ecmascript"; - version = "0.19"; - sha256 = "570a4b7bdebf4532e9c059f2afa7575247be2b7f539361995297308c387c658f"; - revision = "2"; - editedCabalFile = "1xj5h5ajybq4pwlw8zsn1lb920km1pcdv20apbpa7pgi39zcpzfd"; - libraryHaskellDepends = [ - ansi-wl-pprint base charset containers data-default-class Diff mtl - parsec QuickCheck template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jswebtools/language-ecmascript"; - description = "JavaScript parser and pretty-printer library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.6.0.11"; - sha256 = "d4756e9bc9a180cb93701e964a3157a03d4db4c7cb5a7b6b196067e587cc6143"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, base-compat, Cabal, deepseq, lens, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.1.0.1"; - sha256 = "f0147300724ac39ce388cd6cd717ac3ccc6ed1884ffaafebb18d0f3021e01acf"; - revision = "1"; - editedCabalFile = "1zv12p4ralrks0517zs52rzmzmsxxkcxkqz7zijfgcsvh6bsmafi"; - libraryHaskellDepends = [ - base base-compat Cabal deepseq lens pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and useful functions to represent and manipulate the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-puppet" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, async, attoparsec, base - , base16-bytestring, bytestring, case-insensitive, containers - , cryptonite, directory, filecache, filepath, formatting, Glob - , hashable, hruby, hslogger, http-api-data, http-client, lens - , lens-aeson, megaparsec, memory, mtl, operational - , optparse-applicative, parsec, parser-combinators, pcre-utils - , protolude, random, regex-pcre-builtin, scientific, servant - , servant-client, split, stdenv, stm, strict-base-types, text, time - , transformers, unix, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "language-puppet"; - version = "1.4.4"; - sha256 = "901da320b4c5206ad807b867fdbfddad4c74eb86d55fe1998230e084be5feb35"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring - case-insensitive containers cryptonite directory filecache filepath - formatting hashable hruby hslogger http-api-data http-client lens - lens-aeson megaparsec memory mtl operational parsec - parser-combinators pcre-utils protolude random regex-pcre-builtin - scientific servant servant-client split stm strict-base-types text - time transformers unix unordered-containers vector yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint async base bytestring containers Glob hslogger - http-client lens mtl optparse-applicative regex-pcre-builtin - strict-base-types text transformers unordered-containers vector - yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "Tools to parse and evaluate the Puppet DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.2"; - sha256 = "186861751469b27097b3360a68f663501d55ed694b3d3e2a44901de55bb38e93"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.4"; - sha256 = "1c2a8b9cefebc3ce5493071670d9c71e4fc30d6527d6a6c92174ce4c39a0a082"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , semigroupoids, stdenv, tagged, universe-base - , universe-reverse-instances, unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "1.7.1.1"; - sha256 = "797c89a34c6d631f76ff3bf342275f090ebceb705d6ad69c1a4108582b14ddaf"; - revision = "2"; - editedCabalFile = "0qxz4v5pqwvhb79mz4b7wc66r2c0xc9ixfhss4h56jk3vb1hriys"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable semigroupoids tagged - universe-base universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lawful" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "lawful"; - version = "0.1.0.0"; - sha256 = "0056794106bbf7fa4d8d4d943fdc75a39b8a5ac1e18ceac2909183a1a7cc8d04"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/lawful#readme"; - description = "Assert the lawfulness of your typeclass instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.8.0"; - sha256 = "3a7cd0b60131a254f4f4fe5176e76347479ffbdf519bddd6c35a05841eed74d1"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Enumerative property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck-instances" = callPackage - ({ mkDerivation, array, base, bytestring, containers, leancheck - , nats, stdenv, text, time - }: - mkDerivation { - pname = "leancheck-instances"; - version = "0.0.3"; - sha256 = "a671ee53d343208ef3dccc93f3f64b1ed8e9ed4f6c509072fa4ab2b69de0cac0"; - libraryHaskellDepends = [ - array base bytestring containers leancheck nats text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck-instances#readme"; - description = "Common LeanCheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.17.1"; - sha256 = "4711bd5703ba22cc4a5cf62679775b92f92c108c6496f7b2b3ef31414761f3be"; - revision = "2"; - editedCabalFile = "1bh868l69nisdhw8qw5y51nj2w0pbbq7mxqiwf42iq0vcb6h0ybv"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.3"; - sha256 = "06848a6c7f217c3dd3228633bedc9a73b2cce139c1a6dff61af0994d410a98e0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.0.2"; - sha256 = "4311f035caa39db3a70915a165bcbfb55ad22376085d95a9b4f57c58994702cc"; - revision = "6"; - editedCabalFile = "1pg5v8fnlqw1krgi3d2a03a0zkjjdv5yp5f5z6q4mlb5jldz99a8"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "1.2.3"; - sha256 = "8059e2b7a917e0108861ca795b0adfbb0bf1db5b1bdb55e677256a37d8de0e29"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "1.2.3"; - sha256 = "914f5f077d7bed8a93866ac696e69c35bb8d0fbe81314236288b057941703901"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.2"; - sha256 = "9c275afad37a5064b9a13c6207ee2307f6ccccc3a5517c0fae84524bad65b0e6"; - revision = "1"; - editedCabalFile = "06sbynlrbqb51rn392w1q82qww1f6k8mmw1npgla2wc6s39k4977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-labels" = callPackage - ({ mkDerivation, base, ghc-prim, profunctors, stdenv, tagged }: - mkDerivation { - pname = "lens-labels"; - version = "0.3.0.1"; - sha256 = "e71772f4ad0b6c1c926da9f29257b44f03b8e16ae321b993fd416a3b03e0e27f"; - libraryHaskellDepends = [ base ghc-prim profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Integration of lenses with OverloadedLabels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-misc" = callPackage - ({ mkDerivation, base, lens, stdenv, tagged, template-haskell }: - mkDerivation { - pname = "lens-misc"; - version = "0.0.2.0"; - sha256 = "59925fe9125e297df0f1afcc8ac0f25de14fd017f7848ac2687ed63850ecd8cb"; - libraryHaskellDepends = [ base lens tagged template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/lens-misc#readme"; - description = "Miscellaneous lens utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.1"; - sha256 = "0d946baa2be86452fe0a2185575e1d00752a075c92c48acdb3ed7833cd1ec730"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-simple" = callPackage - ({ mkDerivation, base, lens-family, lens-family-core - , lens-family-th, mtl, stdenv, transformers - }: - mkDerivation { - pname = "lens-simple"; - version = "0.1.0.9"; - sha256 = "613d99b8074197f8a026a641a9940dd188e0d81e808169f420981a9ca15b832a"; - libraryHaskellDepends = [ - base lens-family lens-family-core lens-family-th mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michaelt/lens-simple"; - description = "simplified import of elementary lens-family combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-typelevel" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "lens-typelevel"; - version = "0.1.1.0"; - sha256 = "773d07872000869d3fd4b45256e4ce8da16f85754da87bdd084a33f5b2b94d53"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/lens-typelevel#readme"; - description = "Type-level lenses using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.3.0.0"; - sha256 = "632232db41f7c49359f37ed541bbbbe99f74d45c1cf583d1081b83af426a439d"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale, stdenv - , text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.0.9"; - sha256 = "5b867ee675de1f490e58f5cb3903e1ea7e430ebca4b6d86e6b9c2c1c87a861a4"; - revision = "1"; - editedCabalFile = "16pzbmhyzlpxy2djmxrs0wrv8mad3ahb040lx5kmf57say3qxgdl"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "libraft" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cereal, concurrency - , containers, directory, exceptions, haskeline, mtl, network - , network-simple, parsec, protolude, random, repline, stdenv, stm - , text, time, transformers, word8 - }: - mkDerivation { - pname = "libraft"; - version = "0.1.1.0"; - sha256 = "0cc94b7b17def34206358ec0e7107f1d94decf6d36f77296e6c199c8decd59ce"; - revision = "1"; - editedCabalFile = "0bzfkay18wphlqfm0i6rmr7rm1d6s16nxvrmc4wp0szim1k9k0gh"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring cereal concurrency containers directory - exceptions haskeline mtl network network-simple parsec protolude - random repline text time transformers word8 - ]; - executableHaskellDepends = [ - attoparsec base bytestring cereal concurrency containers directory - exceptions haskeline mtl network network-simple parsec protolude - random repline stm text time transformers word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/raft#readme"; - description = "Raft consensus algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.0"; - sha256 = "6a034047f45c2f5d3acb8a5b0852075bd4b4f7d6a222a992f45afac152b55f5f"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.2"; - sha256 = "0e9fbd17cd3e1af6ef1e994e7c14cfd42896e56499864e707f72246b6e2b604e"; - revision = "3"; - editedCabalFile = "0ackkmjfqxyxhy9w03zlqvmi68la9yv4jf0sc8qdhyr5y30ac68s"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.3"; - sha256 = "83d09c355cf7c5d35f179f6f084524f451966ed29beac721f0500ee607822b8c"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "line" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptohash-sha256, http-conduit, http-types, scotty, stdenv, text - , time, transformers, wai - }: - mkDerivation { - pname = "line"; - version = "4.0.1"; - sha256 = "a1dfab5dcd078747920fc61a024eb096a554f465d57c8bc642c155150f41667c"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptohash-sha256 - http-conduit http-types scotty text time transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/utatti/line"; - description = "Haskell SDK for the LINE API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.8"; - sha256 = "5ebd1b99837f2e3c7386bcd2ca425d9c66b09a61409792b141428345fb9edb10"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.0"; - sha256 = "1412db341c574b6a18e2fa23ee5e3ca6f32719409ea602a6215f1fd0aafb73e7"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Work with linux namespaces: create new or enter existing ones"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.3.1"; - sha256 = "c9930779f25fe83b103b3c7678d766f2b36de9a32f9480b50b1533e025e5cb40"; - libraryHaskellDepends = [ - base mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "7.0.0"; - sha256 = "af9d7cdd512c4d33f7ad60deb445b72b1ecccff4e3968dd3f51327846c6402ad"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.0.2"; - sha256 = "819372c454adb5948329d265e5d7e7293970444f396618bc6bd62fbeac687f18"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loc" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "loc"; - version = "0.1.3.4"; - sha256 = "c263ff5fbbd7d8cb597e617cb4a0cf961cac3b62c64de777e27d784e32b6b8f5"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chris-martin/loc"; - description = "Types representing line and column positions and ranges in text files"; - license = stdenv.lib.licenses.asl20; - }) {}; - "locators" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptohash, stdenv - }: - mkDerivation { - pname = "locators"; - version = "0.2.4.4"; - sha256 = "2d6d0940206e285a086ea66c7b5f8b3a082fa629a8d335323dbbf78547e09aa5"; - libraryHaskellDepends = [ base bytestring containers cryptohash ]; - doHaddock = false; - doCheck = false; - description = "Human exchangable identifiers and locators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.7.4.0"; - sha256 = "4067eba80db49eb4509c10770959d0350f9eb9df5e0bde2fbf9024f106dc3f1b"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.12"; - sha256 = "7191cba40b9b348c54171f2b86caabb75a30e52b6d7e4c57321bf5dcdf1f367e"; - revision = "4"; - editedCabalFile = "1z7p87dl1rj0v2gnfwfa7zmgaxccd093hvjkijc56whyg4b4az4y"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logger-thread" = callPackage - ({ mkDerivation, base, fast-logger, protolude, safe-exceptions - , stdenv, stm, text, time - }: - mkDerivation { - pname = "logger-thread"; - version = "0.1.0.2"; - sha256 = "ac0a54001a69cff6f975209c4d9d399fb58ef59bb0ad6ac742c5ffedeac04a2a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base fast-logger protolude safe-exceptions stm text time - ]; - executableHaskellDepends = [ base protolude stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joe9/logger-thread#readme"; - description = "Run FastLogger in a thread and direct all queued messages to it"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base, unliftio-core - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.3"; - sha256 = "996ae52b545d1e86ffd08c25ace247c90cf437ebdbbafd4879f587ad207cf182"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.6.0.2"; - sha256 = "1182b68e8d00279460c7fb9b8284bf129805c07754c678b2a8de5a6d768e161e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dolio/"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "long-double" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "long-double"; - version = "0.1"; - sha256 = "9218e8175afe5fb69aae72ad65c8b4dfdc943f137a5e95184673a03dc3765e1c"; - revision = "2"; - editedCabalFile = "03x83ycib19k2lmd3spwq2zmylfl5ihammb406fxxqqbyv4jw1mg"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://code.mathr.co.uk/long-double"; - description = "FFI bindings for C long double"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.11"; - sha256 = "8ca524b9ca7984a83b18916b0c9dfb79002cb3bbe88f5139f68bfbe46010bf8f"; - revision = "1"; - editedCabalFile = "10k3x9cn4a23kqk909xiv8phkfgagf7p16qlfpr9swn1dn4xasgf"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.1.0.1"; - sha256 = "5cc5e269c313cba6871b70d48825e6b63ae49db91d507b7f9dccc10bf12dcb73"; - revision = "1"; - editedCabalFile = "030mj3yddbia6dkbl8d6mssi42l3z8gs79z50r78gwiif6mh5dny"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid"; - license = stdenv.lib.licenses.mit; - }) {}; - "lxd-client-config" = callPackage - ({ mkDerivation, aeson, base, containers, directory, filepath - , stdenv, text, yaml - }: - mkDerivation { - pname = "lxd-client-config"; - version = "0.1.0.1"; - sha256 = "903852c99bebc0af3cc3a26734056003f9097ada08eb1f361abce097a120afcf"; - libraryHaskellDepends = [ - aeson base containers directory filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-lxd-client-config#readme"; - description = "Read the configuration file of the standard LXD client"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.6.4"; - sha256 = "72de2b2e27cb36832ec4a66de36f1ba6c53d2abd197b7f0351865b4567db7768"; - revision = "2"; - editedCabalFile = "1h0qq6kxv4kc0j0rmx7rhwhvfg1hc08r10q152km4p8kgshcwlig"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, machines, stdenv }: - mkDerivation { - pname = "machines-binary"; - version = "0.3.0.3"; - sha256 = "60ff456d658ea1a427f32ee5ae1c726e2e7703942bd33edf28b457d753c20652"; - libraryHaskellDepends = [ base binary bytestring machines ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-binary"; - description = "Binary utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-directory" = callPackage - ({ mkDerivation, base, directory, filepath, machines, machines-io - , stdenv, transformers - }: - mkDerivation { - pname = "machines-directory"; - version = "0.2.1.0"; - sha256 = "849c07db6ff6cfd88348d228a7a3f8ccb16e99568230ee0d20faa5670474deb4"; - libraryHaskellDepends = [ - base directory filepath machines machines-io transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-directory"; - description = "Directory (system) utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-io" = callPackage - ({ mkDerivation, base, bytestring, chunked-data, machines, stdenv - , transformers - }: - mkDerivation { - pname = "machines-io"; - version = "0.2.0.13"; - sha256 = "4d579d5e9e94fafcfca91322734263498999d2e2af45c40ff0d1db78f4a8f5d4"; - libraryHaskellDepends = [ - base bytestring chunked-data machines transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-io"; - description = "IO utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.2.0.1"; - sha256 = "cf06f5934e374e1972f2cc76701c03d67c5536034d9ad32cace4e03819a57842"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7"; - sha256 = "11777bd365251813c512a3e17e0303b30f2a86411a12118751858cbb20dbeaf7"; - revision = "1"; - editedCabalFile = "1apyqnbcsbjfkqc1d6mk74pxl12130r6ijwhj555gddls9g0qdf3"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.6"; - sha256 = "f1a70a23c0866b75d609b2c818b426712d7a2b4256f43a3d5da517e853e279cd"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mapquest-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, goggles, mtl - , req, stdenv, text - }: - mkDerivation { - pname = "mapquest-api"; - version = "0.3.1"; - sha256 = "43339221b91816e8f793a98a4d281285e8e9de8788f13bb30ec345ef855a7b85"; - libraryHaskellDepends = [ - aeson base bytestring exceptions goggles mtl req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mapquest-api"; - description = "Bindings to the MapQuest API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.4"; - sha256 = "c2e3e742be2b4af6ed62be262cab59d2366556e120b1f8856cff6e7ef270fdd4"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , ghc-prim, primitive, stdenv, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.2.8.0"; - sha256 = "c365fcecb26c495937b411e0e5e41c02ad3b41c2326408135d396fbfcc3de507"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq ghc-prim primitive - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq, directory - , filepath, JuicyPixels, massiv, netpbm, process, stdenv, vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.6.0"; - sha256 = "f659dda8a9089ee1e5b8d7439ec47a223a84a3cae90cd880a370257f3811f43d"; - libraryHaskellDepends = [ - base bytestring data-default deepseq directory filepath JuicyPixels - massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, data-default-class, deepseq, primitive - , stdenv, vector, vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.3.1.0"; - sha256 = "3340ebec0ab91444f86ce3f785db920b8acfd5fbad70d38abcb02b77ac0f6655"; - libraryHaskellDepends = [ - base data-default-class deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Collection of tools for numeric computations"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.4.5"; - sha256 = "2d396f130d675eabaa435caba122fe2b2c1d2dfc5343471131b7392e479b7397"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.0.8"; - sha256 = "5e41aa81abdfd6062dc4607ea7c684b9ac09a286d2ebf76829504acf09260a77"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "matrix-static" = callPackage - ({ mkDerivation, base, deepseq, ghc-typelits-knownnat - , ghc-typelits-natnormalise, matrix, stdenv, vector - }: - mkDerivation { - pname = "matrix-static"; - version = "0.2"; - sha256 = "07e46233ba35c0f8fcb14af7863cfd728895b603a2196495e89a7069d89f9b3c"; - libraryHaskellDepends = [ - base deepseq ghc-typelits-knownnat ghc-typelits-natnormalise matrix - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wchresta/matrix-static#readme"; - description = "Type-safe matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox-utility" = callPackage - ({ mkDerivation, base, bytestring, hsemail, non-empty, old-time - , parsec, spreadsheet, stdenv, utility-ht - }: - mkDerivation { - pname = "mbox-utility"; - version = "0.0.1"; - sha256 = "e5e009f83c95b20d85c4b39d233b2f32ee15eae08d54edbaa7928848ae15e9f8"; - revision = "1"; - editedCabalFile = "0lhka293xbgsjs7sb3yrck6q7vw4dfdhpmpalc7s9az1mj4l4mjz"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring hsemail non-empty old-time parsec spreadsheet - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "List contents of an mbox file containing e-mails"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbtiles" = callPackage - ({ mkDerivation, base, bytestring, directory, monad-control, mtl - , resource-pool, sqlite-simple, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "mbtiles"; - version = "0.6.0.0"; - sha256 = "b8a82f0a1c551a59961449587f031f679dd2f5f082ce45b6f7d88d81f99ad62f"; - libraryHaskellDepends = [ - base bytestring directory monad-control mtl resource-pool - sqlite-simple text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/mbtiles#readme"; - description = "Haskell MBTiles client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbug" = callPackage - ({ mkDerivation, base, bytestring, directory, extra, formatting - , http-client, http-client-tls, mtl, optparse-applicative, process - , scalpel-core, stdenv, tagsoup, text, time, xdg-basedir - }: - mkDerivation { - pname = "mbug"; - version = "1.3.2"; - sha256 = "cd0e82e9470616bdcd03a32f0f4cb7204cca554310893ca5548149beb9fd9e15"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/iu-guest/mbug"; - description = "download bugs mailboxes"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mega-sdist" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , http-conduit, optparse-simple, rio, rio-orphans, stdenv - , tar-conduit, yaml - }: - mkDerivation { - pname = "mega-sdist"; - version = "0.3.3.2"; - sha256 = "a4e1c3ba865a59161bf3ef30fa78310201b2d88ff9e72a6691578f723857144a"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring conduit conduit-extra http-conduit optparse-simple - rio rio-orphans tar-conduit yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mega-sdist#readme"; - description = "Handles uploading to Hackage from mega repos"; - license = stdenv.lib.licenses.mit; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "7.0.4"; - sha256 = "325ba5cee8cdef91e351fb2db0b38562f8345b0bcdfed97045671357501de8c1"; - revision = "1"; - editedCabalFile = "0pid82swlicjgglrr8vrin8q6kn4scwvxk80g5b4h6hmfmz323c9"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.14.18"; - sha256 = "f5458d170a291788ac8da896bb44b0cc84021c99dd596c52adf2f7a7f6c03507"; - revision = "2"; - editedCabalFile = "1kwlgsjxh4ncvc6x9rps82bm55qyzn8lvzg49s4rbyc7vjjsbmx6"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "menshen" = callPackage - ({ mkDerivation, base, regex-tdfa, scientific, stdenv, text }: - mkDerivation { - pname = "menshen"; - version = "0.0.3"; - sha256 = "8be77ec070a9bd5b1f7ce05da19ee322bf7ecdebe04c43d767f583a52718a57f"; - revision = "1"; - editedCabalFile = "0hxj40q50pbl57dribvnk8ak907p15jnk3zycv6n9vj91la9js48"; - libraryHaskellDepends = [ base regex-tdfa scientific text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/menshen#readme"; - description = "Data Validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.2"; - sha256 = "0f4ed76a96029413aef856a00defaa5d75be196a12a0dc1e75b9a0a866607779"; - revision = "4"; - editedCabalFile = "1bx3xrafmf82b9wlvhggv87fwqgpgqxjdgkk9r5b323m9ci2gign"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "merkle-tree" = callPackage - ({ mkDerivation, base, bytestring, cereal, cryptonite, memory - , protolude, random, stdenv - }: - mkDerivation { - pname = "merkle-tree"; - version = "0.1.1"; - sha256 = "215a62476230374b8bbf2f7a0a3e88345a18cf9c6f672ef7d422c3f6bd5ba2aa"; - libraryHaskellDepends = [ - base bytestring cereal cryptonite memory protolude random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/merkle-tree#readme"; - description = "An implementation of a Merkle tree and merkle tree proofs of inclusion"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microbench" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "microbench"; - version = "0.1"; - sha256 = "6fee3c592c9afb72bd7b5574872119464055b717491c612ffee7f57c8e85d717"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "http://neugierig.org/software/darcs/browse/?r=microbench;a=summary"; - description = "Microbenchmark Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microformats2-parser" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base - , base-compat, blaze-html, blaze-markup, bytestring, containers - , data-default, either, errors, html-conduit, lens-aeson, network - , network-uri, options, pcre-heavy, safe, scotty, stdenv, tagsoup - , text, time, transformers, unordered-containers, vector, wai-cli - , wai-extra, xml-lens, xss-sanitize - }: - mkDerivation { - pname = "microformats2-parser"; - version = "1.0.1.9"; - sha256 = "50c71d9cd57991011855ad16759a6d43f56abc0e7424475db5263c5f04e2abd3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base base-compat blaze-markup bytestring - containers data-default either errors html-conduit lens-aeson - network-uri pcre-heavy safe tagsoup text time transformers - unordered-containers vector xml-lens xss-sanitize - ]; - executableHaskellDepends = [ - aeson aeson-pretty base base-compat blaze-html blaze-markup - data-default network network-uri options scotty text wai-cli - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/microformats2-parser"; - description = "A Microformats 2 parser"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.10"; - sha256 = "9c55a89d1c91fddcafca4bb1fa99a3ef29223436d75191fb29385de2bd3f47ec"; - revision = "1"; - editedCabalFile = "1qh5ifbwh62v14ygg3fj22wqimylph17ykng70vqv5x2rkp630jq"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0.1"; - sha256 = "9acd281091453275bacb8c4e1729332b2242d92030300410e25e980c61038bd9"; - revision = "1"; - editedCabalFile = "18490w9yvsn8rx18wb29bg1wj5vxa7il3gsi3cz2myx9iawhnnxq"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.2"; - sha256 = "b57848cf35305f972f450fb6fb743605a9e82a818f3549f06cdfe5d336c4c9db"; - libraryHaskellDepends = [ base microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.10"; - sha256 = "63784af17969f63fee64684d7ad43187a0b978d85ba1bee15abda9a65b5e4d80"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.1.11.1"; - sha256 = "d3e74f46a72aad12b71d8549a98fbc023fb364766f17d75742fb32fee70bdf50"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.3.11"; - sha256 = "8b77f0630d022e42deb8438d8383c361555975d07f44efb79ee5e9fa3a0525a1"; - revision = "1"; - editedCabalFile = "14v7ffibzsa1fhf4pwvpw9ia67kgmk8wmxwibj7vr9rayrxy1ffv"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Feature-complete microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.2.3"; - sha256 = "321018c6c0aad3f68eb26f6c7e7a518db43039e3f8f19c4634ceb4c7f8051c8f"; - revision = "1"; - editedCabalFile = "167in7b1qhgrspx81bdm2jyg9qji66sk7id282c0s99kmp0d01n6"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, time }: - mkDerivation { - pname = "microspec"; - version = "0.2.1.3"; - sha256 = "8bf530a4bce642431014d5395e4c8ab412bed44fe6caa6c2e1239ea9577b2518"; - libraryHaskellDepends = [ base QuickCheck time ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midair" = callPackage - ({ mkDerivation, base, containers, safe, stdenv, stm }: - mkDerivation { - pname = "midair"; - version = "0.2.0.1"; - sha256 = "421f941bc6b4a4d27c3de2d618557188e59e929b56860dade281e89b555172b6"; - libraryHaskellDepends = [ base containers safe stm ]; - doHaddock = false; - doCheck = false; - description = "Hot-swappable FRP"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.4.14"; - sha256 = "9632c3d54c9741fece0a3ea705d965485a1299ebe5798d2aa7cca2c8e4baaa3e"; - revision = "1"; - editedCabalFile = "14zadyz63gjpf58h6v36w3jwwpxpg86czw19r4211wprqfclvr92"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.9"; - sha256 = "0a32435169ef4ba59f4a4b8addfd0c04479410854d1b8d69a1e38fb389ba71d2"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.2.1.0"; - sha256 = "127eb21b889ca9411bee0612ac8aebac7992b9f790dc94b83e28312441d317de"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "minio-hs" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, directory, filepath, http-client - , http-conduit, http-types, ini, memory, protolude, resourcet - , stdenv, text, time, transformers, unliftio, unliftio-core - , xml-conduit - }: - mkDerivation { - pname = "minio-hs"; - version = "1.2.0"; - sha256 = "311494977fdab5f112807b13d485542c5b57147039063ad57c09bc1367541093"; - configureFlags = [ "-f-live-test" ]; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive conduit - conduit-extra containers cryptonite cryptonite-conduit directory - filepath http-client http-conduit http-types ini memory protolude - resourcet text time transformers unliftio unliftio-core xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minio/minio-hs#readme"; - description = "A Minio Haskell Library for Amazon S3 compatible cloud storage"; - license = stdenv.lib.licenses.asl20; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, minimorph, stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.5.0.0"; - sha256 = "ee30db437e6f7012b8862061c842dfaae7e52ea46832fd743e891ca04999fa41"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base binary containers minimorph text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - configureFlags = [ "-fwin32-2-5-3" ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miso" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , http-types, lucid, network-uri, servant, servant-lucid, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "miso"; - version = "0.21.2.0"; - sha256 = "d52d7950eba48f88e6fe7a08bb797e36c599aa24f790242182fa1acdfa962b18"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data http-types lucid - network-uri servant servant-lucid text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmjio/miso"; - description = "A tasty Haskell front-end framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, convertible, hspec, hspec-smallcheck - , QuickCheck, smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.3.1.5"; - sha256 = "7cf0bf14c2ddc643cfaa0e2526b6c2c0c2b1200f29b6f30b5bd550e377d1c058"; - libraryHaskellDepends = [ - base convertible hspec hspec-smallcheck QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixpanel-client" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , http-client, http-client-tls, servant, servant-client, stdenv - , string-conv, text, time - }: - mkDerivation { - pname = "mixpanel-client"; - version = "0.1.1"; - sha256 = "5525bb5bd0c446f275a211be0a1559884438091e58476bfe5256d7a1358227b7"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring http-client http-client-tls - servant servant-client string-conv text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domenkozar/mixpanel-client#readme"; - description = "Mixpanel client"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "716ec75fc8eb573c9c6ab327a9658685f5131eacff69fbbc72289cdd0133e0ff"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers, deepseq - , dlist, email-validate, foldl, hashable, html-entity-map, lucid - , megaparsec, microlens, microlens-th, modern-uri, mtl - , parser-combinators, stdenv, text, text-metrics - , unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.6.2"; - sha256 = "e30c5b4b815e41cf370aaf4dd75960abbfee16ece8a73b2ad82095ee64161649"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers deepseq dlist email-validate - foldl hashable html-entity-map lucid megaparsec microlens - microlens-th modern-uri mtl parser-combinators text text-metrics - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory - , ghc-syntax-highlighter, gitrev, lucid, megaparsec, mmark - , mmark-ext, optparse-applicative, stache, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "mmark-cli"; - version = "0.0.5.0"; - sha256 = "7ec1e69f4ce0ed638f8a979f0da2e3173d2c034ffd23b9b166a95317b0b81997"; - revision = "2"; - editedCabalFile = "1kpxrf3gwcl0l8jqq3dic49705p338rcvach95vp1g1jjpwd8kbj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson base bytestring directory ghc-syntax-highlighter gitrev lucid - megaparsec mmark mmark-ext optparse-applicative stache text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-cli"; - description = "Command line interface to the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-ext" = callPackage - ({ mkDerivation, base, foldl, ghc-syntax-highlighter, lucid - , microlens, mmark, modern-uri, skylighting, stdenv, text - }: - mkDerivation { - pname = "mmark-ext"; - version = "0.2.1.2"; - sha256 = "2ca4d826e1714a0079f409a35a1f413870dbe95b9f7d5b7d3c734224eddf84e8"; - revision = "1"; - editedCabalFile = "10dlh96l6fdbpl1slr8v022735z9zkdszd1aziid5ml3gf63ssd8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base foldl ghc-syntax-highlighter lucid microlens mmark modern-uri - skylighting text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-ext"; - description = "Commonly useful extensions for the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.2"; - sha256 = "c90afd7996c94be2b9a5796a7b94918d198c53b0c1d7a3eaf2982293560c5fbe"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.3.0.1"; - sha256 = "e8e845837ddc327c027128faf36a76c69e8514a9f8b5a4666282ae89b6954505"; - revision = "2"; - editedCabalFile = "08g9z55kamyp2rzj0dzz04nf9k57rsgvlwsf2592db28vm667qs1"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "modular" = callPackage - ({ mkDerivation, base, ghc-typelits-knownnat, stdenv }: - mkDerivation { - pname = "modular"; - version = "0.1.0.8"; - sha256 = "430b462330bd795c554f1fe87073022216abb0cea3a872fddd6e864faa3aefc5"; - libraryHaskellDepends = [ base ghc-typelits-knownnat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pgujjula/modular#readme"; - description = "Type-safe modular arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.30"; - sha256 = "e7ce990978b7395c615441775b64b487ad6cd6f2e4f9787dae732f58ce065480"; - revision = "1"; - editedCabalFile = "0gm3gqbxkj8447js4a672snz0ir78syk890nqdmjb18hsjqy5p6a"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.11"; - sha256 = "dba2d125ecebdee0600fd5f1b750f7ccec5345f3be6e20f7191efb876d48857f"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-logger-syslog" = callPackage - ({ mkDerivation, base, bytestring, fast-logger, hsyslog - , monad-logger, stdenv, text, transformers - }: - mkDerivation { - pname = "monad-logger-syslog"; - version = "0.1.4.0"; - sha256 = "052c3e13e235e7fb31caecc117e3ab4629e85bbfd3b35ec03f74d732acbc9ccb"; - libraryHaskellDepends = [ - base bytestring fast-logger hsyslog monad-logger text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-logger-syslog"; - description = "syslog output for monad-logger"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, mtl, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.4.1"; - sha256 = "4c00c4aff00c85bfcce0a9a7d96a2a7d08f1efe64b3326e67e47499d5168f11d"; - libraryHaskellDepends = [ - array base containers mtl primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.4.8"; - sha256 = "f84cdf51908a1c41c3f672be9520a8fdc028ea39d90a25ecfe5a3b223cfeb951"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mongoDB" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , binary, bson, bytestring, conduit, conduit-extra, containers - , cryptohash, data-default-class, hashtables, lifted-base - , monad-control, mtl, network, nonce, parsec, pureMD5, random - , random-shuffle, resourcet, stdenv, stm, tagged, text, time, tls - , transformers, transformers-base - }: - mkDerivation { - pname = "mongoDB"; - version = "2.4.0.1"; - sha256 = "37def57b78f562e20581e63d078438cc1539992a33e11edce7c157bf43724d71"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring binary bson - bytestring conduit conduit-extra containers cryptohash - data-default-class hashtables lifted-base monad-control mtl network - nonce parsec pureMD5 random random-shuffle resourcet stm tagged - text time tls transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mongodb-haskell/mongodb"; - description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.11.0"; - sha256 = "c1a0d727a06131174bf6da3733084c284ec70e4f6aa398981e8ba5d4289137d2"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "monoid-extras" = callPackage - ({ mkDerivation, base, groups, semigroupoids, semigroups, stdenv }: - mkDerivation { - pname = "monoid-extras"; - version = "0.5"; - sha256 = "c6571ab25a24e4300d507beeb8e534c20b3e530c6bd19c82694f1d6d5d0d4d9c"; - revision = "4"; - editedCabalFile = "0f2lww0qjk3sspj199b88j1zg9nn0cmm0mmsf6j7dd30cdqam76p"; - libraryHaskellDepends = [ base groups semigroupoids semigroups ]; - doHaddock = false; - doCheck = false; - description = "Various extra monoid-related definitions and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "0.4.6.1"; - sha256 = "d097876d8778fc550a071fc5fb564e8969903e8022c5f2dc25697bd8269daea6"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoidal-containers" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, hashable, lens - , newtype, semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "monoidal-containers"; - version = "0.4.0.0"; - sha256 = "a132b8adc82cd132ffdf1079b137176a2ccb9c80603cb17ec92f0c753a14b096"; - revision = "1"; - editedCabalFile = "18m2r5kfvkss8vh537vh2k4zbpncmwadg1g4pzsw0rdmkyn7lyjd"; - libraryHaskellDepends = [ - aeson base containers deepseq hashable lens newtype semigroups - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bgamari/monoidal-containers"; - description = "Containers with monoidal accumulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.1.3"; - sha256 = "6458ca53593a31ebce1d94ef8dd4f6a06d050dd7ed32335f6cc6b6e5d3456894"; - revision = "4"; - editedCabalFile = "1mfrx8cpx0502sjv0bmlfkl0h46c4krldg8m89k4fj6iawwg2ab5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multipart" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, stringsearch }: - mkDerivation { - pname = "multipart"; - version = "0.1.3"; - sha256 = "9f60512e7b04c78442bd7c9de621597f6f2c4288b3bc1bb2834d08b5bd2796f4"; - revision = "1"; - editedCabalFile = "037ngpayaisc1jgcxyixy7lx42p2mz950k6wb0pl6dkc951hl88c"; - libraryHaskellDepends = [ base bytestring parsec stringsearch ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/silkapp/multipart"; - description = "HTTP multipart split out of the cgi package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multiset" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "multiset"; - version = "0.3.4.1"; - sha256 = "b0ff7deec3dcb65145dd2368dadcf8bb2c087345d106440f8ddcbd4acab63e16"; - revision = "1"; - editedCabalFile = "1ddnvzpa9h21p013dwzf0iv2fvvf8mba6vaccf4anamvwa327kcl"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "The Data.MultiSet container type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.1"; - sha256 = "75d7785d13e962954affa2ea11488b3d4016d76404c4d6806b818e3893d02ee9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur3" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "murmur3"; - version = "1.0.3"; - sha256 = "102c81e0e6ae604f51bccced6d2d493f4de0b65e856cd0492a17f9f8e4d51f2a"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plaprade/murmur3"; - description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.0"; - sha256 = "018863e578e971e393edc65dd7e0ed92a0e37fc152a47bb379fd8abd59537be0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.0.4"; - sha256 = "9fe9ed0e264bf85420a3086a1af9d6e749ff33c9c59428891dfaaa72b1385157"; - revision = "1"; - editedCabalFile = "1b4wbxkxx0szjgzgn5jc1qap80zx6ispxrd51yxs4z7llv15w5k6"; - libraryHaskellDepends = [ base mwc-random primitive transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability-transition" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, hspec, logging-effect - , mtl, mwc-probability, primitive, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability-transition"; - version = "0.4"; - sha256 = "3e44b6f3f3b2a739776484e7d4ab98ab1d5c7e50bcba53a40d2f0ac96003e768"; - libraryHaskellDepends = [ - base exceptions ghc-prim hspec logging-effect mtl mwc-probability - primitive QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mwc-probability-transition"; - description = "A Markov stochastic transition operator with logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.14.0.0"; - sha256 = "00370edaa60a51c86663868ecc2b1995824970001875cec458e9acc13511efa2"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.7"; - sha256 = "ef2d7bc6791171f0c5efa8a6b40c2be386867e8b0c72580343a6646d514972d9"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-haskell" = callPackage - ({ mkDerivation, base, binary, binary-ieee754, binary-parsers - , blaze-textual, bytestring, bytestring-lexing, cryptonite - , io-streams, memory, monad-loops, network, scientific, stdenv - , tcp-streams, text, time, tls, vector, wire-streams, word24 - }: - mkDerivation { - pname = "mysql-haskell"; - version = "0.8.4.2"; - sha256 = "5f51eb5a77934cd9046d85bce7477288752e3de0d4119111493d5bc967e2e9d1"; - libraryHaskellDepends = [ - base binary binary-ieee754 binary-parsers blaze-textual bytestring - bytestring-lexing cryptonite io-streams memory monad-loops network - scientific tcp-streams text time tls vector wire-streams word24 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "pure haskell MySQL driver"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-nem" = callPackage - ({ mkDerivation, base, bytestring, io-streams, mysql-haskell - , scientific, stdenv, text, time - }: - mkDerivation { - pname = "mysql-haskell-nem"; - version = "0.1.0.0"; - sha256 = "7a0868b76edc96a7aff7860f96436b9040f6cb9319dd67f68bfd700948721f0d"; - libraryHaskellDepends = [ - base bytestring io-streams mysql-haskell scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lorenzo/mysql-haskell-nem#readme"; - description = "Adds a interface like mysql-simple to mysql-haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "n2o" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv, text - }: - mkDerivation { - pname = "n2o"; - version = "0.11.1"; - sha256 = "674d30b2971f7aaf9fee85b82767895fdcb012ab1df90b8ab7ed49b1858e6f7b"; - libraryHaskellDepends = [ base binary bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xafizoff/n2o#readme"; - description = "Abstract Protocol Loop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "named" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "named"; - version = "0.2.0.0"; - sha256 = "c01a5bb4cf36082da40a90880fbf8fbe72f7ab57027e788be42901777ddf8d9e"; - revision = "2"; - editedCabalFile = "0h9d74h6g685g1g0ylqf7kws1ancdy3q6fi39vinf5alkqa7kxwd"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Named parameters (keyword arguments) for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.3.0.0"; - sha256 = "0be38f6a22afb69ddda5a3cae095b51835bdae853256403e97078679a9fba526"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, megaparsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.4"; - sha256 = "de7370d938ffd8c7b52d732f4f088387ed8216cf9767d818e99b7ec827931752"; - libraryHaskellDepends = [ - base base-prelude megaparsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, guarded-allocation, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1.1"; - sha256 = "211016f9dc28f0519b1151ce5b1f74e8371a32f53fdb34c69277f099d82b2e47"; - libraryHaskellDepends = [ - base guarded-allocation storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.3"; - sha256 = "68fcb39e7097ccfd0327d36588d18faea438c389a5310d9ea4a91ec74b809d9d"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "netrc" = callPackage - ({ mkDerivation, base, bytestring, deepseq, parsec, stdenv }: - mkDerivation { - pname = "netrc"; - version = "0.2.0.0"; - sha256 = "9a5e07efa44f4b715b110aa4f9687e2b75458fb7537a2f4f1a3582c9e2e82a86"; - revision = "6"; - editedCabalFile = "0mn0ar2xhjdsm50kmpw5ndvbyfmc30b3x0bx291d2ml7hqspnnsw"; - libraryHaskellDepends = [ base bytestring deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/netrc"; - description = "Parser for .netrc files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.3.0"; - sha256 = "cf3f08980e8e52190301d33db3b1fe7f02bcf5d276a74a8b8283b79e72bf7d5d"; - revision = "1"; - editedCabalFile = "1j8h6m4cj1ykxrsxmjiyb1c4mv6cawssgb8phl0aijrjn3b79f2b"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "network"; - version = "2.8.0.1"; - sha256 = "61f55dbfed0f0af721a8ea36079e9309fcc5a1be20783b44ae500d9e4399a846"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-anonymous-i2p" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions, mtl - , network, network-attoparsec, network-simple, stdenv, text - , transformers, uuid - }: - mkDerivation { - pname = "network-anonymous-i2p"; - version = "0.10.0"; - sha256 = "cff5796c36c1ebbb969e5433538eb3f3979acef9825a7bfb683ed002023fff2c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions mtl network - network-attoparsec network-simple text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; - description = "Haskell API for I2P anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-anonymous-tor" = callPackage - ({ mkDerivation, attoparsec, base, base32string, bytestring - , exceptions, hexstring, network, network-attoparsec - , network-simple, socks, splice, stdenv, text, transformers - }: - mkDerivation { - pname = "network-anonymous-tor"; - version = "0.11.0"; - sha256 = "41aee5b34aaaec6fa47a56cca61fafec22097bda25d13d5baef6b7924e127549"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Haskell API for Tor anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, enclosed-exceptions - , exceptions, lifted-base, monad-control, mtl, network, stdenv - , transformers - }: - mkDerivation { - pname = "network-attoparsec"; - version = "0.12.2"; - sha256 = "9790a9bad286ab1474dadbece3e4b2e1dd068d4ede3847cb73bcd66386bf08f0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring enclosed-exceptions exceptions - lifted-base monad-control mtl network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-attoparsec"; - description = "Utility functions for running a parser against a socket"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-byte-order" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "network-byte-order"; - version = "0.0.0.0"; - sha256 = "3bb6f1110d9ac16a18f0c2d5921af584044e667e46fcfbdebd7a1e74e329de71"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Network byte order utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.2"; - sha256 = "ecfd60e162de3993a71906293dcf2ec8bd4c794471eb8dca13746c1d8fd3ad7f"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-house" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "network-house"; - version = "0.1.0.2"; - sha256 = "071fbc22fc516175e78235d9e29ccefd8eec7c3caa2e6de74dddf62cdbffab43"; - libraryHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/network-house"; - description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.2"; - sha256 = "ee259d236312aafc4bd08dfeff2ebe4b4f930b2f5879764e1a6d5675c5105efe"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-messagepack-rpc" = callPackage - ({ mkDerivation, base, bytestring, data-msgpack, safe-exceptions - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "network-messagepack-rpc"; - version = "0.1.1.0"; - sha256 = "10640121caf2f8b9e8e02d90baf6e1ac4f83b82d502c389269bea842416e038f"; - libraryHaskellDepends = [ - base bytestring data-msgpack safe-exceptions text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iij-ii/direct-hs/tree/master/network-messagepack-rpc"; - description = "MessagePack RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-multicast" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "network-multicast"; - version = "0.2.0"; - sha256 = "0f3b50abc3a401c20cc6a0ec51a49d2a48e5b467d9fbd63b7cf803165fe975f2"; - revision = "2"; - editedCabalFile = "1hha4vvyrx29d2lwwjl0bfpbaj00k85bd4w83s4hvawqbxqvvhkw"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - description = "Simple multicast library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "network-simple" = callPackage - ({ mkDerivation, base, bytestring, network, safe-exceptions, socks - , stdenv, transformers - }: - mkDerivation { - pname = "network-simple"; - version = "0.4.3"; - sha256 = "0dd5cf1ed308bbe9601dc39026419151f552f386ec5e82417ad4f86cc4539028"; - revision = "2"; - editedCabalFile = "073g0agplvgan62s638w5hcq25biq8f811xhha6drfyxybs6cspn"; - libraryHaskellDepends = [ - base bytestring network safe-exceptions socks transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple"; - description = "Simple network sockets usage patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-simple-tls" = callPackage - ({ mkDerivation, base, bytestring, data-default, network - , network-simple, safe-exceptions, stdenv, tls, transformers, x509 - , x509-store, x509-system, x509-validation - }: - mkDerivation { - pname = "network-simple-tls"; - version = "0.3.2"; - sha256 = "5077aed7b57c25001f8f5305fce93b4e184399e5d3dc6805931cf8bcad3fdc25"; - libraryHaskellDepends = [ - base bytestring data-default network network-simple safe-exceptions - tls transformers x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple-tls"; - description = "Simple interface to TLS secured network sockets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.2"; - sha256 = "e795672b43d67ac7bfade72173548ae6bf8208c1890e22aba7809098558f9054"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2"; - sha256 = "b714033abd9a8b0903bcef0d36d0913de2a5003c852f43f97fa688717289e459"; - revision = "1"; - editedCabalFile = "0rbhpa1krcmvv4hsy3h5h8l4vqjk9wckddcz34rfcq0m7zlmsrfz"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.3"; - sha256 = "f295f001a86bdbcf759d6b91b9e7ae27cd431ccf41d9b9d34ee1c926b88efe45"; - revision = "1"; - editedCabalFile = "1glnwq1lw7780qgahqvh1qfx6k2ciwmbhc2wcc78v3aa3s954c8v"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3.1"; - sha256 = "70010fbf85651e9aa033015d9fafabb9edf2bb4eac2ad2ffd5a1ff8b90db2804"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.2"; - sha256 = "d9a3604c0c140197731895af56413edbf1cf6866f9c0636ece9d8314366dd1e1"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "nonempty-containers" = callPackage - ({ mkDerivation, base, comonad, containers, deepseq, semigroupoids - , stdenv, these - }: - mkDerivation { - pname = "nonempty-containers"; - version = "0.1.1.0"; - sha256 = "33981526acb8b0d3b8aa2e787e50e6e56497ee4c2ef6691093d41d5bbe5517ee"; - libraryHaskellDepends = [ - base comonad containers deepseq semigroupoids these - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/nonempty-containers#readme"; - description = "Non-empty variants of containers data types, with full API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nonemptymap" = callPackage - ({ mkDerivation, base, containers, semigroupoids, stdenv }: - mkDerivation { - pname = "nonemptymap"; - version = "0.0.6.0"; - sha256 = "24bd4c4c3569ca103352493fc61739574eda0587532f8c85d959795d6728fadf"; - libraryHaskellDepends = [ base containers semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/nonemptymap#readme"; - description = "A NonEmptyMap Implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nowdoc" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell }: - mkDerivation { - pname = "nowdoc"; - version = "0.1.1.0"; - sha256 = "4ffe490b2c161a53f0d636d54269df357d41c7b212c70dcb1c7e2cffd33f5268"; - revision = "1"; - editedCabalFile = "074xgrxs8ynq29bsx66an03q0457f80ga9jf4sqi0q34jgfpmbcv"; - libraryHaskellDepends = [ base bytestring template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/nowdoc#readme"; - description = "Here document without variable expansion like PHP Nowdoc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nqe" = callPackage - ({ mkDerivation, base, conduit, containers, hashable, mtl, stdenv - , stm, unique, unliftio - }: - mkDerivation { - pname = "nqe"; - version = "0.6.1"; - sha256 = "adf772bca05f8445e585537e3807df394a8d7c7e3a095fd532ee55cc60f30dd0"; - libraryHaskellDepends = [ - base conduit containers hashable mtl stm unique unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/nqe#readme"; - description = "Concurrency library in the style of Erlang/OTP"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.2"; - sha256 = "b9985b8d62569c192d89b20965eed2b98186a67148b667202823c6389b8f15ca"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3.1"; - sha256 = "c9e4b6f20c47ab38faea9a6a230a722f3b50462989d1b0ad1e7bfd1cb8f46114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.2"; - sha256 = "98787dc0dd1757e6ed9c37e7d735b448fb9a9281988d97625292c9d8e16a732b"; - revision = "1"; - editedCabalFile = "0892xm8vyyvl1glg4vniz8r5ydg1nz3zmbpgk5mxdih6wi6nmpy4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nuxeo" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-conduit, http-types, optparse-applicative - , stdenv, text, time, url - }: - mkDerivation { - pname = "nuxeo"; - version = "0.3.2"; - sha256 = "e230a92a3f4b2f56128bfce8b478cdedcbb68b5a8b99d60e895b24af58b61954"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-conduit - http-types text time url - ]; - executableHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/nuxeo#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nvvm" = callPackage - ({ mkDerivation, base, bytestring, c2hs, Cabal, cuda, directory - , filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "nvvm"; - version = "0.9.0.0"; - sha256 = "0bc2367b662ce414aa5f989cc1d1266daa0c552868cb374f304bfca29957ef01"; - setupHaskellDepends = [ - base Cabal cuda directory filepath template-haskell - ]; - libraryHaskellDepends = [ base bytestring cuda template-haskell ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcdonell/nvvm"; - description = "FFI bindings to NVVM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "oblivious-transfer" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, memory, protolude - , random, stdenv - }: - mkDerivation { - pname = "oblivious-transfer"; - version = "0.1.0"; - sha256 = "5f1fcaf951a7828bbac3aef6ff8c540b187b0117f51b49428d018712eabd05cf"; - revision = "1"; - editedCabalFile = "1v9js45kc94zirg530d0f3r9wwsx60xnz7diqzvfxlbvw01649yk"; - libraryHaskellDepends = [ - base bytestring cryptonite memory protolude random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/oblivious-transfer#readme"; - description = "An implementation of the Oblivious Transfer protocol in Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, parsec, semigroups, stdenv - , template-haskell, text, time, transformers, unixODBC - , unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.2.2"; - sha256 = "659a124883696168daf3cd20403394616a56837c904810073183ce41769e7336"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting parsec - semigroups template-haskell text time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis" = callPackage - ({ mkDerivation, base, HTTP, network, network-uri, stdenv }: - mkDerivation { - pname = "oeis"; - version = "0.3.9"; - sha256 = "8a692c0b898f5d89e607f9593697a24827981a1cfee53045c192084015061b8e"; - revision = "1"; - editedCabalFile = "0rb6l3qblay8aiwaznp35gj7vwmhm87y57wvf3babwrh91s88jaj"; - libraryHaskellDepends = [ base HTTP network network-uri ]; - doHaddock = false; - doCheck = false; - description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oeis2" = callPackage - ({ mkDerivation, aeson, base, containers, http-conduit, lens - , lens-aeson, stdenv, text, vector - }: - mkDerivation { - pname = "oeis2"; - version = "1.0.2"; - sha256 = "adc3ae14acdda7bafd57d1191d924ae015d0aff10b928ba1d37c3c3978eabede"; - libraryHaskellDepends = [ - aeson base containers http-conduit lens lens-aeson text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23prime/oeis2#readme"; - description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.2.0"; - sha256 = "0e22e2269f099603832f666814235051fadf92cbdec3dfacf7d1e8231ccd95f1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.4"; - sha256 = "30bd9195db5c55bc6f9252d10ac03855c792c6dd2ff401f757c155f2d838e92b"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/kaction/haskell-once"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "opaleye" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, contravariant, postgresql-simple, pretty - , product-profunctors, profunctors, scientific, semigroups, stdenv - , text, time, time-locale-compat, transformers, uuid, void - }: - mkDerivation { - pname = "opaleye"; - version = "0.6.7003.1"; - sha256 = "5df737b19038efb076f5323044ff9c661fd77592c71756c10a811a51c2df44d2"; - revision = "2"; - editedCabalFile = "1iq2szdw6xajljrmmz373j0wvsnkgg20gpvfiqyrzknpraq3xvj8"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive - contravariant postgresql-simple pretty product-profunctors - profunctors scientific semigroups text time time-locale-compat - transformers uuid void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; - description = "An SQL-generating DSL targeting PostgreSQL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-witness" = callPackage - ({ mkDerivation, base, constraints, hashable, random, stdenv - , template-haskell, transformers, witness - }: - mkDerivation { - pname = "open-witness"; - version = "0.4.0.1"; - sha256 = "0770500d6eeb301fc92d30bec2ccef55b05beb0200125fcbddb6b50836034111"; - libraryHaskellDepends = [ - base constraints hashable random template-haskell transformers - witness - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/open-witness"; - description = "open witnesses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.2"; - sha256 = "2b0655a64ee36d529030df04f09b6fdf63749f64ec3d29b4f1861cf9c69a05e2"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "git://klacansky.com/openexr-write.git"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.1"; - sha256 = "b92f3f5316f18c9e30a95cd59888658384ddd20b628e4cd5fbb647177f52f607"; - revision = "1"; - editedCabalFile = "0j4qra3i7g607axj07d7f0ycj07d889nyw2s04m5wc98blbm5k4j"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.isc; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.1.0"; - sha256 = "1ef36be24b2a1d2aee892891e6c7bd975830c38900dbb96a80e5df95c37c5482"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "openssl-streams" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, io-streams, network - , stdenv - }: - mkDerivation { - pname = "openssl-streams"; - version = "1.2.2.0"; - sha256 = "b966b06f579bc9d1f4698408deff77ff6f7047a083d7d44fbeb379af4cf5f466"; - revision = "1"; - editedCabalFile = "125bxb2axgpcq7rrpamfq0yz017i0ks9zsykh6hn0ifw3lxj1k29"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL io-streams network - ]; - doHaddock = false; - doCheck = false; - description = "OpenSSL network support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "opml-conduit" = callPackage - ({ mkDerivation, base, case-insensitive, conduit - , conduit-combinators, containers, lens-simple, mono-traversable - , monoid-subclasses, safe-exceptions, semigroups, stdenv, text - , time, timerep, uri-bytestring, xml-conduit, xml-types - }: - mkDerivation { - pname = "opml-conduit"; - version = "0.6.0.4"; - sha256 = "480b557690aab79e3761ad7f1ba1d44873c3d395d2b27f2d133372a01c535d1d"; - revision = "1"; - editedCabalFile = "160sazqsrmm2755642c5y5i38miiglqb66cy5k0hy4k2jkdmjfbi"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base case-insensitive conduit conduit-combinators containers - lens-simple mono-traversable monoid-subclasses safe-exceptions - semigroups text time timerep uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/opml-conduit"; - description = "Streaming parser/renderer for the OPML 2.0 format."; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.14.3.0"; - sha256 = "72476302fe555a508917b2d7d6121c7b58ea5434cdc08aeb5d4b652e8f0e7663"; - revision = "2"; - editedCabalFile = "1a08dqjly1xy730f6jf45frr8g8gap0n1vg9b0mpzpydv0kgzmrp"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.0"; - sha256 = "80929958606e4a73672b570ba1a23493fbf46268666d14ab5af53623301c398f"; - revision = "3"; - editedCabalFile = "0vszcjmxywblx5z9yvrz8c6yc104jgr1nv0sbv58ansd3rkjlzfn"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, githash, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.1.2"; - sha256 = "02716473cc57ff1212c5174cc213f5b1bb744e680c222a4ae97e0b12f38400e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base githash optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ormolu" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, exceptions - , ghc-lib-parser, gitrev, mtl, optparse-applicative, stdenv, syb - , text - }: - mkDerivation { - pname = "ormolu"; - version = "0.0.3.1"; - sha256 = "8fb635d49812aac4b50a5dc04fbf07a3d6e586825a04606d6b2e81d817d7765f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers dlist exceptions ghc-lib-parser mtl syb - text - ]; - executableHaskellDepends = [ - base ghc-lib-parser gitrev optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/ormolu"; - description = "A formatter for Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.4.1"; - sha256 = "be65a4a7c7d6823610966e59e8e12147e2a55e577b2cebfddaaebd708e96da14"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pairing" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, memory, protolude - , QuickCheck, random, stdenv, wl-pprint-text - }: - mkDerivation { - pname = "pairing"; - version = "0.1.4"; - sha256 = "cc8c5a39e27b8fb17b2107f81e2777958e9c5f1d1e0a9a29267e89b1b0e2e18d"; - libraryHaskellDepends = [ - base bytestring cryptonite memory protolude QuickCheck random - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/pairing#readme"; - description = "Optimal ate pairing over Barreto-Naehrig curves"; - license = stdenv.lib.licenses.mit; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base64-bytestring - , binary, blaze-html, blaze-markup, bytestring, Cabal - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doctemplates, exceptions, filepath, Glob - , haddock-library, hslua, hslua-module-text, HsYAML, HTTP - , http-client, http-client-tls, http-types, JuicyPixels, mtl - , network, network-uri, pandoc-types, parsec, process, random, safe - , SHA, skylighting, split, stdenv, syb, tagsoup, temporary, texmath - , text, time, unicode-transforms, unix, unordered-containers - , vector, xml, zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.5"; - sha256 = "d57dc5db78a0a304de70436fe59a7599ab0c6d0fb2ab6704eeae498a4536222e"; - revision = "2"; - editedCabalFile = "1z44hcwqqmkmhfak7svrrf950amf008gzhnlxkhwdyjpnpqp21sm"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base64-bytestring binary blaze-html - blaze-markup bytestring case-insensitive cmark-gfm containers - data-default deepseq directory doctemplates exceptions filepath - Glob haddock-library hslua hslua-module-text HsYAML HTTP - http-client http-client-tls http-types JuicyPixels mtl network - network-uri pandoc-types parsec process random safe SHA skylighting - split syb tagsoup temporary texmath text time unicode-transforms - unix unordered-containers vector xml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share - mv $data/*/*/man $out/share/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-citeproc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , Cabal, containers, data-default, directory, filepath, hs-bibutils - , mtl, old-locale, pandoc, pandoc-types, parsec, rfc5051, setenv - , split, stdenv, syb, tagsoup, text, time, unordered-containers - , vector, xml-conduit, yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.15.0.1"; - sha256 = "29db5f2aad3225859727271855461724574f3695ab3856ceac33b24a55ae92f8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base bytestring containers data-default directory filepath - hs-bibutils mtl 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 pandoc - pandoc-types syb text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-pyplot" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , pandoc-types, stdenv, temporary, typed-process - }: - mkDerivation { - pname = "pandoc-pyplot"; - version = "1.0.3.0"; - sha256 = "e24d112d80ecc46915244d4a31fe2d62e06faa29c8082c380f3a1d1904e7f75b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath pandoc-types temporary - typed-process - ]; - executableHaskellDepends = [ base pandoc-types ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LaurentRDC/pandoc-pyplot#readme"; - description = "A Pandoc filter for including figures generated from Matplotlib"; - license = stdenv.lib.licenses.mit; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.17.5.4"; - sha256 = "32aca86c510bd23c6bd54ce1a37ca005f4b84f077ab8e835a522833cf5179327"; - revision = "1"; - editedCabalFile = "0bpd2iqmriajl5qg44j4z9c4agb9gsdwbn5l4c5yry6flivysq3c"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://johnmacfarlane.net/pandoc"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, ghc-prim, stdenv - }: - mkDerivation { - pname = "parallel"; - version = "3.2.2.0"; - sha256 = "170453a71a2a8b31cca63125533f7771d7debeb639700bdabdd779c34d8a6ef6"; - revision = "1"; - editedCabalFile = "0a3kn7arck8f2gwm8cwfkplsw4q9v9j6ifbhj1l3bmclmkwcckcj"; - libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "paripari" = callPackage - ({ mkDerivation, base, bytestring, parser-combinators, stdenv, text - }: - mkDerivation { - pname = "paripari"; - version = "0.6.0.0"; - sha256 = "2114cfd4f91c5f58f52b0e350927276fe8e5ba291db7ae77859d045d8bbf0498"; - revision = "2"; - editedCabalFile = "074z7wrb1p4c8wxwmqv3nxs6kp835r9pxmmnspqaajj0rag70ny3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring parser-combinators text - ]; - executableHaskellDepends = [ - base bytestring parser-combinators text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/paripari#readme"; - description = "Parser combinators with fast-path and slower fallback for error reporting"; - license = stdenv.lib.licenses.mit; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.9"; - sha256 = "3c469ddcee3a63ef790d88f676dcf99b9d90b8815112f18c17febafc9e8025a9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Parse command-line arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.13.0"; - sha256 = "7861ae437a6177ee7c08899432fd8c062e7c110361da48a9f9e88263fd4d80f1"; - revision = "2"; - editedCabalFile = "032sizm03m2vdqshkv4sdviyka05gqf8gs6r4hqf9did177i0qnm"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-class" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-class"; - version = "1.0.0.0"; - sha256 = "029c4ec5e6b0efd0505f1051c29c02060ddab3018b9aef4c4ae96a99f58e1773"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/parsec-class"; - description = "Class of types that can be constructed from their text representation"; - license = stdenv.lib.licenses.mit; - }) {}; - "parsec-numbers" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numbers"; - version = "0.1.0"; - sha256 = "77019a4817712f6bfc61c9d148b680579955eb40d286f7766f7b0a90c726febf"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Utilities for parsing numbers from strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.1"; - sha256 = "03162e40cde50253529fa452165b681d5064d03ad07992800702156adfb6254d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, binary, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.9"; - sha256 = "81e52fc9d71b587a8034015344e9162c59975750094f930a47933e5603d305e4"; - libraryHaskellDepends = [ - attoparsec base base-orphans binary charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-semigroup" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-semigroup"; - version = "0.5.1.0"; - sha256 = "49bf2439247b9ffc1a691cee5db8a18580b0c05a576bf71ff8b272f51a402f97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chris-martin/partial-semigroup"; - description = "A partial binary associative operator"; - license = stdenv.lib.licenses.asl20; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell - }: - mkDerivation { - pname = "path"; - version = "0.6.1"; - sha256 = "4b8bd85a13395b4240c639b9cf804371854d5dac69158f661068bd3089a25e59"; - revision = "2"; - editedCabalFile = "05pgmg0w1mfwcmx9ad4p09xqxld8njhgwmgq38v7pr58czvmd6ks"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.4.2"; - sha256 = "23c7f203347bc20e5649476e9b5df662a09ffbb8c1a2f3e658935845621d1d4b"; - revision = "1"; - editedCabalFile = "02irjcw5rdcx9wvsb7mcanylp2bwaiacpfjjbcvqq1lhvqcyw73i"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-text-utf8" = callPackage - ({ mkDerivation, base, bytestring, path, safe-exceptions, stdenv - , text - }: - mkDerivation { - pname = "path-text-utf8"; - version = "0.0.1.2"; - sha256 = "f6c2652d23171ffa87f13d2c804630499b6b2210853aaf8008f4d593b5f41cfd"; - libraryHaskellDepends = [ - base bytestring path safe-exceptions text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chris-martin/path-text-utf8"; - description = "Read and write UTF-8 text files"; - license = stdenv.lib.licenses.asl20; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcf-font" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector, zlib - }: - mkDerivation { - pname = "pcf-font"; - version = "0.2.2.0"; - sha256 = "8a67d04240a7668e669414d1b4f531d290c79a63198e0ecf02cb0339bff098ef"; - libraryHaskellDepends = [ - base binary bytestring containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font"; - description = "PCF font parsing and rendering library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcf-font-embed" = callPackage - ({ mkDerivation, base, bytestring, pcf-font, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "pcf-font-embed"; - version = "0.1.2.0"; - sha256 = "c55d51ee6f959c9c05bb9d9adac3aad1cd87b2bba3cca7d3667d67f1a230fd51"; - libraryHaskellDepends = [ - base bytestring pcf-font template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font-embed"; - description = "Template Haskell for embedding text rendered using PCF fonts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, entropy, primitive, random - , stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.5"; - sha256 = "de43ff8805f9e0ffd4cd6b4f2fed8c9cfa9ab45c0fd42374636ac7a5567840a4"; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.0.4"; - sha256 = "02c97e39263d18fd26aa63d52c88c4bfbb5c3f66ab40564552e7f11d5d889e75"; - libraryHaskellDepends = [ base bytestring ]; - libraryPkgconfigDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pedersen-commitment" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, memory - , mtl, protolude, stdenv, text - }: - mkDerivation { - pname = "pedersen-commitment"; - version = "0.2.0"; - sha256 = "6793cc37efa22307c935636f15dae7670330a84a7435f36412ced3b81410b0b7"; - libraryHaskellDepends = [ - base bytestring containers cryptonite memory mtl protolude text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/pedersen-commitment#readme"; - description = "An implementation of Pedersen commitment schemes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "percent-format" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "percent-format"; - version = "0.0.1"; - sha256 = "7530a64ba6f1ac2b59bdc325f3a8a6f0006b4a24dc2cd86eb2b41ab46d460c09"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/percent-format#readme"; - description = "simple printf-style string formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "persist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "persist"; - version = "0.1.1.3"; - sha256 = "97c44a513079a90d8dc2aeaaedb3e09f2d8e71ee6973fb07a30c839eb0989251"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/persist"; - description = "Minimal serialization library with focus on performance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.4"; - sha256 = "6d3abe73d61cf691bb1b5a412fa8a6d8fcc5cb3070176041ad8953b63ca5f8f9"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-types-HDBC-pg" = callPackage - ({ mkDerivation, base, bytestring, convertible, dlist, HDBC - , persistable-record, relational-query, relational-query-HDBC - , stdenv, text-postgresql - }: - mkDerivation { - pname = "persistable-types-HDBC-pg"; - version = "0.0.3.5"; - sha256 = "955c73edd056e1ecb6a3543d726070c3f219a67017ef18ac9ae75711f63cec2f"; - libraryHaskellDepends = [ - base bytestring convertible dlist HDBC persistable-record - relational-query relational-query-HDBC text-postgresql - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC and Relational-Record instances of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, blaze-markup, bytestring, conduit, containers - , fast-logger, http-api-data, monad-logger, mtl, old-locale - , path-pieces, resource-pool, resourcet, scientific, silently - , stdenv, tagged, template-haskell, text, time, transformers - , unliftio-core, unordered-containers, vector, void - }: - mkDerivation { - pname = "persistent"; - version = "2.9.2"; - sha256 = "497e5d2c96aaa370f147ece995a798d1ea217e35996f908d42681f41ec1c4af3"; - revision = "1"; - editedCabalFile = "1v6ll8aggz6gvz53mzfrnb4jsc25dspk39x3vcxpzqkdp8rgz1am"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html blaze-markup - bytestring conduit containers fast-logger http-api-data - monad-logger mtl old-locale path-pieces resource-pool resourcet - scientific silently tagged template-haskell text time transformers - unliftio-core unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-iproute" = callPackage - ({ mkDerivation, aeson, aeson-iproute, base, bytestring - , http-api-data, iproute, path-pieces, persistent, stdenv, text - }: - mkDerivation { - pname = "persistent-iproute"; - version = "0.2.3"; - sha256 = "f595a11ceaa1c19e11d6f4fc58ec2834eb100791ae82626912115f1d79edbfaa"; - revision = "1"; - editedCabalFile = "1jly9db968q5j5ly75f77hwxrhky3s6xx8ydgsjn5cdr9rc4iz8k"; - libraryHaskellDepends = [ - aeson aeson-iproute base bytestring http-api-data iproute - path-pieces persistent text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/persistent-iproute"; - description = "Persistent instances for types in iproute"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.9.0"; - sha256 = "ee4b17bd5ab8f724ad6cb98941418fca37eeaacb2ba7f21c2c7e2792898a4129"; - revision = "1"; - editedCabalFile = "0xvis08x4ajayp73f6j0czpksn309f3anv5kklxa9r6j8j5qkhvz"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , io-streams, monad-logger, mysql-haskell, network, persistent - , persistent-template, resource-pool, resourcet, stdenv, text, time - , tls, transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-mysql-haskell"; - version = "0.5.2"; - sha256 = "56c27a690be1ebeb1b6a74d7b3fe7fd9894d92f14c82f3675945c6b758c282cd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "A pure haskell backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.9.1"; - sha256 = "f8d2be7aea65149da7dd96449394c38acf676ffc74b0638d0f9ba5230da6250a"; - revision = "1"; - editedCabalFile = "186fbykla4hpsl14l1ccjr3rfdabl47c9x28m290477ilaygk685"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, old-locale, persistent, resource-pool - , resourcet, sqlite, stdenv, text, time, transformers - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.9.3"; - sha256 = "985b9f7323e88f784ff93dd6f5bc65cb0183435dea052a5d238dec1e11b28b8f"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - old-locale persistent resource-pool resourcet text time - transformers unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers - , ghc-prim, http-api-data, monad-control, monad-logger, path-pieces - , persistent, stdenv, tagged, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.5.4"; - sha256 = "4cae740ce92f98cb3ae9e092e740753394d5687b887399ee5f87af7f3c730a01"; - revision = "4"; - editedCabalFile = "08yb4kcmpqmm50lwrbmavd0zhgg6p7bl8dy026xw644cazrzcvr1"; - libraryHaskellDepends = [ - aeson aeson-compat base bytestring containers ghc-prim - http-api-data monad-control monad-logger path-pieces persistent - tagged template-haskell text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.1.0.1"; - sha256 = "598236369ee1228a3a76b4f0d5830d652a90ddbc0f98fdde064ad979a1abc97d"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "Another postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.2"; - sha256 = "e28b6fe85222adf1247d5870ab47c68c3d25df3f9ceda104bfb64e1414a92466"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.9"; - sha256 = "5c4cda351f9cf59376832baaeb857db25bd4990fd78c4b061aca0bde47271acb"; - revision = "3"; - editedCabalFile = "0ydjr0vw09spamifvv5r2y46s1x26mnijb7bbpdkz7lwa71jxn6r"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-category" = callPackage - ({ mkDerivation, base, lens, mtl, pipes, pipes-extras, stdenv }: - mkDerivation { - pname = "pipes-category"; - version = "0.3.0.0"; - sha256 = "4711d889ed2bf7244bbbc292af5746e0378d72a09929aa1e668056e7f0180701"; - libraryHaskellDepends = [ base lens mtl pipes pipes-extras ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-category#readme"; - description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.12"; - sha256 = "4343c67710e2fcd8987c537389773358150559bf06e86d96b1097c15ae81589d"; - revision = "2"; - editedCabalFile = "1c06nypirrd76jg5y508517smxh3izy98y6kj89k79kbpi5rncbj"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.15"; - sha256 = "02a9633ac912fd48e9a5ca0e6b48a6e9541ce59d11243096ca6af6b25701cbb3"; - revision = "1"; - editedCabalFile = "0xrd5zwkr1c7lswzi91gxl3ndra8y9g2b4j00sszyy3w187a2zwi"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fluid" = callPackage - ({ mkDerivation, base, constraints, lens, lifted-async - , monad-control, pipes, semigroups, stdenv, stm, these - , transformers, transformers-base - }: - mkDerivation { - pname = "pipes-fluid"; - version = "0.6.0.1"; - sha256 = "105d8e8df7e731e2d272a22891eb68db1ca3ec9f425b67af77c5d91e3f032f06"; - libraryHaskellDepends = [ - base constraints lens lifted-async monad-control pipes semigroups - stm these transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-fluid#readme"; - description = "Reactively combines Producers so that a value is yielded as soon as possible"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.12"; - sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7"; - revision = "1"; - editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.6"; - sha256 = "a231fb08dfac54c1fac7a0c805f1b6c6e60a380021bb5722b508d6b36e4ba700"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-misc" = callPackage - ({ mkDerivation, base, clock, Decimal, lens, mmorph, mtl, pipes - , pipes-category, pipes-concurrency, semigroups, stdenv, stm - , transformers - }: - mkDerivation { - pname = "pipes-misc"; - version = "0.5.0.0"; - sha256 = "4e2e7e396ee0c659ae3742388d06b69e3b5146a5563cd3f4ba56f9a1febb8d26"; - libraryHaskellDepends = [ - base clock Decimal lens mmorph mtl pipes pipes-category - pipes-concurrency semigroups stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-misc#readme"; - description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network" = callPackage - ({ mkDerivation, base, bytestring, exceptions, network - , network-simple, pipes, pipes-safe, stdenv, transformers - }: - mkDerivation { - pname = "pipes-network"; - version = "0.6.5"; - sha256 = "74a461153a2f650e9e15037002b6d9177b132f409e3204824655ffbb939dc795"; - libraryHaskellDepends = [ - base bytestring exceptions network network-simple pipes pipes-safe - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network"; - description = "Use network sockets together with the pipes library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network-tls" = callPackage - ({ mkDerivation, base, bytestring, network, network-simple - , network-simple-tls, pipes, pipes-network, pipes-safe, stdenv, tls - , transformers - }: - mkDerivation { - pname = "pipes-network-tls"; - version = "0.3"; - sha256 = "a2694a6b15d71a8cae898dd8e6a085a4e1ae317c40f2752ceed2b991dfb6bab2"; - libraryHaskellDepends = [ - base bytestring network network-simple network-simple-tls pipes - pipes-network pipes-safe tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network-tls"; - description = "TLS-secured network connections support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.3.1"; - sha256 = "9ef249d0a37c18ddc40efeb6a603c01d0438a45b100951ace3a739c6dc68cd35"; - revision = "1"; - editedCabalFile = "0qyx585dvyvnpkb6hmdml4ndl8sk0d1z747d40gfr0m7c320wjzm"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text, time - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2.1"; - sha256 = "c95ed42c789d26165183c2cbb4e8a44065478cad0a80053ac8e6fa2a84c7ecb4"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.12.1"; - sha256 = "dd8d34e05853ea0ab9b9fee1cbaa51ae33095f7c0c09ff539dcd6d771e0adaa5"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.2"; - sha256 = "3a5b51356c2c0844ac085d9ad073851d46426a09ffb59bcbfb8e072de4bd1fbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "port-utils" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "port-utils"; - version = "0.2.1.0"; - sha256 = "b6f830946a9daa829bb14dc7f105f28ae2cfa2ee8540af8550e3c975ac7117de"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/port-utils#readme"; - description = "Utilities for creating and waiting on ports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "posix-paths" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "posix-paths"; - version = "0.2.1.6"; - sha256 = "7239746716761bfc268b60348c5da3c2cf098fe2583f365096a6bef10f637e45"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - description = "POSIX filepath/directory functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "possibly" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "possibly"; - version = "1.0.0.0"; - sha256 = "52cd989873c966faffe60d0fe41a0222cb4dccc50313f9c9ed61a0d09db5ea22"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text#readme"; - description = "type Possibly a = Either String a"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.1.2"; - sha256 = "83ad514b9f6328e89f92f66a60de7f65609386773b6edf27f8aee2ee52120582"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.2"; - sha256 = "cea053c79ef1505c30518db7b9fb2ee68c9e2915d48b22f01f8eb9a9b49f06f9"; - revision = "1"; - editedCabalFile = "0hilyfb2gjh471ia2g8mwjs56ykrgl0qd06vpigwhc493ia7a9mv"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.14"; - sha256 = "73decc70c9fc349d0162c253eb0e92a1add5964c28ef89abfe30e97f1184d572"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable, Only - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.6.2"; - sha256 = "fbfaf2b326d5d43798f60b25862a9ac5006c0074fe295ba523fb55443a75f396"; - revision = "2"; - editedCabalFile = "1rlawj79mfff915bz5fr62g5ig4pfh77m30xrq8q71s6ql0ly4bj"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable Only postgresql-libpq - scientific template-haskell text time transformers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-migration" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash - , directory, postgresql-simple, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-simple-migration"; - version = "0.1.14.0"; - sha256 = "4ce4273ad339e2453e2db0ddfda58e96f5e99185e0807312d60b5a76b96b2efd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple time - ]; - executableHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ameingast/postgresql-simple-migration"; - description = "PostgreSQL Schema Migrations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-queue" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, monad-control - , pg-transact, postgresql-simple, random, stdenv, stm, text, time - , transformers - }: - mkDerivation { - pname = "postgresql-simple-queue"; - version = "1.0.1"; - sha256 = "330b69c54e075104171758117e714b7da6c740dff8ca09fbe33bd3ab854e5a3f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions monad-control pg-transact - postgresql-simple random stm text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgresql-queue#readme"; - description = "A PostgreSQL backed queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-url" = callPackage - ({ mkDerivation, base, network-uri, postgresql-simple, split - , stdenv - }: - mkDerivation { - pname = "postgresql-simple-url"; - version = "0.2.1.0"; - sha256 = "1307f57cde2bd7f6d795a860deab53d3d64043f51af31e3114dee516ef7ee9c9"; - revision = "2"; - editedCabalFile = "1nb1ks6hdfn16389f2yhf37qhjqd2y5wjc1dcp9bjhzd787z7ypr"; - libraryHaskellDepends = [ - base network-uri postgresql-simple split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/postgresql-simple-url"; - description = "Parse postgres:// url into ConnectInfo"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-transactional" = callPackage - ({ mkDerivation, base, monad-control, mtl, postgresql-simple - , stdenv - }: - mkDerivation { - pname = "postgresql-transactional"; - version = "1.1.1"; - sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; - libraryHaskellDepends = [ - base monad-control mtl postgresql-simple - ]; - doHaddock = false; - doCheck = false; - description = "a transactional monad on top of postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.2"; - sha256 = "d2aaacbe069a5dac61cee677c68eb34d74afa09c59d90d43e2fa07a6c5869fec"; - revision = "1"; - editedCabalFile = "1la186z2np3nv06p0485xwg342gyjp7a2ikg73qs7mbg086352zs"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.1"; - sha256 = "7bdc875d5b7265a87f06866dc00da69edcd4ae36ea9687c8c6e643833ffb40d4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "present" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "present"; - version = "4.1.0"; - sha256 = "bae8b334817a31572cc0e771f40e89b976e72b2b55d0955e4e198502dd8a427b"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/present"; - description = "Make presentations for data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.0"; - sha256 = "ff9a5f2023d6a4454f06cc395726b4cac3f9d0ea03759b14ccf7d62df79e9c7a"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.9.5"; - sha256 = "b095bebb79951d2e25a543a591844fb638165672d7b95d325844611297ba423f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "2.2.0.1"; - sha256 = "18ab80e80593063b11aa85c117e12253ec5dc438b1d342822ea1c25886485173"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-sop" = callPackage - ({ mkDerivation, base, generics-sop, pretty-show, stdenv }: - mkDerivation { - pname = "pretty-sop"; - version = "0.2.0.2"; - sha256 = "d64ff28d14360f782dc3ffaec16497015ef9ffc91b2c1cf234274cde9f2d3274"; - revision = "2"; - editedCabalFile = "04hzf2ajlnh3ynk72xr5s396v8y0d8fkr4pf11nqss7yf60dkxwi"; - libraryHaskellDepends = [ base generics-sop pretty-show ]; - doHaddock = false; - doCheck = false; - description = "A generic pretty-printer using generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.2.3.1"; - sha256 = "e56c49d1099aaeafe0b982ef9e60cb7194fd987c4b659a8d7bcde380d3b8784f"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.2.1"; - sha256 = "e7653e0ba87cc06553a50e4780dde81c5dd156196c0199511d03d972e5517fcf"; - revision = "1"; - editedCabalFile = "133n28la2dxhpvm5zbarcf0yc9hpl97lkjds3wxzgl7irfyk9w7n"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible pretty-printer"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prim-uniq" = callPackage - ({ mkDerivation, base, dependent-sum, primitive, stdenv }: - mkDerivation { - pname = "prim-uniq"; - version = "0.1.0.1"; - sha256 = "fb059785133fe5ecaa57c6c840192f252c4c5a1a598160d5704ac2a83e895aff"; - libraryHaskellDepends = [ base dependent-sum primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/prim-uniq"; - description = "Opaque unique identifiers in primitive state monads"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.6.4.0"; - sha256 = "4cbeaf7924dd79221f327ea101a29bf35c4976dc3319df157ff46ea68e6a0c64"; - revision = "1"; - editedCabalFile = "18a14k1yiam1m4l29rin9a0y53yp3nxvkz358nysld8aqwy2qsjv"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "probability" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "probability"; - version = "0.2.5.2"; - sha256 = "0f2b8c734eca6b079109948a28d85733543d5cea1dea2d5a1369f52ffc4a3415"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers random transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; - description = "Probabilistic Functional Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.3"; - sha256 = "1ef93a2cacbaf1fb2ae713f2d0d869593d4a5b8605eff38108877cbbfb51c1bb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, semigroups, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.3"; - sha256 = "74632acc5bb76e04ade95e187be432b607da0e863c0e08f3cabafb23d8b4a3b7"; - revision = "1"; - editedCabalFile = "1ynskm55fynsli6lpz6v5py344yhf1mq5xz2b1p7arvf2xqrx4kv"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - semigroups tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "prometheus-client" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, clock - , containers, deepseq, exceptions, mtl, stdenv, stm, text - , transformers, transformers-compat, utf8-string - }: - mkDerivation { - pname = "prometheus-client"; - version = "1.0.0"; - sha256 = "279e415720adb45a0ca67af18029c7b9e2ea0a34ec79b7278ed8e20e135b3344"; - libraryHaskellDepends = [ - atomic-primops base bytestring clock containers deepseq exceptions - mtl stm text transformers transformers-compat utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/prometheus-haskell"; - description = "Haskell client library for http://prometheus.io."; - license = stdenv.lib.licenses.asl20; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, deepseq - , lens-family, lens-labels, parsec, pretty, stdenv, text - , transformers, void - }: - mkDerivation { - pname = "proto-lens"; - version = "0.4.0.1"; - sha256 = "959d11ee1b863c20b3c2de977df3ab05ab2426413c78c3b7456206dd060adfe7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers deepseq lens-family - lens-labels parsec pretty text transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.7"; - sha256 = "0e345352356bd77dd88149c00ef787bec6c85995e8f9f7fb05172e19786f4f24"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-combinators" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-setup, stdenv, transformers - }: - mkDerivation { - pname = "proto-lens-combinators"; - version = "0.4.0.1"; - sha256 = "6b5264a009d401bc0503447567a9ccdd4fe82d0639e0115b00b9b85eab4c6d36"; - setupHaskellDepends = [ base Cabal proto-lens-setup ]; - libraryHaskellDepends = [ - base lens-family proto-lens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Utilities functions to proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.5"; - sha256 = "c209b27e07da0cbbc2772139531fd2f1af96c615d1c50acf5f4931b5a1640a5d"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-labels, proto-lens - , proto-lens-runtime, proto-lens-setup, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.4.0.1"; - sha256 = "2a475e0b1271ada78df17a39febdba813ffacdd3594bb72d346391eb2f412224"; - setupHaskellDepends = [ base Cabal proto-lens-setup ]; - libraryHaskellDepends = [ - base lens-labels proto-lens proto-lens-runtime text - ]; - libraryToolDepends = [ protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath - , haskell-src-exts, lens-family, pretty, proto-lens, protobuf - , stdenv, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.4.0.2"; - sha256 = "b5daf9d6e31edf9a75e5300c1095dcd091f91bff3bc05a04b49e6141d8d96bcf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers filepath haskell-src-exts lens-family pretty - proto-lens text - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers lens-family proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-runtime" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, filepath - , lens-family, lens-labels, proto-lens, stdenv, text - }: - mkDerivation { - pname = "proto-lens-runtime"; - version = "0.4.0.2"; - sha256 = "591356bda042e52e8f1239f49c40c679698340eea3697356b11624f48b8fcbcc"; - libraryHaskellDepends = [ - base bytestring containers deepseq filepath lens-family lens-labels - proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-setup" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, deepseq - , directory, filepath, process, proto-lens-protoc, stdenv - , temporary, text - }: - mkDerivation { - pname = "proto-lens-setup"; - version = "0.4.0.2"; - sha256 = "1bc500c0a032da878833ae46964b635b4b5d7f0a1e6c5f8577bea6d7fe9c14ff"; - libraryHaskellDepends = [ - base bytestring Cabal containers deepseq directory filepath process - proto-lens-protoc temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Cabal support for codegen with proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal - , data-binary-ieee754, deepseq, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "protobuf"; - version = "0.2.1.2"; - sha256 = "b3c871918a665f0543fde247ab8af61c4fc451103140d34bf652c0d5fc4d17de"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal data-binary-ieee754 deepseq mtl - text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/protobuf"; - description = "Google Protocol Buffers via GHC.Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.1.0"; - sha256 = "9029d395f099aa7ce510a9e0eb0b2c21e5b4ecaa2b242d5a1753de6b93abcdc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-buffers" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, directory, filepath, mtl, parsec, stdenv - , syb, text, utf8-string, vector - }: - mkDerivation { - pname = "protocol-buffers"; - version = "2.4.12"; - sha256 = "8fdcfd0017376db8cc519679344392891abfa4408de809a5c52b10091b9e3b7c"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - directory filepath mtl parsec syb text utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-buffers-descriptor" = callPackage - ({ mkDerivation, base, bytestring, containers, protocol-buffers - , stdenv - }: - mkDerivation { - pname = "protocol-buffers-descriptor"; - version = "2.4.12"; - sha256 = "96b14bf9e149cf7a2ea06ddbe147d237101a1a37bf9a5375ee078642df0d8c40"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers protocol-buffers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.1"; - sha256 = "49982332f18246c9f46dc8f9500dcbd92a445d17124b4acd084568c14ac6a131"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.0.1.0"; - sha256 = "b5cc9a15e7910ecb449d3bbb142b809fa34bee2079e772ca63d4bb975a41ada0"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.3"; - sha256 = "d23d39b5088f1656649c8e42fc86a20e48799d38f79d162fb38bd50d7ef7f37f"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3.1"; - sha256 = "996894e00af70c715a208a09824a38c001963762f3715cecec8ac4f2fef6ac51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psql-helpers" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv }: - mkDerivation { - pname = "psql-helpers"; - version = "0.1.0.0"; - sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; - libraryHaskellDepends = [ base postgresql-simple ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/psql-helpers#readme"; - description = "A small collection of helper functions to generate postgresql queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.1"; - sha256 = "047e42ecd50d09fef99d1db9f8b1e511b64ea4b41afc435ad5fdd373d2ea8ec1"; - revision = "1"; - editedCabalFile = "0336d9ckixv4n23vy5l3xk0wavfn3z9xk105gig0zv70b3jh3r3y"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pure-zlib" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , bytestring-builder, containers, fingertree, stdenv - }: - mkDerivation { - pname = "pure-zlib"; - version = "0.6.4"; - sha256 = "eb679aecb3fa310d28a31549cf83c29fba6f6e3c78bcdea82c9e22db36dc3017"; - revision = "1"; - editedCabalFile = "0mskig3fppav6f6x34vl5fxsih2hndiqvbdxz24hmr1dzkpnfvq1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base base-compat bytestring bytestring-builder containers - fingertree - ]; - executableHaskellDepends = [ base base-compat bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GaloisInc/pure-zlib"; - description = "A Haskell-only implementation of zlib / DEFLATE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pusher-http-haskell" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, hashable, http-client, http-types, memory, stdenv - , text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pusher-http-haskell"; - version = "1.5.1.7"; - sha256 = "ec5e08a5695d0ebd0e1624d2fa50bb86f0b2ef8977b84bc942c372483c32e106"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite hashable - http-client http-types memory text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pusher-community/pusher-http-haskell"; - description = "Haskell client library for the Pusher HTTP API"; - license = stdenv.lib.licenses.mit; - }) {}; - "qchas" = callPackage - ({ mkDerivation, base, hmatrix, linear, random, stdenv }: - mkDerivation { - pname = "qchas"; - version = "1.1.0.1"; - sha256 = "a9f340d1a6d4f5f24f713b1105e4ec8bba0c24609dcef3fd95f104594232263d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hmatrix linear random ]; - executableHaskellDepends = [ base hmatrix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ardeleanasm/qchas#readme"; - description = "A library for implementing Quantum Algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qnap-decrypt" = callPackage - ({ mkDerivation, base, binary, bytestring, cipher-aes128, conduit - , conduit-extra, crypto-api, directory, filepath - , optparse-applicative, stdenv, streaming-commons, tagged - , utf8-string - }: - mkDerivation { - pname = "qnap-decrypt"; - version = "0.3.4"; - sha256 = "bfcba1c5ed5ad0b578af6db285190bed2e33db56514569d55ea068dbe61f4668"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qnap-decrypt#readme"; - description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quadratic-irrational" = callPackage - ({ mkDerivation, arithmoi, base, containers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "quadratic-irrational"; - version = "0.0.6"; - sha256 = "209b70c62e4d3e83fb8a081576b7a0db9d8c3d50a3c7b32a63ed5c3953ec0d0a"; - revision = "1"; - editedCabalFile = "0i7dsl7zm9r7sgfs2cwmic3qbk15lc7kbhjd53vin89p21fh8mzm"; - libraryHaskellDepends = [ - arithmoi base containers mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ion1/quadratic-irrational"; - description = "An implementation of quadratic irrationals"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickbench" = callPackage - ({ mkDerivation, base, containers, directory, docopt, pretty-show - , process, safe, split, stdenv, tabular, time - }: - mkDerivation { - pname = "quickbench"; - version = "1.0"; - sha256 = "8bfe252e50a683346e753db312e9542f8d43256947ab215fcfd24af03787b926"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory docopt pretty-show process safe split - tabular time - ]; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/quickbench#readme"; - description = "quick & easy benchmarking of command-line programs"; - license = "GPL"; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-classes" = callPackage - ({ mkDerivation, aeson, base, base-orphans, bifunctors, containers - , fail, primitive, QuickCheck, semigroupoids, semigroups, semirings - , stdenv, tagged, transformers - }: - mkDerivation { - pname = "quickcheck-classes"; - version = "0.6.0.0"; - sha256 = "9e19335edc92ba1a4957c522a45af31ef31c7b80e2693962f7ef1d14e1de5a0b"; - libraryHaskellDepends = [ - aeson base base-orphans bifunctors containers fail primitive - QuickCheck semigroupoids semigroups semirings tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/quickcheck-classes#readme"; - description = "QuickCheck common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, stdenv, tagged, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.19"; - sha256 = "57a4aefff05313fb07a651934088d18a584f8bcfeaa02305be65525f12409a56"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific tagged text time - transformers transformers-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.0.4"; - sha256 = "808eb5966a97bd38a3992b280428a0b289ccb46c38397ea8e34661d1e1ec4414"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-state-machine" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, exceptions - , lifted-async, matrix, monad-control, mtl, pretty-show, QuickCheck - , split, stdenv, stm, tree-diff, vector - }: - mkDerivation { - pname = "quickcheck-state-machine"; - version = "0.4.3"; - sha256 = "3d2b858e43764da5b9d390048e43ef91a4128b75a1921a8a7f68299ba1d43039"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers exceptions lifted-async matrix - monad-control mtl pretty-show QuickCheck split stm tree-diff vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/advancedtelematic/quickcheck-state-machine#readme"; - description = "Test monadic programs using state machine based models"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens-simple, process, stdenv - , text - }: - mkDerivation { - pname = "rainbow"; - version = "0.30.0.2"; - sha256 = "be021eb05bc3e6a00b4fc10e1af941afa0c0a69ab83e5204e8455cfd5c0f5ec7"; - libraryHaskellDepends = [ - base bytestring lens-simple process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-simple, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.20.0.0"; - sha256 = "937f61d2fbc7b41f065cec9bb9d6550b54346e52b788d30f73ef78cf8545b61f"; - libraryHaskellDepends = [ - base bytestring containers lens-simple rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rando" = callPackage - ({ mkDerivation, base, stdenv, tf-random, vector }: - mkDerivation { - pname = "rando"; - version = "0.0.0.4"; - sha256 = "8eb8f4a5498ede50c468b74b04f9931cbcd6b4e6b03cf8dd56ad0b84c8ad7cb3"; - libraryHaskellDepends = [ base tf-random vector ]; - doHaddock = false; - doCheck = false; - description = "Easy-to-use randomness for livecoding"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.1"; - sha256 = "33a826fd04068902acb62b04cb88c5a0c47e483b88053be9f6de1d64911f0eb4"; - revision = "1"; - editedCabalFile = "0gk5hcx1j06rklfd2cv63kh5dzjk8hr184riam784c7s9zg3s9a4"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-fu" = callPackage - ({ mkDerivation, base, erf, log-domain, math-functions, monad-loops - , mtl, random-shuffle, random-source, rvar, stdenv, syb - , template-haskell, transformers, vector - }: - mkDerivation { - pname = "random-fu"; - version = "0.2.7.0"; - sha256 = "b6b3a4b3ede34991d26e0447f90b14fa66af61f376fa0aed2e0899fdc879b0c4"; - libraryHaskellDepends = [ - base erf log-domain math-functions monad-loops mtl random-shuffle - random-source rvar syb template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random number generation"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-source" = callPackage - ({ mkDerivation, base, flexible-defaults, mersenne-random-pure64 - , mtl, mwc-random, random, stateref, stdenv, syb, template-haskell - , th-extras - }: - mkDerivation { - pname = "random-source"; - version = "0.3.0.6"; - sha256 = "f3dfec3aef0614ff856abbba018f3bc3446295157895ea09a015737d67205b73"; - libraryHaskellDepends = [ - base flexible-defaults mersenne-random-pure64 mtl mwc-random random - stateref syb template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Generic basis for random number generators"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range" = callPackage - ({ mkDerivation, base, free, parsec, stdenv }: - mkDerivation { - pname = "range"; - version = "0.2.1.1"; - sha256 = "ac760a2408d51e40148b93b72d79320f13dfc8a68424d2510b518a49ef87ee8d"; - libraryHaskellDepends = [ base free parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/range"; - description = "An efficient and versatile range library"; - license = stdenv.lib.licenses.mit; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3"; - sha256 = "e51b393d2c09e3c2b0c21523389a48ce8e6090413abdfff1c623815c76cc96df"; - revision = "1"; - editedCabalFile = "00ddj7if8lcrqf5c882m4slm15sdwcghz7d2fz222c7jcw1ahvdr"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rank2classes" = callPackage - ({ mkDerivation, base, distributive, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "rank2classes"; - version = "1.2.1"; - sha256 = "60595259892e20014ba4e1713916fe8e5f597e6a29c1c4fd8c16f88d182c6f35"; - libraryHaskellDepends = [ - base distributive template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/grampa/tree/master/rank2classes"; - description = "standard type constructor class hierarchy, only with methods of rank 2 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.2"; - sha256 = "02db61c98e6e550824e8d9813efe5e97293843e39e1c00e88837061b61a017c4"; - revision = "1"; - editedCabalFile = "19i9wlk951d85dqnmbgrnz0fg4xcw7cbv9cs2h8b440lycj3p4cv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, stdenv - , text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "1.0.8"; - sha256 = "d342fe2a3676d9371f81c0072c5a98c1ddaf782c3841b8590fab791a25c8b010"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, stdenv, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "1.0.5"; - sha256 = "fd4c7c1418fdb48b462b12dcf6e28c86fd33a69ce0e21fa686dff825d87f621e"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "rattletrap" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits - , bytestring, containers, filepath, http-client, http-client-tls - , stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "rattletrap"; - version = "6.0.2"; - sha256 = "216295103133cbd4fef5ee81f6d3b84a959dfca90905fbcd835ffd60747804a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls template-haskell text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/rattletrap#readme"; - description = "Parse and generate Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest, fail - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.3"; - sha256 = "e10cbd0bd02adf8bfa7c709b66b5fc611c6765f8d97dc54a02b9963f08f2809f"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base fail ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.3"; - sha256 = "cb223e3717838dcd501d4758e0348e6eff6978318f62053cf7dd3286ef5b996a"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rebase" = callPackage - ({ mkDerivation, base, base-prelude, bifunctors, bytestring - , containers, contravariant, contravariant-extras, deepseq, dlist - , either, fail, hashable, mtl, profunctors, scientific - , semigroupoids, semigroups, stdenv, stm, text, time, transformers - , unordered-containers, uuid, vector, void - }: - mkDerivation { - pname = "rebase"; - version = "1.3.1"; - sha256 = "c4371298d99ae94de49e6a125a254997666c432190a34fe0d281a3db4460dcee"; - libraryHaskellDepends = [ - base base-prelude bifunctors bytestring containers contravariant - contravariant-extras deepseq dlist either fail hashable mtl - profunctors scientific semigroupoids semigroups stm text time - transformers unordered-containers uuid vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rebase"; - description = "A more progressive alternative to the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, filepath, stdenv }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.1.5"; - sha256 = "948b56a4df7139579b035214d1ef4e6c220547d7de2dd249d636c1775e0257ed"; - revision = "1"; - editedCabalFile = "1hggzp6fh071f2d11pn1y2rgczgxgvcfw86717gpxsm34kr60pgb"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "records-sop" = callPackage - ({ mkDerivation, base, deepseq, generics-sop, ghc-prim, stdenv }: - mkDerivation { - pname = "records-sop"; - version = "0.1.0.2"; - sha256 = "059257b7e81768e0ce4e62f0c7b15fc4976c9903015d8cf6aa330778301bfda0"; - revision = "1"; - editedCabalFile = "082f4dmdvbnv6jq28mrva8clxif366vcbn9m8d1bb8lcf9h3qxjb"; - libraryHaskellDepends = [ base deepseq generics-sop ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Record subtyping and record utilities with generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, comonad, free, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.1.3"; - sha256 = "b21736e54b1d5fb0149624e95f2d8d8fd3413bb0972eda6a70e5753d3c9f1528"; - revision = "2"; - editedCabalFile = "01q18gplv5k328qf74innnx2z2p15pg5nc6sikxq6fkkw4v3rkyb"; - libraryHaskellDepends = [ - base base-orphans comonad free template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Representing common recursion patterns as higher-order functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.3"; - sha256 = "7186733767405984c1eda96b18908f458b379f116a1589cd66f4319fe8458e27"; - revision = "1"; - editedCabalFile = "1v0r75wkaahxdv4y0sqgcikvgwymiz12fa8nkk59n1g4x9nng9wb"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "references" = callPackage - ({ mkDerivation, array, base, containers, directory, either - , filepath, instance-control, mtl, stdenv, template-haskell, text - , transformers, uniplate - }: - mkDerivation { - pname = "references"; - version = "0.3.3.1"; - sha256 = "bc07606d36639148374e7a29a67ac489c7a0ed02655311b5d633a144a746c10e"; - libraryHaskellDepends = [ - array base containers directory either filepath instance-control - mtl template-haskell text transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/references"; - description = "Selectors for reading and updating data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.4"; - sha256 = "f22fc478d43a36ec3d6c48c57ec53636c0bf936f3733b9a2b34e1a2e6351c44d"; - revision = "1"; - editedCabalFile = "05ibi4ivvh87d96xl09yh0day08p5www5vp568mvn2dp37rxyngc"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring, containers - , hashable, regex-base, regex-pcre-builtin, regex-tdfa - , regex-tdfa-text, stdenv, template-haskell, text, time - , time-locale-compat, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "regex"; - version = "1.0.2.0"; - sha256 = "aacd9b91e0598931745db5a3eea1cdfd6edf3b1e18ceb288c82eb8088b005fb8"; - revision = "1"; - editedCabalFile = "1476dxzj482j6zkvbvyszsjw1bm7jn2nwk40rq99ylvzm2sj0asn"; - libraryHaskellDepends = [ - array base base-compat bytestring containers hashable regex-base - regex-pcre-builtin regex-tdfa regex-tdfa-text template-haskell text - time time-locale-compat transformers unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3"; - sha256 = "6659a2cc1c8137d77ef57f75027723b075d473354d935233d98b1ae1b03c3be6"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-applicative-text" = callPackage - ({ mkDerivation, base, regex-applicative, stdenv, text }: - mkDerivation { - pname = "regex-applicative-text"; - version = "0.1.0.1"; - sha256 = "b093051f80865d257da2ded8ad1b566927b01b3d2f86d41da2ffee4a26c4e2d9"; - revision = "4"; - editedCabalFile = "0ykzppl1v6k70idjl73m4w161f6lsax89v1gp100y4xgipf3yijj"; - libraryHaskellDepends = [ base regex-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/regex-applicative-text#readme"; - description = "regex-applicative on text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "regex-base"; - version = "0.93.2"; - sha256 = "20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278"; - revision = "2"; - editedCabalFile = "0dks3m5xwcjqqlyyg7abh12ci3ap5qn6wz3bz80kr6rcfgk0fhvd"; - libraryHaskellDepends = [ array base bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.1"; - sha256 = "d57cb1a5a4d66753b18eaa37a1621246f660472243b001894f970037548d953b"; - revision = "1"; - editedCabalFile = "0yg34p0rkql07y6rs6l70zlk8x51lra9vabkin921l581k6br498"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.94.4"; - sha256 = "8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0"; - revision = "1"; - editedCabalFile = "0jk29n0may65ghixlx1wwfmfcabsm730y8ppry1qy4naywhi1vs7"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.94.4.8.8.35"; - sha256 = "0bd1b695de953ba4b6e6e0de007021c346cb2a6c8e09356fbcd34f8a79d2ea78"; - revision = "1"; - editedCabalFile = "0r29q3fwlji0vxypk0pywrqgrqz84ryd0n5zmk44bgy2k534mk6c"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre-text" = callPackage - ({ mkDerivation, array, base, bytestring, regex-base - , regex-pcre-builtin, regex-tdfa-text, stdenv, text - }: - mkDerivation { - pname = "regex-pcre-text"; - version = "0.94.0.1"; - sha256 = "17991ed7b00da5cfb2efa0cefac16f9e0452fc794fe538d26d5cc802f0d8e9bd"; - libraryHaskellDepends = [ - array base bytestring regex-base regex-pcre-builtin regex-tdfa-text - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/regex-pcre-text"; - description = "Text-based PCRE API for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.95.2"; - sha256 = "56019921cd4a4c9682b81ec614236fea816ba8ed8785a1640cd66d8b24fc703e"; - revision = "2"; - editedCabalFile = "1zrlwmmrb3x3r3af1r42xwhwspzfgnzh4dw1158523sndsg8qn08"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl - , parsec, regex-base, stdenv - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.2.3.1"; - sha256 = "8aaaeeecf050807c7c514d4dd1763ac63bd121782de5a0847bef5d48a095ea50"; - revision = "1"; - editedCabalFile = "120083w1shqbs5czdwswpbr1h7200ckzcspdjqxdrm054z8zccyc"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim mtl parsec regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa-text" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa-text"; - version = "1.0.0.3"; - sha256 = "38d77a0d225c306c52c6d4eed12d11d05a4bc4194d547cb9a7a9b6f5a8792001"; - revision = "1"; - editedCabalFile = "00swglzmdw30g4bn47z6j71all0djjb2hjm7bkfl7pza4wv14wpv"; - libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; - doHaddock = false; - doCheck = false; - description = "Text interface for regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-with-pcre" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, regex - , regex-base, regex-pcre-builtin, regex-pcre-text, regex-tdfa - , stdenv, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "regex-with-pcre"; - version = "1.0.2.0"; - sha256 = "53c7bd8fc0e361b04af3bd3f2f546826a88b6827b252688d4ebb3fb8092f76a7"; - libraryHaskellDepends = [ - base base-compat bytestring containers regex regex-base - regex-pcre-builtin regex-pcre-text regex-tdfa template-haskell text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "registry" = callPackage - ({ mkDerivation, base, containers, exceptions, hashable, mtl - , protolude, resourcet, semigroupoids, semigroups, stdenv - , template-haskell, text, transformers-base - }: - mkDerivation { - pname = "registry"; - version = "0.1.3.5"; - sha256 = "503815692101b4376290ce27c98b00851f9610f00d9e54c45f1ace1a9718d3db"; - libraryHaskellDepends = [ - base containers exceptions hashable mtl protolude resourcet - semigroupoids semigroups template-haskell text transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "data structure for assembling components"; - license = stdenv.lib.licenses.mit; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relapse" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "relapse"; - version = "1.0.0.0"; - sha256 = "65c68af5e3d18e67bd6f81ab62ea9cc271d8283d876f7baf1c4ee64515a9aa19"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iostat/relapse#readme"; - description = "Sensible RLP encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.12.1.0"; - sha256 = "33d12441a13c0480b40ca6377413e40b96141fb7da6205e8510adf49201dadd5"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-query-HDBC" = callPackage - ({ mkDerivation, base, containers, convertible, dlist, HDBC - , HDBC-session, names-th, persistable-record, product-isomorphic - , relational-query, relational-schemas, sql-words, stdenv - , template-haskell, th-data-compat, transformers - }: - mkDerivation { - pname = "relational-query-HDBC"; - version = "0.7.1.1"; - sha256 = "b30acd65cf9fc42e28188018435137ae29ef491b82e4dc5ece7c434b3a9eff51"; - libraryHaskellDepends = [ - base containers convertible dlist HDBC HDBC-session names-th - persistable-record product-isomorphic relational-query - relational-schemas sql-words template-haskell th-data-compat - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC instance of relational-query and typed query interface for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-record" = callPackage - ({ mkDerivation, base, persistable-record - , persistable-types-HDBC-pg, product-isomorphic, relational-query - , relational-query-HDBC, stdenv - }: - mkDerivation { - pname = "relational-record"; - version = "0.2.2.0"; - sha256 = "0bbd2663c394a39a7b3d9bcd257d91e3312be7f3c8df562b6868e82c0b96b3da"; - libraryHaskellDepends = [ - base persistable-record persistable-types-HDBC-pg - product-isomorphic relational-query relational-query-HDBC - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Meta package of Relational Record"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.6.2"; - sha256 = "5522efa683c5da8c37b09d2ebc636bc8d60804ed2372912ca7cc80793e45a7b0"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relude" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, mtl, stdenv, stm, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "relude"; - version = "0.4.0"; - sha256 = "2ec5f256d6813ad87c2fa00780b26e071e6ce917bbee1e5a0868690d5194e80f"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable mtl stm text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/relude"; - description = "Custom prelude from Kowainik"; - license = stdenv.lib.licenses.mit; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "repa" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "repa"; - version = "3.4.1.4"; - sha256 = "43607a5de4b89b8e58bfcbc261445d89fa40b685d43952797704b80d09e5a39e"; - revision = "3"; - editedCabalFile = "17hxj42cm82sac42by78jgbjjn5r3qv7n4919llaq17a2k1np0sw"; - libraryHaskellDepends = [ - base bytestring ghc-prim QuickCheck template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "High performance, regular, shape polymorphic parallel arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repa-algorithms" = callPackage - ({ mkDerivation, base, repa, stdenv, vector }: - mkDerivation { - pname = "repa-algorithms"; - version = "3.4.1.3"; - sha256 = "de586fe7e14e0e000da50022e2129cabfd47773ba7844753c535c982f20e0fae"; - revision = "1"; - editedCabalFile = "0lvb1sn95qca9m1b8cy0a2j9gjzqm8g5v68ykglffjskv78d0jfm"; - libraryHaskellDepends = [ base repa vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "Algorithms using the Repa array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repa-io" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, old-time, repa - , stdenv, vector - }: - mkDerivation { - pname = "repa-io"; - version = "3.4.1.1"; - sha256 = "b5dbca96a988fb8bd918288ea1cfcf215fe46062e45001b209603b63a39ba9da"; - revision = "4"; - editedCabalFile = "1lswfxmfn31gm2ayqwns9q9kpbad69scxpq6ybyzxkb9jd0jx4bl"; - libraryHaskellDepends = [ - base binary bmp bytestring old-time repa vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "Read and write Repa arrays in various formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, haskeline, mtl, process, stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.2.0.0"; - sha256 = "ecc72092d0340b896ee6bf96bf6645694dbcd33361725a2cd28c5ab5d60c02de"; - libraryHaskellDepends = [ base containers haskeline mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, data-default-class - , http-api-data, http-client, http-client-tls, http-types - , monad-control, mtl, retry, stdenv, text, time, transformers - , transformers-base - }: - mkDerivation { - pname = "req"; - version = "1.2.1"; - sha256 = "133da0f08c9c9b9331004bf6ec5955147aee46005ec1500aa13dcac45c940fe9"; - revision = "3"; - editedCabalFile = "1sbm2rk2q56gma2wja47q1rc8a2pizl8487g5z4fy1zynxm5inyj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection data-default-class http-api-data - http-client http-client-tls http-types monad-control mtl retry text - time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-url-extra" = callPackage - ({ mkDerivation, aeson, base, data-default-class, modern-uri, req - , stdenv, text - }: - mkDerivation { - pname = "req-url-extra"; - version = "0.1.0.0"; - sha256 = "b3de266ad49fb3c03ff26d589d89f81ddea7f319900b07e59843e57986d37d84"; - revision = "2"; - editedCabalFile = "0srj9fcbm9y8ddqgs8wc6caxamhgnic54y8qpxwnqdxrggdfkk67"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base modern-uri req ]; - executableHaskellDepends = [ - aeson base data-default-class modern-uri req text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/req-url-extra#readme"; - description = "Provides URI/URL helper functions for use with Req"; - license = stdenv.lib.licenses.mit; - }) {}; - "rerebase" = callPackage - ({ mkDerivation, rebase, stdenv }: - mkDerivation { - pname = "rerebase"; - version = "1.3.1"; - sha256 = "1e64f3ca012e42360862db2e329218c4a6b7796f119f8fa69d34053edffdcf1c"; - libraryHaskellDepends = [ rebase ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rerebase"; - description = "Reexports from \"base\" with a bunch of other standard libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.2"; - sha256 = "1323425aba3827479eb3588efaf7608b12a083327d64ec814f02863c3673cbe5"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, data-default-class, exceptions, ghc-prim - , random, stdenv, transformers - }: - mkDerivation { - pname = "retry"; - version = "0.7.7.0"; - sha256 = "3ccbc27a08ad0c7291342140f417cef11c2b11886586cc2bd870fa1e80cbd16c"; - libraryHaskellDepends = [ - base data-default-class exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc1751" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "rfc1751"; - version = "0.1.2"; - sha256 = "a345e81625ffbdf3d3dc1723d322133108a5fd9ba17fbfae6e954046cd2b9aca"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/rfc1751.git#readme"; - description = "RFC-1751 library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.4"; - sha256 = "615daa230eabc781eff1d3ce94c42fc5ba6188dbeb115a233328454b02c1b3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.8.0"; - sha256 = "a013dd04221a1a69d5f253379443b88495be305692c06f1a060f428e98dbf5e1"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-orphans" = callPackage - ({ mkDerivation, base, exceptions, fast-logger, monad-control - , monad-logger, resourcet, rio, stdenv, transformers-base - }: - mkDerivation { - pname = "rio-orphans"; - version = "0.1.1.0"; - sha256 = "7e8d2c6df6e7afdbca5b344c6e57c754e2d6b9c0cfb4f00e1df88dad1bd48b4e"; - libraryHaskellDepends = [ - base exceptions fast-logger monad-control monad-logger resourcet - rio transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "Orphan instances for the RIO type in the rio package"; - license = stdenv.lib.licenses.mit; - }) {}; - "rng-utils" = callPackage - ({ mkDerivation, base, bytestring, random, stdenv }: - mkDerivation { - pname = "rng-utils"; - version = "0.3.0"; - sha256 = "0886acb1e0ae6c6ad5f594a9d4d57ea5af69c566ccc5763d0b7c690963e946ba"; - libraryHaskellDepends = [ base bytestring random ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/soostone/rng-utils"; - description = "RNG within an IORef for convenient concurrent use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roc-id" = callPackage - ({ mkDerivation, base, MonadRandom, Only, stdenv, text - , vector-sized - }: - mkDerivation { - pname = "roc-id"; - version = "0.1.0.0"; - sha256 = "3144d7edc22fc5816b38fa356811417125572d062e07d23d8319466c68868429"; - libraryHaskellDepends = [ - base MonadRandom Only text vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonathanknowles/roc-id#readme"; - description = "Implementation of the ROC National ID standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rocksdb-haskell" = callPackage - ({ mkDerivation, base, binary, bytestring, data-default, directory - , filepath, resourcet, rocksdb, stdenv, transformers - }: - mkDerivation { - pname = "rocksdb-haskell"; - version = "1.0.1"; - sha256 = "b8407c933f503c2e21578a558b829288917f0f6f5ff7c32229cf5b11abed4dff"; - libraryHaskellDepends = [ - base binary bytestring data-default directory filepath resourcet - transformers - ]; - librarySystemDepends = [ rocksdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/serokell/rocksdb-haskell"; - description = "Haskell bindings to RocksDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) rocksdb;}; - "rocksdb-query" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , rocksdb-haskell, stdenv, unliftio - }: - mkDerivation { - pname = "rocksdb-query"; - version = "0.2.0"; - sha256 = "8e2d645542c98fd69fa73c136d2aa4bba574354c3121bc7b461d367a17fdc206"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet rocksdb-haskell unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/rocksdb-query#readme"; - description = "RocksDB database querying library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rosezipper" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "rosezipper"; - version = "0.2"; - sha256 = "6cab4f1c192cc3b8b0a9eb11a32780d235020a539a0e91125eed5ec590bad7bc"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Generic zipper implementation for Data.Tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rounded" = callPackage - ({ mkDerivation, base, ghc-prim, gmp, hgmp, long-double, mpfr - , reflection, singletons, stdenv - }: - mkDerivation { - pname = "rounded"; - version = "0.1.0.1"; - sha256 = "9abeea23692dd57e879eda210308ef5ef213169b4cb9e4e6c13de02d52a04b11"; - libraryHaskellDepends = [ - base ghc-prim hgmp long-double reflection singletons - ]; - librarySystemDepends = [ gmp mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/rounded"; - description = "Correctly-rounded arbitrary-precision floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gmp; inherit (pkgs) mpfr;}; - "rpmbuild-order" = callPackage - ({ mkDerivation, base, Cabal, containers, directory - , explicit-exception, fgl, filepath, process, stdenv, transformers - }: - mkDerivation { - pname = "rpmbuild-order"; - version = "0.2.1"; - sha256 = "b66d6078e82da6c2becf1e0082fb0f17e5a8a0052d95442dc3b0b63915a6a082"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory explicit-exception fgl filepath - process transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/rpmbuild-order"; - description = "Order RPM packages by dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "runmemo" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "runmemo"; - version = "1.0.0.1"; - sha256 = "ba5ef3177f8fe5f443808e44f62d03b23ac19bbef7f708e40532031a3505d689"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/runmemo"; - description = "A simple memoization helper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rvar" = callPackage - ({ mkDerivation, base, MonadPrompt, mtl, random-source, stdenv - , transformers - }: - mkDerivation { - pname = "rvar"; - version = "0.2.0.3"; - sha256 = "d78aaf2ffdba182dda95d1692fec7abc5d77fa371120618a397b5675438c6bc0"; - revision = "1"; - editedCabalFile = "1ifwwjlhc3l8ycjmmarw6v1nm7jxpgqw2ly0q35idlj0jc0nbxn6"; - libraryHaskellDepends = [ - base MonadPrompt mtl random-source transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random Variables"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "s3-signer" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, byteable - , bytestring, case-insensitive, cryptohash, http-types, stdenv - , time, utf8-string - }: - mkDerivation { - pname = "s3-signer"; - version = "0.5.0.0"; - sha256 = "d73671d5bda0f5f627bbd876916341985c281c3572e6f8406cdf2f14ed9188e4"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder byteable bytestring - case-insensitive cryptohash http-types time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmjio/s3-signer"; - description = "Pre-signed Amazon S3 URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.17"; - sha256 = "79c5c41e7151906969133ea21af9f7e8d25c18315886e23d0bdf6faa8b537e5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-foldable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe-foldable"; - version = "0.1.0.0"; - sha256 = "ca7f2ecc0e799c239df8ce56e8592fb8b8264c229ab4e1c66e0f821d299007d1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/safe-foldable#readme"; - description = "Safe wrappers for null-partial Foldable operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , old-time, stdenv, template-haskell, text, time, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.9.4.3"; - sha256 = "787db1a56b7024ab5619b4f25af5379133f5f2a5e1a0657e66c8dfac1a131f08"; - revision = "1"; - editedCabalFile = "060yxbk2fy5gddnpf6kxppc9fwkhiyldm39bj7873wggnpdc2xds"; - libraryHaskellDepends = [ - array base bytestring cereal containers old-time template-haskell - text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak" = callPackage - ({ mkDerivation, aeson, attoparsec, base, containers, data-default - , directory, filepath, menshen, mtl, pqueue, scientific, stdenv - , text, transformers, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "salak"; - version = "0.1.11"; - sha256 = "37d4e31ddfe3f3ebe211b5b9aaaabf7a368b0f04b4ab19dc15fff3f29ada860e"; - revision = "1"; - editedCabalFile = "07kc597knphisx7zfni9vbhm9xm1v5p2k5sppyib528a2iarcf4v"; - libraryHaskellDepends = [ - aeson attoparsec base containers data-default directory filepath - menshen mtl pqueue scientific text transformers - unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration Loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.2"; - sha256 = "fd989db905f3e1d742b9fcb9501d6483ffa82620e287cf51b62e0d6d2caaa308"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.6"; - sha256 = "32c8bb50cc20360cb48751d810cac117a6b4fb83c39cf50287c61ef13c90f7ed"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "sandman" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , optparse-applicative, process, stdenv, text, unix-compat - }: - mkDerivation { - pname = "sandman"; - version = "0.2.0.1"; - sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory filepath optparse-applicative - process text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/sandman#readme"; - description = "Manages Cabal sandboxes to avoid rebuilding packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.1"; - sha256 = "f639656fc21925c45f3f55769b9fb7a90699e943376a725e215a5deea473b3e4"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Send textual messages to a Handle in a thread-friendly way"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring - , basic-prelude, binary, binary-conduit, bytestring, conduit - , conduit-extra, data-binary-ieee754, lens, lens-aeson, monad-loops - , resourcet, stdenv, template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.4.7"; - sha256 = "23a61062218ffbc724f61f3e08cfb2686aab6a44bada04aa5cf4abf7252962c6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson base basic-prelude binary-conduit bytestring conduit - conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "sbv" = callPackage - ({ mkDerivation, array, async, base, containers, crackNum, deepseq - , directory, filepath, generic-deriving, ghc, mtl, pretty, process - , QuickCheck, random, stdenv, syb, template-haskell, time - }: - mkDerivation { - pname = "sbv"; - version = "7.13"; - sha256 = "33bafb18a6d7476aeb3fb215077154cd4ad36fa0359c5b184a9a2ccb3500642e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array async base containers crackNum deepseq directory filepath - generic-deriving ghc mtl pretty process QuickCheck random syb - template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://leventerkok.github.com/sbv/"; - description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scalpel" = callPackage - ({ mkDerivation, base, bytestring, curl, data-default, scalpel-core - , stdenv, tagsoup, text - }: - mkDerivation { - pname = "scalpel"; - version = "0.5.1"; - sha256 = "20df66433570a2ca754f14058a47fb00519d9a75bb822fc3fd1769a83c608b0d"; - libraryHaskellDepends = [ - base bytestring curl data-default scalpel-core tagsoup text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scalpel-core" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, fail - , regex-base, regex-tdfa, stdenv, tagsoup, text, vector - }: - mkDerivation { - pname = "scalpel-core"; - version = "0.5.1"; - sha256 = "8c05b86853b737fbed4144dc9c7bbb7743525c305f9529f59776df97bfe229a9"; - libraryHaskellDepends = [ - base bytestring containers data-default fail regex-base regex-tdfa - tagsoup text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scanf" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "scanf"; - version = "0.1.0.0"; - sha256 = "5675132f172ab4ed460f440df21e203c09457c2fff34fb6a389129a9da78c375"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/scanf#readme"; - description = "Easy and type-safe format strings for parsing and printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.3"; - sha256 = "a7f85147b59e443dbd986c1f880a0c3ab0190ba7b27c2ce6238da07397fd507b"; - revision = "1"; - editedCabalFile = "1v64k5jn70ipv2yi81b0s8lkpdd8hx08gdix0ixnpfqdpkj7pzx2"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.3"; - sha256 = "0a9c8adb7d5f66ca3ba9e866aed52b87d940e4b8f1fc8f8aca9c663ac304a790"; - revision = "3"; - editedCabalFile = "1qb9npk43fmlb1ck77bd575h851zwgncjiwf0fkyz6apx47dbmm6"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.4.1.0"; - sha256 = "21a569c0c19f8ff2bbe1cf1d3eb32f65e8143806de353cedd240df5e9d088b5c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.4+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "secp256k1-haskell" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cereal - , entropy, hashable, QuickCheck, secp256k1, stdenv - , string-conversions - }: - mkDerivation { - pname = "secp256k1-haskell"; - version = "0.1.4"; - sha256 = "741c9f3d51d4a9fc89c991734f71735f46dffd900f550d5d8564aebc1db0cbed"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cereal entropy hashable - QuickCheck string-conversions - ]; - librarySystemDepends = [ secp256k1 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; - description = "Bindings for secp256k1 library from Bitcoin Core"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) secp256k1;}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, exceptions, hashable, mtl - , psqueues, stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "selda"; - version = "0.3.4.0"; - sha256 = "92238cfd3a557f68ccf0cb6edafa4981a5c67c91f85d471c83ba55eec1d884f3"; - libraryHaskellDepends = [ - base bytestring exceptions hashable mtl psqueues text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-postgresql" = callPackage - ({ mkDerivation, base, bytestring, exceptions, postgresql-libpq - , selda, stdenv, text - }: - mkDerivation { - pname = "selda-postgresql"; - version = "0.1.7.3"; - sha256 = "ec33d2efedc5a9bf81a2acb726e866c4978c96a6ce92e313f0b83aa49b812d2b"; - revision = "2"; - editedCabalFile = "1zrj412hkjjka4cvl5zj6gdpvdafmcny6xighi1glg67n8cmpb67"; - libraryHaskellDepends = [ - base bytestring exceptions postgresql-libpq selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "PostgreSQL backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-sqlite" = callPackage - ({ mkDerivation, base, direct-sqlite, directory, exceptions, selda - , stdenv, text - }: - mkDerivation { - pname = "selda-sqlite"; - version = "0.1.6.1"; - sha256 = "8d60dec5376d99b30939e8d6a2d1fbc3363b7cdb12834a27a31f73c73e7e19e3"; - revision = "2"; - editedCabalFile = "0gb8raqmy8r8xwjpx238mqar5gdfd4194si2ms1a9ndcrilkkqja"; - libraryHaskellDepends = [ - base direct-sqlite directory exceptions selda text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "SQLite backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.3.2"; - sha256 = "61a8213df437ee96a20b1c6dec8b5c573e4e0f338eb2061739a67f471d6b9d05"; - revision = "1"; - editedCabalFile = "1r88pi1bvc1w0nys810p3drra6na02zhbaf257dl4lyxl8iv5466"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable tagged template-haskell transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.5"; - sha256 = "ab2a96af6e81e31b909c37ba65f436f1493dbf387cfe0de10b6586270c4ce29d"; - revision = "1"; - editedCabalFile = "1inqcxrzzs8xz60pvbmznyi6g6xwzpxv7p6dqlcwariz31grzvs1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semirings" = callPackage - ({ mkDerivation, base, containers, hashable, integer-gmp, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "semirings"; - version = "0.2.1.1"; - sha256 = "576a5b09e8b0045e13fab04f5a53eaead69c5b0bca99e3cdfff88be90cc64868"; - libraryHaskellDepends = [ - base containers hashable integer-gmp unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chessai/semirings"; - description = "two monoids as one, in holy haskimony"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, stdenv, text }: - mkDerivation { - pname = "semver"; - version = "0.3.3.1"; - sha256 = "36d3369706836d60f3bc517f30c6860734481866363723904b8768823b6bc8b1"; - libraryHaskellDepends = [ attoparsec base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.10"; - sha256 = "4b9199354bfb2931602b90b7a7edf32accba84a53667f062d423604d0caecef2"; - revision = "1"; - editedCabalFile = "08k4clhyfa4h5ja9bz1mzg2wdx5337cg8bxd6lz25781f65llq7d"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "serialise" = callPackage - ({ mkDerivation, array, base, bytestring, cborg, containers - , ghc-prim, half, hashable, primitive, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "serialise"; - version = "0.2.1.0"; - sha256 = "043efc1130b4202f080c5b7d2c319098df032b060655d8193f1fcdbfa3f159a5"; - revision = "1"; - editedCabalFile = "1rknhad1i8bpknsnphmcmb6dnb48c2p2c13ia2qqch3hkhsvfpr6"; - libraryHaskellDepends = [ - array base bytestring cborg containers ghc-prim half hashable - primitive text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A binary serialisation library for Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors - , bytestring, Cabal, cabal-doctest, case-insensitive, http-api-data - , http-media, http-types, mmorph, mtl, network-uri, QuickCheck - , singleton-bool, stdenv, string-conversions, tagged, text - , transformers, vault - }: - mkDerivation { - pname = "servant"; - version = "0.15"; - sha256 = "4f3f35c9c0f5e4ee8c2d10c9113ac4a6409a4d57759137e68f43588f5e6bfa39"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bifunctors bytestring - case-insensitive http-api-data http-media http-types mmorph mtl - network-uri QuickCheck singleton-bool string-conversions tagged - text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-JuicyPixels" = callPackage - ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant - , servant-server, stdenv, wai, warp - }: - mkDerivation { - pname = "servant-JuicyPixels"; - version = "0.3.0.4"; - sha256 = "7b02f00ac8b78ffda49a96f2d1f39619ec19f244822d177928e75cd533cb9981"; - revision = "1"; - editedCabalFile = "185ym0ac6gx7f98pd92ykc1ib305lswzjzvykly4ij9vk85jn0ax"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-media JuicyPixels servant - ]; - executableHaskellDepends = [ - base JuicyPixels servant servant-server wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/servant-JuicyPixels"; - description = "Servant support for JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "servant-auth"; - version = "0.3.2.0"; - sha256 = "7bb4d5118c072cb3845aaba4287b2d5e34e5ccca96916895456a828bf7a9418b"; - revision = "2"; - editedCabalFile = "06jpxqz5444k19p1n4i4yf2pvql37w9ngssp1grxl42dxk2bcg94"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "Authentication combinators for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-client" = callPackage - ({ mkDerivation, base, bytestring, containers, servant - , servant-auth, servant-client-core, stdenv, text - }: - mkDerivation { - pname = "servant-auth-client"; - version = "0.3.3.0"; - sha256 = "490ac57150b59c567ef567120a6704cfc2184f7be8e6edaab26ad818dee5b3df"; - revision = "3"; - editedCabalFile = "1kzyqd9hg7xld5s8qpm76l9ym48z81j6ycdwp3lb0f1p2d3aagcd"; - libraryHaskellDepends = [ - base bytestring containers servant servant-auth servant-client-core - text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-client/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-docs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, servant - , servant-auth, servant-docs, stdenv, text - }: - mkDerivation { - pname = "servant-auth-docs"; - version = "0.2.10.0"; - sha256 = "adf3c33ce4134a78ae7a5c06092ea5812c99d4b942ff2dd685995eb3b2b53e48"; - revision = "4"; - editedCabalFile = "1dvwkaihrm7dc2zdrqqvc0j7zmij487klrmsggsdiid7y68nyrqh"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens servant servant-auth servant-docs text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-docs/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-server" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cookie, data-default-class, entropy - , http-types, jose, lens, memory, monad-time, mtl, servant - , servant-auth, servant-server, stdenv, tagged, text, time - , unordered-containers, wai - }: - mkDerivation { - pname = "servant-auth-server"; - version = "0.4.4.0"; - sha256 = "2c14fcf628c95efaca64251db2e9a368ce06cb471d7f3d622e22ac6aa732298c"; - revision = "1"; - editedCabalFile = "1wxiakkcx7d0j6zasjd84y7k98j94sy5nkj0vngjpd2jzlv79bb0"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cookie data-default-class entropy http-types jose - lens memory monad-time mtl servant servant-auth servant-server - tagged text time unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-server/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-swagger" = callPackage - ({ mkDerivation, base, lens, servant, servant-auth, servant-swagger - , stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-auth-swagger"; - version = "0.2.10.0"; - sha256 = "50a783639eb882fd5047d69245f7770817658814d8c409b547ebdddae05acd12"; - revision = "3"; - editedCabalFile = "087faa5bg2hlxyhg7jzy2jj4fzs3dkp0znsbabrharcvdlkpqj1r"; - libraryHaskellDepends = [ - base lens servant servant-auth servant-swagger swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-swagger/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.8"; - sha256 = "46ea88550123d765b2d09073370d0530a51878e7fdf2cf20b070be1f2f10ae94"; - revision = "2"; - editedCabalFile = "1cfla60vn4kk5gb7fawlp34jr2k6b2fprysq05561wdfv990x4bj"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-media - , http-types, profunctors, servant, servant-checked-exceptions-core - , servant-client, servant-client-core, servant-docs, servant-server - , stdenv, tagged, text, wai, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions"; - version = "2.0.0.0"; - sha256 = "a7f282857e56d5d1a59d055cf1936cab96a2cdc2f94a79ff736f7ef1cf56f688"; - revision = "1"; - editedCabalFile = "0h18x8gimmczgml4rj74kx3463pwrsyxl2vnd13ra5hj0q44d683"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-media http-types profunctors - servant servant-checked-exceptions-core servant-client - servant-client-core servant-docs servant-server tagged text wai - world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-media - , http-types, profunctors, servant, servant-docs, stdenv, tagged - , text, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions-core"; - version = "2.0.0.0"; - sha256 = "aad3513403241bb06aadc605e6af88a5f3aaa0f1f208aafed6d69e15a23ab248"; - revision = "1"; - editedCabalFile = "1q2y4cri4h33cfdpgz95dczhvhmyrqajm7k6ypl3b8rw953qlzy7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-media http-types profunctors - servant servant-docs tagged text world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, deepseq - , exceptions, http-client, http-media, http-types, kan-extensions - , monad-control, mtl, semigroupoids, servant, servant-client-core - , stdenv, stm, text, time, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.15"; - sha256 = "2a6c731a479f68ea8f7fe3e124b8b87d14ca9c385ed0751a70461a3c59540a25"; - revision = "1"; - editedCabalFile = "1h3j8mpnrbpc1i4appf8g4zn7h30f6ybg6fg3w057kz18bk9y76f"; - libraryHaskellDepends = [ - base base-compat bytestring containers deepseq exceptions - http-client http-media http-types kan-extensions monad-control mtl - semigroupoids servant servant-client-core stm text time - transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatic derivation of querying functions for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, containers, deepseq, exceptions, free, generics-sop - , http-media, http-types, network-uri, safe, servant, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.15"; - sha256 = "9b8e49e5e3cdda9216c393164e7c4b6d693bb159959dd52648f27f7adbca7960"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring bytestring containers - deepseq exceptions free generics-sop http-media http-types - network-uri safe servant template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, mtl, resourcet, servant - , stdenv, unliftio-core - }: - mkDerivation { - pname = "servant-conduit"; - version = "0.15"; - sha256 = "dfd115301f29fd517cab6805211b8d10d4bdcf1cc5eb399aebb9124d199ef656"; - revision = "3"; - editedCabalFile = "0adximf4hg3bf7d9mkcjdsp5klg787ryb1hy3j49fg39l1rszac4"; - libraryHaskellDepends = [ - base bytestring conduit mtl resourcet servant unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, control-monad-omega, hashable, http-media - , http-types, lens, servant, stdenv, string-conversions, text - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.3"; - sha256 = "07eb88550b5a5354aed4bfe74f0e4099e17fae99477e0db83a072b50070cda33"; - revision = "3"; - editedCabalFile = "0hknxp6vxjmc6d4acwfs8ic9n915ldldz4ja8d86pzwv8vh5jzfv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - control-monad-omega hashable http-media http-types lens servant - string-conversions text unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-elm" = callPackage - ({ mkDerivation, base, elm-export, lens, servant, servant-foreign - , stdenv, text, wl-pprint-text - }: - mkDerivation { - pname = "servant-elm"; - version = "0.5.0.0"; - sha256 = "d9d96eeaf209f93791f3c81a5b2afad7be443f9af29f362ec17661436895b950"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base elm-export lens servant servant-foreign text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mattjbray/servant-elm#readme"; - description = "Automatically derive Elm functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-exceptions" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-media, http-types - , mtl, servant, servant-server, stdenv, text, wai, warp - }: - mkDerivation { - pname = "servant-exceptions"; - version = "0.1.1"; - sha256 = "652b9fdc463200ebb8c2b2e0757f9d90662408bf45a657b3f719d0a36d34abe1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base exceptions http-media http-types mtl servant - servant-server text wai - ]; - executableHaskellDepends = [ - aeson base exceptions http-types servant-server text warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ch1bo/servant-exceptions#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.15"; - sha256 = "f1197f1319a735b37c5fdd991556bf34b780a9b87d0e57d936a42ae6734bbd73"; - revision = "2"; - editedCabalFile = "0axz78g0vhasq5cvqg1lq0b2qanmb768f1bvzbfx58rn6arwflnj"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-js" = callPackage - ({ mkDerivation, base, base-compat, charset, lens, servant - , servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-js"; - version = "0.9.4"; - sha256 = "f86ba73d38644a74ccec50c378df66ab4863664e83359b8866cf17fbf08b3c10"; - revision = "2"; - editedCabalFile = "1x7f0dbqgzlwzmr20l6hln4s86kblak4j9h0p9igcqibmplc70zn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat charset lens servant servant-foreign text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatically derive javascript functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-kotlin" = callPackage - ({ mkDerivation, base, containers, directory, formatting, lens - , servant, servant-foreign, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "servant-kotlin"; - version = "0.1.1.7"; - sha256 = "a4c5fd6a8e898c16d70060f2f1c2338c15e7e23a51eba6b243c32b61e5e81d8d"; - libraryHaskellDepends = [ - base containers directory formatting lens servant servant-foreign - text time wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/servant-kotlin#readme"; - description = "Automatically derive Kotlin class to query servant webservices"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv, text }: - mkDerivation { - pname = "servant-lucid"; - version = "0.8.1"; - sha256 = "6671d5d5e29b05911bb8855f42168839c2dbb8ee113a10cef6dd372fc267113d"; - revision = "1"; - editedCabalFile = "0jna96jy6nmhk6w5zxdd3qn3vlrnhnvh4s3f2bqkn3c0had5py7d"; - libraryHaskellDepends = [ base http-media lucid servant text ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.5"; - sha256 = "ae547026ddc5d15bec0af9ea9324954f88dd605cae0775c81c45b1723dc77b81"; - revision = "3"; - editedCabalFile = "1137vz9xm8iwj6x8h1q1yify6c1lahy0dxj6hpbhgi4s3mqkhm2g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pandoc" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-media - , lens, pandoc-types, servant-docs, stdenv, string-conversions - , text, unordered-containers - }: - mkDerivation { - pname = "servant-pandoc"; - version = "0.5.0.0"; - sha256 = "12d709fced47bb3e017b83dcc5dafb1186720e5318c1b5ebeb886d4439540463"; - libraryHaskellDepends = [ - base bytestring case-insensitive http-media lens pandoc-types - servant-docs string-conversions text unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Use Pandoc to render servant API documentation"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-rawm" = callPackage - ({ mkDerivation, base, bytestring, filepath, http-client - , http-media, http-types, lens, resourcet, servant-client - , servant-client-core, servant-docs, servant-server, stdenv, wai - , wai-app-static - }: - mkDerivation { - pname = "servant-rawm"; - version = "0.3.0.0"; - sha256 = "e9feee415891b8db2c1c032d6a4b934522354bc9cb2491b0ee59f989e94b6a27"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring filepath http-client http-media http-types lens - resourcet servant-client servant-client-core servant-docs - servant-server wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-rawm"; - description = "Embed a raw 'Application' in a Servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-ruby" = callPackage - ({ mkDerivation, base, casing, servant-foreign, stdenv, text }: - mkDerivation { - pname = "servant-ruby"; - version = "0.9.0.0"; - sha256 = "63787834369f2fce2216af3a38157af9370a0e4d02965ccd407ec493a62127f4"; - libraryHaskellDepends = [ base casing servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joneshf/servant-ruby#readme"; - description = "Generate a Ruby client from a Servant API with Net::HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, Cabal, cabal-doctest, containers, exceptions - , filepath, http-api-data, http-media, http-types, monad-control - , mtl, network, network-uri, resourcet, servant, stdenv - , string-conversions, tagged, text, transformers, transformers-base - , wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.15"; - sha256 = "98034e618ff844f18dbedeb663e1a88a87ce3bc3792e9a40d7e17ca1e96b93e2"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - filepath http-api-data http-media http-types monad-control mtl - network network-uri resourcet servant string-conversions tagged - text transformers transformers-base wai wai-app-static word8 - ]; - executableHaskellDepends = [ - aeson base base-compat servant text wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.2.0"; - sha256 = "5bec0129407580bde3b5bc49fc75737c916b6eaf0ea421bf72f5bf029342741b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-streaming" = callPackage - ({ mkDerivation, base, http-types, servant, stdenv }: - mkDerivation { - pname = "servant-streaming"; - version = "0.3.0.0"; - sha256 = "980d486577658697891360479195ed493859e2279f76334101a45c880f7c5a4c"; - revision = "3"; - editedCabalFile = "04mc3k97sk0r90m8ca34gqpb2bz8yljp3j613xx7xz90sffqc1hq"; - libraryHaskellDepends = [ base http-types servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plow-technologies/servant-streaming#readme"; - description = "Servant combinators for the 'streaming' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , Cabal, cabal-doctest, hspec, http-media - , insert-ordered-containers, lens, QuickCheck, servant - , singleton-bool, stdenv, swagger2, text, unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.7"; - sha256 = "e31a1020553c2879047e7d15cd1b57b4ec216606554fdecd62e0f4521e81de36"; - revision = "2"; - editedCabalFile = "1crl8c71ns8mnp056ba1zph57cf1l4dajbgw07gpcw2cvni6x560"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring hspec http-media - insert-ordered-containers lens QuickCheck servant singleton-bool - swagger2 text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate a Swagger/OpenAPI/OAS 2.0 specification for your servant API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.2.3.19.3"; - sha256 = "87ddb5982ce6b12698f9eff28b5d6fc2ebd00cb406bd48c8d0ff1951a1335e68"; - revision = "2"; - editedCabalFile = "1p16lixhl9dbv3xlxpzy784a68xqnhvy91wyl5y183kixjniyf6f"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3.2"; - sha256 = "a2cd0e8e68c5de21aea54735f891c4c6e54007c85e93dffd42b89aba419a3ca8"; - revision = "4"; - editedCabalFile = "0vvfqf9zh8a5sgd4sn4mkay803lqc5zd9dz175gxs3wmca0gr3fk"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-redoc" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui-redoc"; - version = "0.3.2.1.22.2"; - sha256 = "e09919e7518f8f5b00868eac0c4f80212b5a4950d2c10112696f52446e369934"; - revision = "2"; - editedCabalFile = "160acp4hvwm4m42kx275qr1nkg9s7bjxlk61agvm45hi3lg0lm6f"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui: ReDoc theme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-tracing" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, bytestring-lexing - , containers, hashable, http-api-data, http-client, lifted-base - , monad-control, mtl, random, servant, servant-server, stdenv, text - , time, transformers, unordered-containers, wai, warp - }: - mkDerivation { - pname = "servant-tracing"; - version = "0.1.0.2"; - sha256 = "3edf2e58c60b6624a81c57bbc606889d779ba0cc57fc785240cb353f9caaea62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring bytestring-lexing containers hashable - http-api-data http-client lifted-base monad-control mtl random - servant servant-server text time unordered-containers wai - ]; - executableHaskellDepends = [ - async base bytestring containers http-client lifted-base - monad-control mtl servant servant-server text transformers wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/haskell-opentracing-light#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-websockets" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, conduit - , exceptions, resourcet, servant-server, stdenv, text, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-websockets"; - version = "1.1.0"; - sha256 = "63384c89db83bd03e00f2f6796c391fc133ffb3c2bc72976778d476ed82f0a51"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring conduit exceptions resourcet - servant-server text wai wai-websockets warp websockets - ]; - executableHaskellDepends = [ - aeson base conduit servant-server text wai warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/moesenle/servant-websockets#readme"; - description = "Small library providing WebSocket endpoints for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.1"; - sha256 = "01547419509cd0424885146734c08acede329a660022f534ac9b19cc685bf601"; - revision = "4"; - editedCabalFile = "0k9jg3vf0p1332243mji4lzm3lk3frsmxxlz6lgg68rwh3baz6f0"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serverless-haskell" = callPackage - ({ mkDerivation, aeson, aeson-casing, aeson-extra, amazonka-core - , amazonka-kinesis, amazonka-s3, base, bytestring, case-insensitive - , http-types, iproute, lens, network, network-simple, stdenv, text - , time, unix, unordered-containers - }: - mkDerivation { - pname = "serverless-haskell"; - version = "0.8.7"; - sha256 = "02f3f53a27962e1b2283d3c0bcabe406cd49245b5994aacb964a9462ac91e360"; - libraryHaskellDepends = [ - aeson aeson-casing aeson-extra amazonka-core amazonka-kinesis - amazonka-s3 base bytestring case-insensitive http-types iproute - lens network network-simple text time unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seek-oss/serverless-haskell#readme"; - description = "Deploying Haskell code onto AWS Lambda using Serverless"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "servius" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , cmark-gfm, http-types, shakespeare, stdenv, text, wai - , wai-app-static - }: - mkDerivation { - pname = "servius"; - version = "1.2.3.0"; - sha256 = "72c4b63e85df0cb51935bec85e31d44c6ee5cafd0015bd5e6ff44286e9e18b27"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base blaze-builder blaze-html bytestring cmark-gfm http-types - shakespeare text wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/servius#readme"; - description = "Warp web server with template rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "ses-html" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, byteable - , bytestring, cryptohash, HsOpenSSL, http-streams, stdenv, tagsoup - , time - }: - mkDerivation { - pname = "ses-html"; - version = "0.4.0.0"; - sha256 = "cff76ee03b538e69a3d107cd63d577210cf0f9879d470bf55519e887e2a8a08f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html byteable bytestring cryptohash - HsOpenSSL http-streams tagsoup time - ]; - doHaddock = false; - doCheck = false; - description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.8"; - sha256 = "6dd148e47714707c311d20af606284ab392392a84ffb71da4004010e67d5b969"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/IchUndNichtDu/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, filepath, filepattern, hashable, heaps, js-dgtable - , js-flot, js-jquery, primitive, process, random, stdenv, time - , transformers, unix, unordered-containers, utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.17.8"; - sha256 = "ade4162f7540f044f0446981120800076712d1f98d30c5b5344c0f7828ec49a2"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath filepattern - hashable heaps js-dgtable js-flot js-jquery primitive process - random time transformers unix unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra filepath filepattern - hashable heaps js-dgtable js-flot js-jquery primitive process - random time transformers unix unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake-language-c" = callPackage - ({ mkDerivation, base, data-default-class, fclabels, process, shake - , split, stdenv, unordered-containers - }: - mkDerivation { - pname = "shake-language-c"; - version = "0.12.0"; - sha256 = "661e350179e55c930c3c36f53853db2bc2697d88c5265049085cea09f5aa1ab0"; - libraryHaskellDepends = [ - base data-default-class fclabels process shake split - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/samplecount/shake-language-c"; - description = "Utilities for cross-compiling with Shake"; - license = stdenv.lib.licenses.asl20; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.20"; - sha256 = "f50ebff8e585851a1e3af36885d6a6d1218b19dcde1d7459f02272d6925d9e03"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shared-memory" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "shared-memory"; - version = "0.2.0.0"; - sha256 = "266739418194429f0e3a316decd28bf15ae8cc4ce2e1e19c523dc92b3f023abc"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/shared-memory"; - description = "POSIX shared memory"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, lifted-async, lifted-base - , monad-control, mtl, process, stdenv, system-fileio - , system-filepath, text, time, transformers, transformers-base - , unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.8.0"; - sha256 = "737f51e5f4d98d72012d905d3f2b78b620c5c15292bb77e38264fa4478bb08f8"; - revision = "1"; - editedCabalFile = "17achybammxg5i7zcmwlfcb7xk77q3lfvck3gqa9ljfb6ksgrxb7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions lifted-async lifted-base monad-control mtl process - system-fileio system-filepath text time transformers - transformers-base unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shikensu" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, filepath, flow - , Glob, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "shikensu"; - version = "0.3.11"; - sha256 = "69f59f067522715a86f60bf4e60f9597bc1243e50d204b99b31e89e8e8c63010"; - libraryHaskellDepends = [ - aeson base bytestring directory filepath flow Glob text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/icidasset/shikensu#readme"; - description = "Run a sequence of functions on in-memory representations of files"; - license = stdenv.lib.licenses.mit; - }) {}; - "shortcut-links" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "shortcut-links"; - version = "0.4.2.1"; - sha256 = "0d36ecfabc8e2d3a4c0015b521b6cb8efa8469bbd518a509326f07a3aa24deff"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/shortcut-links"; - description = "Link shortcuts for use in text markup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.1.0"; - sha256 = "d53abf2b289a3075555f1ede76f5beba0fadce352cd94efbad610bc1eb76020a"; - revision = "1"; - editedCabalFile = "1zr6xw4fvgx187yiqy7n0r9mnasyv1hxg2q9xzw3lmsf4z3xz6y7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "show-prettyprint" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, prettyprinter, stdenv - , trifecta - }: - mkDerivation { - pname = "show-prettyprint"; - version = "0.2.3"; - sha256 = "ed92c28a7ecdebfa27f27f4ac3df78df9fc88045d8e55497f6d43773ff0a8f07"; - libraryHaskellDepends = [ - ansi-wl-pprint base prettyprinter trifecta - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/show-prettyprint#readme"; - description = "Robust prettyprinter for output of auto-generated Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siggy-chardust" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "siggy-chardust"; - version = "1.0.0"; - sha256 = "9f730c3cc04ea629e0b655bfff66f83e146eb3b9f0908d5dc00b4c558d5f5a43"; - revision = "1"; - editedCabalFile = "1lknm1jr6h5qpixc727aj3zbmj4ia21r9lb8gzj50iildgmfk33b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/siggy-chardust#readme"; - description = "Rounding rationals to significant digits and decimal places"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5"; - sha256 = "cef625635053a46032ca53b43d311921875a437910b6568ded17027fdca83839"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, unix - }: - mkDerivation { - pname = "simple-cmd"; - version = "0.1.4"; - sha256 = "2f277fce90118ab71693c0dac103ddcbf8ebb42d248ae0b00a438cda1660c3bc"; - libraryHaskellDepends = [ base directory filepath process unix ]; - doHaddock = false; - doCheck = false; - description = "Simple String-based process commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd-args" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv }: - mkDerivation { - pname = "simple-cmd-args"; - version = "0.1.1"; - sha256 = "9fc6e9d759a75e0ae308673f1de803274389c50339895d60c21e25fcb042ef65"; - revision = "1"; - editedCabalFile = "127m5x1k5c5ymxcxlbhjghlymdyci847qxq1ydfd8sf2m4qc4ffq"; - libraryHaskellDepends = [ base optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cmd-args"; - description = "Simple command args parsing and execution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-log" = callPackage - ({ mkDerivation, async, base, base-unicode-symbols, containers - , data-default, deepseq, directory, exceptions, filepath, hformat - , microlens, microlens-platform, mmorph, mtl, SafeSemaphore, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "simple-log"; - version = "0.9.11"; - sha256 = "533200932d552a04b3ba7689299c00161542f61683eec516868071cb2e5b11d7"; - libraryHaskellDepends = [ - async base base-unicode-symbols containers data-default deepseq - directory exceptions filepath hformat microlens microlens-platform - mmorph mtl SafeSemaphore text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/simple-log"; - description = "Simple log for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.28"; - sha256 = "a9800b79d41c3896181c93b3805135440bca31b5524a33303b7e32aa1bb29870"; - revision = "2"; - editedCabalFile = "16pyj7b4i1dzpzqbarzjamcjdyiy8j6lh5vf1ggchx69x44dqcr3"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.4.0.10"; - sha256 = "141788c133a8602825d0f2267e6a87e01e1cedb4f3fc0f1a1cc1203fde4ad937"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.4"; - sha256 = "0195c6e2be1e149e5b687ec3be84fd5089b377345fddd333a9d681eacdfafb2a"; - revision = "1"; - editedCabalFile = "0ccd49z9xwa8gr8sclmmn0zc4xq39yyjws4zr6lrw3xjql130nsx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.2"; - sha256 = "8f8169b013a5e4725be9682bf413019cdaf6e020455839612c145ba6849e9cf1"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , ghc-boot-th, mtl, pretty, stdenv, syb, template-haskell, text - , th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.5.1"; - sha256 = "20b00a3a732812ec1141014d2f8d379e392165ce7881fa7de9add8db0e22f147"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl pretty syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "size-based" = callPackage - ({ mkDerivation, base, dictionary-sharing, stdenv, template-haskell - , testing-type-modifiers - }: - mkDerivation { - pname = "size-based"; - version = "0.1.2.0"; - sha256 = "779ff6c45476d20ffd2ad7327b44cefaaf0436ed89f43b2967761c0b58a4151a"; - revision = "1"; - editedCabalFile = "0kax1ypjyglkn6iff1x4yz12y7f2n249m95xvdhrc63hsa4xlcqv"; - libraryHaskellDepends = [ - base dictionary-sharing template-haskell testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - description = "Sized functors, for size-based enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sized-grid" = callPackage - ({ mkDerivation, adjunctions, aeson, base, comonad, constraints - , distributive, generics-sop, lens, mtl, random, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "sized-grid"; - version = "0.1.1.6"; - sha256 = "4907af7a4ac56a838d599f319b2096a63c4f30eaf84cac0a5a22d937605c0b1b"; - libraryHaskellDepends = [ - adjunctions aeson base comonad constraints distributive - generics-sop lens mtl random vector vector-space - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edwardwas/sized-grid"; - description = "Multidimensional grids with sized specified at compile time"; - license = stdenv.lib.licenses.mit; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skews" = callPackage - ({ mkDerivation, base, bytestring, deque, stdenv, websockets }: - mkDerivation { - pname = "skews"; - version = "0.1.0.2"; - sha256 = "1740e41a60a2ccd09205473483c4833cedceab9f83cd431822e01c7736fd8977"; - libraryHaskellDepends = [ base bytestring deque websockets ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iij-ii/direct-hs/tree/master/skews"; - description = "A very quick-and-dirty WebSocket server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skip-var" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "skip-var"; - version = "0.1.1.0"; - sha256 = "bfbce57abd47c9c892f734b5c7d2bccad90fa5f8f8a6d4747cca15d2a493d41e"; - revision = "1"; - editedCabalFile = "0vl2y19l7xhlq08f91ggycj4imfdxvkj2fsaz8ifc0waxk3q7ja8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dtaskoff/skip-var#readme"; - description = "Skip variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, skylighting-core, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "skylighting"; - version = "0.7.7"; - sha256 = "7ee358bce3895fe6078312b005b9019e7bf20df893afcab2af853c79cc2fd60e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe skylighting-core text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, stdenv, text, transformers - , utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.7.7"; - sha256 = "893cffd4fcd1ab2f5205c93b4b7bf01d7da7156ac378fad68b5980b8bc7ea77d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe text transformers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slack-web" = callPackage - ({ mkDerivation, aeson, base, containers, errors, http-api-data - , http-client, http-client-tls, megaparsec, mtl, servant - , servant-client, servant-client-core, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "slack-web"; - version = "0.2.0.11"; - sha256 = "47d1226c6f0870ec23edfed17f09c91013bc49309bd4408011b1581d8ea5cf92"; - libraryHaskellDepends = [ - aeson base containers errors http-api-data http-client - http-client-tls megaparsec mtl servant servant-client - servant-client-core text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jpvillaisaza/slack-web"; - description = "Bindings for the Slack web API"; - license = stdenv.lib.licenses.mit; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.5"; - sha256 = "9020e67895a57bde02d7df2c0af06a4c769eff56d48b6a830f6d803df891aea4"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.9"; - sha256 = "d3cafbc34a5d03363ddd41e59bd681168cd2d0aa8be4678db9ae1904ad202a4f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smtp-mail" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , bytestring, cryptohash, filepath, mime-mail, network, stdenv - , text - }: - mkDerivation { - pname = "smtp-mail"; - version = "0.1.4.6"; - sha256 = "86dacbef87a2519222a1165b49401a437887a249f5bfd63a99702198dad214bc"; - revision = "1"; - editedCabalFile = "1lvzami2vzrkgz5na71k1yi7346xdarxm0sbi6alq3wbpj1raakq"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring bytestring - cryptohash filepath mime-mail network text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jhickner/smtp-mail"; - description = "Simple email sending via SMTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-blaze" = callPackage - ({ mkDerivation, base, blaze-html, snap-core, stdenv }: - mkDerivation { - pname = "snap-blaze"; - version = "0.2.1.5"; - sha256 = "b36e35bd4ba3087b3de92702e488ba6570675719243b5dbdf4eae0b819988841"; - libraryHaskellDepends = [ base blaze-html snap-core ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/snap-blaze"; - description = "blaze-html integration for Snap"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-core" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , case-insensitive, containers, directory, filepath, hashable - , HUnit, io-streams, lifted-base, monad-control, mtl, network - , network-uri, old-locale, random, readable, regex-posix, stdenv - , text, time, transformers, transformers-base, unix-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "snap-core"; - version = "1.0.4.0"; - sha256 = "b902602f8422b22a1986bdcf2c2bf72148efc84365b048d832cb42bcf2eb7436"; - revision = "2"; - editedCabalFile = "032aijdfc2b26m9fk48xa8xp61xlpxjj07rkzz34izzivqjixl1q"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder case-insensitive - containers directory filepath hashable HUnit io-streams lifted-base - monad-control mtl network network-uri old-locale random readable - regex-posix text time transformers transformers-base unix-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "Snap: A Haskell Web Framework (core interfaces and types)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-server" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , bytestring-builder, case-insensitive, clock, containers, filepath - , HsOpenSSL, io-streams, io-streams-haproxy, lifted-base, mtl - , network, old-locale, openssl-streams, snap-core, stdenv, text - , time, unix, unix-compat, vector - }: - mkDerivation { - pname = "snap-server"; - version = "1.1.0.0"; - sha256 = "249ea390a4e54899b310c0dd13b91af007a2b685bd0d9769c3e208dd914d7c6f"; - revision = "3"; - editedCabalFile = "0a9d3nqb5rvgm25nak68lp6yj9m6cwhbgdbg5l7ib5i2czcg7yjh"; - configureFlags = [ "-fopenssl" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring bytestring-builder - case-insensitive clock containers filepath HsOpenSSL io-streams - io-streams-haproxy lifted-base mtl network old-locale - openssl-streams snap-core text time unix unix-compat vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "A web server for the Snap Framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socket-activation" = callPackage - ({ mkDerivation, base, network, stdenv, transformers, unix }: - mkDerivation { - pname = "socket-activation"; - version = "0.1.0.2"; - sha256 = "b99e7b4f296cd462aac84e5bb61fb02953e2080d1351e9e10a63d35dc34eb43b"; - revision = "1"; - editedCabalFile = "0bvm8ik8fp0v5gjw6q4h767zgs1i4ydckdypvqa85sarc985hkmp"; - libraryHaskellDepends = [ base network transformers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddfisher/haskell-socket-activation"; - description = "systemd socket activation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, bytestring, cereal, network, stdenv }: - mkDerivation { - pname = "socks"; - version = "0.5.6"; - sha256 = "fa63cd838025e18864c59755750c0cfc4ea76e140a542f07a5c682488ec78438"; - revision = "2"; - editedCabalFile = "17302ls5z9pkwm8f19cimx5m79amk7c85zyvaqak060dl24ia1dv"; - libraryHaskellDepends = [ base bytestring cereal network ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sop-core" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sop-core"; - version = "0.4.0.0"; - sha256 = "a381b0efb8e2dedb6627da6adb0a2b72421f87d43d9b53d68d5b2e866015911d"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3.1"; - sha256 = "70a6ab47d1e16271332574667dd30f77eefb331a6e7dda4e959f48ac3359aa45"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3.1"; - sha256 = "cde9c76515588257fddece108376537bcda7698d0107bf0386b968ea5189ec38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, leancheck, stdenv }: - mkDerivation { - pname = "speculate"; - version = "0.3.5"; - sha256 = "706cb2ac18b2d646bc20cc80135bad10e30bd0096ab479308cd110077035ea44"; - libraryHaskellDepends = [ base cmdargs containers leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "sphinx" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , network, stdenv, text, text-icu, xml - }: - mkDerivation { - pname = "sphinx"; - version = "0.6.0.2"; - sha256 = "76a977c6ce6e71c220bd5fed7acd0be500c2a1b5c8d081a29564a8e37ba7a6df"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 network text text-icu - xml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/haskell-sphinx-client"; - description = "Haskell bindings to the Sphinx full-text searching daemon"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.2"; - sha256 = "e6abb71ab9c1daeb35262523f23adf7d5d70dfbf097ec40caf91b35866a43bf9"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spoon" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "spoon"; - version = "0.3.1"; - sha256 = "b9b350b6730e34c246bbf7e228a86b3d4925b52c95542f7676d719ef2a9881d4"; - revision = "1"; - editedCabalFile = "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Catch errors thrown from pure computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.8"; - sha256 = "646716e795f3cd82f0277ffb672eca26a03f6897d85da3c267ee04cf4dc4a765"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.2"; - sha256 = "3f6a5a0cf8f8aaf452caa2389db54e09494be3fd9dce111fbf06df2b7eddeb38"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual - , bytestring, containers, direct-sqlite, Only, semigroups, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "sqlite-simple"; - version = "0.4.16.0"; - sha256 = "60d2a188d1967ebc0d3ec9175776c45a6e1e6e7a4d44567548cb7fe6961d30de"; - revision = "1"; - editedCabalFile = "123bykwxl3p6918bjxv073ksf8k1hn6s0rlph934h18400n51fdf"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-textual bytestring containers - direct-sqlite Only semigroups template-haskell text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nurpax/sqlite-simple"; - description = "Mid-Level SQLite client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple-errors" = callPackage - ({ mkDerivation, base, parsec, sqlite-simple, stdenv, text }: - mkDerivation { - pname = "sqlite-simple-errors"; - version = "0.6.1.0"; - sha256 = "5101f84a6d74d658398cc4ef557ad3c6158d53e9c948301cc47ed0cc3eaa716f"; - libraryHaskellDepends = [ base parsec sqlite-simple text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/sqlite-simple-errors"; - description = "Wrapper around errors from sqlite-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "2.0.1"; - sha256 = "739ff0d0a882f46bbcd391a2b1ee271906e9c049c463fb8846c1d32d3f829e2b"; - revision = "3"; - editedCabalFile = "1y1wff5mdcin3wc9pbj3agsircrf1pxjjm8j90n8g40l7acnf63c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stack" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, async - , attoparsec, base, base64-bytestring, bindings-uname, bytestring - , Cabal, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, deepseq, directory, echo, exceptions, extra - , file-embed, filelock, filepath, fsnotify, generic-deriving - , hackage-security, hashable, hpack, hpc, http-client - , http-client-tls, http-conduit, http-types, memory, microlens - , mintty, monad-logger, mono-traversable, mtl, mustache - , neat-interpolation, network-uri, open-browser - , optparse-applicative, path, path-io, persistent - , persistent-sqlite, persistent-template, pretty, primitive - , process, project-template, regex-applicative-text, resourcet - , retry, rio, semigroups, split, stdenv, stm, store, store-core - , streaming-commons, tar, template-haskell, temporary, text - , text-metrics, th-reify-many, time, tls, transformers - , typed-process, unicode-transforms, unix, unix-compat, unliftio - , unordered-containers, vector, yaml, zip-archive, zlib - }: - mkDerivation { - pname = "stack"; - version = "1.9.3.1"; - sha256 = "92a2d5d0326eda939c7eb284b2a9d33ffd52a16dd31fd392877212c8f913bd53"; - revision = "2"; - editedCabalFile = "1fypvcvjlhyxnr81gll1w0l4nw6zvsr1vhb1y5g1jnyzy8f278zj"; - configureFlags = [ - "-fdisable-git-info" "-fhide-dependency-versions" - "-fsupported-build" - ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath ]; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - executableHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal async attoparsec base - base64-bytestring bindings-uname bytestring Cabal conduit - conduit-extra containers cryptonite cryptonite-conduit deepseq - directory echo exceptions extra file-embed filelock filepath - fsnotify generic-deriving hackage-security hashable hpack hpc - http-client http-client-tls http-conduit http-types memory - microlens mintty monad-logger mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - path path-io persistent persistent-sqlite persistent-template - pretty primitive process project-template regex-applicative-text - resourcet retry rio semigroups split stm store store-core - streaming-commons tar template-haskell temporary text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - preCheck = "export HOME=$TMPDIR"; - postInstall = '' - exe=$out/bin/stack - mkdir -p $out/share/bash-completion/completions - $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack - ''; - homepage = "http://haskellstack.org"; - description = "The Haskell Tool Stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stack2nix" = callPackage - ({ mkDerivation, async, base, Cabal, cabal2nix, containers - , directory, distribution-nixpkgs, filepath, hackage-db - , language-nix, lens, optparse-applicative, path, pretty, process - , regex-pcre, SafeSemaphore, stack, stdenv, temporary, text, time - }: - mkDerivation { - pname = "stack2nix"; - version = "0.2.2"; - sha256 = "958f365f7eee76be4fe99178034c9df2b589b141960346e35a2bb69af0d3ad74"; - revision = "1"; - editedCabalFile = "1rxrdpzgql4pldx990hmhhjj39kirxvqphiqjmwr9gbhbkyv7hcg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base 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 - ]; - doHaddock = false; - doCheck = false; - description = "Convert stack.yaml files into Nix build instructions."; - license = stdenv.lib.licenses.mit; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "fd569cd27cfd62fb9d3e544e222450ec2734c44a3293994f35a26af982ce3d93"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "state-codes" = callPackage - ({ mkDerivation, aeson, base, shakespeare, stdenv, text }: - mkDerivation { - pname = "state-codes"; - version = "0.1.3"; - sha256 = "1667dc977607fc89a0ca736294b2f0a19608fbe861f03f404c3f8ee91fd0f4a1"; - libraryHaskellDepends = [ aeson base shakespeare text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acamino/state-codes#README"; - description = "ISO 3166-2:US state codes and i18n names"; - license = stdenv.lib.licenses.mit; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statestack" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "statestack"; - version = "0.2.0.5"; - sha256 = "f4eadcf9b08c14cb084436f81e16edf78d6eeda77a3f93e38ba5d7e263ea5f66"; - revision = "3"; - editedCabalFile = "0s9v88gcc5wnfj4c6xq86asadmh4y8z8ycv2wz5nwfwfazfgzcy3"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simple State-like monad transformer with saveable and restorable state"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - , vector - }: - mkDerivation { - pname = "static-text"; - version = "0.2.0.4"; - sha256 = "07cfa2b73e98c67a95f64de5ed8c8a1b088c7f8d3b1b4683418f9bcbc41ea4a5"; - libraryHaskellDepends = [ - base bytestring template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/static-text#readme"; - description = "Lists, Texts, ByteStrings and Vectors of statically known length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, base, base-orphans, binary - , data-default-class, deepseq, dense-linear-algebra, math-functions - , monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.15.0.0"; - sha256 = "95e9c45c95e81a35c7bd7443e8d6626fd100505a567de47622185fe9c8be6472"; - libraryHaskellDepends = [ - aeson base base-orphans binary data-default-class deepseq - dense-linear-algebra math-functions monad-par mwc-random primitive - vector vector-algorithms vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.2"; - sha256 = "3bf41af8950ecf0ac5645634fdd233f941a904c6c56222ff4efb03f5d17043e8"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "stm"; - version = "2.5.0.0"; - sha256 = "59e3685c66cbc54770d423f097ce50661005c99160be0f43a2b7fef7916494c6"; - revision = "1"; - editedCabalFile = "189fxk75h7n27kw7ndyn8nkxm3117qdh1dpag1mcs487kxghff62"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Software_transactional_memory"; - description = "Software Transactional Memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.1"; - sha256 = "e80e5be72a4564fa45e1e27f91c0984e12d2a736d0ceb9594350d573efee1442"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2.1"; - sha256 = "e8e687268c86a6b635e7ee08415f31921d4a46eed267fe573a57981ec00d8419"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.5"; - sha256 = "461ed69edf8d68cdadd8d0c6159e9c2fef71d1a440c6feded0b07c77d9113461"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.3.0"; - sha256 = "9af499b2b19b2f173f97db37f843938efd2c59c30285e436564aefd2aa5bdc3a"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "store" = callPackage - ({ mkDerivation, array, async, base, base-orphans - , base64-bytestring, bifunctors, bytestring, containers - , contravariant, cryptohash, deepseq, directory, filepath, free - , ghc-prim, hashable, hspec, hspec-smallcheck, integer-gmp - , lifted-base, monad-control, mono-traversable, network, primitive - , resourcet, safe, semigroups, smallcheck, stdenv, store-core, syb - , template-haskell, text, th-lift, th-lift-instances, th-orphans - , th-reify-many, th-utilities, time, transformers - , unordered-containers, vector, void - }: - mkDerivation { - pname = "store"; - version = "0.5.1.0"; - sha256 = "19a6d287a92be4135c4cafbec42085fd7ed3182536ec0c54218ab9be09582564"; - revision = "1"; - editedCabalFile = "0nfy8lrvj9kzhmbx8nkg8vlvlha8hkr4k23vs9xasvrw2wp5rfhj"; - libraryHaskellDepends = [ - array async base base-orphans base64-bytestring bifunctors - bytestring containers contravariant cryptohash deepseq directory - filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp - lifted-base monad-control mono-traversable network primitive - resourcet safe semigroups smallcheck store-core syb - template-haskell text th-lift th-lift-instances th-orphans - th-reify-many th-utilities time transformers unordered-containers - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "store-core" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, primitive, stdenv - , text, transformers - }: - mkDerivation { - pname = "store-core"; - version = "0.4.4"; - sha256 = "5baecf8c074ff8dca4633630adc979696d7e8ee0a58e143e4d6d0f5c79f30991"; - libraryHaskellDepends = [ - base bytestring ghc-prim primitive text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast and lightweight binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.29.1"; - sha256 = "9fe63f0e848ef42bd1f9d9aabd69b25caef9edd49609c4a0f51d253213587548"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl - , semigroups, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.2.0"; - sha256 = "5a6b7744695a2651e9835789a7c4ce48dbd5f13ee99f35f63261f9501ce1cd11"; - revision = "2"; - editedCabalFile = "0cfxibcf0lkzbbyxl96dpnmacxv39ljwrlr3935bxykihr83j9xf"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl semigroups transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, streaming - , streaming-bytestring - }: - mkDerivation { - pname = "streaming-attoparsec"; - version = "1.0.0"; - sha256 = "ff28925269ed98f03ef10a482980030dd7c8ef4c05ef6e32d147db9331df6102"; - revision = "2"; - editedCabalFile = "07hqs8nn1rhsqckqmw46yp19kd0vk35q139al6yq0k1dzpvsrcsx"; - libraryHaskellDepends = [ - attoparsec base bytestring streaming streaming-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-attoparsec"; - description = "Attoparsec integration for the streaming ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-bytestring" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl - , resourcet, stdenv, streaming, transformers, transformers-base - }: - mkDerivation { - pname = "streaming-bytestring"; - version = "0.1.6"; - sha256 = "c1d723fc9676b85f62f9fc937d756af61d81f69c9c6591e5d38c9b09b7a253d3"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions mmorph mtl resourcet streaming - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-bytestring"; - description = "effectful byte steams, or: bytestring io done right"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.1.0"; - sha256 = "d8d1fe588924479ea7eefce8c6af77dfb373ee6bde7f4691bdfcbd782b36d68d"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming-wai" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, http-types - , stdenv, streaming, wai - }: - mkDerivation { - pname = "streaming-wai"; - version = "0.1.1"; - sha256 = "35b4182386cc1d23731b3eac78dda79a1b7878c0b6bd78fd99907c776dbfaf30"; - libraryHaskellDepends = [ - base bytestring bytestring-builder http-types streaming wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jb55/streaming-wai"; - description = "Streaming Wai utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, clock, containers - , exceptions, ghc-prim, heaps, lockfree-queue, monad-control, mtl - , stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.5.2"; - sha256 = "e649c07776c6f04ca2975912c8fc9ced53ddc243b092efc5fec6416fca488ade"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base clock containers exceptions ghc-prim heaps - lockfree-queue monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streamproc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "streamproc"; - version = "1.6.2"; - sha256 = "e76effaaff83e6a066df949415db109b405bda0aaeb95f0710906c65892584f2"; - revision = "1"; - editedCabalFile = "19c51gks028x8mnywkx1nz0s6bwn2mxs5ddmaj2q8n9l5pvfkcgs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/streamproc"; - description = "Stream Processer Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.3"; - sha256 = "02d934ec5053d3d42031798e5a3cd25547ccde5973d562f9fc943d635d9956c0"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, Cabal, process, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.2"; - sha256 = "9757cad387856a313729caffe0639215a10be7d72b09c44bcab9e55ee2a8c218"; - revision = "1"; - editedCabalFile = "1flc6mr1nnv8mx69cy1ilwk5gxsidcns82vjdg8dcs8z5axg95kp"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.0"; - sha256 = "4d7daffe1d58671af5111c7179905653d692884cac21f09061768a5a6354e6b8"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , http-client, http-client-tls, http-types, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "strive"; - version = "5.0.8"; - sha256 = "d682e51c07c242cb506497ed787079b74dad2df989ad7d39d03d840d911ed171"; - libraryHaskellDepends = [ - aeson base bytestring data-default gpolyline http-client - http-client-tls http-types template-haskell text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/strive#readme"; - description = "A client for the Strava V3 API"; - license = stdenv.lib.licenses.mit; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.1"; - sha256 = "df60ac419775ad96959338c7f14e93a3d47b82728234df206b0145d33694aa41"; - revision = "2"; - editedCabalFile = "1v9gmnj17cm4p491rizvw9xdj255lk1y24gz6s8bqcz56sdb4d4s"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stylish-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , file-embed, filepath, haskell-src-exts, mtl, optparse-applicative - , semigroups, stdenv, strict, syb, yaml - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.9.2.1"; - sha256 = "fc5c8633289d53ec1e4c847eb54ae4fd7f41c26ff14eef5177db6ad39b0b41d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl semigroups syb yaml - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory file-embed filepath - haskell-src-exts mtl optparse-applicative strict syb yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jaspervdj/stylish-haskell"; - description = "Haskell code prettifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "summoner" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base-noprelude - , bytestring, directory, filepath, generic-deriving, gitrev - , neat-interpolation, optparse-applicative, process, relude, stdenv - , text, time, tomland - }: - mkDerivation { - pname = "summoner"; - version = "1.2.0"; - sha256 = "6464b44ce9d7c29cb8ef7df376a536ddd948f301a8e64afd0fe811220d895013"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base-noprelude bytestring directory filepath - generic-deriving gitrev neat-interpolation optparse-applicative - process relude text time tomland - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/summoner"; - description = "Tool for scaffolding completely configured production Haskell projects"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sv-cassava" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, stdenv - , sv-core, utf8-string, validation, vector - }: - mkDerivation { - pname = "sv-cassava"; - version = "0.3"; - sha256 = "2b1c5725aa13dfed861b975ca359bd0a8186928b098ee35dc94f97792e539cb0"; - revision = "3"; - editedCabalFile = "13414sn9rllq842bz0lv8qzdy6fxv72jbhmk64krrxq2xmw7wkhb"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava sv-core utf8-string validation - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/sv"; - description = "Integration to use sv with cassava's parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sv-core" = callPackage - ({ mkDerivation, attoparsec, base, bifunctors, bytestring - , containers, contravariant, deepseq, lens, mtl, parsec - , profunctors, readable, semigroupoids, semigroups, stdenv, text - , transformers, trifecta, utf8-string, validation, vector, void - }: - mkDerivation { - pname = "sv-core"; - version = "0.3.1"; - sha256 = "d028d9aaf0ebabb1c29841f34c5c40f7f4483d0307b51756de92007c6cc44822"; - libraryHaskellDepends = [ - attoparsec base bifunctors bytestring containers contravariant - deepseq lens mtl parsec profunctors readable semigroupoids - semigroups text transformers trifecta utf8-string validation vector - void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/sv"; - description = "Encode and decode separated values (CSV, PSV, ...)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-builder" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hashable, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "svg-builder"; - version = "0.1.1"; - sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc"; - revision = "2"; - editedCabalFile = "100nmkgcm1ncv4mkr1xcsa7bb3z6zx0lfayk8innd4hm62xsvhj3"; - libraryHaskellDepends = [ - base blaze-builder bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diagrams/svg-builder.git"; - description = "DSL for building SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.3"; - sha256 = "29e5154e3992413ef13a4c50407b9753df2e60f9fddaae03b5475e77a8d8db6a"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, bytestring - , Cabal, cabal-doctest, containers, cookie, generics-sop, hashable - , http-media, insert-ordered-containers, lens, mtl, network - , QuickCheck, scientific, stdenv, template-haskell, text, time - , transformers, transformers-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.3.1.1"; - sha256 = "477793bbbe0017d2fcbb762e0b16fe6b7dd9ada5ae69c4826a605a8625a4daa5"; - revision = "1"; - editedCabalFile = "1g6jiadrvglrbf0857nzfbnjxmb3lwqamgs47j3qv9k6kfwilzyk"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson base base-compat-batteries bytestring containers cookie - generics-sop hashable http-media insert-ordered-containers lens mtl - network QuickCheck scientific template-haskell text time - transformers transformers-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swish" = callPackage - ({ mkDerivation, base, containers, directory, filepath, hashable - , intern, mtl, network-uri, old-locale, polyparse, stdenv, text - , time - }: - mkDerivation { - pname = "swish"; - version = "0.10.0.1"; - sha256 = "f3a9abefb1a15c4d7dcc391e3f466632be1d20f63399a405dfe9e4a4b2c778c6"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers directory filepath hashable intern mtl network-uri - old-locale polyparse text time - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/doug_burke/swish/wiki/Home"; - description = "A semantic web toolkit"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7"; - sha256 = "b8757dce5ab4045c49a0ae90407d575b87ee5523a7dd5dfa5c9d54fcceff42b5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.4"; - sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "systemd" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, transformers - , unix - }: - mkDerivation { - pname = "systemd"; - version = "1.1.2"; - sha256 = "59461920b66b4b63b055b08af464a6fd9ff529f64527dfb573f9396dadd39287"; - libraryHaskellDepends = [ - base bytestring network transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erebe/systemd"; - description = "Systemd facilities (Socket activation, Notify)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "syz" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "syz"; - version = "0.2.0.0"; - sha256 = "3e85801a83fa2a7e57093a7d0aa52f21cba07a0bd6d1ba82d2ddfb335249a3d4"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.indiana.edu/~adamsmd/papers/scrap_your_zippers/"; - description = "Scrap Your Zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1.1"; - sha256 = "e5b4ee185f30a64d854fb02291f7bdf60f8846f1fcc3d67ebc6ab1f61e74ee88"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "tagged"; - version = "0.8.6"; - sha256 = "ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd"; - revision = "2"; - editedCabalFile = "1y8z8hmm846z7h3wqncpi0d4zhsnkwf08q0wchivkjw8di7ahz0z"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.2"; - sha256 = "916dd7fdd15452f3d760c345e023ce99496806b813ab01b03ff1b240bbd50210"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagshare" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "d2314bae2e6820700f2a61db9c9f7976e1b53547a49cdd3352bdf29ac3856ce0"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "TagShare - explicit sharing with tags"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.7"; - sha256 = "9980f28169dd0ee8d9e0a65d553044d9bb24c6f2c7e5f6cf0a53dbd25cf1ec25"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagstream-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, conduit-extra, data-default, resourcet - , stdenv, text, transformers, xml-conduit - }: - mkDerivation { - pname = "tagstream-conduit"; - version = "0.5.5.3"; - sha256 = "b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring case-insensitive conduit - conduit-extra data-default resourcet text transformers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yihuang/tagstream-conduit"; - description = "streamlined html tag parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.0"; - sha256 = "c89d697b6472b739db50e61201251fcaf8a8f5b595b1d9a488d395d7d5ce4b68"; - revision = "1"; - editedCabalFile = "1lydbwsmccf2av0g61j07bx7r5mzbcfgwvmh0qwg3a91857x264x"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.3.2"; - sha256 = "004578db7088e7ad53e23f8a293d739314698f0ec421ffad7be101e13c1cf62d"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - , wcwidth - }: - mkDerivation { - pname = "tasty"; - version = "1.2"; - sha256 = "d6185e079ac9c12068582cc6f5b50d37a3d2d3ed1a05a4db454340350b5d8317"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix wcwidth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-ant-xml" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, ghc-prim, mtl, stdenv, stm, tagged, tasty - , transformers, xml - }: - mkDerivation { - pname = "tasty-ant-xml"; - version = "1.1.6"; - sha256 = "1c17899e3870922113bbfbf50e33b24478b53cae85dc76906a2de57c03bd188f"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving ghc-prim mtl - stm tagged tasty transformers xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-ant-xml"; - description = "Render tasty output to XML for Jenkins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "1.2.1.0"; - sha256 = "2811ad5cb2b7a6f9cdfa034e9c7ce737369f2fcb8a9e0309514466bb13c31128"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.1"; - sha256 = "be6c5b384614a592fb056e2e4f7806416aa37f114db77d0f8986938ba7cc1d3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "http://git.coop/lwm/tasty-discover"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.1"; - sha256 = "519a5c0d2ef9dd60355479f11ca47423133364f20ad3151f3c8b105313405ac4"; - revision = "1"; - editedCabalFile = "1b3fn7d3zwhhwm3gp8cmmsdcrvn9dhshd665xrx1mk6cmy4m8k16"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.2"; - sha256 = "04103d2a2fd6acc8f66b67d943060e88a2ea36b799502bf3e76c2726a15c714c"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.5.1"; - sha256 = "fe889ec0f7b3991c46a07d9ff9cf09608a73a18f434a7480d2a09c79e56f3345"; - revision = "4"; - editedCabalFile = "1yppwhs2r2rlwrzli9ccv5ldgl95h5p7pqhsr898r3das6daf6sk"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.1"; - sha256 = "8f903bef276ef503e4ef8b66a1e201c224588e426bc76f7581480f66d47b7048"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, tasty }: - mkDerivation { - pname = "tasty-leancheck"; - version = "0.0.1"; - sha256 = "2791628bf9698aee88c9e1b07ff2f910510664cdc44e2a30c805c2026888d31a"; - libraryHaskellDepends = [ base leancheck tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/tasty-leancheck#readme"; - description = "LeanCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10"; - sha256 = "10fd30cef4a0c2cefb70afecef5adcee1f32f0fd287f108321458fbfd6d7266f"; - revision = "1"; - editedCabalFile = "1ndkkywcqgb2wj339vgckjv5915da5kd4ixlkaww9fsba3qsrnwx"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.12"; - sha256 = "9eba31a2b0ca4857ed7cea15f6da7a6a9224419f1499e5f11b0cd68e3ef8cc68"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, io-streams - , network, pem, stdenv, tls, x509, x509-store, x509-system - }: - mkDerivation { - pname = "tcp-streams"; - version = "1.0.1.1"; - sha256 = "0a6313e4b329b6f9fd3854963868cc2208aaad4259ae6618afa91950990fe2b7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class io-streams network pem tls x509 - x509-store x509-system - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "One stop solution for tcp client and server with tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system - , io-streams, network, stdenv, tcp-streams - }: - mkDerivation { - pname = "tcp-streams-openssl"; - version = "1.0.1.0"; - sha256 = "c3e7588ba7348fac87a9dcc531909f90bb3b4a1c01da9eb871a918d02b146afe"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL HsOpenSSL-x509-system io-streams network - tcp-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "Tcp streams using openssl for tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2.1"; - sha256 = "d46e38067c4d064f3c9c77219f570ba4e9dbbd7273a5edc4860610cde4afb84e"; - revision = "4"; - editedCabalFile = "0830zzgbf5xffa1yqwcvy4xm1wzzydvy5wmy3sqk3a5n85v295by"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "telegram-bot-simple" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cron - , hashable, http-api-data, http-client, http-client-tls - , monad-control, mtl, pretty-show, profunctors, servant - , servant-client, split, stdenv, stm, template-haskell, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "telegram-bot-simple"; - version = "0.2.0"; - sha256 = "8a8cc572880a792d1ed722bd0ac961892d79113c9fa1b2fbdf3019f98f904ea9"; - revision = "1"; - editedCabalFile = "1li6b3m9glhfg8agr9h0mrbxpr8zr46l57mzjfdqndm248ddbklv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring cron hashable http-api-data - http-client http-client-tls monad-control mtl pretty-show - profunctors servant servant-client split stm template-haskell text - time transformers unordered-containers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring cron hashable http-api-data - http-client http-client-tls monad-control mtl pretty-show - profunctors servant servant-client split stm template-haskell text - time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fizruk/telegram-bot-simple#readme"; - description = "Easy to use library for building Telegram bots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "template-toolkit" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , directory, hashtables, mtl, parsec, pcre-utils - , regex-pcre-builtin, scientific, stdenv, text, time - , unordered-containers, uri-encode - }: - mkDerivation { - pname = "template-toolkit"; - version = "0.1.1.0"; - sha256 = "e112d6896958d9d6eb7a4fc63b0b77a9a185d5452d0d4318c6a62121b17b1a5b"; - libraryHaskellDepends = [ - aeson base binary bytestring containers directory hashtables mtl - parsec pcre-utils regex-pcre-builtin scientific text time - unordered-containers uri-encode - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kobargh/template-toolkit#readme"; - description = "Template Toolkit implementation for Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-resourcet" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, resourcet - , stdenv, transformers, unix - }: - mkDerivation { - pname = "temporary-resourcet"; - version = "0.1.0.1"; - sha256 = "e0406f6834690ffa3a0b9727302a5ae928cbdc1eb42431a15daaac498fcaee71"; - libraryHaskellDepends = [ - base directory exceptions filepath resourcet transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/ttuegel/temporary-resourcet"; - description = "Portable temporary files and directories with automatic deletion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tensors" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "tensors"; - version = "0.1.4"; - sha256 = "d65d2c0dc7c6c90357c892b42dc13f853c95b96270e4b5afb3d717d42f1a38f2"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/tensors#readme"; - description = "Tensor in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "termbox" = callPackage - ({ mkDerivation, array, base, c2hs, stdenv }: - mkDerivation { - pname = "termbox"; - version = "0.1.0"; - sha256 = "4aafbf6d583fd5641da9dcc06754953c6a86ac36a9c0fa73e3b9188f02bad4f3"; - revision = "1"; - editedCabalFile = "0qwab9ayd9b8gmcnvy6pbbp16vwnqdzji9qi71jmgvviayqdlly5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/termbox"; - description = "termbox bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, test-framework }: - mkDerivation { - pname = "test-framework-leancheck"; - version = "0.0.1"; - sha256 = "236c4c2e6b647c5eb84aeda94a949d50341999825d1a9372f195218137609f2f"; - libraryHaskellDepends = [ base leancheck test-framework ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/test-framework-leancheck#readme"; - description = "LeanCheck support for test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.5"; - sha256 = "c9f678d4ec30599172eb887031f0bce2012b532daeb713836bd912bff64eee59"; - revision = "1"; - editedCabalFile = "1vmpk70h1594h9s216d3ngkb399fpny1d3sh4gg0vrc75p4as68d"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-feat" = callPackage - ({ mkDerivation, base, QuickCheck, size-based, stdenv - , testing-type-modifiers - }: - mkDerivation { - pname = "testing-feat"; - version = "1.1.0.0"; - sha256 = "1904d31ddce611474e8c836582efbca1ae7d1c7dc76083cf4300e8e0eeff58ec"; - libraryHaskellDepends = [ - base QuickCheck size-based testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JonasDuregard/testing-feat"; - description = "Functional Enumeration of Algebraic Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.11.2.2"; - sha256 = "fe4e24af001104ed3c95ee44076e6819ffad67684efdabee5ae07cf8ceb81087"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq, ghc-prim - , integer-gmp, stdenv - }: - mkDerivation { - pname = "text"; - version = "1.2.3.1"; - sha256 = "8360624d5d01f278da320eebd16fd5d6f366b7f876d0ad424041d58e5e1147a6"; - revision = "2"; - editedCabalFile = "0ax6h9mvs4567nzi936jkd8f94bi8jnxis4wikjzyaxqfwm5zc6f"; - configureFlags = [ "-f-integer-simple" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq ghc-prim integer-gmp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/text"; - description = "An efficient packed Unicode text type"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, deferred-folds - , semigroups, stdenv, text, transformers - }: - mkDerivation { - pname = "text-builder"; - version = "0.6.5"; - sha256 = "b8fc1edc1fb2d5a5e89b956f6aa7d6f08e7b68829679a81d5783639219c9c5cd"; - libraryHaskellDepends = [ - base base-prelude bytestring deferred-folds semigroups text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-format" = callPackage - ({ mkDerivation, array, base, double-conversion, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, transformers - }: - mkDerivation { - pname = "text-format"; - version = "0.3.2"; - sha256 = "326637b8ad8420a51c0531cb444e45e0029d68c5980a53d5ffdfa2297d47bae3"; - revision = "1"; - editedCabalFile = "155bddqabsxdfzdr7wl67qw9w777c2qkwxgjpx625875cvyhqkpa"; - libraryHaskellDepends = [ - array base double-conversion ghc-prim integer-gmp old-locale text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-format"; - description = "Text formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.13"; - sha256 = "ec174c30333548e21b045554329e6332d54bc355d96e0951ea3ea524463a2a34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.1"; - sha256 = "c6e26888d2751b78e3102747d0bccedeee4002a1eb6c76dd1fe6c3836b5082e8"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5"; - sha256 = "8f0c01a6a15b4314c2d47ab5f0772d176ec38f1c1fe190b9fa7db5149a6c4a0b"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-region" = callPackage - ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring - , groups, lens, stdenv, text - }: - mkDerivation { - pname = "text-region"; - version = "0.3.1.0"; - sha256 = "a74cac02ae5b3c37d09d415f2440a2ea1977145b962b3e291c6484d7cffac5ff"; - revision = "1"; - editedCabalFile = "1z5l1hv8sc4ida5s4r03ihak612lrq0rf7sdfkw7gf05f67c622p"; - libraryHaskellDepends = [ - aeson base base-unicode-symbols bytestring groups lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvoidex/text-region"; - description = "Marking text regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.2"; - sha256 = "b3f2b867d14c7c2586ea580028606b6662293ad080726d5241def937e5e31167"; - revision = "2"; - editedCabalFile = "106p7c0399zxdlh9f9qkgy7g2gp3bxqdpy6m6lnfhzi0pm5y8mks"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, contravariant - , generic-deriving, ghc-boot-th, ghc-prim, integer-gmp, nats - , semigroups, stdenv, tagged, template-haskell, text - , th-abstraction, th-lift, transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "3.7.5"; - sha256 = "39381f23edd5388477ad61f1bdb21962c1abc5e206342ae581d263c3464cc8af"; - revision = "1"; - editedCabalFile = "1v8czpi9mn54850k0pilqh1f3yfr5n5vykmg5k57wmrdpx25vkws"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers contravariant generic-deriving - ghc-boot-th ghc-prim integer-gmp nats semigroups tagged - template-haskell text th-abstraction th-lift transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.1.1"; - sha256 = "71b494920377cfd1c58f220e5d8862c1f2c0d2b1ce529352f2fde20428a96ce2"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.2.11.0"; - sha256 = "51884bcc31d825b93e6788f5731bd7234478dd4ada379816a88228ccc8e0800c"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.0.2.7"; - sha256 = "13aaff2410e39e518f6de74a5bdd20de0e0139fc4af2c344e7c282cf63fa4e7a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, syb - , template-haskell, th-expand-syns, th-lift, th-orphans - }: - mkDerivation { - pname = "th-desugar"; - version = "1.9"; - sha256 = "f14a7a854df55abb3bbca5ef0ec202ed4d7e1631a5fb51767d360dc1b604afef"; - libraryHaskellDepends = [ - base containers mtl syb template-haskell th-expand-syns th-lift - th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.4.0"; - sha256 = "cc0f52d1364ace9ba56f51afd9106a5fe01ed3f5ae45c958c1b0f83be0a6f906"; - revision = "1"; - editedCabalFile = "1zbdg3hrqv7rzlsrw4a2vjr3g4nzny32wvjcpxamlvx77b1jvsw9"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.7.11"; - sha256 = "d53cd1479d3cf35c513095f3954eee539e73c55266cec5f1fa0a82d53f30238c"; - revision = "1"; - editedCabalFile = "0whppp0p9df3fphv6pyg8f70bnm2kpyb3ylznknrklsl5vn2c49d"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mboes/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.12"; - sha256 = "2dca1f72e7f9fdf8f4be41c5e1e472540e1086a2c402a5292e231f3babe34ece"; - revision = "1"; - editedCabalFile = "023j5migjbknq5s91p3n1w5gf31l91bdhyl2ynpw4ylsan35r58x"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.7"; - sha256 = "fe6de44ff0d3279155ad5e0d39bb05efbabdf3335728c3993000624b40cd1d63"; - revision = "1"; - editedCabalFile = "1gf2rmphwgnqbbk4qcwfiprmsqp2d30xqlcxgs9h9ymazkwlh203"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-printf" = callPackage - ({ mkDerivation, base, charset, containers, microlens-platform, mtl - , parsec, semigroups, stdenv, template-haskell, th-lift - , transformers - }: - mkDerivation { - pname = "th-printf"; - version = "0.6.0"; - sha256 = "c258ed7852cbafa6c4b7142343d6294513081a7b7ddeeb89c089b082fa5f0ed7"; - libraryHaskellDepends = [ - base charset containers microlens-platform mtl parsec semigroups - template-haskell th-lift transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pikajude/th-printf#readme"; - description = "Quasiquoters for printf"; - license = stdenv.lib.licenses.mit; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.5"; - sha256 = "af1b2e7e39e029d8c9a20efdd7b49d4d15616ac360adddc7a09560b9a223359c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.9"; - sha256 = "f889dd029d5ab191ace99fe595f363c60314d536e61c8c58f6167f1a9d29ae43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-utilities" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , primitive, stdenv, syb, template-haskell, text, th-orphans - }: - mkDerivation { - pname = "th-utilities"; - version = "0.2.1.0"; - sha256 = "cb597eb207cdae81c24abcae106b43e6479038b6bc5e76c8861c9134c8fe83cd"; - libraryHaskellDepends = [ - base bytestring containers directory filepath primitive syb - template-haskell text th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/th-utilities#readme"; - description = "Collection of useful functions for use with Template Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, base, base-compat, bifunctors, binary - , containers, data-default-class, deepseq, hashable, keys, lens - , mtl, QuickCheck, semigroupoids, stdenv, transformers - , transformers-compat, unordered-containers, vector - , vector-instances - }: - mkDerivation { - pname = "these"; - version = "0.7.6"; - sha256 = "9464b83d98e626360a8ad9836ba77e5201cd1e9c89b95b1b11a28ef3c23ac746"; - libraryHaskellDepends = [ - aeson base base-compat bifunctors binary containers - data-default-class deepseq hashable keys lens mtl QuickCheck - semigroupoids transformers transformers-compat unordered-containers - vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type & a generalized 'zip with padding' typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.1"; - sha256 = "8181448452c759b660f6d7c8775fd99479ccc382cd291460903b15574e5d5c34"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.2"; - sha256 = "d648e01631189036a386d91de22f2b862e830ad0625b1f6096b347974f465294"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threepenny-gui" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, containers - , data-default, deepseq, exceptions, file-embed, filepath, hashable - , safe, snap-core, snap-server, stdenv, stm, template-haskell, text - , transformers, unordered-containers, vault, vector, websockets - , websockets-snap - }: - mkDerivation { - pname = "threepenny-gui"; - version = "0.8.3.0"; - sha256 = "c661b206987d6c85821e6b5206c563e3182138dfddda62cda454b8cd34536a9c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default deepseq - exceptions file-embed filepath hashable safe snap-core snap-server - stm template-haskell text transformers unordered-containers vault - vector websockets websockets-snap - ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Threepenny-gui"; - description = "GUI framework that uses the web browser as a display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "thyme" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , cpphs, deepseq, mtl, old-locale, profunctors, QuickCheck, random - , stdenv, text, time, vector, vector-space, vector-th-unbox - }: - mkDerivation { - pname = "thyme"; - version = "0.3.5.5"; - sha256 = "84c6701fb7b40841d22582202382c362fd9e0d6e5f1c959b7e0f2f91a85c796c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers deepseq mtl old-locale - profunctors QuickCheck random text time vector vector-space - vector-th-unbox - ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liyang/thyme"; - description = "A faster time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tidal" = callPackage - ({ mkDerivation, base, bifunctors, bytestring, clock, colour - , containers, hosc, mwc-random, network, parsec, stdenv - , template-haskell, text, transformers, vector - }: - mkDerivation { - pname = "tidal"; - version = "1.0.13"; - sha256 = "f2c4f60ec354b75421aacd2f44bbbe963ce49d86813ff9ed0f059b4bebf84854"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bifunctors bytestring clock colour containers hosc mwc-random - network parsec template-haskell text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://tidalcycles.org/"; - description = "Pattern language for improvised music"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.5"; - sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.1"; - sha256 = "bbf133bd986e79664560f42f2a36b7ad2e89c1095316029e7d6b228412355380"; - revision = "1"; - editedCabalFile = "00063s6a75sy9fjg5507yix0wizdfx5vangn3yfmfvh3wgw8yj8c"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, time - , time-locale-compat - }: - mkDerivation { - pname = "time-qq"; - version = "0.0.1.0"; - sha256 = "ad6f0e5a6e5606ec2df3bb20006f92158100f20298a1b71fe6d79532c6814c87"; - libraryHaskellDepends = [ - base template-haskell time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/christian-marie/time-qq"; - description = "Quasi-quoter for UTCTime times"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timer-wheel" = callPackage - ({ mkDerivation, atomic-primops, base, ghc-prim, primitive - , psqueues, stdenv - }: - mkDerivation { - pname = "timer-wheel"; - version = "0.1.0"; - sha256 = "52e8679dc2daea5ce7bf49d2e100d6ba6db74084a05980ee7870b8ee8f395572"; - revision = "1"; - editedCabalFile = "0vk0p21x90wiazss30zkbzr5fnsc4gih9a6xaa9myyycw078600v"; - libraryHaskellDepends = [ - atomic-primops base ghc-prim primitive psqueues - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/timer-wheel"; - description = "A timer wheel"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.14.1"; - sha256 = "d13e96117dfcedc861185bee5d1d130a92bce7876cc1ffd041ace2426820df07"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tldr" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, cmark, directory - , filepath, optparse-applicative, semigroups, stdenv, text - , typed-process - }: - mkDerivation { - pname = "tldr"; - version = "0.4.0.1"; - sha256 = "a35525699a5a16fa0e9d4a80c00336f3285ac561883c84286afc4b997c408559"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring cmark text - ]; - executableHaskellDepends = [ - base directory filepath optparse-applicative semigroups - typed-process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/tldr-hs#readme"; - description = "Haskell tldr client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, memory, mtl, network - , stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.4.1"; - sha256 = "bbead1afc0b808bd5cff7bddaeae84ade37f18bbe72bd78d45a2fa4ac41908f8"; - revision = "1"; - editedCabalFile = "0qk07miindqvynhgsqj8jjk1d6i95lbgwipanwnn4vh1707z8xhv"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class memory mtl network transformers x509 x509-store - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, time, tls, x509, x509-store, x509-system - , x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.5"; - sha256 = "a345c4863bf923829d73abb8e2b706dab8058b12cdf73859d3860eaf7223eb9b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem time tls - x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, clock, psqueues, stdenv, tls }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.0.2"; - sha256 = "c586ccfd8da578ed2174352bea1952f55fe38023e476f851d7f0ed428aa57567"; - libraryHaskellDepends = [ auto-update base clock psqueues tls ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, async, base, bytestring, directory, network - , port-utils, postgresql-simple, process, stdenv, temporary, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "0.1.2.2"; - sha256 = "d6d485d29107199454693d2d2f492ee6461655357d4c290aa1b805e19a474ed3"; - libraryHaskellDepends = [ - async base bytestring directory network port-utils - postgresql-simple process temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres for testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "token-bucket" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "token-bucket"; - version = "0.1.0.1"; - sha256 = "312609c0037271b1091f23c2edf467e9449edca5bbed0cfb45c2c93c1bee6ad0"; - revision = "5"; - editedCabalFile = "049d9bk5f8qa6d7gjgg4nqd56xz1mrxr1rxcwxsrk4vkqcpmzs6q"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/token-bucket"; - description = "Rate limiter using lazy bucket algorithm"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , megaparsec, mtl, parser-combinators, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "0.5.0"; - sha256 = "eeedfcdd08b0d4839ff1417d39e437bdb12ba7429f174c6a1b6f4520fde02f00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable megaparsec mtl - parser-combinators text time transformers unordered-containers - ]; - executableHaskellDepends = [ base text time unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "Bidirectional TOML parser"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.4"; - sha256 = "ad7fb455d636533ba37fcae7b01666ebca07f668f3bd773d754b76f82d3ece0c"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.0.0"; - sha256 = "65a220f1652b68269dfe8cc283a6e9292941eb12bdbd79344e073ba766191fbb"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, containers, generics-sop, hashable - , MemoTrie, parsec, parsers, pretty, QuickCheck, scientific, stdenv - , tagged, text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.0.2"; - sha256 = "f8690bd14977f66292759f432a9f0d1b15f00b37001e7c4ea1a04c3fa38a9b7e"; - revision = "2"; - editedCabalFile = "07pz7mhzvh7iwgn2rvw29valfdm4y845zqqffxb89ywbb6gnm8x8"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - containers generics-sop hashable MemoTrie parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base - , blaze-builder, blaze-html, blaze-markup, bytestring, Cabal - , cabal-doctest, charset, comonad, containers, deepseq, fingertree - , ghc-prim, hashable, lens, mtl, parsers, profunctors, reducers - , semigroups, stdenv, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "2"; - sha256 = "53972fe9d206eab6ae1a654fe8c57274f01b373b0c8b3882ef01e962226af643"; - revision = "4"; - editedCabalFile = "0xbwyvwl6f2zylk60f2akwgq03qv49113xil7b1z1s3vlwbn5aj1"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html - blaze-markup bytestring charset comonad containers deepseq - fingertree ghc-prim hashable lens mtl parsers profunctors reducers - semigroups transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.2.2.0"; - sha256 = "077e32dc11a2d80b74baa37d3fb0fab46a1e0165e56c912d0d6a64090bd1b3bf"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple" = callPackage - ({ mkDerivation, base, OneTuple, stdenv }: - mkDerivation { - pname = "tuple"; - version = "0.3.0.2"; - sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624"; - libraryHaskellDepends = [ base OneTuple ]; - doHaddock = false; - doCheck = false; - description = "Various functions on tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.1.0"; - sha256 = "f6e18d0f444993c959eaa7d1aca87993c779b929260b1c6dd823715d3e736043"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, system-fileio, system-filepath, temporary, text, time - , transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.14"; - sha256 = "ff9835a739cb91ff5b60b9a50f23ef2096eff32c334ea7a7c8e50ba4635d5d83"; - revision = "3"; - editedCabalFile = "0rmmfqsphhv7h72a8lbdbpqi3rc4k6k83x8p9mamh57108qrs3xy"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm system-fileio - system-filepath temporary text time transformers unix unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , ghc-prim, stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.5.0.0"; - sha256 = "891aa1694017f96ebab4633cc240b2ce51352b42c4d033c8e8c73e0d2b2f402e"; - libraryHaskellDepends = [ - base bytestring containers double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.1.0.4"; - sha256 = "dbbcedf368c23c46abac04f157cb4f2c812099a4f75d606b24f1ac1116d40b74"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.3.0.1"; - sha256 = "aecd1a319efc13eb42b73b489cf374f94bf126f19fdc28b2f5cd6f73dda3a241"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.4.0"; - sha256 = "997ff5a892c6f2834736a25cbc9e8936138a4a2f36093bebc292774db0f2bb0b"; - revision = "1"; - editedCabalFile = "1i46snkrdpjjsfqbjjarnivadlrd7gbc4nab868ki848vd38qgf1"; - libraryHaskellDepends = [ - async base bytestring process stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typelits-witnesses" = callPackage - ({ mkDerivation, base, constraints, reflection, stdenv }: - mkDerivation { - pname = "typelits-witnesses"; - version = "0.3.0.3"; - sha256 = "4edd4aff3f49961a1eb87130c4d36c39f4cc81d411ff20100ef5f33fd74d191d"; - libraryHaskellDepends = [ base constraints reflection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/typelits-witnesses"; - description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; - license = stdenv.lib.licenses.mit; - }) {}; - "typenums" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "typenums"; - version = "0.1.2.1"; - sha256 = "c6b4e083e664ecea40be2555f24c2e8b322b4f32a4a434e6514fecd6d6d6991b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adituv/typenums#readme"; - description = "Type level numbers using existing Nat functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typerep-map" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, primitive - , stdenv, vector - }: - mkDerivation { - pname = "typerep-map"; - version = "0.3.1"; - sha256 = "e4784457e6a9f83fb86a2e6c89048886b1f43e02c7077727711b9d020f999ef9"; - revision = "2"; - editedCabalFile = "0zcvg2kr3kcnhxdndw6fcjdd1421ncglr34mc8d9sw1hjjcb5w38"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/typerep-map"; - description = "Efficient implementation of a dependent map with types as keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "tz" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-default - , deepseq, stdenv, template-haskell, time, tzdata, vector - }: - mkDerivation { - pname = "tz"; - version = "0.1.3.2"; - sha256 = "f0d066d0169f283b199193d8825aa56de6e3818cd85d8979791c0e7504bf654c"; - libraryHaskellDepends = [ - base binary bytestring containers data-default deepseq - template-haskell time tzdata vector - ]; - doHaddock = false; - doCheck = false; - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; - homepage = "https://github.com/nilcons/haskell-tz"; - description = "Efficient time zone handling"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20190325.0"; - sha256 = "62cd3542a9fb6a5935d09d3ba666891b69b6bf91aa029b059c24100502d7b16f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ua-parser" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, file-embed - , pcre-light, stdenv, text, yaml - }: - mkDerivation { - pname = "ua-parser"; - version = "0.7.5.1"; - sha256 = "1fcc39a99b9ad7eb2ddb2194ea84def35860078c0344531e2715dc2b819e3424"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring data-default file-embed pcre-light text yaml - ]; - doHaddock = false; - doCheck = false; - description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ucam-webauth" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , cryptonite, errors, http-api-data, http-types, microlens - , microlens-mtl, mtl, parser-combinators, pem, stdenv, text, time - , ucam-webauth-types, x509 - }: - mkDerivation { - pname = "ucam-webauth"; - version = "0.1.0.0"; - sha256 = "335920d87a8d8fa24bcba34c4cba0a7adc84199c3161757ae00d7bad54428992"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dbaynard/UcamWebauth#readme"; - description = "The Ucam-Webauth protocol, used by Raven"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "ucam-webauth-types" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, containers, deepseq, http-types, microlens - , microlens-mtl, mtl, stdenv, text, time, timerep - }: - mkDerivation { - pname = "ucam-webauth-types"; - version = "0.1.0.0"; - sha256 = "d1ca7f834078ca63d398c1c2498e8f89e9edfae16b3150937973e5daaa32064b"; - revision = "4"; - editedCabalFile = "1lb0yq1051fi71qrbnkyg39c7rn5x62w2qkqvp88ih4wzdib8fzv"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive containers - deepseq http-types microlens microlens-mtl mtl text time timerep - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dbaynard/UcamWebauth#readme"; - description = "Types for the Ucam-Webauth protocol, as used by Raven"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unbound-generics" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, contravariant - , deepseq, exceptions, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "unbound-generics"; - version = "0.4.0"; - sha256 = "bd6aeda0921d540b3c4181805299ab34e0194389bd8617696d7fa9cc49d95511"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers contravariant deepseq exceptions mtl - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lambdageek/unbound-generics"; - description = "Support for programming with names and binders using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1.1"; - sha256 = "6fdbaa2f45e191c4226b305b4f56a1c43149eb4e253b0a3ebf80ab77e9b5f8c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.3"; - sha256 = "3f2e33277ce6e2e3d8644fd68d945a799ff86d0cbefee05cf3441c29a1769c21"; - revision = "1"; - editedCabalFile = "0sw9kn147kbgp0x9823hwiqn1yiyfxqkrchk34lsjfx2lq3igrzv"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-jp/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.5"; - sha256 = "c9f7d138ab43ed2e11de5973b0bd771c8f5c14cc0d87d3fbd1c6980c176fa03e"; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union" = callPackage - ({ mkDerivation, base, deepseq, hashable, profunctors, stdenv - , tagged, vinyl - }: - mkDerivation { - pname = "union"; - version = "0.1.2"; - sha256 = "63e9dc2901a7d857e278445ca2b03bb869ecb01264206a14319d073e39dd8ec4"; - revision = "4"; - editedCabalFile = "09b6wqnmv4g2pnjzl5k90yp78jcif8pk40c0spdrbr2vr5766clj"; - libraryHaskellDepends = [ - base deepseq hashable profunctors tagged vinyl - ]; - doHaddock = false; - doCheck = false; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "uniq-deep"; - version = "1.1.1"; - sha256 = "c642d17af439700fc359ac3a3c35cc7ce79ab77e0f34fdc9a0a26aacb7df33cf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep#readme"; - description = "uniq-deep"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "universe-base"; - version = "1.0.2.1"; - sha256 = "07c48350afacdc0b5569f72e3d6a27a8ff3c208b7a6f22d00e149a201798bb51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types and some helper functions for enumerating them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.0"; - sha256 = "a21150ee3bb71283522a573bf092c8d96b2e28a95336a95505aa4c2a067dd212"; - revision = "2"; - editedCabalFile = "0c9zxmifhy2qjvsikgm168n8k8ka8ia88ldy8qjqkz5pqknlr9sj"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers, universe-base - , universe-instances-base - }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.0.0.1"; - sha256 = "0d047cf1eb4af9f2052f44f487e7d2d44c86f51b54a3cc1fc5243ad816e8310e"; - revision = "1"; - editedCabalFile = "0dcwgbgmbkjwzbxlncpl1b5hgjrmkl73djknjkhbnh02pysbwv69"; - libraryHaskellDepends = [ - base mtl transformers universe-base universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-instances-base - }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.0"; - sha256 = "e9d41cbf26eabd77587fddf69493d7ad23028303d1c1d1d2ee1de1bf3d3e8d49"; - revision = "2"; - editedCabalFile = "0cpnsip1iakwkgnwnd21gwrc8qbifzpff6agjwm34jgkq9j646k8"; - libraryHaskellDepends = [ - base containers universe-instances-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, unordered-containers, utf8-string - , vector - }: - mkDerivation { - pname = "universum"; - version = "1.5.0"; - sha256 = "53d29c4de630320c4364d37ea26a150c40e8df7faf81f69bb94372314f883f9f"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, deepseq, directory, filepath, process - , stdenv, stm, time, transformers, unix, unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.10"; - sha256 = "141d6e858f3c340c881d9853a38076ca09306e45a02fffc36885b9ee11cf1b5c"; - libraryHaskellDepends = [ - async base deepseq directory filepath process stm time transformers - unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.2.0"; - sha256 = "24c38b3d610ca2642ed496d1de3d7b6b398ce0410aa0a15f3c7ce636ba8f7a78"; - revision = "2"; - editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "d8faaf0c23ed143942ba7948616c73134c78e02aa4cf252605c73fb2412876ef"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.1"; - sha256 = "64bd16bed1eca66d844cbc9dfb90a7ffda5b24572066765cf61b3d8d28a1c1fc"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text - , uri-bytestring - }: - mkDerivation { - pname = "uri-bytestring-aeson"; - version = "0.1.0.7"; - sha256 = "7e90b5eb1c65a83461e127a27ce635f2f8279eb0d0cb14823831b6dfb503ef9b"; - libraryHaskellDepends = [ - aeson base bytestring text uri-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reactormonk/uri-bytestring-aeson"; - description = "Aeson instances for URI Bytestring"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-templater" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, charset - , containers, dlist, HTTP, mtl, parsers, stdenv, template-haskell - , text, time, trifecta, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "uri-templater"; - version = "0.3.1.0"; - sha256 = "21e665ff2600b3de42b6ad01ef342b6165859dc6e66897f84a9075649f1c49c2"; - revision = "1"; - editedCabalFile = "0vl1nv40yzns9fnaz6h34x72vpfaaws8f0zm8qlr82333pxg2scw"; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring charset containers dlist HTTP mtl - parsers template-haskell text time trifecta unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/uri-templater"; - description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "url" = callPackage - ({ mkDerivation, base, stdenv, utf8-string }: - mkDerivation { - pname = "url"; - version = "2.1.3"; - sha256 = "5af27e3f8c0a27e52d0dcb98ef06a0fdd01efe8bb21242c29432e1bc380a4f61"; - libraryHaskellDepends = [ base utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Url"; - description = "A library for working with URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.1"; - sha256 = "2fe703a9c65fcfb12ba86bcffed22dca4c4a76fc78e1271816ae46b0f6a58e29"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-postgresql-simple" = callPackage - ({ mkDerivation, base, bytestring, mtl, postgresql-simple, stdenv - , text, time, users, uuid - }: - mkDerivation { - pname = "users-postgresql-simple"; - version = "0.5.0.2"; - sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100"; - libraryHaskellDepends = [ - base bytestring mtl postgresql-simple text time users uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A PostgreSQL backend for the users package"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-test" = callPackage - ({ mkDerivation, base, hspec, stdenv, text, users }: - mkDerivation { - pname = "users-test"; - version = "0.5.0.1"; - sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e"; - libraryHaskellDepends = [ base hspec text users ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "Library to test backends for the users library"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "util"; - version = "0.1.13.0"; - sha256 = "ed8d899852d1f36cb8b71c87278228db5e816de4f79ae658314b911db6a86595"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1"; - sha256 = "70455a22637983dbcf7a688ff80c05bb8bf2690d9e4523d6ca4ebcef77abb921"; - revision = "1"; - editedCabalFile = "1x1g4nannz81j1h64l1m3ancc96zc57d1bjhj1wk7bwn1xxbi5h3"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.9.0.1"; - sha256 = "2bfa1b8afce0497513979253f2f72b2d07b80e8b924e37578a2e0d5a30645c84"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.2"; - sha256 = "fac03d29cf3d6f72c288111b68feb3c656574a1ac616b49f40426a9daf0e1d04"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.4.1.0"; - sha256 = "6defe19346145230a0f41dd873767700ee10834c1ba1dfc4bfe31811e2d6d84b"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.3.1.0"; - sha256 = "39096c06200f3ce670c89d557def5dbdd0ba3f608bdc7587b057c2344b3f20b2"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.3.0.2"; - sha256 = "979cda9b9fce257e4793c53e869076cbb41b9516f6a7cef2ea3edca84dc5e146"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.2"; - sha256 = "8132aa43307c7dcb29718b5c1ef7c2b8e0d1fb6f650c0b117b99397c34da8dc1"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.1.0"; - sha256 = "edd3f26e97ea07593c3995002a7ef7670f0306bfc31213f6b49ffe1a6fbc4264"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.2"; - sha256 = "51b24adef82f272a1060d5d0dffaa2eb1e54c0016c7dcd75631e5916df45e265"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.2"; - sha256 = "50547e85c80e42a90143b816b41389cca1e0fccacd8d620a09142cf65b36181b"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.2"; - sha256 = "95dc31e68630951d6971ad5b425e88d492c7400ccd4937a42252d464d89c564c"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.2"; - sha256 = "a7cc60182c9c5c25fa64d1073c1da61e79686fea6d2b2a9cf55690e61b83ce78"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "valor" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "valor"; - version = "0.1.0.0"; - sha256 = "04ce514f40ef954cdd4b45acb6b2bf6228a30e905fdce0b671df3bf789d6bae6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reygoch/valor#readme"; - description = "Simple general structured validation library"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.2"; - sha256 = "9e00e52ec0b054cfb9b1e44d8ce2eefb499cc1dcd4bcdd0d434b370d635e551c"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, deepseq - , distributive, fin, hashable, lens, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "vec"; - version = "0.1.1"; - sha256 = "c51eccac3d154b1d7d1fad6ad2fb2a03f0091d799c38da8380cd880ab534cce7"; - revision = "1"; - editedCabalFile = "0yaqc8ci0iy46fimznmr499c5ygrvhfspwbkxdhn112zrci3b7af"; - libraryHaskellDepends = [ - adjunctions base base-compat deepseq distributive fin hashable lens - semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.0.2"; - sha256 = "52e89dacaff10bedb8653181963cae928f9674a099bb706713dae83994bbc0f3"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.8.0.1"; - sha256 = "15bcde786dcf03861946885e030d3dbe3b683e1a6fc12d7317e115084f4637fe"; - revision = "2"; - editedCabalFile = "0ms473xd1d81dbg47kjr9gxqs11ipg2j1kk99q37rhvrbr5xv5l4"; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/vector-algorithms/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.5.1"; - sha256 = "3945b99f8efd319c837700b7cef5163ee23e656e89227357e0b7a41d2a66c512"; - revision = "1"; - editedCabalFile = "1p7cbxdpix0rakvggnnb06kcrb787fyyqlzric6i4s3rn34547q8"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.7.2"; - sha256 = "aeb191a7504162c5b05b8265a02bc1c721f934367427bef3859433ecc288b911"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, comonad, deepseq, distributive - , finite-typelits, hashable, indexed-list-literals, primitive - , stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.2.0.0"; - sha256 = "a4c06f26a2f72d51409f24d7876d9753c03ccb1ab92c84ac29cfab0dc61a2413"; - libraryHaskellDepends = [ - adjunctions base comonad deepseq distributive finite-typelits - hashable indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.15"; - sha256 = "6849b443dbb246fa39ac8dc645cc364ce63bd91fb0761ad759eea10eeca25c0f"; - revision = "1"; - editedCabalFile = "19549mrhg3x0d1ancrxyvrskd6p4x11iprnv0b0d84q7sc40fa8w"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.6"; - sha256 = "be87d4a6f1005ee2d0de6adf521e05c9e83c441568a8a8b60c79efe24ae90235"; - revision = "1"; - editedCabalFile = "1bpxdliw7jmks1rkmb8hbr7hng3niz1pfc6n3s8ndj1acrksmfmv"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.2.3.0"; - sha256 = "8b4ce5ab48aab17b6752dec4efba259964b7084ce10330198ae3ff7ea090f264"; - libraryHaskellDepends = [ base binary data-default-class deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.5.1"; - sha256 = "9ca42ae3ab2c2a554399471368104f30828ea09113f74d756d93a7c4b18771e1"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/versions"; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vinyl" = callPackage - ({ mkDerivation, array, base, ghc-prim, stdenv }: - mkDerivation { - pname = "vinyl"; - version = "0.10.0.1"; - sha256 = "e445737adab5a729b4424aedf36dce8c724bb7d45aaa49f8f74342ff18205df4"; - libraryHaskellDepends = [ array base ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Extensible Records"; - license = stdenv.lib.licenses.mit; - }) {}; - "vivid" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, hashable, MonadRandom, mtl, network, process, random - , random-shuffle, split, stdenv, stm, time, transformers - , utf8-string, vivid-osc, vivid-supercollider - }: - mkDerivation { - pname = "vivid"; - version = "0.4.2.3"; - sha256 = "11c0ae576e0cd38894c5ad052c90b7bce33e81abdc6a691c0e1dbb272d4b952b"; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath hashable - MonadRandom mtl network process random random-shuffle split stm - time transformers utf8-string vivid-osc vivid-supercollider - ]; - doHaddock = false; - doCheck = false; - description = "Sound synthesis with SuperCollider"; - license = "GPL"; - }) {}; - "vivid-osc" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, time }: - mkDerivation { - pname = "vivid-osc"; - version = "0.5.0.0"; - sha256 = "46fb67915fdfa37db0ff620b1529caf77a19d41a71007aae2b834facc2243510"; - libraryHaskellDepends = [ base bytestring cereal time ]; - doHaddock = false; - doCheck = false; - description = "Open Sound Control encode/decode"; - license = "GPL"; - }) {}; - "vivid-supercollider" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, split, stdenv - , utf8-string, vivid-osc - }: - mkDerivation { - pname = "vivid-supercollider"; - version = "0.4.1.2"; - sha256 = "d2a40e8f4fff13200e6ead4d6397fe31095d990f75616bf7f89dbf3fa81821cb"; - libraryHaskellDepends = [ - base binary bytestring cereal split utf8-string vivid-osc - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of SuperCollider server specifications"; - license = "GPL"; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.2"; - sha256 = "d3fffe66a03e4b53db1e459edf75ad8402385a817cae415d857ec0b03ce0cf2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.25.1"; - sha256 = "3cab792e32c59647c2bdb2785c9c9a94bdb84fc85499bb1ab488999e1c9525f4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2"; - sha256 = "2a64d54901d7bcc3c59dd94dcc99b5dcbbb95b4ec9176e677877888526c17fe1"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.6.3"; - sha256 = "8cb091eab6b4b303b3cd3a5cb90c81c19ce4792d3e706bd749c7cbfacabfcb68"; - revision = "3"; - editedCabalFile = "01qzkb1niv0jzbsh802gw1a9w85h0nhp1vd6hln958hsxf25n0d9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cli" = callPackage - ({ mkDerivation, ansi-terminal, base, http-types, monads-tf - , network, options, socket-activation, stdenv, stm - , streaming-commons, unix, wai, wai-extra, warp, warp-tls - }: - mkDerivation { - pname = "wai-cli"; - version = "0.1.1"; - sha256 = "0643ebd8cbd4fcedd2076450b635d020aa2101b26e80f69ade10acd2c3252862"; - libraryHaskellDepends = [ - ansi-terminal base http-types monads-tf network options - socket-activation stm streaming-commons unix wai wai-extra warp - warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/wai-cli"; - description = "Command line runner for Wai apps (using Warp) with TLS, CGI, socket activation & graceful shutdown"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.6"; - sha256 = "cac61023184404ba5abf8d3739e51c4862561ba56f829f6f5e69dd64216aa986"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , iproute, network, old-locale, resourcet, stdenv - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.25"; - sha256 = "def0216fdad1da6015fc076c1405a65ffae6fc8a673fd79e79587acb630d5f31"; - revision = "2"; - editedCabalFile = "0gdg5rfxqfgwj922lxz7ya637nj1qhh1imskiaf453hdpj619aaf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types iproute network old-locale - resourcet streaming-commons text time transformers unix unix-compat - vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.2.4"; - sha256 = "0e9d9c61310890380dc87807ba1285bc1ab185914be6367ea4bb0a05d3df2900"; - revision = "1"; - editedCabalFile = "1mjxbzw3a5wybcp8s4x05rx91p2qaabpfci6w2k6p6nw4rjvfijv"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, Cabal, cabal-doctest - , fast-logger, http-types, network, stdenv, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.4"; - sha256 = "93fe191310c4054ccf5ad8c431e9075646b0d2b7405faf697640461c72789600"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base byteorder bytestring fast-logger http-types network wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-auth" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, binary - , blaze-builder, blaze-html, bytestring, case-insensitive, cereal - , clientsession, cookie, exceptions, hoauth2, http-client - , http-client-tls, http-conduit, http-reverse-proxy, http-types - , optparse-simple, regex-posix, safe-exceptions, shakespeare - , stdenv, text, unix-compat, unordered-containers, uri-bytestring - , vault, wai, wai-app-static, wai-extra, warp, yaml - }: - mkDerivation { - pname = "wai-middleware-auth"; - version = "0.1.2.1"; - sha256 = "4199220758290dd22136fd9f53a8e0a856c217c0b8b26eb6dbf41d2ad81e7d74"; - revision = "1"; - editedCabalFile = "06pd7qk160m17nn3v61hmcnkfwm5qy6bjr1yhx4s2vsqyqvxgbaw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base64-bytestring binary blaze-builder blaze-html - bytestring case-insensitive cereal clientsession cookie exceptions - hoauth2 http-client http-client-tls http-conduit http-reverse-proxy - http-types regex-posix safe-exceptions shakespeare text unix-compat - unordered-containers uri-bytestring vault wai wai-app-static - wai-extra yaml - ]; - executableHaskellDepends = [ - base bytestring cereal clientsession optparse-simple warp - ]; - doHaddock = false; - doCheck = false; - description = "Authentication middleware that secures WAI application"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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 - , stdenv, 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 = "1136b61a6ce7729093664b63a4ab70de73e356d34b0c7a8114b639b18626b058"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Middleware and utilities for using Atlassian Crowd authentication"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.2"; - sha256 = "0be4e9fd5252d526334e4e5885a2a75269aaaad560282b5c383c49e4d855befc"; - revision = "2"; - editedCabalFile = "17vq38dh7x1kqzfwla1s0rldd5hzm5mcrx49sjlzy8b66gd2n3ac"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-throttle" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, cache, clock - , containers, hashable, http-types, mtl, network, safe-exceptions - , stdenv, stm, text, token-bucket, transformers, wai - }: - mkDerivation { - pname = "wai-middleware-throttle"; - version = "0.3.0.0"; - sha256 = "7befb5ed84c06515dcc45891e0d8ef4f051e8d5f4411c0b0f85015071876109b"; - revision = "1"; - editedCabalFile = "1gf86jzygabwaakjk2lvf7036irjfh33x23kh171faf5rdj91ndb"; - libraryHaskellDepends = [ - base bytestring bytestring-builder cache clock containers hashable - http-types mtl network safe-exceptions stm text token-bucket - transformers wai - ]; - doHaddock = false; - doCheck = false; - description = "WAI Middleware for Request Throttling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-travisci" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptonite, http-types, stdenv, text, transformers, vault, wai - }: - mkDerivation { - pname = "wai-middleware-travisci"; - version = "0.1.0"; - sha256 = "bbc9f2fea4c0ee3d9a73fd13dd1a2a7ef85fc294bd311ed519c1e41a1fada828"; - revision = "2"; - editedCabalFile = "0j1k2y75gwbny72zf5nrwzanh7sn2plscnrjd4hw5npccxi4dchx"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptonite http-types text - transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/wai-middleware-travisci"; - description = "WAI middleware for authenticating webhook payloads from Travis CI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-predicates" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, case-insensitive, cookie, http-types - , singletons, stdenv, text, transformers, vault, vector, wai - }: - mkDerivation { - pname = "wai-predicates"; - version = "0.10.0"; - sha256 = "b7b3f6d147bbbf7a959c84235d0533763eda8fc4973b42f131fd47fe8ffbd7c2"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion case-insensitive - cookie http-types singletons text transformers vault vector wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/wai-predicates/"; - description = "WAI request predicates"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, cookie, data-default - , entropy, postgresql-simple, resource-pool, stdenv, text, time - , transformers, wai, wai-session - }: - mkDerivation { - pname = "wai-session-postgresql"; - version = "0.2.1.2"; - sha256 = "39d570dd99b4dc38e7803b60b4da4bc804244ed83b3fb250a6e2191a1419ac83"; - libraryHaskellDepends = [ - base bytestring cereal cookie data-default entropy - postgresql-simple resource-pool text time transformers wai - wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hce/postgresql-session#readme"; - description = "PostgreSQL backed Wai session store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-transformers" = callPackage - ({ mkDerivation, base, exceptions, extractable-singleton - , monad-control-aligned, stdenv, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "wai-transformers"; - version = "0.1.0"; - sha256 = "17a330c80bad8a95add5d6efb0a12c774c197a2d19f83e6b9dc08ab73d8c8592"; - libraryHaskellDepends = [ - base exceptions extractable-singleton monad-control-aligned - transformers wai wai-websockets websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/wai-transformers#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, unix, unix-compat, vault - , wai, word8 - }: - mkDerivation { - pname = "warp"; - version = "3.2.27"; - sha256 = "e660ab02f34537df314e0be51489186e7d0ce2ba917a0c84aea5b40f30425c5c"; - revision = "1"; - editedCabalFile = "19ggrgki5rdmphpg0sh5n286yfzdz6pi31gksdbbpfzxk29wx4ab"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - unix unix-compat vault wai word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.5"; - sha256 = "ae524ad4de6588bb2a1f22671ccbdd1f758bc8674649292034b7261a6c9728fd"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, data-default, network, stdenv - , streaming-commons, tls, unix, wai, warp, warp-tls, x509 - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.6"; - sha256 = "9c78b530e5ac00984233913696351132eb48e9ea2da1d1cdadde306bd6e6bb27"; - libraryHaskellDepends = [ - base bytestring data-default network streaming-commons tls unix wai - warp warp-tls x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , data-default-class, stdenv, transformers - }: - mkDerivation { - pname = "wave"; - version = "0.1.5"; - sha256 = "250a08b0c36870fb7fd0de7714818784eed0c4ff74377746dc1842967965fe0f"; - revision = "2"; - editedCabalFile = "0zs0mw42z9xzs1r935pd5dssf0x10qbkhxlpfknv0x75n2k0azzj"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers data-default-class transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wcwidth" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "wcwidth"; - version = "0.0.2"; - sha256 = "ffc68736a3bbde3e8157710f29f4a99c0ca593c41194579c54a92c62f6c12ed8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/wcwidth/"; - description = "Native wcwidth"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, mtl, parsec, split, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "web-routes"; - version = "0.27.14.2"; - sha256 = "af8b349c5d17de1d1accc30ab0a21537414a66e9d9515852098443e1d5d1f74a"; - libraryHaskellDepends = [ - base blaze-builder bytestring exceptions ghc-prim http-types mtl - parsec split text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; - description = "portable, type-safe URL routing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-hsp" = callPackage - ({ mkDerivation, base, hsp, stdenv, text, web-routes }: - mkDerivation { - pname = "web-routes-hsp"; - version = "0.24.6.1"; - sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; - libraryHaskellDepends = [ base hsp text web-routes ]; - doHaddock = false; - doCheck = false; - description = "Adds XMLGenerator instance for RouteT monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, stdenv, text, wai - , web-routes - }: - mkDerivation { - pname = "web-routes-wai"; - version = "0.24.3.1"; - sha256 = "8e1fd187686452af39929bc6b6a31319001859930744e22e2eee1fa9ad103049"; - libraryHaskellDepends = [ - base bytestring http-types text wai web-routes - ]; - doHaddock = false; - doCheck = false; - description = "Library for maintaining correctness of URLs within an application"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web3" = callPackage - ({ mkDerivation, aeson, async, base, basement, bytestring, cereal - , cryptonite, data-default, exceptions, generics-sop, http-client - , http-client-tls, machines, memory, microlens, microlens-aeson - , microlens-mtl, microlens-th, mtl, OneTuple, parsec, relapse - , stdenv, tagged, template-haskell, text, transformers, uuid-types - , vinyl - }: - mkDerivation { - pname = "web3"; - version = "0.8.3.1"; - sha256 = "f17ef4b6cb70c105487f17a7f47001066d88dce0ba88dffd155ff6aad4f67edf"; - libraryHaskellDepends = [ - aeson async base basement bytestring cereal cryptonite data-default - exceptions generics-sop http-client http-client-tls machines memory - microlens microlens-aeson microlens-mtl microlens-th mtl OneTuple - parsec relapse tagged template-haskell text transformers uuid-types - vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/airalab/hs-web3#readme"; - description = "Ethereum API for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, data-default-class, directory, directory-tree - , exceptions, filepath, http-client, http-types, lifted-base - , monad-control, network, network-uri, scientific, stdenv - , temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.8.5"; - sha256 = "a8167a8b147411a929e81727a77bc31fcd7d93424442268913fb522e1932c1be"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webex-teams-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "webex-teams-api"; - version = "0.2.0.0"; - sha256 = "7756e38bd54d4dae1f70e7343259438f98bf58ff484ebc1c798166904178a40b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, data-default - , http-client, optparse-applicative, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-conduit"; - version = "0.2.0.0"; - sha256 = "0d7c7db689092656653d687adadeb92669b647b1d7adc2493d8ca08a87742e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base conduit webex-teams-api ]; - executableHaskellDepends = [ - base bytestring conduit data-default http-client - optparse-applicative text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Conduit wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-pipes" = callPackage - ({ mkDerivation, base, bytestring, data-default, http-client - , optparse-applicative, pipes, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-pipes"; - version = "0.2.0.0"; - sha256 = "77fad574346613e4989997852ca5972185a6321290caa718ce081be985a33100"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base pipes webex-teams-api ]; - executableHaskellDepends = [ - base bytestring data-default http-client optparse-applicative pipes - text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Pipes wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, containers - , entropy, network, random, SHA, stdenv, streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.5.3"; - sha256 = "445b50cc38cb4eb57c91b288330b891030b2111129caad0117f416cae3a17d56"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive containers entropy network - random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "websockets-snap" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams - , mtl, snap-core, snap-server, stdenv, websockets - }: - mkDerivation { - pname = "websockets-snap"; - version = "0.10.3.0"; - sha256 = "b34a40583a2111bb44233b728095fac38b8de1ab74c027fc4ee92a65af373be4"; - libraryHaskellDepends = [ - base bytestring bytestring-builder io-streams mtl snap-core - snap-server websockets - ]; - doHaddock = false; - doCheck = false; - description = "Snap integration for the websockets library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.8"; - sha256 = "26204eeabb0cdce707548b3be451b1947567b0a13bcfe28bbdd7f48340c09cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.14"; - sha256 = "2f18b9e0e0642cc83d35b0f8c864982ec5926d13a445c042b689e6b2b2aa0551"; - libraryHaskellDepends = [ - base deepseq mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.0.8"; - sha256 = "b2093afcd8dacb17b412a10823ff5fb5482fe22d332e872216f1a179ec4ccfd8"; - revision = "1"; - editedCabalFile = "189p1g51xx0a1lhxlhr0i8qv7mvr4zsjfdpb4i8ja2hfi0ssszdx"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wikicfp-scraper" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scalpel-core, stdenv - , text, time - }: - mkDerivation { - pname = "wikicfp-scraper"; - version = "0.1.0.11"; - sha256 = "2ba40e64e5a77534dd747a75f6db2ac3c4db55a5a62d2880be2eb408e5cbdfb8"; - libraryHaskellDepends = [ - attoparsec base bytestring scalpel-core text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wikicfp-scraper"; - description = "Scrape WikiCFP web site"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.3"; - sha256 = "22bc0e4bd9dff23fb50869d3f3df67571cf428c7feaae6aba0b51adb09dc83b6"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.6"; - sha256 = "496dc4068050ff1e7fc585c6cced0b7633c0a82d6bdac6efc436b6d15b651d37"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "windns" = callPackage - ({ mkDerivation, base, bytestring, deepseq, dnsapi, stdenv }: - mkDerivation { - pname = "windns"; - version = "0.1.0.1"; - sha256 = "087fa65c99021f4233102430d554aebe114af68f6b1647ff821bcb501c0bcd04"; - revision = "1"; - editedCabalFile = "17d44pzi4q5yvrygimdrwdrabz62s1ylw918w28sxgcvj64ir22g"; - configureFlags = [ "-fallow-non-windows" ]; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ dnsapi ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the /dnsapi.dll standard library"; - license = stdenv.lib.licenses.gpl2; - }) {inherit (pkgs) dnsapi;}; - "winery" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cpu, hashable - , megaparsec, mtl, prettyprinter, prettyprinter-ansi-terminal - , scientific, semigroups, stdenv, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "winery"; - version = "0.3.1"; - sha256 = "fef1c0ea4228b713c5dc6067e78aba63c4fdbac43007321b68d3f879f873c3b8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers cpu hashable megaparsec mtl - prettyprinter prettyprinter-ansi-terminal scientific semigroups - text time transformers unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers cpu hashable megaparsec mtl - prettyprinter prettyprinter-ansi-terminal scientific semigroups - text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/winery#readme"; - description = "Sustainable serialisation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wire-streams" = callPackage - ({ mkDerivation, base, binary, binary-parsers, bytestring - , io-streams, stdenv - }: - mkDerivation { - pname = "wire-streams"; - version = "0.1.1.0"; - sha256 = "96dffb70c08c89589881c96f199d271b55e4a5b3cc5be0f3e24e101858e2fb27"; - revision = "1"; - editedCabalFile = "1j7gpk3k82h0kxnhpv40jmnqxpnr0v0m4lj6bhpga81vlmznr088"; - libraryHaskellDepends = [ - base binary binary-parsers bytestring io-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/wire-streams"; - description = "Fast binary io-streams adapter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "witherable" = callPackage - ({ mkDerivation, base, base-orphans, containers, hashable, stdenv - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "witherable"; - version = "0.3"; - sha256 = "620f619d37d50e5248a985888153149531155455f037746fdeca9c2c9fdf19c0"; - libraryHaskellDepends = [ - base base-orphans containers hashable transformers - transformers-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/witherable"; - description = "filterable traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.3"; - sha256 = "05650d7bf6dd0e6b87d0d7da6fb003601ce5d7b1f3d69571127ec3c9425b9bb2"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.1"; - sha256 = "6b662b244b2e318a2923dc7057d707369a29ea4a0e721b4710eac7239cc727af"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Pretty printer with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "cb76b445aa338cae075d149e752e53cf30e2480827eff4c157957b013f48b815"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "wl-pprint-text" = callPackage - ({ mkDerivation, base, base-compat, stdenv, text }: - mkDerivation { - pname = "wl-pprint-text"; - version = "1.2.0.0"; - sha256 = "40dd4c2d2b8a2884616f3a240f01143d0aadd85f5988e5ee55a59ba6b2487c3c"; - libraryHaskellDepends = [ base base-compat text ]; - doHaddock = false; - doCheck = false; - description = "A Wadler/Leijen Pretty Printer for Text values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "0.1.0.0"; - sha256 = "737685799cdd97c2178c749a60906d15548b040570b90f1bbb4f259ba0e756a5"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.3.1"; - sha256 = "e33b4ea7a4008ed933744de13d98f6e8d0a54b8778ecf4e7c78812d4fb124ec4"; - revision = "2"; - editedCabalFile = "1rjz4012vp9q7a3szpm8a7rnn62d5cbbp1pp3qwfyi1fgyd5rp6c"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ws" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-uri, base - , bytestring, exceptions, haskeline, mtl, network - , optparse-applicative, stdenv, strict, text, vector, websockets - , wuss - }: - mkDerivation { - pname = "ws"; - version = "0.0.5"; - sha256 = "a62b1f08248b401bc532fbbc6dca6e75b1605988c83bcc9e4488d6f305f644e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec-uri base bytestring exceptions haskeline mtl - network text websockets wuss - ]; - executableHaskellDepends = [ - async attoparsec attoparsec-uri base bytestring exceptions - haskeline mtl network optparse-applicative strict text vector - websockets wuss - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/ws#readme"; - description = "A simple CLI utility for interacting with a websocket"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.12"; - sha256 = "3deabd48ced44c5c07966de804adcf8996237ea08b2452b56d4cb837b7f2d6f6"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.5"; - sha256 = "b1b0fcbb4aa0d749ed2b54710c2ebd6d900cb932108ad14f97640cf4ca60c7c8"; - revision = "1"; - editedCabalFile = "1z98llpggldy4yb7afcsn3r3q4vklvx2pqyrhy9fir5y2yd5l601"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.7"; - sha256 = "9786356c8bfdf631ea018c3244d0854c6db2cb24e583891ea553961443f61ef9"; - revision = "1"; - editedCabalFile = "04h2h8kdzhd2fp3w4a834xc1n88b1jgrxlgcsynfn0iwpbsb41x7"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.11"; - sha256 = "f94321cbcc4a534adf5889ae6950f3673e38b62b89b6970b477f502ce987d19b"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, hspec, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.5.1"; - sha256 = "c054d631fc0a7258cda979087d462e647a38e8442d0932d6463161407191bbad"; - revision = "1"; - editedCabalFile = "0d9w9x6lwhvshy4dbvd80ckb9p0g4vcmzy6kvwai9rqmszf89cnh"; - libraryHaskellDepends = [ - array base bytestring deepseq hspec mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xenstore" = callPackage - ({ mkDerivation, base, bytestring, cereal, mtl, network, stdenv }: - mkDerivation { - pname = "xenstore"; - version = "0.1.1"; - sha256 = "c2b538c9ce6716f4a1b4c0cb63ed5c6e5ee3e69e80dbb7826ee7f5392f45e874"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring cereal mtl network ]; - doHaddock = false; - doCheck = false; - description = "Xenstore client access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xhtml" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "xhtml"; - version = "3000.2.2.1"; - sha256 = "5cc869013ecc07ff68b3f873c0ab7f03b943fd7fa16d6f8725d4601b2f9f6924"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/xhtml"; - description = "An XHTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.1"; - sha256 = "097711246a78389bdde19484d422ffb2248d46ab62248e4ca653c50e12ff0928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xlsx" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search - , bytestring, conduit, containers, data-default, deepseq, errors - , extra, filepath, lens, mtl, network-uri, old-locale, safe, stdenv - , text, time, transformers, vector, xeno, xml-conduit, zip-archive - , zlib - }: - mkDerivation { - pname = "xlsx"; - version = "0.7.2"; - sha256 = "b2560467ea5639d7bbd97ecf492f2e2cc9fa34e0b05fc5d55243304bbe7f1103"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary-search bytestring conduit - containers data-default deepseq errors extra filepath lens mtl - network-uri old-locale safe text time transformers vector xeno - xml-conduit zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qrilka/xlsx"; - description = "Simple and incomplete Excel file parser/writer"; - license = stdenv.lib.licenses.mit; - }) {}; - "xlsx-tabular" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , lens, stdenv, text, xlsx - }: - mkDerivation { - pname = "xlsx-tabular"; - version = "0.2.2.1"; - sha256 = "48dd897d41df81f9009e6c6c988021bc989286cee385bd2535d8e60b54d0fd2d"; - libraryHaskellDepends = [ - aeson base bytestring containers data-default lens text xlsx - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kkazuo/xlsx-tabular"; - description = "Xlsx table cell value extraction utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3.1"; - sha256 = "8d743ff8e489dc52fd256b18b75c21689945cfcb52481f5ca0aa6df50178a3e2"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, resourcet, stdenv, text - , transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.8.0.1"; - sha256 = "980b2f13ab8f54d8c2cbf92d186d5fac6c6ead42197c6687bd81e2fea2afef9c"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq resourcet text - transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-parse" = callPackage - ({ mkDerivation, base, conduit, conduit-parse, containers - , exceptions, parsers, stdenv, text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-parse"; - version = "0.3.1.2"; - sha256 = "c1aae117720128195dbbf2ce196271e4ca2973163c6a03a1b0ead3b32f936308"; - revision = "1"; - editedCabalFile = "0jnnr4z3c6rq2dz0ldiic5zwkrp36igf6gip11qrm9ss2pk9khbl"; - libraryHaskellDepends = [ - base conduit conduit-parse containers exceptions parsers text - xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/xml-conduit-parse"; - description = "Streaming XML parser based on conduits"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0"; - sha256 = "7bcec0aad83e72c2870efd3327553b3d78f6332cf01c12ad4b67c02f499015a3"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-isogen" = callPackage - ({ mkDerivation, base, deepseq, dom-parser, lens, mtl, QuickCheck - , semigroups, stdenv, template-haskell, text, xml-conduit - , xml-conduit-writer - }: - mkDerivation { - pname = "xml-isogen"; - version = "0.3.0"; - sha256 = "9f812d7bb5dd280e62f5013fd77af27e3710fb1a76dcf7a12f0abbfae5400a17"; - libraryHaskellDepends = [ - base deepseq dom-parser lens mtl QuickCheck semigroups - template-haskell text xml-conduit xml-conduit-writer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/xml-isogen"; - description = "Generate XML-isomorphic types"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.1.6.3"; - sha256 = "4dd7f1a91fbb12ae52d5a14badd9f38c0f0d7556f08ee77d79a67cc546dcb1e8"; - revision = "2"; - editedCabalFile = "1phba1j6ggxfsq4ivhd5wibzw1b9hwppqmgichyj3xg9z3widmnl"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlbf" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "xmlbf"; - version = "0.4.1"; - sha256 = "189a02e8b54c3576c3a919799def7b83c0e602b222264901c644c941c34fdc75"; - revision = "1"; - editedCabalFile = "0j5yvsz0ib5w80wp1gc0li376adw8l861xvf5paa2hdq55jkxvi6"; - libraryHaskellDepends = [ - base bytestring containers text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlbf-xeno" = callPackage - ({ mkDerivation, base, bytestring, html-entities, stdenv, text - , unordered-containers, xeno, xmlbf - }: - mkDerivation { - pname = "xmlbf-xeno"; - version = "0.1.1"; - sha256 = "6c1c4e419240c1e480d5543e89883cd2a356c1bb470a452f935424a80367dd32"; - libraryHaskellDepends = [ - base bytestring html-entities text unordered-containers xeno xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "xeno backend support for the xmlbf library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad" = callPackage - ({ mkDerivation, base, containers, data-default, directory - , extensible-exceptions, filepath, mtl, process, setlocale, stdenv - , unix, utf8-string, X11 - }: - mkDerivation { - pname = "xmonad"; - version = "0.15"; - sha256 = "4a7948e6eee5e34a27d15444589ade3b3fa1adecadbf37b943cff8348380f928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers data-default directory extensible-exceptions - filepath mtl process setlocale unix utf8-string X11 - ]; - executableHaskellDepends = [ base mtl unix X11 ]; - doHaddock = false; - doCheck = false; - postInstall = '' - install -D man/xmonad.1 $doc/share/man/man1/xmonad.1 - install -D man/xmonad.hs $doc/share/doc/$name/sample-xmonad.hs - ''; - homepage = "http://xmonad.org"; - description = "A tiling window manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-contrib" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , extensible-exceptions, filepath, mtl, old-locale, old-time - , process, random, semigroups, stdenv, unix, utf8-string, X11 - , X11-xft, xmonad - }: - mkDerivation { - pname = "xmonad-contrib"; - version = "0.15"; - sha256 = "ba7686007037fc081de09fc05914fbb84cad8123e1f4eedb8895c863fcfb3e65"; - revision = "1"; - editedCabalFile = "15r1mlqs1axh1dp4fqqb54xj3zns47nrvlf2xp5jg5jq51z03xpf"; - libraryHaskellDepends = [ - base bytestring containers directory extensible-exceptions filepath - mtl old-locale old-time process random semigroups unix utf8-string - X11 X11-xft xmonad - ]; - doHaddock = false; - doCheck = false; - homepage = "http://xmonad.org/"; - description = "Third party extensions for xmonad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-extras" = callPackage - ({ mkDerivation, alsa-mixer, base, bytestring, containers, hint - , libmpd, mtl, network, regex-posix, stdenv, X11, xmonad - , xmonad-contrib - }: - mkDerivation { - pname = "xmonad-extras"; - version = "0.15.1"; - sha256 = "b8086169d15feb65c85b513ba19576c7caa2f4a5f234be503402569b03d2c1f4"; - configureFlags = [ - "-f-with_hlist" "-fwith_parsec" "-fwith_split" - ]; - libraryHaskellDepends = [ - alsa-mixer base bytestring containers hint libmpd mtl network - regex-posix X11 xmonad xmonad-contrib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/xmonad-extras"; - description = "Third party extensions for xmonad with wacky dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.6"; - sha256 = "b385eea5652c798b701c627dce8b327c3d6cbfd8c92e1e18e7118862d4d0e2b4"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/haskell-xss-sanitize#readme"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yam" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , data-default, fast-logger, http-client, http-types, lens, menshen - , monad-logger, mtl, mwc-random, reflection, salak, scientific - , servant-client, servant-server, servant-swagger - , servant-swagger-ui, stdenv, swagger2, text, unliftio-core - , unordered-containers, vault, vector, wai, warp - }: - mkDerivation { - pname = "yam"; - version = "0.5.17"; - sha256 = "f8e31cfd5602ddef81980e6c40dec05a756162390d0e322f4459cbb485041089"; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring data-default - fast-logger http-client http-types lens menshen monad-logger mtl - mwc-random reflection salak scientific servant-client - servant-server servant-swagger servant-swagger-ui swagger2 text - unliftio-core unordered-containers vault vector wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/yam/yam#readme"; - description = "Yam Web"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yam-datasource" = callPackage - ({ mkDerivation, base, conduit, persistent, resource-pool - , resourcet, stdenv, unliftio-core, yam - }: - mkDerivation { - pname = "yam-datasource"; - version = "0.5.17"; - sha256 = "4e3b1aeafd89ba4c5c9b95b7c3cfe74201af575644999ddbac43014a82f102aa"; - libraryHaskellDepends = [ - base conduit persistent resource-pool resourcet unliftio-core yam - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/yam/yam-datasource#readme"; - description = "Yam DataSource Middleware"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql" = callPackage - ({ mkDerivation, base, stdenv, yeshql-core, yeshql-hdbc }: - mkDerivation { - pname = "yeshql"; - version = "4.1.0.1"; - sha256 = "c4c590682d6581cf49893bdcd3c2d0e4046d81240a7f5abd7bcaa17037c29db6"; - libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-core" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, parsec - , stdenv, template-haskell - }: - mkDerivation { - pname = "yeshql-core"; - version = "4.1.0.2"; - sha256 = "c0db2a2f415846236e9c38a652dc38e56f2a68baa72b61bdf5c5238f1b6317fe"; - libraryHaskellDepends = [ - base containers convertible filepath parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (core)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-hdbc" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, HDBC - , parsec, stdenv, template-haskell, yeshql-core - }: - mkDerivation { - pname = "yeshql-hdbc"; - version = "4.1.0.2"; - sha256 = "f4ac521c6970d9a06d321e9f2b1143e6901c9875314281505aafcda3bd0352dc"; - libraryHaskellDepends = [ - base containers convertible filepath HDBC parsec template-haskell - yeshql-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (HDBC backend)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , conduit, data-default-class, directory, fast-logger, monad-logger - , resourcet, semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, transformers, unix, unordered-containers - , wai, wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0"; - sha256 = "8a242ffe1df10bc2c5dffb6e255ad21b11e96a9c4794bac20504b67f973da773"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring conduit - data-default-class directory fast-logger monad-logger resourcet - semigroups shakespeare streaming-commons template-haskell text - transformers unix unordered-containers wai wai-extra wai-logger - warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-alerts" = callPackage - ({ mkDerivation, alerts, base, blaze-html, blaze-markup, safe - , stdenv, text, yesod-core - }: - mkDerivation { - pname = "yesod-alerts"; - version = "0.1.2.0"; - sha256 = "8e52c8a7ec9cdbe7cdc06f39ea4e27b852be0391cf78652e349f0f2c169b146f"; - libraryHaskellDepends = [ - alerts base blaze-html blaze-markup safe text yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/yesod-alerts#readme"; - description = "Alert messages for the Yesod framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, bytestring, conduit, conduit-extra, containers - , cryptonite, data-default, email-validate, file-embed, http-client - , http-client-tls, http-conduit, http-types, memory, network-uri - , nonce, persistent, random, safe, shakespeare, stdenv - , template-haskell, text, time, transformers, unliftio - , unliftio-core, unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.6"; - sha256 = "6a1a4b0179303aa4fd082cf2ad29a190f093b9e5e4c9b4b09432e70edfd87545"; - revision = "1"; - editedCabalFile = "14l8v1znq9y628vc6vj7dlgbryjkhf09kk2l2f5spr697lygh3qp"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory network-uri nonce persistent random safe shakespeare - template-haskell text time transformers unliftio unliftio-core - unordered-containers wai yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7.1.1"; - sha256 = "25af9464b8a1594265bcf90f6363ca6f5973da14472e475503fce5ececf93528"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-oauth2" = callPackage - ({ mkDerivation, aeson, base, bytestring, errors, hoauth2 - , http-client, http-conduit, http-types, microlens, random - , safe-exceptions, stdenv, text, uri-bytestring, yesod-auth - , yesod-core - }: - mkDerivation { - pname = "yesod-auth-oauth2"; - version = "0.6.1.1"; - sha256 = "f7b34863ab1865af4919ccbec58f3bb2916052f1ff666fe9db46586949aac5a7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring errors hoauth2 http-client http-conduit - http-types microlens random safe-exceptions text uri-bytestring - yesod-auth yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; - description = "OAuth 2.0 authentication plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, blaze-builder - , bytestring, Cabal, conduit, conduit-extra, containers - , data-default-class, directory, file-embed, filepath, fsnotify - , http-client, http-client-tls, http-reverse-proxy, http-types - , network, optparse-applicative, parsec, process, project-template - , resourcet, say, shakespeare, split, stdenv, stm - , streaming-commons, tar, template-haskell, text, time - , transformers, transformers-compat, unix-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.3"; - sha256 = "e4db295b4c651c205a1730df38501c217d9b600f3dbc1eea21d5fa47e832aedc"; - revision = "4"; - editedCabalFile = "1iw9m3z6m4n9dlwamf1kwr7pp2wpk6awf1m63zjkgw5j4vwxlcpg"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - attoparsec base base64-bytestring blaze-builder bytestring Cabal - conduit conduit-extra containers data-default-class directory - file-embed filepath fsnotify http-client http-client-tls - http-reverse-proxy http-types network optparse-applicative parsec - process project-template resourcet say shakespeare split stm - streaming-commons tar template-haskell text time transformers - transformers-compat unix-compat unliftio unordered-containers wai - wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , bytestring, case-insensitive, cereal, clientsession, conduit - , conduit-extra, containers, cookie, deepseq, fast-logger - , http-types, memory, monad-logger, mtl, parsec, path-pieces - , primitive, random, resourcet, rio, shakespeare, stdenv - , template-haskell, text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.14"; - sha256 = "da3c0c133fa28fb8e128debd1c2397483a8777058119fce13ca28de54aaaf9dc"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq fast-logger http-types memory - monad-logger mtl parsec path-pieces primitive random resourcet rio - shakespeare template-haskell text time transformers unix-compat - unliftio unordered-containers vector wai wai-extra wai-logger warp - word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-csp" = callPackage - ({ mkDerivation, attoparsec, base, case-insensitive - , mono-traversable, network-uri, semigroups, stdenv, syb - , template-haskell, text, wai, yesod, yesod-core - }: - mkDerivation { - pname = "yesod-csp"; - version = "0.2.5.0"; - sha256 = "257401c4e5a12524e567c8c9727ab88cb2d6a81e74caea528df9f0ce65326599"; - libraryHaskellDepends = [ - attoparsec base case-insensitive mono-traversable network-uri - semigroups syb template-haskell text wai yesod yesod-core - ]; - doHaddock = false; - doCheck = false; - description = "Add CSP headers to Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-eventsource" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, stdenv, transformers - , wai, wai-eventsource, wai-extra, yesod-core - }: - mkDerivation { - pname = "yesod-eventsource"; - version = "1.6.0"; - sha256 = "6fceeca34d5e80c8a0d65ab95fab3c53807d1f18eb506abdef67a8f70d0e418b"; - libraryHaskellDepends = [ - base blaze-builder conduit transformers wai wai-eventsource - wai-extra yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Server-sent events support for Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, crypto-api, fb - , http-client-tls, http-conduit, stdenv, text, wai, yesod-core - }: - mkDerivation { - pname = "yesod-fb"; - version = "0.5.0"; - sha256 = "de375004c12e89eec47738d60465c7c63b5f0c7bfc3591c70a35522fdc0841db"; - libraryHaskellDepends = [ - aeson base bytestring conduit crypto-api fb http-client-tls - http-conduit text wai yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-fb"; - description = "Useful glue functions between the fb library and Yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, text, time, transformers, wai, xss-sanitize - , yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.4"; - sha256 = "2c9110fd6213d3bbeb0fcaa148ea3c19ff98461c365811313ad33dc8ebca0c47"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare text time - transformers wai xss-sanitize yesod-core yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form-bootstrap4" = callPackage - ({ mkDerivation, base, stdenv, text, yesod-core, yesod-form }: - mkDerivation { - pname = "yesod-form-bootstrap4"; - version = "2.1.0"; - sha256 = "2c42f2c38549e0f782572162a215cbb86bffa09a39db7c4e2ac711ede092c1f1"; - libraryHaskellDepends = [ base text yesod-core yesod-form ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-form-bootstrap4#readme"; - description = "renderBootstrap4"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrepo" = callPackage - ({ mkDerivation, base, directory, http-types, process, stdenv - , temporary, text, unliftio, wai, yesod-core - }: - mkDerivation { - pname = "yesod-gitrepo"; - version = "0.3.0"; - sha256 = "b03c67c506bc3fc402cb41759d69f2c3159af47959cbd964cb6531996084981e"; - libraryHaskellDepends = [ - base directory http-types process temporary text unliftio wai - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yesod-gitrepo#readme"; - description = "Host content provided by a Git repo"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, githash, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.1"; - sha256 = "fc34c48eee25a15a55a6052fc1d15bb63bbc63514059483cb2212895f0eea671"; - libraryHaskellDepends = [ - aeson base githash template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-markdown" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , directory, pandoc, persistent, shakespeare, stdenv, text - , xss-sanitize, yesod-core, yesod-form - }: - mkDerivation { - pname = "yesod-markdown"; - version = "0.12.6.1"; - sha256 = "d233ad5589ffcb62d7fa529b1d952313057e37ee60cd3c67e12d87617819c201"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring directory pandoc persistent - shakespeare text xss-sanitize yesod-core yesod-form - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pbrisbin/yesod-markdown"; - description = "Tools for using markdown in a yesod application"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.6.1.0"; - sha256 = "6d0b97592d74ca45e204f1876fb113a4830c5f35612b876175169af3d2f79615"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-paginator" = callPackage - ({ mkDerivation, base, blaze-markup, path-pieces, persistent, safe - , stdenv, text, transformers, uri-encode, yesod-core - }: - mkDerivation { - pname = "yesod-paginator"; - version = "1.1.0.2"; - sha256 = "49a3d10b93a16576bf0ca2f47221e7e34231b4af3d764296f0705a9175be1864"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-markup path-pieces persistent safe text transformers - uri-encode yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pbrisbin/yesod-paginator"; - description = "A pagination approach for yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0.2"; - sha256 = "cd950fd57fe3249c0ed035bbcdcb0206094202186aca11e3513109a914e04d9d"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-recaptcha2" = callPackage - ({ mkDerivation, aeson, base, classy-prelude, http-conduit, stdenv - , yesod-auth, yesod-core, yesod-form - }: - mkDerivation { - pname = "yesod-recaptcha2"; - version = "0.3.0"; - sha256 = "0c42aad0943a1a1518d23632b243709542690921bdf25262367357b74d906f89"; - libraryHaskellDepends = [ - aeson base classy-prelude http-conduit yesod-auth yesod-core - yesod-form - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-recaptcha2#readme"; - description = "yesod recaptcha2"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, conduit, containers, cryptonite - , cryptonite-conduit, css-text, data-default, directory, file-embed - , filepath, hashable, hjsmin, http-types, memory, mime-types - , process, stdenv, template-haskell, text, transformers - , unix-compat, unordered-containers, wai, wai-app-static - , yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0.1"; - sha256 = "abe7e802f5efd064823b827074fea3613f4ba46115afedb5e2d96f919dcfa0c9"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder bytestring - conduit containers cryptonite cryptonite-conduit css-text - data-default directory file-embed filepath hashable hjsmin - http-types memory mime-types process template-haskell text - transformers unix-compat unordered-containers wai wai-app-static - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-html - , bytestring, case-insensitive, conduit, containers, cookie - , hspec-core, html-conduit, http-types, HUnit, network, pretty-show - , semigroups, stdenv, text, time, transformers, wai, wai-extra - , xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.6"; - sha256 = "4e3a2ba8abe50bc441ae2c63d38d26e9f4ac07aaf1cf1e9536d0e435b1b402c1"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-html bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit network pretty-show semigroups text time - transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-text-markdown" = callPackage - ({ mkDerivation, aeson, base, markdown, persistent, shakespeare - , stdenv, text, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-text-markdown"; - version = "0.1.10"; - sha256 = "3cee8b3d8d84f30e8b825076d650afb05e79ebd22f34a21fc7ad7f45e1637ddc"; - libraryHaskellDepends = [ - aeson base markdown persistent shakespeare text yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - description = "Yesod support for Text.Markdown."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0.1"; - sha256 = "86c947aa0354c8b98ec7364b51df2ba98ac7c8e184d6ebfcf4bfb9b2e8c381cc"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai-websockets websockets - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-language" = callPackage - ({ mkDerivation, alex, array, base, binary, containers - , data-default, hashable, microlens-platform, oo-prototypes - , pointedlist, regex-base, regex-tdfa, stdenv, template-haskell - , transformers-base, unordered-containers - }: - mkDerivation { - pname = "yi-language"; - version = "0.18.0"; - sha256 = "e86eaae8c0c21834d14dd9aaec50730df92c08e4ffa8846dc750d6b0033cc470"; - libraryHaskellDepends = [ - array base binary containers data-default hashable - microlens-platform oo-prototypes pointedlist regex-base regex-tdfa - template-haskell transformers-base unordered-containers - ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/yi#readme"; - description = "Collection of language-related Yi libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.5"; - sha256 = "30020283ef7b241787bae810b1f563bd2c7a6ada69a582b8d7cc020365015f91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.4"; - sha256 = "38cdc62d9673b8b40999de69da2ec60dab7a65fb1c22133ecd54e0a2ec61d5d5"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.7.0"; - sha256 = "58d4504ee607cb681fc3da2474ed92afaefdb2dc34752b145aa9f746ab29079f"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.2.0"; - sha256 = "b61de150884e376923e247f8f7386966d6d5d1804238c42fd874b61fe3b27dc9"; - revision = "2"; - editedCabalFile = "09ak8h11hm1jnpkvljradbj3a741s31k8cvyvwypr927khi5y9mp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , digest, directory, filepath, mtl, pretty, stdenv, text, time - , unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.4.1"; - sha256 = "c5d5c9976241dcc25b0d8753dc526bb1bfef60f30dee38c53a7ae56e6be9b1b1"; - revision = "1"; - editedCabalFile = "1mv6jns7zf0fi7lrhzk007g12v6x7yf5ycbj67rbh83xfkf4nxsi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, text, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.2.0.1"; - sha256 = "b7c45c612f1f53546923162d73c644b9704d5293b1e767108728d3c08b46a587"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet text time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, profunctors - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.2.5"; - sha256 = "2d127772564655df0cb99d5191b91a555797e66e535d0b8b4f5ed4d54097c085"; - revision = "3"; - editedCabalFile = "0y0klc2jaj611cjvmqi95dyj9yvribf9xhibn1andrz5rs6ysz3p"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2"; - sha256 = "0dcc7d925769bdbeb323f83b66884101084167501f11d74d21eb9bc515707fed"; - revision = "1"; - editedCabalFile = "1wihqz5arcv5hylwpvjh5ajny88wbys5kas8ic1bchi5k19nvkfa"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.0.0"; - sha256 = "0875840799d987cf8f8dd5e0a7686978084b3088c07123e66f6f88561f474bff"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebookexperimental/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ztail" = callPackage - ({ mkDerivation, array, base, bytestring, filepath, hinotify - , process, regex-posix, stdenv, time, unix, unordered-containers - }: - mkDerivation { - pname = "ztail"; - version = "1.2.0.2"; - sha256 = "a14341d51da6dbef9f0edcdefe185dbd7726880ec4e230855fb9871de7c07717"; - revision = "1"; - editedCabalFile = "0d0cpgb0v849zxl12c2gkm3x4nmyfycka1pcfix43lawx62rky8s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base bytestring filepath hinotify process regex-posix time - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Multi-file, colored, filtered log tailer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/ghc865.nix b/generated/stable/stack2nix/ghc865.nix deleted file mode 100644 index 7d85602..0000000 --- a/generated/stable/stack2nix/ghc865.nix +++ /dev/null @@ -1,42529 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc865 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hoopl = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - xhtml = null; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.3"; - sha256 = "71891b0a1d96a6a07d1404e542dc9c86b30f757543c294de9644af98f781d912"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Allure" = callPackage - ({ mkDerivation, async, base, enummapset, filepath, ghc-compact - , LambdaHack, optparse-applicative, primitive, random, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "Allure"; - version = "0.9.5.0"; - sha256 = "8180fe070633bfa5515de8f7443421044e7ad4ee050f0a92c048cec5f2c88132"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async base enummapset filepath ghc-compact LambdaHack - optparse-applicative primitive random template-haskell text - transformers - ]; - executableHaskellDepends = [ - async base filepath LambdaHack optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://allureofthestars.com"; - description = "Near-future Sci-Fi roguelike and tactical squad combat game"; - license = stdenv.lib.licenses.agpl3Plus; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "2.4.1.0"; - sha256 = "736a902da9fb2c826e75e9f7b4b591983bf58a6a62c8cae9866f6a9d5ace3594"; - revision = "2"; - editedCabalFile = "04kg5xh8yabmp1ymk32gw2r66l76338rsglq8i4j2913bhq23vwa"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart" = callPackage - ({ mkDerivation, array, base, colour, data-default-class, lens, mtl - , old-locale, operational, stdenv, time, vector - }: - mkDerivation { - pname = "Chart"; - version = "1.9.3"; - sha256 = "3e17f4ca0112399df627862bb50581f81ec3ebf54b618e3c690f10380b9ec95c"; - libraryHaskellDepends = [ - array base colour data-default-class lens mtl old-locale - operational time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "A library for generating 2D Charts and Plots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart-diagrams" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour - , containers, data-default-class, diagrams-core, diagrams-lib - , diagrams-postscript, diagrams-svg, lens, mtl, old-locale - , operational, stdenv, svg-builder, SVGFonts, text, time - }: - mkDerivation { - pname = "Chart-diagrams"; - version = "1.9.3"; - sha256 = "966f8570f56d31d5581c2336e03332b579098cc9568d450d7e535d090afebe1c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-markup bytestring Chart colour containers - data-default-class diagrams-core diagrams-lib diagrams-postscript - diagrams-svg lens mtl old-locale operational svg-builder SVGFonts - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "Diagrams backend for Charts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.4"; - sha256 = "5e3b825290a0bd4c9da1c814b5e67901b0f9f1d16a88effaa7e060a81c895bc7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "DBFunctor" = callPackage - ({ mkDerivation, base, bytestring, cassava, cereal, containers - , deepseq, either, MissingH, stdenv, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "DBFunctor"; - version = "0.1.1.1"; - sha256 = "640686bb59b95eec912dc96b15da298192d4168719c1adedddc5d3e4e4ab7858"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cassava cereal containers deepseq either MissingH - text time transformers unordered-containers vector - ]; - executableHaskellDepends = [ - base bytestring cassava cereal containers deepseq either MissingH - text time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nkarag/haskell-DBFunctor#readme"; - description = "DBFunctor - Functional Data Management => ETL/ELT Data Processing in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.3.4"; - sha256 = "77b7daec5a79ade779706748f11b4d9b8f805e57a68e7406c3b5a1dee16e0c2f"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ENIG" = callPackage - ({ mkDerivation, base, stdenv, text, unicode-transforms, vector }: - mkDerivation { - pname = "ENIG"; - version = "0.0.1.0"; - sha256 = "03b29362c5bf0b33ded4e776d0252e71f3227da7c93cefa3d67348ab976f66ff"; - libraryHaskellDepends = [ base text unicode-transforms vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/QuietJoon/ENIG#readme"; - description = "Auto Korean conjugator/adjustor/adopter/converter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.13.0.1"; - sha256 = "1e60bcfda0d7441ce2886d7f3523e017e74c225506dd9d0e7a3c012959943899"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FloatingHex" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "FloatingHex"; - version = "0.4"; - sha256 = "b277054db48d2dec62e3831586f218cbe0a056dec44dbc032e9a73087425a24c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Read and write hexadecimal floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.5"; - sha256 = "2deb5ba03a5326c7dd364900b86e427344266c4866b863e8325bf6eade760a9a"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.2.1.1"; - sha256 = "afbc8206444059beb9a8aeb65ce5474ab066254830a3472ab5f3ec4bfa6a4ee6"; - libraryHaskellDepends = [ base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.15"; - sha256 = "e99527f965849756e99b132fd6975747ec0952476454e0b9ec90526e9cdde108"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.10.0"; - sha256 = "473355bd6ba0a97902e0edada1acbc0d76cfda77596f0188b2cc0ae34272a324"; - revision = "1"; - editedCabalFile = "0zfd4wimwgnmgqkz9g9jqj2dq2r50wdcqmcz6v7is1zrpwhszk5v"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "H" = callPackage - ({ mkDerivation, base, bytestring, cmdargs, file-embed, inline-r - , pretty, process, stdenv, temporary, vector - }: - mkDerivation { - pname = "H"; - version = "0.9.0.1"; - sha256 = "5fc04dfefcac9f6882cea9e65755479f7b1d853618c89258a005df63c8d57134"; - revision = "1"; - editedCabalFile = "07pddiap3jzcnc09v442wq30j46nmkdibilzcv69hz5imcnmhz0h"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cmdargs file-embed inline-r pretty process - temporary vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://tweag.github.io/HaskellR"; - description = "The Haskell/R mixed programming environment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HCodecs" = callPackage - ({ mkDerivation, array, base, bytestring, QuickCheck, random - , semigroups, stdenv - }: - mkDerivation { - pname = "HCodecs"; - version = "0.5.1"; - sha256 = "a724616b79ac12c2d661dc3f54cfa0e7d530d1ba3eafa1e6c3e7116e035a3143"; - libraryHaskellDepends = [ - array base bytestring QuickCheck random semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www-db.informatik.uni-tuebingen.de/team/giorgidze"; - description = "A library to read, write and manipulate MIDI, WAVE, and SoundFont2 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC" = callPackage - ({ mkDerivation, base, bytestring, containers, convertible, mtl - , old-time, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "HDBC"; - version = "2.4.0.3"; - sha256 = "1e63bc1f3d1818e39a231eb5467546e0705554de38aeca43fd4ad4cb53a2626f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers convertible mtl old-time text time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdbc/hdbc"; - description = "Haskell Database Connectivity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HDBC-mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, HDBC, mysqlclient - , openssl, stdenv, time, utf8-string, zlib - }: - mkDerivation { - pname = "HDBC-mysql"; - version = "0.7.1.0"; - sha256 = "81c985d4a243c965930fb412b3175ca799ba66985f8b6844014fd600df1da7cf"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring HDBC time utf8-string ]; - librarySystemDepends = [ mysqlclient openssl zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ryantm/hdbc-mysql"; - description = "MySQL driver for HDBC"; - license = "LGPL"; - }) {inherit (pkgs) mysqlclient; inherit (pkgs) openssl; -inherit (pkgs) zlib;}; - "HDBC-session" = callPackage - ({ mkDerivation, base, HDBC, stdenv }: - mkDerivation { - pname = "HDBC-session"; - version = "0.1.2.0"; - sha256 = "aa057f18bbc9d2f9876152246682f546c9cf140192515c7c23b5be2fccc296e3"; - libraryHaskellDepends = [ base HDBC ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Bracketed connection for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSet" = callPackage - ({ mkDerivation, base, containers, hashable, hashtables, stdenv }: - mkDerivation { - pname = "HSet"; - version = "0.0.1"; - sha256 = "eba93be5a76581585ae33af6babe9c2718fae307d41989cd36a605d9b0e8d16a"; - libraryHaskellDepends = [ base containers hashable hashtables ]; - doHaddock = false; - doCheck = false; - description = "Faux heterogeneous sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.1.3.22"; - sha256 = "8f348ff87d7312a5a41d99a1df558df72592aa34f4520c4b03fad4376e0f326e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.13.2.5"; - sha256 = "365af323c6254ec5c33745e1d42ceeba0940992a43f523608c4dc64d7c49aece"; - revision = "1"; - editedCabalFile = "0l18mp06jjwpjbnvj548naas1xhnc46c8l0pbgzi3bm6siq5hhv6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.14"; - sha256 = "a602d7f30e917164c6a634f8cb1f5df4849048858db01380a0875e16e5aa687b"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaTeX" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, matrix - , parsec, prettyprinter, QuickCheck, stdenv, text, transformers - }: - mkDerivation { - pname = "HaTeX"; - version = "3.21.0.0"; - sha256 = "e1073af8df0ae90925ff49651229b3a1f8a6fa0966f94dfe7f7a983c90de5b6d"; - libraryHaskellDepends = [ - base bytestring containers hashable matrix parsec prettyprinter - QuickCheck text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/HaTeX/blob/master/README.md"; - description = "The Haskell LaTeX library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, strict - , template-haskell, terminal-size, text, transformers, uniplate - , unordered-containers, vector, vector-th-unbox - }: - mkDerivation { - pname = "Hoed"; - version = "0.5.1"; - sha256 = "a8f6dc9717e15642f00cd84a8d1030ac6a7c7870f7015e380bd728a843c3f4e7"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MaartenFaddegon/Hoed"; - description = "Lightweight algorithmic debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.17"; - sha256 = "51df0aeedd2b09b010d30c6a0e335191ec8cc0c05a5cdc397d6ef94a59a23b62"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsOpenSSL-x509-system" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, stdenv, unix }: - mkDerivation { - pname = "HsOpenSSL-x509-system"; - version = "0.1.0.3"; - sha256 = "5bdcb7ae2faba07a374109fea0a1431ae09d080f8574e60ab7a351b46f931f92"; - libraryHaskellDepends = [ base bytestring HsOpenSSL unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/HsOpenSSL-x509-system"; - description = "Use the system's native CA certificate store with HsOpenSSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsYAML" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "HsYAML"; - version = "0.1.2.0"; - sha256 = "a45cf71fd793211bcfe7e303369879bde2d6f73a12d51e89d9a91413247452dd"; - revision = "1"; - editedCabalFile = "0j6qmmcz5yqh89hs2cq453maix50q61vl2h0ahj5lg02bygn42cf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/HsYAML"; - description = "Pure Haskell YAML 1.2 parser"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.1.3"; - sha256 = "699b8ccfdcccc570b540c19c665630783609e8948214d905835cd6f74ad26acd"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.1.1"; - sha256 = "e8955ae2accc7529b41893a540d0c6943d118554d25857c1f6721f0777dfb46d"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.3.4"; - sha256 = "dde000c8802efff8e872d38f7da916ea86d130ba621266dc90d3332cbecd4c61"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.4.1"; - sha256 = "72d1551b9b9437e275baa96541b41c8c2d25a428ba1bda01200f9760bbf84b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LambdaHack" = callPackage - ({ mkDerivation, assert-failure, async, base, base-compat, binary - , bytestring, containers, deepseq, directory, enummapset, filepath - , ghc-compact, ghc-prim, hashable, hsini, keys, miniutter - , optparse-applicative, pretty-show, primitive, random, sdl2 - , sdl2-ttf, stdenv, stm, template-haskell, text, time, transformers - , unordered-containers, vector, vector-binary-instances, zlib - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.9.5.0"; - sha256 = "d0000272d5d97ed80bda3b9a9e6a0e5b22e53ac53e7e1d33b880505e5921a3f8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-compact ghc-prim hashable - hsini keys miniutter optparse-applicative pretty-show primitive - random sdl2 sdl2-ttf stm template-haskell text time transformers - unordered-containers vector vector-binary-instances zlib - ]; - executableHaskellDepends = [ - async base filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://lambdahack.github.io"; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6.3"; - sha256 = "9d06237f7384a5dc06c8d8e8e8b41dbc30b25cfb97b3430a96ff934ef53b7683"; - revision = "1"; - editedCabalFile = "1xi5mlk6jm73fdxsjcp41ffr3ygwwykcjf20c122k7hgpkzg1lms"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ddssff/listlike"; - description = "Generalized support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListTree" = callPackage - ({ mkDerivation, base, directory, filepath, List, stdenv - , transformers - }: - mkDerivation { - pname = "ListTree"; - version = "0.2.3"; - sha256 = "0b3aa1d34193d9f7f90b4afeea681a79ab1595e8e651cae093f8fca3c50f60cc"; - libraryHaskellDepends = [ - base directory filepath List transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator/tree"; - description = "Trees and monadic trees expressed as monadic lists where the underlying monad is a list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.10"; - sha256 = "584df0e138093b2f2edc893a69883eb8cbca3402ebdc75392a7742e86156ba53"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MissingH" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath - , hslogger, HUnit, mtl, network, old-locale, old-time, parsec - , process, random, regex-compat, stdenv, time, unix - }: - mkDerivation { - pname = "MissingH"; - version = "1.4.1.0"; - sha256 = "49ecd2df3ad45d6da64a984e506cd0e2ca02c238a743d757feeea8c4cddce0ca"; - revision = "2"; - editedCabalFile = "1k7d8cgvpmln4imcrfpj4c02n3c5l1gkd5hs4hnar9ln0qh61cfx"; - libraryHaskellDepends = [ - array base containers directory filepath hslogger HUnit mtl network - old-locale old-time parsec process random regex-compat time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/missingh"; - description = "Large utility library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadPrompt" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "MonadPrompt"; - version = "1.0.0.5"; - sha256 = "b012cbbe83650f741c7b7f6eafcc89dec299b0ac74a758b6f3a8cdfc5d3bbeda"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - description = "MonadPrompt, implementation & examples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.2"; - sha256 = "776f0e69ddea30c9e819f1cd75249377b7fc6f7c8181b90e72ec9c7bc7e33448"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4.1"; - sha256 = "262c29f630a761356454c2a382d149230ea2e621c95102b3d3b30427d7c0cd57"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OneTuple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "OneTuple"; - version = "0.2.2"; - sha256 = "d82e702485bcbdefbda0d12b6a250d318a269572ee58d63b60eee531e56624dc"; - revision = "3"; - editedCabalFile = "0m3a9fj2h0v529q3i1kq1jfbdj68wxsmhq65hgx2rwjpgb8cqf0z"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Singleton Tuple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.5"; - sha256 = "343a546d94f8d05008896be509149b94ad601c0b48a83dd9e26990a0e97af898"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.3.0"; - sha256 = "5a05ffc752dfc7dd16818d7b3c7c59a27639e246cdfa1963fa02e3ce247a2e19"; - revision = "1"; - editedCabalFile = "1748mrb6r9mpf5jbrx436lwbg8w6dadyy8dhxw2dwnrj5z7zf741"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/OpenGL"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.4.0"; - sha256 = "756169eaadfe16627a893c35e7952d82ff466ac77b13ec2d1ea1de8fb5afba3e"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, random, splitmix - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.13.2"; - sha256 = "7b560baa5853de777702dc23a6f2126ae4adbfdab163295bc56323a706914610"; - libraryHaskellDepends = [ - base containers deepseq random splitmix template-haskell - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.3.1"; - sha256 = "5c929c14de467a9f032641e1b79cbb31a796615c89bf90d059aee5b04eb3671a"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ranged-sets" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "Ranged-sets"; - version = "0.4.0"; - sha256 = "4b25a843f0fbbeda9bf218e3f4be7f1ac58704e433a08ef02ead1dee8d126dea"; - revision = "2"; - editedCabalFile = "1dl69wa509yn2jvl0d4c5c036swq22i6nd73kqn0bp7vhbj4rfq4"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Ranged-sets"; - description = "Ranged sets for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.5"; - sha256 = "32ad46894c7c5f8fd15bb618b86a3dbbca23108d7033c69c83dd835e12071a95"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SVGFonts" = callPackage - ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg - , bytestring, cereal, cereal-vector, containers, data-default-class - , diagrams-core, diagrams-lib, directory, parsec, split, stdenv - , text, vector, xml - }: - mkDerivation { - pname = "SVGFonts"; - version = "1.7.0.1"; - sha256 = "30b1eb325312b6dda99da23997197cda9dbc93e0829e2b795849a790e7bc761b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base blaze-markup blaze-svg bytestring cereal - cereal-vector containers data-default-class diagrams-core - diagrams-lib directory parsec split text vector xml - ]; - doHaddock = false; - doCheck = false; - description = "Fonts from the SVG-Font format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SafeSemaphore" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "SafeSemaphore"; - version = "0.10.1"; - sha256 = "21e5b737a378cae9e1faf85cab015316d4c84d4b37e6d9d202111cef8c4cef66"; - revision = "1"; - editedCabalFile = "1k61gqgfh6n3sj8ni8sfvpcm39nqc2msjfxk2pgmhfabvv48w5hv"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/SafeSemaphore"; - description = "Much safer replacement for QSemN, QSem, and SampleVar"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ShellCheck" = callPackage - ({ mkDerivation, aeson, array, base, bytestring, Cabal, containers - , deepseq, Diff, directory, filepath, mtl, parsec, process - , QuickCheck, regex-tdfa, stdenv - }: - mkDerivation { - pname = "ShellCheck"; - version = "0.7.0"; - sha256 = "3af93f97750fe896b5e9c5247b84f1a99e34293992bb0e9001b0cc725949a8ef"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson array base bytestring containers deepseq Diff directory - filepath mtl parsec process QuickCheck regex-tdfa - ]; - executableHaskellDepends = [ - aeson array base bytestring containers deepseq Diff directory - filepath mtl parsec QuickCheck regex-tdfa - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.shellcheck.net/"; - description = "Shell script analysis tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "21df2193bf1216d55a0d43691182125993eeadc6f097eaf5eb995c23f2016b13"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.2"; - sha256 = "afc036021fcd38f15fcc4af392a3e57017d5ddcc926e99391dbfc8c4e6375f8b"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Strafunski-StrategyLib" = callPackage - ({ mkDerivation, base, directory, mtl, stdenv, syb, transformers }: - mkDerivation { - pname = "Strafunski-StrategyLib"; - version = "5.0.1.0"; - sha256 = "a018c7420289a381d2b491a753f685b9d691be07cea99855cc5c8e05d5a9a295"; - revision = "2"; - editedCabalFile = "1g9ksfgcz8fjasn78zq7w1yw9wk87i4gd5i0pf31gnf4l3963yz8"; - libraryHaskellDepends = [ base directory mtl syb transformers ]; - doHaddock = false; - doCheck = false; - description = "Library for strategic programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TotalMap" = callPackage - ({ mkDerivation, adjunctions, base, distributive, generics-sop - , lens, stdenv - }: - mkDerivation { - pname = "TotalMap"; - version = "0.1.1.1"; - sha256 = "bca2b671812a59b9d00faabf937a9b768ee65f98e209767c69279232a0ef2590"; - libraryHaskellDepends = [ - adjunctions base distributive generics-sop lens - ]; - doHaddock = false; - doCheck = false; - description = "A total map datatype"; - license = stdenv.lib.licenses.mit; - }) {}; - "TypeCompose" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "TypeCompose"; - version = "0.9.14"; - sha256 = "56034f7917c7464e3be93754c36302d91b8d750f84f6ed7af146f94c4fd05a57"; - revision = "1"; - editedCabalFile = "1pxg6az5vkl0zvs3zdvvvnhxqawd9fkkd44jmzzzyyibppgni6x4"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/TypeCompose"; - description = "Type composition classes & instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "Win32"; - version = "2.6.1.0"; - sha256 = "eba445ba0717e96f239c984890f67172e7bfe72a23f32f37fe265b6cadfd9ce3"; - revision = "1"; - editedCabalFile = "1ia6dk2fvxg3gzqdmcypdka6fcnnrza23hq1rhslj53jy3qzs3kn"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/win32"; - description = "A binding to part of the Win32 library"; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.none; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9.1"; - sha256 = "7581e7b3c1c8313d1f7d224d57b20c689e5f757404c9f0ec47f4d15c4541e63d"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque-tests" = callPackage - ({ mkDerivation, abstract-deque, array, base, containers, HUnit - , random, stdenv, test-framework, test-framework-hunit, time - }: - mkDerivation { - pname = "abstract-deque-tests"; - version = "0.3"; - sha256 = "5f17fb4cc26559f81c777f494622907e8927181175eaa172fb6adbf14b2feba5"; - libraryHaskellDepends = [ - abstract-deque array base containers HUnit random test-framework - test-framework-hunit time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A test-suite for any queue or double-ended queue satisfying an interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "active" = callPackage - ({ mkDerivation, base, lens, linear, semigroupoids, semigroups - , stdenv, vector - }: - mkDerivation { - pname = "active"; - version = "0.2.0.14"; - sha256 = "df45678266e0d95830a8210213fdf86d4dca765f1c094d31294569662c256b74"; - libraryHaskellDepends = [ - base lens linear semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "Abstractions for animation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.6"; - sha256 = "6580f376b4c1a55cd35baccdcfd6ddcc240bcd514743e629df610251e9d8f739"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "advent-of-code-api" = callPackage - ({ mkDerivation, attoparsec, base, containers, curl, deepseq - , directory, filepath, finite-typelits, mtl, stdenv, tagsoup, text - , time, uri-encode - }: - mkDerivation { - pname = "advent-of-code-api"; - version = "0.1.2.3"; - sha256 = "f4d48b2519a0e897bdd5d18bade8adb6065e5aa0c6b155caeb2fc3dd1bea49d5"; - libraryHaskellDepends = [ - attoparsec base containers curl deepseq directory filepath - finite-typelits mtl tagsoup text time uri-encode - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/advent-of-code-api#readme"; - description = "Advent of Code REST API bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, deepseq, dlist, ghc-prim, hashable, primitive - , scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers deepseq dlist - ghc-prim hashable primitive scientific tagged template-haskell text - th-abstraction time time-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.2.0.0"; - sha256 = "3723075673a3f188a05e5db0cd2851c249ca16eba532c3e76e7f1fa60cf19233"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.9"; - sha256 = "e043941ba761c13a3854fc087521b864b56b2df874154e42aedb67b2a77f23c8"; - revision = "2"; - editedCabalFile = "1y07skwfg22z37fvjmqcpcl1yz1kx2zn4zz3n1bfghk7740c4gyd"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.8"; - sha256 = "24eab662fc61c022db1a67ba94ce1385e2ad1f500c6498b5ee90725f070835de"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-extra" = callPackage - ({ mkDerivation, aeson, aeson-compat, attoparsec - , attoparsec-iso8601, base, base-compat-batteries, bytestring - , containers, deepseq, exceptions, hashable, parsec - , recursion-schemes, scientific, semialign, stdenv - , template-haskell, text, these, time, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-extra"; - version = "0.4.1.3"; - sha256 = "22e3e2b6d243fb9bc660899dbb677cb6f1f8c348cfc7464082b60ce3fcdc25cc"; - libraryHaskellDepends = [ - aeson aeson-compat attoparsec attoparsec-iso8601 base - base-compat-batteries bytestring containers deepseq exceptions - hashable parsec recursion-schemes scientific semialign - template-haskell text these time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-extra#readme"; - description = "Extra goodies for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.3"; - sha256 = "a6b6ca511483bc9de72c2c640a9f871fe8d329811fb8b87d0a664c4394e223cf"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-iproute" = callPackage - ({ mkDerivation, aeson, base, iproute, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "aeson-iproute"; - version = "0.2"; - sha256 = "ee4d53338bfdc4a6ce0039dea24e797a0ff1e22c312b31be2e73ddc0bddf268f"; - libraryHaskellDepends = [ - aeson base iproute text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/aeson-iproute"; - description = "Aeson instances for iproute types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.5"; - sha256 = "97df83f6ef5f201e784c0a96c3bc3205c94d20b67f5ff4e3193acd8e9a339c16"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.3"; - sha256 = "8f3129cf88bf52214a9f74c0be584a3c3296d1541280ad900188e102fee7f482"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alarmclock" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, time - , unbounded-delays - }: - mkDerivation { - pname = "alarmclock"; - version = "0.7.0.2"; - sha256 = "07e945f39d950531904f7ee896729b517677fb5d312cdb94df9744e43782e96a"; - libraryHaskellDepends = [ - async base clock stm time unbounded-delays - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DaveCTurner/alarmclock"; - description = "Wake up and perform an action at a certain time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.2.0"; - sha256 = "8e9c684b1236c5a730f50b48aa38de2b835fbb48d5bc27be41e742cedb64de91"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.5"; - sha256 = "b77c8a1270767c64e2adb21a6e91ee7cd904ba17edae17bc20fd03da5256e0e3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, dual, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.13.1"; - sha256 = "83929d69abda54ba724c5221071b8629ed60605edb8ec9a66ed8a025ad90c41c"; - libraryHaskellDepends = [ base dual util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "algebraic-graphs" = callPackage - ({ mkDerivation, array, base, base-compat, containers, deepseq, mtl - , stdenv - }: - mkDerivation { - pname = "algebraic-graphs"; - version = "0.4"; - sha256 = "c905d32a6178a11e3c8096dbbf3bd19e570e87362c51fdc8653b43a51e46d3b7"; - libraryHaskellDepends = [ - array base base-compat containers deepseq mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/alga"; - description = "A library for algebraic graph construction and transformation"; - license = stdenv.lib.licenses.mit; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-mixer" = callPackage - ({ mkDerivation, alsa-core, alsaLib, base, c2hs, stdenv, unix }: - mkDerivation { - pname = "alsa-mixer"; - version = "0.3.0"; - sha256 = "cb6a197de99c6b4339a7f552e1c6b71eaefa11bb96102d5ba4519a23c615de02"; - libraryHaskellDepends = [ alsa-core base unix ]; - librarySystemDepends = [ alsaLib ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ttuegel/alsa-mixer"; - description = "Bindings to the ALSA simple mixer API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1.1"; - sha256 = "6348f63e2858df9c0b516053c7c5111139936faea6edf7cf400b8fba6cca94d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alternators" = callPackage - ({ mkDerivation, base, lens, mmorph, mtl, newtype-generics, stdenv - , stm, transformers - }: - mkDerivation { - pname = "alternators"; - version = "1.0.0.0"; - sha256 = "44395b8b42193fdd78f94fd9f62560bfa69aef345a0fb2602df0d8d3613fd339"; - libraryHaskellDepends = [ - base lens mmorph mtl newtype-generics stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/alternators#readme"; - description = "Handy functions when using transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.18.3"; - sha256 = "41688f6ab6af58bb7a566f7b4e713fa43aa03b7a640121a268be7c38e857dfb3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.10.2"; - sha256 = "a894e224920b5bd475eb514126801ae3d58538c1fc2d3804b890e17754a40940"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.9"; - sha256 = "a7b2e8e7cd3f02f2954e8b17dc60a0ccd889f49e2068ebb15abfa1d42f7a4eac"; - revision = "1"; - editedCabalFile = "0bb5fzjjc00932pny1fql40dmpmikfqzbrbmpwr09bfw9aynvzgn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aos-signature" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, memory, mtl - , protolude, random, stdenv - }: - mkDerivation { - pname = "aos-signature"; - version = "0.1.1"; - sha256 = "c38a353c8bedd9710aa56f9aa8caf17db4313997afd9733921d1c5917511a9ea"; - libraryHaskellDepends = [ - base bytestring cryptonite memory mtl protolude random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/aos-signature#readme"; - description = "An implementation of the AOS signatures"; - license = stdenv.lib.licenses.asl20; - }) {}; - "apecs" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "apecs"; - version = "0.8.2"; - sha256 = "b7cec40407577ad38fcbdf95b9a668b6e047b30ef9503a4c4144f66fe7c1b019"; - libraryHaskellDepends = [ - array base containers mtl template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonascarpay/apecs#readme"; - description = "Fast Entity-Component-System library for game programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apecs-gloss" = callPackage - ({ mkDerivation, apecs, apecs-physics, base, containers, gloss - , linear, stdenv - }: - mkDerivation { - pname = "apecs-gloss"; - version = "0.2.3"; - sha256 = "c974650ddda25e0479dbedaeef702064669d2ee357946a54321c00a7a9dc4c38"; - libraryHaskellDepends = [ - apecs apecs-physics base containers gloss linear - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonascarpay/apecs/apecs-gloss"; - description = "Simple gloss renderer for apecs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apecs-physics" = callPackage - ({ mkDerivation, apecs, base, Cabal, containers, inline-c, linear - , stdenv, template-haskell, vector - }: - mkDerivation { - pname = "apecs-physics"; - version = "0.4.2"; - sha256 = "d03e5ecb1c0c8f7e3067f9fc2b8ad6756f9aec116179fcbc249eb033d2a61e4b"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - apecs base containers inline-c linear template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonascarpay/apecs#readme"; - description = "2D physics for apecs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "2bd198b97077090476f8f512a7c03f3ab4147a6df51cf8cd22b5145c37b2ccda"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.8"; - sha256 = "c4ceeddc26525b58d82c41b6d3e32141371a200a6794aae185b6266ccc81631f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appendmap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "appendmap"; - version = "0.1.5"; - sha256 = "2dbfa21a3702c30e0bdf764f5775f4ed8ac63b48a830b8931ea994f52030b90e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/koterpillar/appendmap#readme"; - description = "Map with a Semigroup and Monoid instances delegating to Semigroup of the elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.6.0.0"; - sha256 = "2fbe0e3d4dca8f67e4a423116a947e2a7cf40ef620bf8f66653f64cce4c3555c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.3"; - sha256 = "8f71d0b77152edb048e9f75c72a82b9d7ae1b15432fc011610fe9f1b83225b18"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.2"; - sha256 = "d3fb53dd85d95263eb2c61146b3bd872c28670f4ff9da91fb260d558d819d104"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arbor-lru-cache" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "arbor-lru-cache"; - version = "0.1.1.1"; - sha256 = "602f4969a88c630bff1a4e96acf326c455fdd79ada94c9de134bf4734b33d92b"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/arbor-lru-cache#readme"; - description = "LRU cache based on STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, containers, deepseq, exact-pi - , ghc-prim, integer-gmp, integer-logarithms, random, semirings - , stdenv, transformers, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.9.0.0"; - sha256 = "43e95b0d954f475c75e23cbaa636bfa9741d3769d456f8b785f011e2e6483a30"; - configureFlags = [ "-f-llvm" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq exact-pi ghc-prim integer-gmp - integer-logarithms random semirings transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asciidiagram" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative - , pandoc-types, rasterific-svg, stdenv, svg-tree, text, vector - }: - mkDerivation { - pname = "asciidiagram"; - version = "1.3.3.3"; - sha256 = "019f1e781143a19434baeffc49ed0ebdf46e05179b36b753772276a0549b6126"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers FontyFruity JuicyPixels lens linear mtl - pandoc-types rasterific-svg svg-tree text vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative rasterific-svg svg-tree text - ]; - doHaddock = false; - doCheck = false; - description = "Pretty rendering of Ascii diagram into svg or png"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asif" = callPackage - ({ mkDerivation, 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 - , stdenv, temporary-resourcet, text, thyme, transformers, vector - }: - mkDerivation { - pname = "asif"; - version = "6.0.4"; - sha256 = "03e8f784df914d7f311efd594d89e455b2177492a8491ff503f870a741ca2398"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/asif#readme"; - description = "Library for creating and querying segmented feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.6"; - sha256 = "d9f8deabd3b908e5cf83c0d813c08dc0143b3ec1c0d97f660d2cfa02c1c8da0a"; - revision = "1"; - editedCabalFile = "19nq8g1v323p47cqlc4m9r6li35dd3cmcd7k486jw24cijkdjm9n"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.5"; - sha256 = "8f1fe1344d30b39dc594d74df2c55209577722af1497204b4c2b6d6e8747f39e"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.3"; - sha256 = "57ebc2371bdb607294b5ca18f44ced121ab528ee304905db1524cb441b535498"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assoc" = callPackage - ({ mkDerivation, base, bifunctors, stdenv, tagged }: - mkDerivation { - pname = "assoc"; - version = "1.0.1"; - sha256 = "4000dea2fbc272ff5a15a0bf0fae1c29dea4b87b8fb4ccb8b07b8114ee2636d5"; - libraryHaskellDepends = [ base bifunctors tagged ]; - doHaddock = false; - doCheck = false; - description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.1"; - sha256 = "da5dde1bcf42e4f48f5f23dbf3a890a2904ecaf86df3d75e365e071b924afe29"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.2"; - sha256 = "4b4ab1ac82c45144d82c6daf6cb6ba45eab9957dad44787fa5e869e23d73bbff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.3"; - sha256 = "003af9f24f06355aa240d7ba11079def44d6e78f21e5869c5f0f677a7d6dc50e"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.7"; - sha256 = "b5f5c77884bc0332306fab89acf1c8a8582d76eabaa303c91b1c4072621c960d"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.3"; - sha256 = "3d1ac6713505e520ebb51f26cfb5f6e5a0825e25394a51419c7e035b60b2f2d9"; - revision = "1"; - editedCabalFile = "164n392qrgyb8mg3xxaxym0ffvqyjr4ny4lfrr81y7hk3947yw9q"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv, vector }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.5"; - sha256 = "f5864859694fb9faa64cabea17fdf8f506e325fa4704c23036ea1cc17102c76f"; - libraryHaskellDepends = [ attoparsec base ip vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.1.0"; - sha256 = "499ffbd2d39e79cc4fda5ad0129dbf94fdb72a84aa932dfe2a5f5c5c02074142"; - revision = "1"; - editedCabalFile = "1rjhscmczgs1bwyqx7lvkm8py3ylxjd2797mrzgnq60fvm292750"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , QuickCheck, quickcheck-instances, stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.7"; - sha256 = "369d49c342f90bcc5e07c53b12dc642d6e03aa991900262abc48127d4b25725c"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip QuickCheck - quickcheck-instances strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aur" = callPackage - ({ mkDerivation, aeson, base, http-client, servant, servant-client - , stdenv, text - }: - mkDerivation { - pname = "aur"; - version = "6.2.0.1"; - sha256 = "a2892492bd0cd07508b25eafd822a4196b5a04fe9215d44360b2e848d6d80502"; - libraryHaskellDepends = [ - aeson base http-client servant servant-client text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aurapm/aura"; - description = "Access metadata from the Arch Linux User Repository"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, html-conduit, http-conduit - , http-types, network-uri, resourcet, stdenv, text, transformers - , unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.5"; - sha256 = "5f13043155a53b14da9b3625e512480110a5d906b0fd8eca2d2493c63c20ae81"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers html-conduit http-conduit http-types network-uri - resourcet text transformers unordered-containers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6.0.1"; - sha256 = "e0520fb4255ac8d6ff30f06a2b91a9fdc478aa799e254e52747ebd13d70f3ec3"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.6"; - sha256 = "f4e023dc8713c387ecf20d851247597fd012cabea3872310b35e911105eb66c4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "autoexporter"; - version = "1.1.15"; - sha256 = "9d224acd9b1c7fa217d71b8e6d556891effb66874a9a26aa8b200444998d3718"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "avers" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, clock - , containers, cryptonite, filepath, inflections, memory - , MonadRandom, mtl, network, network-uri, resource-pool - , rethinkdb-client-driver, safe, scrypt, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "avers"; - version = "0.0.17.1"; - sha256 = "1b45d8aa036b3c2ec7ea180327ff3cdce28dc1e1ef319c062be79f0ffa7626f5"; - revision = "34"; - editedCabalFile = "0mj6881npk0xdkf4nkcy52sn6y4414wdpysbw03kkb5vx6cgjws9"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers cryptonite - filepath inflections memory MonadRandom mtl network network-uri - resource-pool rethinkdb-client-driver safe scrypt stm - template-haskell text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Server-side implementation of the Avers storage model"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "avers-api" = callPackage - ({ mkDerivation, aeson, avers, base, bytestring, cookie - , http-api-data, servant, stdenv, text, time, vector - }: - mkDerivation { - pname = "avers-api"; - version = "0.1.0"; - sha256 = "5c1765976fd1ac49444023452e31cbe5200fd9c8480e1927aa4334e8752d5a3e"; - libraryHaskellDepends = [ - aeson avers base bytestring cookie http-api-data servant text time - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/wereHamster/avers-api"; - description = "Types describing the core and extended Avers APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "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 - , stdenv, stm, text, time, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "avers-server"; - version = "0.1.0.1"; - sha256 = "becd96d702ba85bfa105f799da27e9fb1e483b59643345503e60888a8860518e"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/wereHamster/avers-server"; - description = "Server implementation of the Avers API"; - license = stdenv.lib.licenses.mit; - }) {}; - "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors - , binary, bytestring, containers, data-binary-ieee754, deepseq - , fail, hashable, mtl, scientific, semigroups, stdenv, tagged - , template-haskell, text, tf-random, unordered-containers, vector - , zlib - }: - mkDerivation { - pname = "avro"; - version = "0.4.6.0"; - sha256 = "7d03f0de439d9334f1851dc6dda92405fab647d1184e42142f002ae1ed45fc88"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bifunctors binary bytestring - containers data-binary-ieee754 deepseq fail hashable mtl scientific - semigroups tagged template-haskell text tf-random - unordered-containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/avro#readme"; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "avwx" = callPackage - ({ mkDerivation, attoparsec, base, HTTP, lens, optparse-applicative - , parsers, pretty-show, stdenv, text - }: - mkDerivation { - pname = "avwx"; - version = "0.3.0.2"; - sha256 = "b4299cc4e05a4c94f53d06f05b30baac1e15c59663b59afd1dd32417a280fb0a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ attoparsec base HTTP lens parsers text ]; - executableHaskellDepends = [ - base optparse-applicative pretty-show text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.hcesperer.org/posts/2016-09-20-avwx.html"; - description = "Parse aviation weather reports"; - license = stdenv.lib.licenses.mit; - }) {}; - "aws-cloudfront-signed-cookies" = callPackage - ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types - , base, base64-bytestring, bytestring, cookie, cryptonite, lens - , lens-aeson, optparse-applicative, pem, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "aws-cloudfront-signed-cookies"; - version = "0.2.0.1"; - sha256 = "4850abc15a5614144c94e0dd4cce220c3fdb80c4904b6fa2bfe268f98c0564fa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring - bytestring cookie cryptonite lens lens-aeson optparse-applicative - pem text time unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/aws-cloudfront-signed-cookies"; - description = "Generate signed cookies for AWS CloudFront"; - license = stdenv.lib.licenses.mit; - }) {}; - "aws-lambda-haskell-runtime" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , path, path-io, safe-exceptions-checked, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "aws-lambda-haskell-runtime"; - version = "2.0.3"; - sha256 = "d95a424399e2fd4f279083071bf760578c160971df1b3efe44ab7dfc6ee598f9"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types path path-io - safe-exceptions-checked template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/aws-lambda-haskell-runtime#readme"; - description = "Haskell runtime for AWS Lambda"; - license = stdenv.lib.licenses.asl20; - }) {}; - "backprop" = callPackage - ({ mkDerivation, base, containers, deepseq, microlens, primitive - , reflection, stdenv, transformers, vector, vinyl - }: - mkDerivation { - pname = "backprop"; - version = "0.2.6.3"; - sha256 = "b19dbb860a3611a43b02ff7a9920e10158eddb16bc87b719e61180c08098637e"; - libraryHaskellDepends = [ - base containers deepseq microlens primitive reflection transformers - vector vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://backprop.jle.im"; - description = "Heterogeneous automatic differentation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bank-holidays-england" = callPackage - ({ mkDerivation, base, containers, stdenv, time }: - mkDerivation { - pname = "bank-holidays-england"; - version = "0.2.0.2"; - sha256 = "019d2d084f1340b08e6141fe05b7cf7cb62f3fb9d56a90fcc256b53031bd02e5"; - libraryHaskellDepends = [ base containers time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DaveCTurner/bank-holidays-england"; - description = "Calculation of bank holidays in England and Wales"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "barbies" = callPackage - ({ mkDerivation, base, bifunctors, stdenv }: - mkDerivation { - pname = "barbies"; - version = "1.1.3.0"; - sha256 = "c12479bf02c9b823fefea2481948d770bb82f746f8460b8047f51b921d686739"; - libraryHaskellDepends = [ base bifunctors ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcpetruzza/barbies#readme"; - description = "Classes for working with types that can change clothes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "barrier" = callPackage - ({ mkDerivation, base, blaze-svg, bytestring, stdenv - , template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "barrier"; - version = "0.1.1"; - sha256 = "6395da01eea1984c7bcc85c624b1b5dfbe0b6b764adeed7b04c9fa4d8de91ed9"; - revision = "1"; - editedCabalFile = "167akvi72l47gcqbq5609m24469pq0xmv0kjbmivnrxs796gh890"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-svg bytestring template-haskell text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/philopon/barrier"; - description = "Shields.io style badge generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.11.1"; - sha256 = "356f1542ec93e7192a9073d32a8ef1e48194275495dcec7fb0d241f4baaf6d36"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.10.5"; - sha256 = "175dcfd1453bd02ec955c05181cbf4278af145183b5899c62d3be29d866170ee"; - revision = "1"; - editedCabalFile = "15sn2qc8k0hxbb2nai341kkrci98hlhzcj2ci087m0zxcg5jcdbp"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-noprelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-noprelude"; - version = "4.12.0.0"; - sha256 = "abfa32167a9b4a68d4ae5acda2e9d66ffe883cdb780c4e626794cc44a42d62c1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/base-noprelude"; - description = "\"base\" package sans \"Prelude\" module"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.1"; - sha256 = "442bd63aed102e753b2fed15df8ae19f35ee07af26590da63837c523b64a99db"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.3"; - sha256 = "e3cc66e99d6c83aac548c4d8e6a166e5bd9cf557947cde49161026d0341267fe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.3"; - sha256 = "ee7bbe2bd314e8860a641264e956c2b5100ef5b2d5b847a69a3f3c894fa446c5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.3"; - sha256 = "ef159d60ec14c0a3f3e26bab5c9fd7634d5e1b983c6a64f0b0c3261efe008fc7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, http-api-data - , QuickCheck, serialise, stdenv, text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1.0.1"; - sha256 = "f607d07c4aab227b4536c495fa7c07b35ddc9c2c013d385c16c02f236526780e"; - revision = "3"; - editedCabalFile = "0gqyij803y0shpc5knljbffss6c1pbdanfzwlws01vkl4y10sfja"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable http-api-data QuickCheck serialise text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.11"; - sha256 = "67582b3475a5547925399f719df21f8bbbd0ca4d4db27795c22a474f8ee6346b"; - revision = "2"; - editedCabalFile = "1l95bzmn23cmx386hk3d3r0ykdaibh9rp489lcnba5g56kiy4hxg"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation#readme"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bazel-runfiles" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "bazel-runfiles"; - version = "0.7.0.1"; - sha256 = "4d217f74a7eee5dced014d74ac8a3be886d9d0c5ce8e556d8ef16535bde40a00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/rules_haskell#readme"; - description = "Locate Bazel runfiles location"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "beam-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist, free - , ghc-prim, hashable, microlens, mtl, network-uri, scientific - , stdenv, tagged, text, time, vector, vector-sized - }: - mkDerivation { - pname = "beam-core"; - version = "0.8.0.0"; - sha256 = "2893b34228b6888fdd0c49b0c7e2498d40628e74db390d9b33ce026febeee1d0"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist free ghc-prim hashable - microlens mtl network-uri scientific tagged text time vector - vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "http://travis.athougies.net/projects/beam.html"; - description = "Type-safe, feature-complete SQL query and manipulation interface for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-migrate" = callPackage - ({ mkDerivation, aeson, base, beam-core, bytestring, containers - , deepseq, dependent-map, dependent-sum, free, ghc-prim, hashable - , haskell-src-exts, microlens, mtl, parallel, pqueue, pretty - , scientific, stdenv, text, time, unordered-containers, uuid-types - , vector - }: - mkDerivation { - pname = "beam-migrate"; - version = "0.4.0.1"; - sha256 = "ce4e57a254eaaf8b20c5fa01a330c0d2264ff3997119807ee299bfac56f48589"; - libraryHaskellDepends = [ - aeson base beam-core bytestring containers deepseq dependent-map - dependent-sum free ghc-prim hashable haskell-src-exts microlens mtl - parallel pqueue pretty scientific text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://travis.athougies.net/projects/beam.html"; - description = "SQL DDL support and migrations support library for Beam"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-mysql" = callPackage - ({ mkDerivation, aeson, attoparsec, base, beam-core, bytestring - , case-insensitive, free, hashable, mtl, mysql, network-uri - , scientific, stdenv, text, time - }: - mkDerivation { - pname = "beam-mysql"; - version = "0.2.0.0"; - sha256 = "a90858baf7a687a7043c6137755e7991f9a1d6f874bb5b230ab02df7bf630092"; - libraryHaskellDepends = [ - aeson attoparsec base beam-core bytestring case-insensitive free - hashable mtl mysql network-uri scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tathougies/beam-mysql"; - description = "Connection layer between beam and MySQL/MariaDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-postgres" = callPackage - ({ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate - , bytestring, case-insensitive, conduit, free, hashable - , haskell-src-exts, lifted-base, monad-control, mtl, network-uri - , postgresql-libpq, postgresql-simple, scientific, stdenv, tagged - , text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "beam-postgres"; - version = "0.4.0.0"; - sha256 = "7bc8dfd34c6fc034bf951ae38f0c795cf1ef39263c96b069de6078afbfb9b637"; - libraryHaskellDepends = [ - aeson attoparsec base beam-core beam-migrate bytestring - case-insensitive conduit free hashable haskell-src-exts lifted-base - monad-control mtl network-uri postgresql-libpq postgresql-simple - scientific tagged text time unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://tathougies.github.io/beam/user-guide/backends/beam-postgres"; - description = "Connection layer between beam and postgres"; - license = stdenv.lib.licenses.mit; - }) {}; - "beam-sqlite" = callPackage - ({ mkDerivation, aeson, attoparsec, base, beam-core, beam-migrate - , bytestring, dlist, free, hashable, mtl, network-uri, scientific - , sqlite-simple, stdenv, text, time, unix - }: - mkDerivation { - pname = "beam-sqlite"; - version = "0.4.0.0"; - sha256 = "fcc75807e4a6052bfb0107ee8512fd0fbf6e10cc2d719cd956bd806d012a6a27"; - libraryHaskellDepends = [ - aeson attoparsec base beam-core beam-migrate bytestring dlist free - hashable mtl network-uri scientific sqlite-simple text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://tathougies.github.io/beam/user-guide/backends/beam-sqlite/"; - description = "Beam driver for SQLite"; - license = stdenv.lib.licenses.mit; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.12"; - sha256 = "a6376f4741588201ab6e5195efb1e9921bc0a899f77a5d9ac84a5db32f3ec9eb"; - revision = "1"; - editedCabalFile = "0sk6vkjwk7g1diwah67ifj7s69qvwi52ngaijkfx5prn0vz24ldn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bench-show" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, Chart, Chart-diagrams, csv - , directory, filepath, mwc-random, optparse-applicative - , optparse-simple, semigroups, split, statistics, stdenv - , transformers, vector - }: - mkDerivation { - pname = "bench-show"; - version = "0.3.1"; - sha256 = "f3643dca3e1988f76757e234ba8aafb7b02a4e49ea9636938a1cb2441b6b2e7c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base Chart Chart-diagrams csv directory filepath - mwc-random split statistics transformers vector - ]; - executableHaskellDepends = [ - ansi-wl-pprint base Chart Chart-diagrams csv directory filepath - mwc-random optparse-applicative optparse-simple semigroups split - statistics transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/bench-show"; - description = "Show, plot and compare benchmark results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "benchpress" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, time }: - mkDerivation { - pname = "benchpress"; - version = "0.2.2.12"; - sha256 = "d571e8d37f5ded433f184dcf8319757284abe6c0fce3106dd716812a5b0dab64"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl time ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/WillSewell/benchpress"; - description = "Micro-benchmarking with detailed statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bencode" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, parsec - , stdenv - }: - mkDerivation { - pname = "bencode"; - version = "0.6.0.0"; - sha256 = "3b8efdfecee9bc486d9bcdbb633b7128ca235360f102478a7e0f8c895281f68a"; - revision = "1"; - editedCabalFile = "0nvph7frmrra9k57v01saxgnhf1ma3m8qzwj1i53pswssfnj41mv"; - libraryHaskellDepends = [ - base binary bytestring containers parsec - ]; - doHaddock = false; - doCheck = false; - description = "Parser and printer for bencoded data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bencoding" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, ghc-prim - , integer-gmp, mtl, pretty, stdenv, text - }: - mkDerivation { - pname = "bencoding"; - version = "0.4.5.2"; - sha256 = "789ae242d5d04c33188ad3c277ec22e873b2ecb27c22fd7069b0ed22a5291be0"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq ghc-prim integer-gmp mtl pretty - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sergv/bencoding"; - description = "A library for encoding and decoding of BEncode data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.6"; - sha256 = "ccb2afe613b76786a6ac355515bc6bbf27459952c2692e33ea730f9901b3daca"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.4.0"; - sha256 = "d1a39686abbfed5864a8fb778d2244825b6eac977e130e7c1212e6d3a68f249d"; - revision = "1"; - editedCabalFile = "111wyqh17a6pkjhyaz8n1891m69hwr2gybqcpacw4xdmarxmi7f5"; - libraryHaskellDepends = [ base containers deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-bits" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "binary-bits"; - version = "0.5"; - sha256 = "16534a018a4754d8d1eab051711c23fb741f41a0d141b289001c52824b5be794"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Bit parsing/writing on top of binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3.1"; - sha256 = "0480c3ff498bdbba6913ee8ad70d4828cf7a766bf9336a3ed8eb73676c46d29f"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ext" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, data-binary-ieee754, errors, exceptions - , monad-control, monad-loops, mono-traversable, mtl, scientific - , stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "binary-ext"; - version = "2.0.4"; - sha256 = "6e58e19bde26d6f271916ceb43a28903136e28cf7868d86f65e68a60152ade08"; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - data-binary-ieee754 errors exceptions monad-control monad-loops - mono-traversable mtl scientific text transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/binary-ext#readme"; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = stdenv.lib.licenses.asl20; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, base, binary, stdenv, transformers }: - mkDerivation { - pname = "binary-orphans"; - version = "1.0.1"; - sha256 = "431ad40b8d812bada186c68935c0a69aa2904ca3bc57d957e1b0fb7d73b1753d"; - revision = "3"; - editedCabalFile = "1s3bk63x2rxwk611jbvpvvgrq1k7k0gd9q105cqxcbcih396ac0s"; - libraryHaskellDepends = [ base binary transformers ]; - doHaddock = false; - doCheck = false; - description = "Compatibility package for binary; provides instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.4.0"; - sha256 = "d193d3d3dca259e7299fb2c44cdd95b0a3e1bf54363ce4a9f6cda63b654bb9ca"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, cryptohash-sha1, generics-sop, hashable - , scientific, stdenv, tagged, text, time, unordered-containers - , vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.2"; - sha256 = "123021887847d88d9d8efe09ec77a2d0b604c7162c81625f9d3bc136c115ebdd"; - revision = "1"; - editedCabalFile = "0chv885zl8m7c6281sz8kfr2p7hgcl7xj0yjajjyr9whwfnylfj0"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - cryptohash-sha1 generics-sop hashable scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.2.1.1"; - sha256 = "6b24c66b20ebfd8ff2e4ac32e3b435889bba0a32477598ba69fc7adc9608160e"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bins" = callPackage - ({ mkDerivation, base, containers, finite-typelits - , ghc-typelits-knownnat, ghc-typelits-natnormalise, math-functions - , profunctors, reflection, stdenv, tagged, vector-sized - }: - mkDerivation { - pname = "bins"; - version = "0.1.2.0"; - sha256 = "8a83fe1b836f7455b060becafa19c625a3f35bc2576295d163a81dbe91bbff0e"; - libraryHaskellDepends = [ - base containers finite-typelits ghc-typelits-knownnat - ghc-typelits-natnormalise math-functions profunctors reflection - tagged vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/bins#readme"; - description = "Aggregate continuous values into discrete bins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitcoin-block" = callPackage - ({ mkDerivation, base, binary, bitcoin-tx, bitcoin-types - , bytestring, cryptohash, hexstring, largeword, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-block"; - version = "0.13.1"; - sha256 = "d7f57c0fe71045dab85d223dc15d64db3a15cc7fd8446bfe4ebd98cd9d417d5a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-tx bitcoin-types bytestring cryptohash - hexstring largeword lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin blocks"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-script" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-script"; - version = "0.11.1"; - sha256 = "398c1d86e918731b5b2026351bb3b0b90b20606517e7c21e42f05d6c6e197b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Compilation, manipulation and decompilation of Bitcoin scripts"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-tx" = callPackage - ({ mkDerivation, base, binary, bitcoin-script, bitcoin-types - , bytestring, cryptohash, hexstring, lens, stdenv - }: - mkDerivation { - pname = "bitcoin-tx"; - version = "0.13.1"; - sha256 = "3bb88265353066c394e96a56b2dc555fa13d37ca7f820978b793196c6829cc00"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bitcoin-script bitcoin-types bytestring cryptohash - hexstring lens - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Utility functions for manipulating bitcoin transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitcoin-types" = callPackage - ({ mkDerivation, base, base58string, binary, bytestring, hexstring - , stdenv, text - }: - mkDerivation { - pname = "bitcoin-types"; - version = "0.9.2"; - sha256 = "b72f9448508b64706d5f443748dc9b8abde8e749959187ce3d8356cde0d6c40b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base58string binary bytestring hexstring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Provides consistent low-level types used commonly among Bitcoin implementations"; - license = stdenv.lib.licenses.mit; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.2"; - sha256 = "5b4d38ccdb18baa9859f36baad9600ce7648da54da6e3e258f3808a2aaccafe0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.5"; - sha256 = "c5d15734689142425c65911ebeecd41f3d86d02778fa6c79b629d6fe909549b8"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - description = "Useful bitwise operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.1"; - sha256 = "ffc0f8508049717192021dabcfe77d65f604cbe107da6b8b76d45b891dbe52de"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitvec" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, gmp, integer-gmp - , primitive, stdenv, vector - }: - mkDerivation { - pname = "bitvec"; - version = "1.0.2.0"; - sha256 = "052de3ca41f1a24e6beaf0d5dd5cd0569fd4db2ee703ad7e8834bba8be883932"; - libraryHaskellDepends = [ - base deepseq ghc-prim integer-gmp primitive vector - ]; - librarySystemDepends = [ gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bitvec"; - description = "Space-efficient bit vectors"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gmp;}; - "bitx-bitcoin" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, exceptions - , http-client, http-client-tls, http-types, microlens, microlens-th - , network, QuickCheck, scientific, split, stdenv, text, time - }: - mkDerivation { - pname = "bitx-bitcoin"; - version = "0.12.0.0"; - sha256 = "31f2398bbb0deff80361fdabb108c1552ae097b15a44c6ca6674977ae735c871"; - libraryHaskellDepends = [ - aeson base bytestring deepseq exceptions http-client - http-client-tls http-types microlens microlens-th network - QuickCheck scientific split text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tebello-thejane/bitx.hs"; - description = "A Haskell library for working with the BitX bitcoin exchange"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.3.0"; - sha256 = "3b5ab376b87f481f2245f62734071a0e4a80b8ba9cd0cc67a407dd36f23c2379"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blas-carray" = callPackage - ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi - , stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "blas-carray"; - version = "0.1.0.1"; - sha256 = "f4bd1f0d73707ea92992ad18fdea6998ebca2681d76cfde577df67f61f8717ab"; - libraryHaskellDepends = [ - base blas-ffi carray netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-carray/"; - description = "Auto-generated interface to Fortran BLAS via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-comfort-array" = callPackage - ({ mkDerivation, base, blas-ffi, comfort-array - , netlib-comfort-array, netlib-ffi, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "blas-comfort-array"; - version = "0.0.0.2"; - sha256 = "a1cd40064f00c8d5c0dccb0fccaf8a61bb946f7cbbaf8e1ae008ac7b0b483cd9"; - libraryHaskellDepends = [ - base blas-ffi comfort-array netlib-comfort-array netlib-ffi - storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-comfort-array/"; - description = "Auto-generated interface to Fortran BLAS via comfort-array"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.1"; - sha256 = "85a77bd66dc55e48a0922ca1c10c484f4a01bddb31008e24bd5a7b75460fbcfe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blas-hs" = callPackage - ({ mkDerivation, base, blas, stdenv, storable-complex }: - mkDerivation { - pname = "blas-hs"; - version = "0.1.1.0"; - sha256 = "80e06b0927982b391d239f8656ed437cd29665969d1a078ea4e42a2bf196b086"; - libraryHaskellDepends = [ base storable-complex ]; - librarySystemDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Rufflewind/blas-hs"; - description = "Low-level Haskell bindings to Blas"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-colonnade" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, colonnade - , profunctors, stdenv, text - }: - mkDerivation { - pname = "blaze-colonnade"; - version = "1.2.2.1"; - sha256 = "4d3466813487b5847c2fed70cc717dab2c10495a988e100551468b8dc5c100f2"; - libraryHaskellDepends = [ - base blaze-html blaze-markup colonnade profunctors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "blaze-html backend for colonnade"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.1.2"; - sha256 = "60503f42546c6c1b954014d188ea137e43d74dcffd2bf6157c113fd91a0c394c"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.3"; - sha256 = "72f8b0ed5310e3c2e49abcc9273728555655ec5f13f3f0e1f7cd1da9ad3a35bd"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "board-games" = callPackage - ({ mkDerivation, array, base, cgi, containers, enummapset, html - , httpd-shed, network-uri, non-empty, QuickCheck, random, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "board-games"; - version = "0.3"; - sha256 = "a77bcfe67d4c83ab0b15f1fdbed553d786416a83d2ba9bdb023b4840fd8a9cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base cgi containers enummapset html non-empty QuickCheck - random transformers utility-ht - ]; - executableHaskellDepends = [ - array base cgi containers html httpd-shed network-uri non-empty - random transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/games/"; - description = "Three games for inclusion in a web server"; - license = "GPL"; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolean-normal-forms" = callPackage - ({ mkDerivation, base, cond, containers, deepseq, stdenv }: - mkDerivation { - pname = "boolean-normal-forms"; - version = "0.0.1.1"; - sha256 = "59a9474c0b4a0e7b0812c401f80c4e1032d1c8627c92f29dd7e51d660ea1547f"; - libraryHaskellDepends = [ base cond containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "Boolean normal form: NNF, DNF & CNF"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boots" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv }: - mkDerivation { - pname = "boots"; - version = "0.0.100"; - sha256 = "9f55de481474fb3630c6f0c14ffa4cda5f5e86a6d3e2299e7c3498f20b2cc860"; - libraryHaskellDepends = [ base exceptions mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/boots#readme"; - description = "IoC Monad in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, constraints, dec - , fin, generics-sop, singleton-bool, stdenv, streams, tagged - , transformers, transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1.2"; - sha256 = "5926f11595064f71e562d8293deedca0678b463755361f3e6567dd3c0a6ee824"; - revision = "3"; - editedCabalFile = "1d7xl2dxm4v33j1bd5450x1mh86x8kb24qjvad8nk98dmgf63ah2"; - libraryHaskellDepends = [ - adjunctions base base-compat constraints dec fin generics-sop - singleton-bool streams tagged transformers transformers-compat vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bounded-queue" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "bounded-queue"; - version = "1.0.0"; - sha256 = "ad7056ad562c19841bf5e8d911de3ce90df6d49ff83bf45d341bf0e97e9b54a2"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/bounded-queue"; - description = "A strict, immutable, thread-safe, single-ended, bounded queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brick" = callPackage - ({ mkDerivation, base, config-ini, containers, contravariant - , data-clist, deepseq, directory, dlist, filepath, microlens - , microlens-mtl, microlens-th, stdenv, stm, template-haskell, text - , text-zipper, transformers, unix, vector, vty, word-wrap - }: - mkDerivation { - pname = "brick"; - version = "0.47.1"; - sha256 = "30913841ced247545f77c23b7f3665c108c9017119556ff7fffd5d6d72cf0e68"; - configureFlags = [ "-fdemos" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base config-ini containers contravariant data-clist deepseq - directory dlist filepath microlens microlens-mtl microlens-th stm - template-haskell text text-zipper transformers unix vector vty - word-wrap - ]; - executableHaskellDepends = [ - base microlens microlens-th text text-zipper vector vty word-wrap - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/brick/"; - description = "A declarative terminal user interface library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.4"; - sha256 = "148309e23eb8b261c1de374712372d62d8c8dc8ee504c392809c7ec33c0a0e7c"; - revision = "2"; - editedCabalFile = "0bz62lxdbnwkfr1d4ngm8xi4y1ndpdflbv71s6h43vp5lbd546hr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bson" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , data-binary-ieee754, mtl, network, stdenv, text, time - }: - mkDerivation { - pname = "bson"; - version = "0.3.2.8"; - sha256 = "881cbef714750200c284f7474c1d5152454a722b1ed93e29b33b53b881961df7"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 data-binary-ieee754 mtl - network text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mongodb-haskell/bson"; - description = "BSON documents are JSON-like objects with a standard binary encoding"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bson-lens" = callPackage - ({ mkDerivation, base, bson, lens, stdenv, text }: - mkDerivation { - pname = "bson-lens"; - version = "0.1.1"; - sha256 = "d73bb417def2d8cb1efebfc22482a859e119bcc4005dd10106c82dff5ceeb160"; - libraryHaskellDepends = [ base bson lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/bson-lens"; - description = "BSON lenses"; - license = stdenv.lib.licenses.mit; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.2.0.0"; - sha256 = "22ffcc2c0168992f4fcf06bd2b3467392b889801b2d3ab45212cc4a1c8f2a6c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.7"; - sha256 = "b389fac5ce61818adb8451550762aca135c34b9007b68be5a8d9a0fa45583f58"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bugsnag-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, Glob, http-client, http-client-tls, http-conduit - , http-types, iproute, network, parsec, stdenv, template-haskell - , text, th-lift-instances, time, ua-parser, wai - }: - mkDerivation { - pname = "bugsnag-haskell"; - version = "0.0.3.0"; - sha256 = "98258f64568d1898a70e5c3d8faaacfd1c06c3fa79f30e1c9abe3dba87c63cbc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers Glob http-client - http-client-tls http-conduit http-types iproute network parsec - template-haskell text th-lift-instances time ua-parser wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/bugsnag-haskell#readme"; - description = "Bugsnag error reporter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "bulletproofs" = callPackage - ({ mkDerivation, arithmoi, base, containers, cryptonite, memory - , MonadRandom, protolude, random-shuffle, stdenv, text - }: - mkDerivation { - pname = "bulletproofs"; - version = "0.4.0"; - sha256 = "6c6ea840f4d22e07bc0325dcbc6f41004b627e1868ddd13939fdd6105e41842b"; - libraryHaskellDepends = [ - arithmoi base containers cryptonite memory MonadRandom protolude - random-shuffle text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/bulletproofs#readme"; - license = stdenv.lib.licenses.asl20; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.2.3"; - sha256 = "05177cb934f3cb6acfa5b0567321efa3987cbdee09a5dfbca8a9cc84bd62f152"; - revision = "1"; - editedCabalFile = "06vy9018ia6sncgxdmv4ili2krkqn1b6r7xz4raa18kdvgnl100v"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butter" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , forkable-monad, free, HUnit, network-simple, stdenv, stm - , template-haskell, text, transformers - }: - mkDerivation { - pname = "butter"; - version = "0.1.0.6"; - sha256 = "8640b2681a57c0bc545684c821e80a97d57fe14bc6036e9030dc4cc63c2e4164"; - libraryHaskellDepends = [ - aeson base bytestring containers forkable-monad free HUnit - network-simple stm template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/Butter#readme"; - description = "Monad Transformer for Asyncronous Message Passing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp, keys - , mono-traversable, mono-traversable-keys, primitive, QuickCheck - , stdenv, text-show - }: - mkDerivation { - pname = "bv-little"; - version = "1.1.1"; - sha256 = "d936b6eabc60706a2a0668ce88b7f0787feddbd82315b669a19eb1f9288e990c"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp keys mono-traversable - mono-traversable-keys primitive QuickCheck text-show - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, bytestring, Cabal, cabal-doctest - , cereal, containers, hashable, mtl, scientific, stdenv, text, time - , transformers, transformers-compat, unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.15.5"; - sha256 = "039935e6b367eb8657aa3eb109e719b257a06524b0d9ff5246e8029bb7a07118"; - revision = "1"; - editedCabalFile = "0k05cszpxmdwgnbxhmlmmvsxkwlanvz8dn0p3f6bzs8qlv3kbhm7"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytestring cereal containers hashable mtl scientific - text time transformers transformers-compat unordered-containers - void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.2.0"; - sha256 = "27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5.3"; - sha256 = "adcc72c11187604db87d1f7f9f679f8d40102a1ab904dcbbb1524cd445849e5c"; - revision = "1"; - editedCabalFile = "0i3gnzb2dlhxyjx5zbbgycf9l285amwj98s6drvq2hih21z4d3h6"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-to-vector" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "bytestring-to-vector"; - version = "0.3.0.1"; - sha256 = "ccfb5bdccd88a5be488acb291a5863d9026e109d2178e58d87948b43b519284a"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/bytestring-to-vector"; - description = "Convert between ByteString and Vector.Storable without copying"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.3"; - sha256 = "26cca5f48754d3d9435370fc2ee946c975c760a73345907d24fcc65b3f97e86c"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib" = callPackage - ({ mkDerivation, base, bytestring, bzip2, stdenv }: - mkDerivation { - pname = "bzlib"; - version = "0.5.0.5"; - sha256 = "9ee7d0ac7461b330820af928c13c6668bf4fe3601f171c42432a85c33718017e"; - revision = "1"; - editedCabalFile = "1d4ra5prh2q9h8inpwvrsmkmg1ndisdj47jv06iijpj6xdp5bapl"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the bzip2 format"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.2"; - sha256 = "eb2c732b3d4ab5f7b367c51eef845e597ade19da52c03ee11954d35b6cfc4128"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.6"; - sha256 = "91dd121ac565009f2fc215c50f3365ed66705071a698a545e869041b5d7ff4da"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "ca-province-codes" = callPackage - ({ mkDerivation, aeson, base, stdenv, text }: - mkDerivation { - pname = "ca-province-codes"; - version = "1.0.0.0"; - sha256 = "03e3427723546165237d5e27d1e24803ca6b7a5fd88a4e2a752bed812cae15d2"; - libraryHaskellDepends = [ aeson base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/ca-province-codes#readme"; - description = "ISO 3166-2:CA Province Codes and Names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.8"; - sha256 = "2026a6a87d410202ce091412ca6bc33c5aca787025326b4a3d13425a23392e0e"; - revision = "1"; - editedCabalFile = "0z0r7h2y5six2zgfylcwr9g4j78qph35zqglk9lz4za1klvgdprl"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-file-th" = callPackage - ({ mkDerivation, base, Cabal, directory, pretty, stdenv - , template-haskell - }: - mkDerivation { - pname = "cabal-file-th"; - version = "0.2.6"; - sha256 = "dc06f84889253b1d5e6d2859906283adc823f775091cee3155c0eabafa49554d"; - libraryHaskellDepends = [ - base Cabal directory pretty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nkpart/cabal-file-th"; - description = "Template Haskell expressions for reading fields from a project's cabal file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-install" = callPackage - ({ mkDerivation, array, async, base, base16-bytestring, binary - , bytestring, Cabal, containers, cryptohash-sha256, deepseq - , directory, echo, edit-distance, filepath, hackage-security - , hashable, HTTP, mtl, network, network-uri, parsec, pretty - , process, random, stdenv, stm, tar, text, time, unix, zip-archive - , zlib - }: - mkDerivation { - pname = "cabal-install"; - version = "2.4.1.0"; - sha256 = "69bcb2b54a064982412e1587c3c5c1b4fada3344b41b568aab25730034cb21ad"; - revision = "3"; - editedCabalFile = "1mnm6mfrgavq3blvkm3wz45pqrj10apjihg1g9cds58qp19m9r1h"; - configureFlags = [ "-f-native-dns" ]; - isLibrary = false; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath process ]; - executableHaskellDepends = [ - array async base base16-bytestring binary bytestring Cabal - containers cryptohash-sha256 deepseq directory echo edit-distance - filepath hackage-security hashable HTTP mtl network network-uri - parsec pretty process random stm tar text time unix zip-archive - zlib - ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir $out/etc - mv bash-completion $out/etc/bash_completion.d - ''; - homepage = "http://www.haskell.org/cabal/"; - description = "The command-line interface for Cabal and Hackage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat - , base16-bytestring, bytestring, containers, directory, filepath - , mtl, optics-core, optparse-applicative, parsec, process - , semialign, singleton-bool, stdenv, text, these, topograph - , transformers, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.6.2.0"; - sha256 = "efbbf4e00c60bc1d59343a4785527f400bf4cd4ea830f1b25a09c64ea4f78b3f"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring containers directory - filepath text - ]; - executableHaskellDepends = [ - ansi-terminal async base base-compat bytestring containers - directory mtl optics-core optparse-applicative parsec process - semialign singleton-bool text these topograph transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, optparse-applicative - , process, simple-cabal, simple-cmd, simple-cmd-args, stdenv, time - , unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "1.0.3"; - sha256 = "d5383fecab21fe837ad809e158d70e70130ee9d594d6e6b0ccb3e4b7462f15c8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit optparse-applicative process - simple-cabal simple-cmd simple-cmd-args time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, bytestring, Cabal - , containers, deepseq, directory, distribution-nixpkgs, filepath - , hackage-db, hopenssl, hpack, language-nix, lens, monad-par - , monad-par-extras, mtl, optparse-applicative, pretty, process - , split, stdenv, text, time, transformers, yaml - }: - mkDerivation { - pname = "cabal2nix"; - version = "2.14.4"; - sha256 = "103ff1f0ddcc6feee546f0d6e187eda47380c6337fe37a6ec65117863b6fb85f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base bytestring Cabal containers deepseq - directory distribution-nixpkgs filepath hackage-db hopenssl hpack - language-nix lens optparse-applicative pretty process split text - time transformers yaml - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory - distribution-nixpkgs filepath hopenssl language-nix lens monad-par - monad-par-extras mtl optparse-applicative pretty - ]; - doHaddock = false; - doCheck = false; - preCheck = '' - export PATH="$PWD/dist/build/cabal2nix:$PATH" - export HOME="$TMPDIR/home" - ''; - homepage = "https://github.com/nixos/cabal2nix#readme"; - description = "Convert Cabal files into Nix build instructions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.2.2.1"; - sha256 = "5ed56787f30468750cd356a160e7c73eda58c5ca100634ae343efc6d5619634b"; - revision = "1"; - editedCabalFile = "09bkjwnr01mgn1yf861p3dai18kgpm5mvw8nmh5zvdr8sgqi207v"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.3.0"; - sha256 = "42e9d9f040fab2fd5fc1095a901d6348de73342b1d14254bdaf6ca3d4f11e534"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cacophony" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, exceptions, free - , lens, memory, monad-coroutine, mtl, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "cacophony"; - version = "0.10.1"; - sha256 = "52c5ac525767c89e103fcf50ebf8db2a9425904abea2e570b37c7fdf2a013bf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cryptonite exceptions free lens memory - monad-coroutine mtl safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/cacophony#readme"; - description = "A library implementing the Noise protocol"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0.0.1"; - sha256 = "8cd39ccf4fbe538f8e5d434d0efd0c559074420b9283d2c7c4b7ab6262b4d529"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.1.0"; - sha256 = "f25f5e0992a39371079cc25c2a14b5abb872fa7d868a32753aac3a258b83b1e2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.0.11"; - sha256 = "a7ce6d17e50caaa0f19ad8e67361499022860554c521b1e57993759da3eb37e3"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.1"; - sha256 = "106271c00246b551f2ef6a2e511437c9f0e1f3bb920a283f6f9eaa0940b4f8ca"; - revision = "1"; - editedCabalFile = "1n7w4w2icfppyvlmyzzmfivbx175ckqabs4my5qvvdvwlc89xrqb"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.2.0"; - sha256 = "b30d2ad5894519e364130c0510f167a4ffaf0e08a1e24c9a64238c855bfe0106"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-conduit" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, containers, mtl, stdenv, text - }: - mkDerivation { - pname = "cassava-conduit"; - version = "0.5.1"; - sha256 = "b55b72e9d52a40473f609c0c406db41bd92178a493f191295a7d8f23d89677f8"; - libraryHaskellDepends = [ - array base bifunctors bytestring cassava conduit containers mtl - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domdere/cassava-conduit"; - description = "Conduit interface for cassava package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-megaparsec" = callPackage - ({ mkDerivation, base, bytestring, cassava, megaparsec, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava-megaparsec"; - version = "2.0.1"; - sha256 = "e38e7849da5bcf2b20aff6b85c447c0cdfc2007f1bf3fb2a8bc67f8b129f9a60"; - libraryHaskellDepends = [ - base bytestring cassava megaparsec unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/cassava-megaparsec"; - description = "Megaparsec parser of CSV files that plays nicely with Cassava"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava-records" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, foldl - , stdenv, template-haskell, text, unordered-containers, vector - }: - mkDerivation { - pname = "cassava-records"; - version = "0.1.0.4"; - sha256 = "11f832c11125bd7a73b57941284d9aeb7f1e7572004da7e37311b34d3366af8d"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava foldl template-haskell text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/cassava-records#readme"; - description = "Auto-generation of records data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "caster" = callPackage - ({ mkDerivation, base, bytestring, fast-builder, stdenv, stm, text - , unix-time - }: - mkDerivation { - pname = "caster"; - version = "0.0.3.0"; - sha256 = "72aadc554ca149b3b586eeab57c745be2ce540520d352f50f7c1b1b3a3feac72"; - libraryHaskellDepends = [ - base bytestring fast-builder stm text unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kirisaki/caster#readme"; - description = "Multicast, thread-safe, and fast logger"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, dual, stdenv, transformers }: - mkDerivation { - pname = "category"; - version = "0.2.5.0"; - sha256 = "870b624395000ccfadb2ec5b739e6dc7d54c03ab2beaaac8ee2bfcb0063eca47"; - libraryHaskellDepends = [ alg base dual transformers ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cayley-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , exceptions, http-client, http-conduit, lens, lens-aeson, mtl - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cayley-client"; - version = "0.4.9"; - sha256 = "ff9ce08f141477cb855ac1f91505f7ab400722ee74b6e420a3179288bb182016"; - libraryHaskellDepends = [ - aeson attoparsec base binary bytestring exceptions http-client - http-conduit lens lens-aeson mtl text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/cayley-client"; - description = "A Haskell client for the Cayley graph database"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , ghc-prim, half, integer-gmp, primitive, stdenv, text - }: - mkDerivation { - pname = "cborg"; - version = "0.2.2.1"; - sha256 = "ba920d368892fe14e048cd6ac4270ce4ea1aea0fb6a4998c5c97fe106e6c6183"; - libraryHaskellDepends = [ - array base bytestring containers deepseq ghc-prim half integer-gmp - primitive text - ]; - doHaddock = false; - doCheck = false; - description = "Concise Binary Object Representation (CBOR)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, cborg, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "cborg-json"; - version = "0.2.2.0"; - sha256 = "ab68a2457cb71a76699d7a8df07a880ea70c51d2c1a891b12669ca9ccfa7517b"; - libraryHaskellDepends = [ - aeson aeson-pretty base cborg scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A library for encoding JSON as CBOR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.8.1"; - sha256 = "2d9e88ac934b9ebc058097c72011ff59f3f146176310e1c957a0e4cf63681bd7"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-time" = callPackage - ({ mkDerivation, base, cereal, stdenv, time }: - mkDerivation { - pname = "cereal-time"; - version = "0.1.0.0"; - sha256 = "bec6d5103ec45bee242825da4cf695f574f101bb1d48778bf7823175dfa43cb2"; - libraryHaskellDepends = [ base cereal time ]; - doHaddock = false; - doCheck = false; - description = "Serialize instances for types from `time` package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cfenv" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "cfenv"; - version = "0.1.0.0"; - sha256 = "8ce96643559ebe4504c0641f9817d8795b22631f614084af50c88e51277e747e"; - libraryHaskellDepends = [ aeson base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomphp/haskell-cfenv#readme"; - description = "A library getting the environment when running on Cloud Foundry"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cgi" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, mtl - , multipart, network-uri, parsec, stdenv, time, xhtml - }: - mkDerivation { - pname = "cgi"; - version = "3001.4.0.0"; - sha256 = "b308c57d78354c737b479af3c07d672022e72af9ee01ebc99d53e3597d8116b4"; - revision = "2"; - editedCabalFile = "1y0gh51qzdkmvla5r02vab8i9r90m4qqglb0iyy888yc4lw2v6jj"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers exceptions mtl multipart network-uri - parsec time xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cheecheeo/haskell-cgi"; - description = "A library for writing CGI programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.4.1"; - sha256 = "926fcb205f6d43ed3a2b85b8e88a6c99a2deb097bc7988116c493a04a52547cf"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , data-default, deepseq, mtl, stdenv, syb, text, uniplate - , xss-sanitize - }: - mkDerivation { - pname = "cheapskate"; - version = "0.1.1.2"; - sha256 = "ed374897c39391fcf760552e6468def39fe36c3185708ca83056660ca3a2c69e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html containers data-default deepseq mtl syb text - uniplate xss-sanitize - ]; - executableHaskellDepends = [ base blaze-html bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/cheapskate"; - description = "Experimental markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-highlight" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, highlighting-kate - , stdenv, text - }: - mkDerivation { - pname = "cheapskate-highlight"; - version = "0.1.0.0"; - sha256 = "5af7afb26b4ea80952963b44db695cbf18da34d3e8a7d32382a7dbfa4832d370"; - revision = "1"; - editedCabalFile = "1c8kxqdqf0j962xjdrrjfcbjsl0c1kax31rjykymv7w16d6hmlj4"; - libraryHaskellDepends = [ - base blaze-html cheapskate highlighting-kate text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-highlight"; - description = "Code highlighting for cheapskate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cheapskate-lucid" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, lucid, stdenv }: - mkDerivation { - pname = "cheapskate-lucid"; - version = "0.1.0.0"; - sha256 = "f582e512befd2707a7056c1d15541967de2e0ce5702bc2197a3fced58a777245"; - revision = "1"; - editedCabalFile = "197nx95xw21i7zyvgzcgnr36ab6vrk17c66iz8ndwz61vp1jf6hc"; - libraryHaskellDepends = [ base blaze-html cheapskate lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cheapskate-lucid"; - description = "Use cheapskate with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "check-email" = callPackage - ({ mkDerivation, base, bytestring, email-validate, resolv, stdenv - }: - mkDerivation { - pname = "check-email"; - version = "1.0.2"; - sha256 = "1c2615fadba09a5d7aa5c68648d12218a595efb759842fb4f524cf380afa9327"; - libraryHaskellDepends = [ base bytestring email-validate ]; - librarySystemDepends = [ resolv ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qoelet/check-email#readme"; - description = "Confirm whether an email is valid and probably existant"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) resolv;}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.5.2"; - sha256 = "7886d049692925687f5373ab9abb9803fb0bcef53f65b7fa3483ed98a9f10ed7"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chimera" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "chimera"; - version = "0.2.0.0"; - sha256 = "f1939577fd0aabeda544de27b286f5a494c5bc76bf12da070b0c9f86aedf36c3"; - revision = "1"; - editedCabalFile = "029hpcs3x1sv3jsq10bygm4246b4gy83yxg3s4r98f37055dyzyd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/chimera#readme"; - description = "Lazy, infinite streams with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chiphunk" = callPackage - ({ mkDerivation, base, c2hs, hashable, safe-exceptions, StateVar - , stdenv, vector-space - }: - mkDerivation { - pname = "chiphunk"; - version = "0.1.2.1"; - sha256 = "7855a903402e3a27c918dde42a966eabbd3ff07227464c95b6b6af6990e8b20e"; - libraryHaskellDepends = [ - base hashable safe-exceptions StateVar vector-space - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/CthulhuDen/chiphunk#readme"; - description = "Haskell bindings for Chipmunk2D physics engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chronos" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, clock - , hashable, primitive, semigroups, stdenv, text, torsor, vector - }: - mkDerivation { - pname = "chronos"; - version = "1.0.9"; - sha256 = "1b275777ea6b480c94510e168e9a373a4d56d4128655e510d72c4c2cdbe57b80"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock hashable primitive - semigroups text torsor vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/chronos"; - description = "A performant time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chronos-bench" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, chronos - , containers, deepseq, optparse-applicative, process, stdenv - , terminal-size - }: - mkDerivation { - pname = "chronos-bench"; - version = "0.2.0.2"; - sha256 = "1b1880b02973dad0bad3a6fa18d6f85f7e0b2fadc602de83dd91e4fbbe255bc0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring chronos containers deepseq - optparse-applicative process terminal-size - ]; - executableHaskellDepends = [ base optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/chronos"; - description = "Benchmarking tool with focus on comparing results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-aes128" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cereal, crypto-api - , process, stdenv, tagged - }: - mkDerivation { - pname = "cipher-aes128"; - version = "0.7.0.5"; - sha256 = "3cb4f4e893928e1daae862434e09f4978097d6be8a3fc35efb4ed6a454c94ead"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/cipher-aes128"; - description = "AES and common modes using AES-NI when available"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-blowfish" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-blowfish"; - version = "0.0.3"; - sha256 = "8f41170a851dba6d0b6f07298af3213baca09ab2a8aaf2adb733631feb3b6641"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Blowfish cipher"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "circle-packing" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "circle-packing"; - version = "0.1.0.6"; - sha256 = "64ee44a90da3e5fe20d5b78bfe6eba93102a6b52c65f8a7b99af7799798ee81b"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Simple heuristic for packing discs of varying radii in a circle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.4"; - sha256 = "6f550e999cb3b3bf1d4d041363c0bead0eec02f078dc51301873cc450143a244"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "DEPRECATED in favor of webex-teams-api"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.5.0"; - sha256 = "d3bae4b17fdf73d7255f550ad172b1f709a8743371aa3a40c13c2cdc9fa7a4da"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.5.0"; - sha256 = "da27783595cd6b94ea5cb93f3e81084a664e65ed4766757a5e7f81fb3df8fd00"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.5.0"; - sha256 = "9ffbc4447ec2df8131ca32c259da19f379109d6e44569a7ee16714ab67029f83"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "classyplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "classyplate"; - version = "0.3.2.0"; - sha256 = "712eefbe6b6fd92d6e5e7982d82a27e45b7992a83c2b09fc8696b1e30752527a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Fuseable type-class based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.3"; - sha256 = "5db3c4c4a40f377b808a1569c5f8aeeea3ecdd2191f4fbbcd0f22b23fdd254a4"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "closed" = callPackage - ({ mkDerivation, aeson, base, cassava, deepseq, hashable - , persistent, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "closed"; - version = "0.2.0.1"; - sha256 = "564334f7c6d0fcc06daade2ddafc15210bcdf9717b875da7ba2a1fbb655be4b4"; - libraryHaskellDepends = [ - aeson base cassava deepseq hashable persistent QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/closed#readme"; - description = "Integers bounded by a closed interval"; - license = stdenv.lib.licenses.mit; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "fe2abf0386c96df6e51cbae4f45e074b54452fc01f9308b098198ade4ffc5ea4"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.2"; - sha256 = "eca2c21c6d3d9d3e6f26f7ca36db99680120c8f959fdbfef8c970aac131936c0"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark"; - version = "0.6"; - sha256 = "0dec55cd4e02ac6ff557044a9aa2523479afc88370d3838430b3e386bef981dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/cmark-hs"; - description = "Fast, accurate CommonMark (Markdown) parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.2.1"; - sha256 = "4330e20dcdf4ca2586585298093d2c514d4b59c208bb38283219a8f3726470e1"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "co-log" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, chronos - , co-log-core, containers, contravariant, directory, filepath - , markdown-unlit, mtl, stdenv, stm, text, transformers, typerep-map - }: - mkDerivation { - pname = "co-log"; - version = "0.3.0.0"; - sha256 = "0a6a5bbdadff762aae73b59dd67fddf6a7934c73826cd0489214048d077b3d67"; - revision = "3"; - editedCabalFile = "0z2456b49k0qfd4fzvbwndvdvnwfvsmhyxd5gmbiz7l7b458dq3s"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring chronos co-log-core containers - contravariant directory filepath mtl stm text transformers - typerep-map - ]; - executableHaskellDepends = [ - base co-log-core mtl text typerep-map - ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "co-log-core" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "co-log-core"; - version = "0.2.1.0"; - sha256 = "e0c7cf12e9d9ca89b51892a0bdbe24bf4f20c43bb38bec0090b292061793cdc9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.2"; - sha256 = "bfe32a8c4be9cf0d5a088267bf3fdf4adda8ba3f109e85675c93e70d575e1844"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec" = callPackage - ({ mkDerivation, aeson, base, binary, binary-bits, bytestring, mtl - , profunctors, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "codec"; - version = "0.2.1"; - sha256 = "ffc261b58108c3d90c0b0b68461857d1148208d1a9645916e63241aaa3c25b28"; - libraryHaskellDepends = [ - aeson base binary binary-bits bytestring mtl profunctors - template-haskell text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chpatrick/codec"; - description = "Simple bidirectional serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.2.0"; - sha256 = "61eb624e5f347ec9249f976bc8b62ae597777604d82ab0e62acb9901374ae365"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "codo-notation" = callPackage - ({ mkDerivation, base, comonad, haskell-src-meta, parsec, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "codo-notation"; - version = "0.5.2"; - sha256 = "78eb57004541ed29eb4c54196b91ac2dd1028a3315f51cd4dc00debfc0938eaf"; - libraryHaskellDepends = [ - base comonad haskell-src-meta parsec template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - description = "A notation for comonads, analogous to the do-notation for monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "coercible-utils" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "coercible-utils"; - version = "0.0.0"; - sha256 = "2a624986cdc010c7fc3e90f8c94f722995af9fe6e88b9d52a94ebaa319b08c98"; - revision = "1"; - editedCabalFile = "1xbnkv6fqf4mizqkha8b073p0r84l1rx1kzdsd6nh8b0adrp6i4d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/coercible-utils"; - description = "Utility functions for Coercible types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colonnade" = callPackage - ({ mkDerivation, base, bytestring, contravariant, profunctors - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "colonnade"; - version = "1.2.0.2"; - sha256 = "244f0feb381896d17b194c1c63fcfcd696d59a5be88e777609ca88fbc2e952ab"; - revision = "1"; - editedCabalFile = "1aq72ri6labv8vsf6s3h8mkry4kiig9659lgdmrqr8ngyp7jwp69"; - libraryHaskellDepends = [ - base bytestring contravariant profunctors semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/colonnade#readme"; - description = "Generic types and functions for columnar encoding and decoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.2"; - sha256 = "0b42ff47e011f011f73e444d7121b7bc54324077cb2a1011ee01766483706578"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.5"; - sha256 = "3b8d471979617dce7c193523743c9782df63433d8e87e3ef6d97922e0da104e7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "columnar" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers, enum-text - , fmt, lens, possibly, rio, stdenv, template-haskell, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "columnar"; - version = "1.0.0.0"; - sha256 = "5b192ad8db18eaa486e02954994716bef57ca4921a13ceaf15827196da72c561"; - libraryHaskellDepends = [ - base bytestring cassava containers enum-text fmt lens possibly rio - template-haskell text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/columnar#readme"; - description = "A CSV toolkit based on cassava and enum-text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1.0.1"; - sha256 = "c4d67854fecd353f5e7e6be009ffbd16cd6e9f6f41af16f072ae89778596db70"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-array" = callPackage - ({ mkDerivation, base, containers, deepseq, guarded-allocation - , non-empty, prelude-compat, primitive, QuickCheck, semigroups - , stdenv, storable-record, tagged, transformers, utility-ht - }: - mkDerivation { - pname = "comfort-array"; - version = "0.4"; - sha256 = "35dcc0e36f684ed52a4aca08281db4fa28840106ed161b71e4e56daaf7d6734b"; - libraryHaskellDepends = [ - base containers deepseq guarded-allocation non-empty prelude-compat - primitive QuickCheck semigroups storable-record tagged transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-array/"; - description = "Arrays where the index type is a function of the shape type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3.1"; - sha256 = "c926189971d0b416b4b078a1652de65a12a9fabd013d2373204bbe96fef8b562"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv, vector }: - mkDerivation { - pname = "commutative"; - version = "0.0.2"; - sha256 = "ccbc6a445bbc5c26a504a322664b2275e9834fdc17c80a2bdcef0dc517609969"; - libraryHaskellDepends = [ base random semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/commutative#readme"; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , distributive, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.6"; - sha256 = "77cfb016acd1747b892c31b82daf0de93f508ba775d62562d376b354adb88fae"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers distributive tagged transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compact" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-compact, stdenv }: - mkDerivation { - pname = "compact"; - version = "0.1.0.1"; - sha256 = "ee8533e16b94bbbf3519ccad26f3e569d60d33a5a9d2e3636e0764aff7b2d653"; - revision = "2"; - editedCabalFile = "1sy8szbmbhn13s54bq04ni234kk05najm3xm0sh6r9qnvg7pcjd7"; - libraryHaskellDepends = [ base binary bytestring ghc-compact ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ezyang/compact"; - description = "Non-GC'd, contiguous storage for immutable data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.7.3"; - sha256 = "af211a8217f42e27df5744de7852d89649ad666af22aee8df9ddfe3764923d21"; - revision = "1"; - editedCabalFile = "1ax4jq2hp5737yvi3lxvyj3c4bzkg10h4c7w3nw0hgfcn1ng49kc"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.7.0.0"; - sha256 = "06b88e915de3caaa0d0cbbbaf9dba2d8f03ab244f7d7987766a77ad10523ef9b"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.11"; - sha256 = "e30a5f8164f6e172349c4f882455d4e28d6b007443f308562a9304541e562ab4"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1.1"; - sha256 = "ae0028cfaf27da2c4d0e70783e8f45e82d33f402af1dfc6778c8ab81cf542f45"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-supply" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "concurrent-supply"; - version = "0.1.8"; - sha256 = "ccf827dcd221298ae93fad6021c63a06707456de0671706b44f1f2fed867f21f"; - revision = "1"; - editedCabalFile = "1yzrr68k81w3jmrarx3y6z7ymzaaxwab509pp6kkd2fjia3g8wwk"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/concurrent-supply/"; - description = "A fast concurrent unique identifier supply with a pure API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.1.2"; - sha256 = "78e2cbe92cdadb89cb1dba486bb0834d23d5c09b0db43e3c307f1819f30e8289"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, conduit-zstd, containers - , deepseq, exceptions, lzma-conduit, monad-control, mtl, pqueue - , resourcet, stdenv, stm, stm-conduit, streaming-commons - , transformers, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.11.0"; - sha256 = "31edb5d0a4a1bc03c31b0cafe27255ce4f30bd402798454faf71cf09c6e73230"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra conduit-zstd containers deepseq exceptions - lzma-conduit monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-concurrent-map" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, resourcet, stdenv - , unliftio, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-concurrent-map"; - version = "0.1.1"; - sha256 = "527c429c39eaf5181e2aa8e5a6fcafd552149cc37b0b9d21003ff6507cd6c766"; - libraryHaskellDepends = [ - base conduit containers mtl resourcet unliftio unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/conduit-concurrent-map"; - description = "Concurrent, order-preserving mapping Conduit"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.4"; - sha256 = "b17381c259305eaa1752cbaedf2319757efc1b975633d73d5ab7c89d461b05b5"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-iconv" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv }: - mkDerivation { - pname = "conduit-iconv"; - version = "0.1.1.3"; - sha256 = "1c71304782e4599a2987321028b50356c4982b45d9096d954e0b7c0b7ad3acb6"; - libraryHaskellDepends = [ base bytestring conduit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdroege/conduit-iconv"; - description = "Conduit for character encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-throttle" = callPackage - ({ mkDerivation, async, base, conduit, conduit-combinators - , conduit-extra, monad-control, resourcet, stdenv, stm, stm-chans - , throttle-io-stream, unliftio, unliftio-core - }: - mkDerivation { - pname = "conduit-throttle"; - version = "0.3.1.0"; - sha256 = "8dd6d616f5ddce25668bb34069bfdcdfe2a866c8d708b725a9b2e450a95aa329"; - libraryHaskellDepends = [ - async base conduit conduit-combinators conduit-extra monad-control - resourcet stm stm-chans throttle-io-stream unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/conduit-throttle#readme"; - description = "Throttle Conduit Producers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit-zstd" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv, zstd }: - mkDerivation { - pname = "conduit-zstd"; - version = "0.0.1.1"; - sha256 = "8681f59d08399f92478329b0cdd555ae5a1b7d12ef8acee423fcc10192e00712"; - libraryHaskellDepends = [ base bytestring conduit zstd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-zstd#readme"; - description = "Conduit-based ZStd Compression"; - license = stdenv.lib.licenses.mit; - }) {}; - "config-ini" = callPackage - ({ mkDerivation, base, containers, megaparsec, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "config-ini"; - version = "0.2.4.0"; - sha256 = "6e5194e8acb7d189f0904852138990d03b64f86b9fde8f591ee1341d5627d535"; - revision = "1"; - editedCabalFile = "15ryq15851m9hzljamw5spr6hzr6picgf6s3xzkn7nviidcq78mz"; - libraryHaskellDepends = [ - base containers megaparsec text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aisamanra/config-ini"; - description = "A library for simple INI-based configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configuration-tools" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , base-unicode-symbols, base64-bytestring, bytestring, Cabal - , case-insensitive, connection, data-default, deepseq, directory - , dlist, enclosed-exceptions, filepath, http-client - , http-client-tls, http-types, monad-control, mtl, network-uri - , optparse-applicative, process, profunctors, semigroupoids - , semigroups, stdenv, text, tls, transformers, unordered-containers - , x509, x509-system, x509-validation, yaml - }: - mkDerivation { - pname = "configuration-tools"; - version = "0.4.1"; - sha256 = "48527b0e199dd1e405cd0eeb36fa03641a3d1cd1e47158336a946c138a99deb0"; - setupHaskellDepends = [ - base bytestring Cabal directory filepath process - ]; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base-unicode-symbols - base64-bytestring bytestring Cabal case-insensitive connection - data-default deepseq directory dlist enclosed-exceptions filepath - http-client http-client-tls http-types monad-control mtl - network-uri optparse-applicative process profunctors semigroupoids - semigroups text tls transformers unordered-containers x509 - x509-system x509-validation yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alephcloud/hs-configuration-tools"; - description = "Tools for specifying and parsing configurations"; - license = stdenv.lib.licenses.mit; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-pg" = callPackage - ({ mkDerivation, attoparsec, base, containers, protolude - , scientific, stdenv, text - }: - mkDerivation { - pname = "configurator-pg"; - version = "0.1.0.3"; - sha256 = "779887ac3b00751944ee6e2f12140bc4e6c1d84528bf0936728e2e65613c8739"; - libraryHaskellDepends = [ - attoparsec base containers protolude scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robx/configurator-pg"; - description = "Reduced parser for configurator-ng config files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, basement, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "1"; - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv, unconstrained }: - mkDerivation { - pname = "constraint"; - version = "0.1.4.0"; - sha256 = "2467002144d7fa5e107c04bd5c64088334879d71e98d20365029fb777f63b631"; - libraryHaskellDepends = [ base category unconstrained ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "constraints"; - version = "0.10.1"; - sha256 = "5880ec261e053841b307c7c8c59614f46c2efbd5189f0f2a3c817589cedec3f7"; - revision = "1"; - editedCabalFile = "1i2rd805mjz5q7s98ryy1m91zd4b9hx92gw1rwr6kpibqqw9smcb"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers }: - mkDerivation { - pname = "contravariant"; - version = "1.5.2"; - sha256 = "c4262c24e3dcc2ba8ca221ed52a6390818a715301e4f13135d8d732e0c7dc60c"; - libraryHaskellDepends = [ base StateVar transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, base-prelude, contravariant, semigroups - , stdenv, template-haskell, tuple-th - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.5"; - sha256 = "d7d42b155977123499a8249d45ea5de6f9f3929b74b79b0ca730e511c58d1fa2"; - libraryHaskellDepends = [ - base base-prelude contravariant semigroups template-haskell - tuple-th - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-dsl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-dsl"; - version = "0.2.1.3"; - sha256 = "e8c795e256030194ef9beb8009ed49f1257790ad1b51d3f629c98f6ce5e56967"; - revision = "2"; - editedCabalFile = "18jypzsawq0mp12i35f58px80i3k07ri0g07wcrh6af93vqkhvil"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Atry/Control.Dsl#readme"; - description = "An alternative to monads in do-notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.2"; - sha256 = "63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.2"; - sha256 = "f62c1e4607481041b66a4c7afd1e4cb1fef72669c142fe73301c84bdfd17a9ff"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.5"; - sha256 = "707f94d1b31018b91d6a1e9e19ef5413e20d02cab00ad93a5fd7d7b3b46a3583"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "core-data" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, core-text - , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "core-data"; - version = "0.2.1.5"; - sha256 = "3630c886e8104cb780f6ea389edc21d3b8e15eb185cc7cf14895a79cfdba9b9e"; - libraryHaskellDepends = [ - aeson base bytestring containers core-text hashable prettyprinter - prettyprinter-ansi-terminal scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "Convenience wrappers around common data structures and encodings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "core-text" = callPackage - ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable - , prettyprinter, prettyprinter-ansi-terminal, stdenv - , template-haskell, text, text-short - }: - mkDerivation { - pname = "core-text"; - version = "0.2.3.3"; - sha256 = "4d502670f2a7478f65946264c43d41664890c86d9e3d49913a89f8efc8a0cb2e"; - libraryHaskellDepends = [ - base bytestring deepseq fingertree hashable prettyprinter - prettyprinter-ansi-terminal template-haskell text text-short - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "A rope type based on a finger tree over UTF-8 fragments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "country" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , ghc-prim, hashable, primitive, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "country"; - version = "0.1.6"; - sha256 = "09b36e30dfb1fa5fa7a2c5c38f316a70e0c740b8a4dd6e340abe9770ad149928"; - revision = "3"; - editedCabalFile = "034cd94hiwgci0qhkdkkqmx2igmf1wxmd4b70g6sdlk1kklcn7x1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq ghc-prim hashable - primitive scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/country#readme"; - description = "Country data type and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "courier" = callPackage - ({ mkDerivation, async, base, bytestring, cereal, containers - , hslogger, network, stdenv, stm, text, uuid - }: - mkDerivation { - pname = "courier"; - version = "0.1.1.5"; - sha256 = "ac9e674ff33de347b173da2892859b3807a408b341d10d6101d2a7d07ac334d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring cereal containers hslogger network stm text - uuid - ]; - executableHaskellDepends = [ base cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/hargettp/courier"; - description = "A message-passing library for simplifying network applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "cql" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, Decimal - , iproute, network, stdenv, template-haskell, text, time - , transformers, uuid, vector - }: - mkDerivation { - pname = "cql"; - version = "4.0.2"; - sha256 = "f42a3a385faadb10d61ca1622815f77c4218df289b305e3a539ebc0a9501c82c"; - libraryHaskellDepends = [ - base bytestring cereal containers Decimal iproute network - template-haskell text time transformers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql/"; - description = "Cassandra CQL binary protocol"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cql-io" = callPackage - ({ mkDerivation, async, auto-update, base, bytestring, containers - , cql, cryptonite, data-default-class, exceptions, hashable - , HsOpenSSL, iproute, lens, mtl, mwc-random, network, retry - , semigroups, stdenv, stm, text, time, transformers, unliftio-core - , unordered-containers, uuid, vector - }: - mkDerivation { - pname = "cql-io"; - version = "1.1.1"; - sha256 = "97fd0d2487d42f5256f5985cd5e5f2c56a52a90417ef32865a01e2e9624ae1fd"; - libraryHaskellDepends = [ - async auto-update base bytestring containers cql cryptonite - data-default-class exceptions hashable HsOpenSSL iproute lens mtl - mwc-random network retry semigroups stm text time transformers - unliftio-core unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/cql-io/"; - description = "Cassandra CQL client"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "crackNum" = callPackage - ({ mkDerivation, array, base, FloatingHex, stdenv }: - mkDerivation { - pname = "crackNum"; - version = "2.3"; - sha256 = "428f25cfa0f7c4c126ee96fb9122966c2b175a194d59c200470a6f689ec038f3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base FloatingHex ]; - executableHaskellDepends = [ array base FloatingHex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/LeventErkok/CrackNum"; - description = "Crack various integer, floating-point data formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crc32c" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "crc32c"; - version = "0.0.0"; - sha256 = "0908682d921cc79249704d8b34fba918f399ad25321376b3a96b471a624500f8"; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/crc32c#readme"; - description = "Haskell bindings for crc32c"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, binary-orphans, bytestring, cassava, code-page - , containers, criterion-measurement, deepseq, directory, exceptions - , filepath, Glob, js-flot, js-jquery, microstache, mtl, mwc-random - , optparse-applicative, parsec, statistics, stdenv, text, time - , transformers, transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.5.6.1"; - sha256 = "a5fb69c78ff33c2a7bc5dca1f56d19b2ce34bc68cc3d345de903039087185354"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary - binary-orphans bytestring cassava code-page containers - criterion-measurement deepseq directory exceptions filepath Glob - js-flot js-jquery microstache mtl mwc-random optparse-applicative - parsec statistics text time transformers transformers-compat vector - vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "criterion-measurement" = callPackage - ({ mkDerivation, aeson, base, base-compat, binary, containers - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "criterion-measurement"; - version = "0.1.2.0"; - sha256 = "74a433da656c298608c514b962b915ec83915983197ae06c4b5d3a6b5d0de70e"; - libraryHaskellDepends = [ - aeson base base-compat binary containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/criterion"; - description = "Criterion measurement functionality and associated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.2"; - sha256 = "b0789bab33cd49a9a992f6cddf3975324af53301d0b465cd932fc4229bdde491"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api-tests" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, directory - , filepath, HUnit, QuickCheck, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-api-tests"; - version = "0.3"; - sha256 = "f44aecdd4ceb9da9f38330e84d9c17745a82b0611085ebb34442d2dce4207270"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api directory filepath HUnit - QuickCheck test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/crypto-api/wiki"; - description = "A test framework and KATs for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-tests" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , HUnit, mtl, QuickCheck, securemem, stdenv, test-framework - , test-framework-hunit, test-framework-quickcheck2 - }: - mkDerivation { - pname = "crypto-cipher-tests"; - version = "0.0.11"; - sha256 = "dfb670b73d4091b8683634d0d4d5a40576d573ad160650d5e518244ced8b98a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types HUnit mtl QuickCheck - securemem test-framework test-framework-hunit - test-framework-quickcheck2 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, ansi-terminal, base, containers - , optparse-applicative, split, stdenv, text - }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.1.1.6"; - sha256 = "5fec48245fd75d91ed1ac953fb21834eff3dc0b13b5bd100155ce4f4f8cd1d1f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers split text ]; - executableHaskellDepends = [ - ansi-terminal base containers optparse-applicative split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-numbers" = callPackage - ({ mkDerivation, base, bytestring, crypto-random, ghc-prim - , integer-gmp, stdenv, vector - }: - mkDerivation { - pname = "crypto-numbers"; - version = "0.2.7"; - sha256 = "420aeb17e9cdcfdf8c950c6c6f10c54503c5524d36f611aa7238e3fd65f189a6"; - revision = "1"; - editedCabalFile = "1jjkhid8kwrz5894nad537rqxzzyx6b687bmgyk70nv0ny336j9b"; - libraryHaskellDepends = [ - base bytestring crypto-random ghc-prim integer-gmp vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-numbers"; - description = "Cryptographic numbers: functions and algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-numbers - , crypto-pubkey-types, crypto-random, cryptohash, stdenv - }: - mkDerivation { - pname = "crypto-pubkey"; - version = "0.2.8"; - sha256 = "c0ccf2f5c38517de1f1626cb0a2542f35aefad8842f8ad5c1fac0b8c9de8b56e"; - libraryHaskellDepends = [ - base byteable bytestring crypto-numbers crypto-pubkey-types - crypto-random cryptohash - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-pubkey"; - description = "Public Key cryptography"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-openssh" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, attoparsec, base - , base64-bytestring, bytestring, cereal, crypto-pubkey-types, pem - , stdenv - }: - mkDerivation { - pname = "crypto-pubkey-openssh"; - version = "0.2.7"; - sha256 = "849085c854c561b94974f2086bf1ad4004fb17be7168b75068ab0f2a330bab59"; - libraryHaskellDepends = [ - asn1-encoding asn1-types attoparsec base base64-bytestring - bytestring cereal crypto-pubkey-types pem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knsd/crypto-pubkey-openssh"; - description = "OpenSSH keys decoder/encoder"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocipher" = callPackage - ({ mkDerivation, base, cipher-aes, cipher-blowfish, cipher-camellia - , cipher-des, cipher-rc4, crypto-cipher-types, stdenv - }: - mkDerivation { - pname = "cryptocipher"; - version = "0.6.2"; - sha256 = "34b9e62dee36c4019dd0c0e86576295d0bd1bb573eeb24686ec635a09550e346"; - libraryHaskellDepends = [ - base cipher-aes cipher-blowfish cipher-camellia cipher-des - cipher-rc4 crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Symmetrical block and stream ciphers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptocompare" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , exceptions, http-conduit, MissingH, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "cryptocompare"; - version = "0.1.1"; - sha256 = "d12e0f6fd133e538852e5700b0a31d81c6885dc8b1e9e88d1b331dcec38316b3"; - libraryHaskellDepends = [ - aeson base bytestring containers directory exceptions http-conduit - MissingH text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aviaviavi/cryptocompare"; - description = "Haskell wrapper for the cryptocompare API"; - license = stdenv.lib.licenses.mit; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.25"; - sha256 = "89be1a18af8730a7bfe4d718d7d5f6ce858e9df93a411566d15bf992db5a3c8c"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-syntax" = callPackage - ({ mkDerivation, base, scientific, stdenv, text }: - mkDerivation { - pname = "css-syntax"; - version = "0.1.0.0"; - sha256 = "50f386171dc691f2280a695eaafea64ba1ac1cc102fd702994b001f62d00c009"; - revision = "1"; - editedCabalFile = "14241m9nm3wbbhajw95gdj9mvfzf4hmrzvk2wgjvkm71mg4yhwnr"; - libraryHaskellDepends = [ base scientific text ]; - doHaddock = false; - doCheck = false; - description = "High-performance CSS tokenizer and serializer"; - license = stdenv.lib.licenses.mit; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.6"; - sha256 = "5a73fcde2b92ce138d924c323f04f48427acbfdc2c774ff0f032a10ea60afa68"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cublas" = callPackage - ({ mkDerivation, base, c2hs, Cabal, cuda, directory, filepath, half - , stdenv, storable-complex, template-haskell - }: - mkDerivation { - pname = "cublas"; - version = "0.5.0.0"; - sha256 = "2e3c94f63fc6f7df9cc517b5a444342654d4314266fc46aabfad8c456be68768"; - setupHaskellDepends = [ base Cabal cuda directory filepath ]; - libraryHaskellDepends = [ - base cuda half storable-complex template-haskell - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - description = "FFI bindings to the CUDA BLAS library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cuckoo-filter" = callPackage - ({ mkDerivation, aeson, array, base, bytestring, cereal, containers - , criterion, hashable, random, stdenv, time - }: - mkDerivation { - pname = "cuckoo-filter"; - version = "0.2.0.2"; - sha256 = "ac495fb589ba939688e7c163ec07f7c591e183278c8ddb4148baf2174746cafb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base bytestring cereal containers hashable time - ]; - executableHaskellDepends = [ - aeson array base bytestring cereal containers criterion hashable - random time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/cuckoo-filter#readme"; - description = "Pure and impure Cuckoo Filter"; - license = stdenv.lib.licenses.mit; - }) {}; - "cuda" = callPackage - ({ mkDerivation, base, bytestring, c2hs, Cabal, directory, filepath - , pretty, stdenv, template-haskell, uuid-types - }: - mkDerivation { - pname = "cuda"; - version = "0.10.1.0"; - sha256 = "7717b2c139ea454cda2d0b2adeb475c9a794c5be5f3f5532a98345510cf39e82"; - revision = "1"; - editedCabalFile = "0y08nr4p6rad1393l0373s4ivq2zvgm8xv0axh5bi6n95j2khkqz"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - base bytestring filepath template-haskell uuid-types - ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcdonell/cuda"; - description = "FFI binding to the CUDA interface for programming NVIDIA GPUs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions - , megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "2.0.1"; - sha256 = "71e42497329b9ebf74e94920ed2bd7a2ffe15e385906a37cbd5160d607a5575d"; - revision = "1"; - editedCabalFile = "0md9051a0jp4vkss15dyyf1w7ylpqmvzfdj9xb1rgj95s1x7cx2g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers exceptions megaparsec mtl QuickCheck - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cufft" = callPackage - ({ mkDerivation, base, c2hs, Cabal, cuda, directory, filepath - , stdenv, template-haskell - }: - mkDerivation { - pname = "cufft"; - version = "0.9.0.1"; - sha256 = "c312aafe408d466eb32b15d9b59b805008f631147f7e0ef4ba2b8548540cc1b1"; - setupHaskellDepends = [ - base Cabal cuda directory filepath template-haskell - ]; - libraryHaskellDepends = [ base cuda ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robeverest/cufft"; - description = "Haskell bindings for the CUFFT library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.2.0.0"; - sha256 = "fb7292d4a5b9c4389690d1386fe24ce6a93eacbcfa952936ca6d4fd3afa98499"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "currency" = callPackage - ({ mkDerivation, base, containers, hashable, iso3166-country-codes - , stdenv - }: - mkDerivation { - pname = "currency"; - version = "0.2.0.0"; - sha256 = "bcd517f3d9f47f0dd3c4e802143159239e4a90db2fc552be4a99d759ffe9417a"; - libraryHaskellDepends = [ - base containers hashable iso3166-country-codes - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/currency-haskell"; - description = "Types representing standard and non-standard currencies"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cusparse" = callPackage - ({ mkDerivation, base, c2hs, Cabal, cuda, directory, filepath, half - , stdenv, storable-complex - }: - mkDerivation { - pname = "cusparse"; - version = "0.2.0.0"; - sha256 = "06ee8332c9a4f540a9566d09d0903034e06b080281902beb987170d65cb7d8f8"; - setupHaskellDepends = [ base Cabal cuda directory filepath ]; - libraryHaskellDepends = [ base cuda half storable-complex ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - description = "FFI bindings to the CUDA Sparse BLAS library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cyclotomic" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv }: - mkDerivation { - pname = "cyclotomic"; - version = "1.0.1"; - sha256 = "505219393023460ae03dc743c11f652f66351defe30a3365011221aadeb55234"; - libraryHaskellDepends = [ arithmoi base containers ]; - doHaddock = false; - doCheck = false; - description = "A subfield of the complex numbers for exact calculation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.2"; - sha256 = "41bf60844327cb9740c8f31a340ca561cdf4aabf335f26a16a875cf9e812ee9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.2.8"; - sha256 = "ac3f95162df227a16eabf6be65d1d6563e5207d581edf72b680bfcd59f7f04bb"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-template" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, template-haskell - , utility-ht - }: - mkDerivation { - pname = "data-accessor-template"; - version = "0.2.1.16"; - sha256 = "93e7f2120b8974d81a4acc56bd6a5b7121dac4672d974a42512c169c6937ed95"; - libraryHaskellDepends = [ - base data-accessor template-haskell utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-clist" = callPackage - ({ mkDerivation, base, deepseq, QuickCheck, stdenv }: - mkDerivation { - pname = "data-clist"; - version = "0.1.2.3"; - sha256 = "356910406b1615819fefd87ff50f425bc41bd935750cfaa567718fb8ab858ed7"; - libraryHaskellDepends = [ base deepseq QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sw17ch/data-clist"; - description = "Simple functional ring type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.6.0.0"; - sha256 = "094d44446b2429bad5707b4aef0f1f63a9d101739d9a244cb2131f7646eccbd4"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse-lens" = callPackage - ({ mkDerivation, base, data-diverse, data-has, lens, profunctors - , stdenv, tagged - }: - mkDerivation { - pname = "data-diverse-lens"; - version = "4.3.0.0"; - sha256 = "97d049769f0a3693428bac8eb8de73e004f6fc9a1d0e3dc0c567f9d39f8ed986"; - libraryHaskellDepends = [ - base data-diverse data-has lens profunctors tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse-lens#readme"; - description = "Isos & Lens for Data.Diverse.Many and Prisms for Data.Diverse.Which"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.3"; - sha256 = "0b7545ea720a7a8001a22792eff2d254d434744e04bba624c5ddf4a857478fd0"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-inttrie" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-inttrie"; - version = "0.1.4"; - sha256 = "6b3a7d8d49b0676c09486ac08107b0e5a6dfd66d9627443be440e9fd11e7bd54"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luqui/data-inttrie"; - description = "A simple lazy, infinite trie from integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-memocombinators" = callPackage - ({ mkDerivation, array, base, data-inttrie, stdenv }: - mkDerivation { - pname = "data-memocombinators"; - version = "0.5.1"; - sha256 = "b4341d2024b84a43f92edc39f6d6766bf4f0f00a40fd834b9f6f8e987b606ed7"; - libraryHaskellDepends = [ array base data-inttrie ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/data-memocombinators"; - description = "Combinators for building memo tables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , data-msgpack-types, groom, stdenv, text - }: - mkDerivation { - pname = "data-msgpack"; - version = "0.0.12"; - sha256 = "5c9f8b04fbc30368e0a085de2c33e08cb0601fc9e95f767c38435d5a0ce1f487"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 data-msgpack-types text - ]; - executableHaskellDepends = [ base bytestring groom ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-msgpack-types" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , QuickCheck, stdenv, text, unordered-containers, vector, void - }: - mkDerivation { - pname = "data-msgpack-types"; - version = "0.0.2"; - sha256 = "54fdda1fa485c9f86f1f0f2aa8cc71d111b2f36504b7fb9c0a2de95c0b1287a5"; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable QuickCheck text - unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.2"; - sha256 = "7b14399e9d8df50ed7ee3b10ea2ea4b7fdd8922896da000b171eac742ffb0f77"; - libraryHaskellDepends = [ base data-accessor stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4.1"; - sha256 = "d33e4c43079ca47871220d1f04def858f5f18a475cd26a14f3b5631ff6fca6d5"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.3"; - sha256 = "4b9ee8ccd03f24203dd9307bf9aa67180ff0f07b45c3a01e33d8185ff275ec9a"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.2"; - sha256 = "c3ef24d803946a3caf0ff0e51f0c0b9f49055d7dc790518ad518d568d5195002"; - revision = "1"; - editedCabalFile = "1r6dnvc7d50q5p9fdqqwfvi7kwn7r89319plj7v284sjai9b6ld4"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, containers, dlist, http-client, http-client-tls - , http-types, lens, lifted-base, monad-control, network, old-locale - , stdenv, text, time, transformers-base, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.4.0"; - sha256 = "c462b472ac18872fff6ffdd9cbb88195fe48c0f6873ac3590ccfec9c17df6a18"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring containers dlist - http-client http-client-tls http-types lens lifted-base - monad-control network old-locale text time transformers-base - unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "datasets" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cassava - , deepseq, directory, exceptions, file-embed, filepath, hashable - , JuicyPixels, microlens, mtl, mwc-random, parallel, req - , safe-exceptions, stdenv, streaming, streaming-attoparsec - , streaming-bytestring, streaming-cassava, streaming-commons - , stringsearch, tar, text, time, transformers, vector, zlib - }: - mkDerivation { - pname = "datasets"; - version = "0.4.0"; - sha256 = "209a777cead05f14cea60debf08efd680553a20319606ca755a9e2031fa0d5c5"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DataHaskell/dh-core"; - description = "Classical data sets for statistics and machine learning"; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbcleaner" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv, text }: - mkDerivation { - pname = "dbcleaner"; - version = "0.1.3"; - sha256 = "0817b0e1698d8d48ac58d631f51dc6e34663f4e97af7bac3fd03e31349830f35"; - libraryHaskellDepends = [ base postgresql-simple text ]; - doHaddock = false; - doCheck = false; - description = "Clean database tables automatically around hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, containers - , deepseq, exceptions, filepath, lens, network, parsec, random - , split, stdenv, template-haskell, text, th-lift, transformers - , unix, vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.2.7"; - sha256 = "858ba04ff943757c3863cef97deed1f84cfa04ba634d24ee79c558973895f37a"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.2.0"; - sha256 = "5dd8af7f38780b51ad0dd13d2710f950b3d385b39b7a5b02fd5eeccd4ae61afb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, template-haskell - , text, uniplate, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "debug"; - version = "0.1.1"; - sha256 = "330f44c6341833c5e0cccf08fa7674dd54f14a843a2b5703e25ce08ffed49248"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/debug"; - description = "Simple trace-based debugger"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "debug-trace-var" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, unicode-show }: - mkDerivation { - pname = "debug-trace-var"; - version = "0.2.0"; - sha256 = "174f79d31d905c99adc880dd79899b3f335e1a7c552a7bcff8664abbffb6b489"; - libraryHaskellDepends = [ base template-haskell unicode-show ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/debug-trace-var#readme"; - description = "You do not have to write variable names twice in Debug.Trace"; - license = stdenv.lib.licenses.mit; - }) {}; - "dec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dec"; - version = "0.0.3"; - sha256 = "d9b8701244e77354ba7800f290c05f705994e2cc3a6c09b6c02d9c212add0bf9"; - revision = "1"; - editedCabalFile = "09dkybwqmayf2a1sn94vmmma2xfvf07bw7grhcyjm7lq9jpxv8y0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Decidable propositions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "decidable" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "decidable"; - version = "0.1.5.0"; - sha256 = "72f139dd300898388ec41d0ba128c24358adb3d915c2788db8b192be76e54fe7"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/decidable#readme"; - description = "Combinators for manipulating dependently-typed predicates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "deferred-folds" = callPackage - ({ mkDerivation, base, bytestring, containers, foldl, hashable - , primitive, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "deferred-folds"; - version = "0.9.10.1"; - sha256 = "1bea510e31d1d5a8ba2068db468922df3ac0f13966aa3ae70bb1f2130f639c96"; - libraryHaskellDepends = [ - base bytestring containers foldl hashable primitive transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/deferred-folds"; - description = "Abstractions over deferred folds"; - license = stdenv.lib.licenses.mit; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "2.1.0.1"; - sha256 = "0fda620212d6d010661aa6133a166cf63aa7bf174e4d0ca236a4f13e892b3523"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dense-linear-algebra" = callPackage - ({ mkDerivation, base, deepseq, math-functions, primitive, stdenv - , vector, vector-algorithms, vector-binary-instances - , vector-th-unbox - }: - mkDerivation { - pname = "dense-linear-algebra"; - version = "0.1.0.0"; - sha256 = "f7777a7931b40332ebbc716f64abb63697cbab0128e5c1228d47760c5597f2d4"; - libraryHaskellDepends = [ - base deepseq math-functions primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - description = "Simple and incomplete pure haskell implementation of linear algebra"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "dependent-map" = callPackage - ({ mkDerivation, base, containers, dependent-sum, stdenv }: - mkDerivation { - pname = "dependent-map"; - version = "0.2.4.0"; - sha256 = "5db396bdb5d156434af920c074316c3b84b4d39ba8e1cd349c7bb6679cb28246"; - revision = "1"; - editedCabalFile = "0a5f35d1sgfq1cl1r5bgb5pwfjniiycxiif4ycxglaizp8g5rlr1"; - libraryHaskellDepends = [ base containers dependent-sum ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-map"; - description = "Dependent finite maps (partial dependent products)"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "dependent-sum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dependent-sum"; - version = "0.4"; - sha256 = "a8deecb4153a1878173f8d0a18de0378ab068bc15e5035b9e4cb478e8e4e1a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/dependent-sum"; - description = "Dependent sum type"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dependent-sum-template" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv, template-haskell - , th-extras - }: - mkDerivation { - pname = "dependent-sum-template"; - version = "0.0.0.6"; - sha256 = "994cb4891949cad1b9ca268052377c58c174f77a469cae44742ac83727be91ad"; - libraryHaskellDepends = [ - base dependent-sum template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "/dev/null"; - description = "Template Haskell code to generate instances of classes in dependent-sum package"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, hashable, mtl, stdenv, strict-list }: - mkDerivation { - pname = "deque"; - version = "0.4.3"; - sha256 = "b76a0e7d8a5f3b12ca8cf5a583f3e8e4333c7860f56b1e921a3fdfe959e557a5"; - libraryHaskellDepends = [ base hashable mtl strict-list ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queues"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriveJsonNoPrefix" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "deriveJsonNoPrefix"; - version = "0.1.0.1"; - sha256 = "1ae39ca61cdb6df1630a3b5e532a139767b0fc1b5fb5c1cd66603bc4020a93ff"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/deriveJsonNoPrefix"; - description = "Derive ToJSON/FromJSON instances in a more prefix-friendly manner"; - license = stdenv.lib.licenses.asl20; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.5.8"; - sha256 = "39ddf88affc68dbed3b6835c270d75bee44a667237c50fc62f2371c0afe7f6b7"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.7"; - sha256 = "c5f76fc694754c9ced4e9d4c1a79f65f0602996a3f9b76d9d32a0160dfd7045e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "detour-via-sci" = callPackage - ({ mkDerivation, aeson, base, cassava, newtype, scientific - , siggy-chardust, stdenv, template-haskell - }: - mkDerivation { - pname = "detour-via-sci"; - version = "1.0.0"; - sha256 = "451e1194f7bf6a7dea02379679c790313cc20423271fd8e98f164c942e3d81e4"; - revision = "1"; - editedCabalFile = "00dj8vf9gg9ww37sir6mblf3xhcpam8qgfz5bfana23arhf2cixj"; - libraryHaskellDepends = [ - aeson base cassava newtype scientific siggy-chardust - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/detour-via-sci#readme"; - description = "JSON and CSV encoding for rationals as decimal point numbers"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "dhall" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base - , bytestring, case-insensitive, cborg, cborg-json, containers - , contravariant, cryptonite, Diff, directory, dotgen, exceptions - , filepath, haskeline, http-client, http-client-tls, http-types - , lens-family-core, megaparsec, memory, mtl, optparse-applicative - , parsers, prettyprinter, prettyprinter-ansi-terminal, profunctors - , repline, scientific, serialise, stdenv, template-haskell, text - , transformers, transformers-compat, unordered-containers - , uri-encode, vector - }: - mkDerivation { - pname = "dhall"; - version = "1.24.0"; - sha256 = "67ff6ff2bcd3c3fed0a598f8038f62a18676a419f7f7773a07804a5cc89404d8"; - revision = "2"; - editedCabalFile = "10ki70113z1kgq35xaib7qwrpzjl93hq4qxm0qb62d3pvaf4wp15"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring case-insensitive - cborg cborg-json containers contravariant cryptonite Diff directory - dotgen exceptions filepath haskeline http-client http-client-tls - http-types lens-family-core megaparsec memory mtl - optparse-applicative parsers prettyprinter - prettyprinter-ansi-terminal profunctors repline scientific - serialise template-haskell text transformers transformers-compat - unordered-containers uri-encode vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall - , neat-interpolation, optparse-generic, shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.21"; - sha256 = "2801d68cba9682a493b7ff54e3773aa262c59db7e37174fcd7a6faa033073b1b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall neat-interpolation shell-escape - text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , dhall, exceptions, lens, libyaml, optparse-applicative - , scientific, stdenv, text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "dhall-json"; - version = "1.3.0"; - sha256 = "f1cab9ae9a93559cb66c38626a1a4c968d60f12795ac0a9755994e053518d19c"; - revision = "1"; - editedCabalFile = "101xfp3zg9i7qyibknjpcdhha8sc024xmylphiwb509h3fjy3yks"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers dhall exceptions lens - libyaml optparse-applicative scientific text unordered-containers - vector yaml - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall exceptions - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - description = "Convert between Dhall and JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, safe-exceptions, stdenv, stm - , time - }: - mkDerivation { - pname = "di-core"; - version = "1.0.4"; - sha256 = "55634d9afebfa94f5573471ec846f23fbc3716ae524ebee58f27a7f99b153273"; - libraryHaskellDepends = [ - base containers safe-exceptions stm time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.3.1"; - sha256 = "f5ddeae5a199f6e83abdc989a2df8408e761a798646eb7ca5944f7a3383416a4"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams" = callPackage - ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib - , diagrams-svg, stdenv - }: - mkDerivation { - pname = "diagrams"; - version = "1.4"; - sha256 = "8608f6fa682b8c43b9fbe7c42c033c7a6de0680bd7383f6a81ea8bca37999139"; - libraryHaskellDepends = [ - diagrams-contrib diagrams-core diagrams-lib diagrams-svg - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative vector graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-contrib" = callPackage - ({ mkDerivation, base, circle-packing, colour, containers - , cubicbezier, data-default, data-default-class, diagrams-core - , diagrams-lib, diagrams-solve, force-layout, hashable, lens - , linear, mfsolve, MonadRandom, monoid-extras, mtl, mtl-compat - , parsec, random, semigroups, split, stdenv, text - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.4"; - sha256 = "35b08328677b4d49e8b54c46e42c6f8e8a308ef698995d3f45e03c4c4fbe7210"; - libraryHaskellDepends = [ - base circle-packing colour containers cubicbezier data-default - data-default-class diagrams-core diagrams-lib diagrams-solve - force-layout hashable lens linear mfsolve MonadRandom monoid-extras - mtl mtl-compat parsec random semigroups split text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Collection of user contributions to diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-core" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive - , dual-tree, lens, linear, monoid-extras, mtl, profunctors - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "diagrams-core"; - version = "1.4.2"; - sha256 = "83d0074c3338829f8d52d43d3837ae918ceba5c1ae573b6077e40de1f720eb61"; - libraryHaskellDepends = [ - adjunctions base containers distributive dual-tree lens linear - monoid-extras mtl profunctors semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Core libraries for diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-lib" = callPackage - ({ mkDerivation, active, adjunctions, array, base, bytestring - , cereal, colour, containers, data-default-class, diagrams-core - , diagrams-solve, directory, distributive, dual-tree, exceptions - , filepath, fingertree, fsnotify, hashable, intervals, JuicyPixels - , lens, linear, monoid-extras, mtl, optparse-applicative, process - , profunctors, semigroups, stdenv, tagged, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.3"; - sha256 = "c6fb8dd62f8baacadab2d17b3c36e3bb0b3ae7920eeeeeea46e78eeba567193f"; - libraryHaskellDepends = [ - active adjunctions array base bytestring cereal colour containers - data-default-class diagrams-core diagrams-solve directory - distributive dual-tree exceptions filepath fingertree fsnotify - hashable intervals JuicyPixels lens linear monoid-extras mtl - optparse-applicative process profunctors semigroups tagged text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://diagrams.github.io"; - description = "Embedded domain-specific language for declarative graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-postscript" = callPackage - ({ mkDerivation, base, containers, data-default-class - , diagrams-core, diagrams-lib, dlist, hashable, lens, monoid-extras - , mtl, semigroups, split, statestack, stdenv - }: - mkDerivation { - pname = "diagrams-postscript"; - version = "1.4.1"; - sha256 = "a758191d99c30bd663dc0df2dedef13cd735a33c143e77906aa88baceb282c9c"; - revision = "2"; - editedCabalFile = "0s6z3kaj1dm5kifaydnd2nx97g5qbc6jjqy3wn4dwa9rm7w49753"; - libraryHaskellDepends = [ - base containers data-default-class diagrams-core diagrams-lib dlist - hashable lens monoid-extras mtl semigroups split statestack - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Postscript backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity - , hashable, JuicyPixels, lens, mtl, optparse-applicative - , Rasterific, stdenv - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.2"; - sha256 = "54b887e60216216ee63d2b089e4afd807e0d49246d7bb7b2d3c3a6f286d73998"; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels - lens mtl optparse-applicative Rasterific - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Rasterific backend for diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-solve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "diagrams-solve"; - version = "0.1.1"; - sha256 = "a41f5f410b10f162b1e5c07bd4ca3305544870ff1314ae4f5824c83a31644f9d"; - revision = "5"; - editedCabalFile = "1yl8cs05fzqcz49p601am1ij66m9pa70yamhfxgcvya2pf8nimlf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Pure Haskell solver routines used by diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-svg" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, colour - , containers, diagrams-core, diagrams-lib, filepath, hashable - , JuicyPixels, lens, monoid-extras, mtl, optparse-applicative - , semigroups, split, stdenv, svg-builder, text - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.3"; - sha256 = "68bebe2fefc13d6af9efb305d55d99310bd93224bc4a4e68b3f959073e335bfb"; - libraryHaskellDepends = [ - base base64-bytestring bytestring colour containers diagrams-core - diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl - optparse-applicative semigroups split svg-builder text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "SVG backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dimensional" = callPackage - ({ mkDerivation, base, deepseq, exact-pi, ieee754, numtype-dk - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "dimensional"; - version = "1.3"; - sha256 = "29a32551cfc4819daefa19a3f345923ac2265b2a8c528ce467777032423d9344"; - revision = "2"; - editedCabalFile = "10xkgwjb9kqa95jck3b9wa3sz6vcb2lkygfmcqqz6hz6j65l79r8"; - libraryHaskellDepends = [ - base deepseq exact-pi ieee754 numtype-dk semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/dimensional/"; - description = "Statically checked physical dimensions, using Type Families and Data Kinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "direct-sqlite" = callPackage - ({ mkDerivation, base, bytestring, semigroups, stdenv, text }: - mkDerivation { - pname = "direct-sqlite"; - version = "2.3.24"; - sha256 = "41d23bee2c48407300bd3a118802131b5c73a263ada5f624e64d7da82be3a675"; - revision = "1"; - editedCabalFile = "0cfl7h43q2qib1qq8sipgcxcm3i9d6cp1diwmxv8n7ygx7awz6w6"; - libraryHaskellDepends = [ base bytestring semigroups text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/IreneKnapp/direct-sqlite"; - description = "Low-level binding to SQLite3. Includes UTF8 and BLOB support."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , stdenv, syb, template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.2.0"; - sha256 = "16d0b35bea1aa1d43d4935d1569b3f3894febd66a5834129b8699437d6a85750"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - executableHaskellDepends = [ async base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.2"; - sha256 = "848875b16812d1729fd2a5f7f8cc6aa7db0bb7c179a5f60a362304001cbd4304"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs#readme"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-opensuse" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, Diff, extra, foldl, hashable, hsemail, mtl, parsec-class - , pretty, stdenv, text, time, turtle - }: - mkDerivation { - pname = "distribution-opensuse"; - version = "1.1.1"; - sha256 = "067f08a458aed98e4a67e80ffc42edf99393a861a0d0ecb1950d913d15a332b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq Diff extra foldl - hashable hsemail mtl parsec-class pretty text time turtle - ]; - executableHaskellDepends = [ base containers text turtle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-opensuse/"; - description = "Types, functions, and tools to manipulate the openSUSE distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers - }: - mkDerivation { - pname = "distributive"; - version = "0.6.1"; - sha256 = "7749b1d9b815e3ba558d1daebac9346610e352bb0dfe9720cc686eb2fef7caf2"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base base-orphans tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dl-fedora" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath - , http-directory, http-types, optparse-applicative, regex-posix - , simple-cmd, simple-cmd-args, stdenv, text, unix, xdg-userdirs - }: - mkDerivation { - pname = "dl-fedora"; - version = "0.5"; - sha256 = "aaab2bc1e5ebb3ce8bc22bf928ef672302a320fb00f338660c276086b470cdfd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring directory filepath http-directory http-types - optparse-applicative regex-posix simple-cmd simple-cmd-args text - unix xdg-userdirs - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/dl-fedora"; - description = "Fedora image download tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.7"; - sha256 = "a3c06a200f9756329b09d415e7733b7204dda76ce07783e6457d0ab9ffbcba2c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dns" = callPackage - ({ mkDerivation, array, async, attoparsec, auto-update, base - , base16-bytestring, base64-bytestring, bytestring, containers - , cryptonite, hourglass, iproute, mtl, network, psqueues, stdenv - }: - mkDerivation { - pname = "dns"; - version = "4.0.1"; - sha256 = "20cdb4519f19becd5ba321c5acfe03fd3c16b298a78404530b65f10ddb4a68cb"; - libraryHaskellDepends = [ - array async attoparsec auto-update base base16-bytestring - base64-bytestring bytestring containers cryptonite hourglass - iproute mtl network psqueues - ]; - doHaddock = false; - doCheck = false; - testTarget = "spec"; - description = "DNS library in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-notation" = callPackage - ({ mkDerivation, base, indexed, stdenv }: - mkDerivation { - pname = "do-notation"; - version = "0.1.0.2"; - sha256 = "c9f3783d4b8ede05bf64a9dc7c594306b40fb05a68ae7f4c21dafec52fbc7bf5"; - libraryHaskellDepends = [ base indexed ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/do-notation#readme"; - description = "Generalize do-notation to work on monads and indexed monads simultaneously"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.2.0"; - sha256 = "97a1992559bf510a7b17e5678fd29e3b5c4a9059a0483e4ab36ef8ec723fb5aa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/dockerfile#readme"; - description = "A Haskell DSL for generating Dockerfiles"; - license = stdenv.lib.licenses.mit; - }) {}; - "docopt" = callPackage - ({ mkDerivation, base, containers, parsec, stdenv, template-haskell - , th-lift - }: - mkDerivation { - pname = "docopt"; - version = "0.7.0.5"; - sha256 = "15790808a4896bbf0748c1c0f3ab63c07aea4621d95b93a39886813f829d05ee"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers parsec template-haskell th-lift - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/docopt/docopt.hs"; - description = "A command-line interface parser that will make you smile"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, parsec, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.2.2.1"; - sha256 = "6b0cfb565fc7fa90d71ac56b83aedecf670678e6f1441278877fbf399e9bccbf"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers parsec - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.16.2"; - sha256 = "4fa5419bebf65094149f02bac9c67ffb81480d883ff0efac167d95f89d646452"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-discover" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, stdenv - }: - mkDerivation { - pname = "doctest-discover"; - version = "0.2.0.0"; - sha256 = "a953aa50837e52efc766a77e382c2be2acbc887fa6dadbc54b756f59d6c49ec8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - executableHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/karun012/doctest-discover"; - description = "Easy way to run doctests via cabal"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.3.0.2"; - sha256 = "5840c26d699339188e75ee0807778d1f011ea075f37a2a1c975ea1daae4b78f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doldol" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doldol"; - version = "0.4.1.2"; - sha256 = "6553dcb9fded77f0f0655264a4b071e503690a467b46921679556cef5da43e65"; - revision = "1"; - editedCabalFile = "0xwbdrfzd6z3nwkgnav2drisw2sn464ggkz8fid58cym9hbfpl47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/QuietJoon/doldol/"; - description = "Flag packer & handler for flaggable data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dom-parser" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, mtl - , scientific, semigroups, stdenv, text, transformers, xml-conduit - , xml-lens - }: - mkDerivation { - pname = "dom-parser"; - version = "3.1.0"; - sha256 = "d7e15cae0b27d708389160517b1616343da1911baf95f2c97e213732a0262ac3"; - libraryHaskellDepends = [ - base case-insensitive containers lens mtl scientific semigroups - text transformers xml-conduit xml-lens - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/dom-parser"; - description = "Simple monadic DOM parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, containers, directory - , exceptions, megaparsec, optparse-applicative, process, stdenv - , text, transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.8.0.4"; - sha256 = "444a40b7a27425d50ea11803fe42712437f86797a25fd6c29f7ff6fa4352b815"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat containers directory exceptions megaparsec process - text transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotgen" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dotgen"; - version = "0.4.2"; - sha256 = "cf0de20a435d74aeb9a32b8bcb3ebfa1b6659ac3f26edefe2df9e1aaf1481891"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/dotgen"; - description = "A simple interface for building .dot graph files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "download" = callPackage - ({ mkDerivation, base, bytestring, feed, stdenv, tagsoup, xml }: - mkDerivation { - pname = "download"; - version = "0.3.2.7"; - sha256 = "7154571d2c55c14b7a2d36a924ee10fd56511b70fe856dddbfbd15f04f0be6e1"; - libraryHaskellDepends = [ base bytestring feed tagsoup xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/download"; - description = "High-level file download based on URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drinkery" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv, transformers }: - mkDerivation { - pname = "drinkery"; - version = "0.4"; - sha256 = "3860b076f71e05179c7adfc988baf90cf85d0206cfd6a0945e5b354827d8b5b0"; - libraryHaskellDepends = [ base exceptions mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/drinkery#readme"; - description = "Boozy streaming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.5"; - sha256 = "8532af3176819369ae0863170daa7c83de931fff7aff19d362e70ed701356ad2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dual"; - version = "0.1.1.1"; - sha256 = "4504b29c4c758457cb6accc00ad4ef4a3f940125ade67301a3549091b9dfc765"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dual category"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dual-tree" = callPackage - ({ mkDerivation, base, monoid-extras, newtype-generics, semigroups - , stdenv - }: - mkDerivation { - pname = "dual-tree"; - version = "0.2.2.1"; - sha256 = "fdebb501680f50a9fc9fa27da5a484a7f5d07ca5b9bb18e72d1fb8069c756d9e"; - libraryHaskellDepends = [ - base monoid-extras newtype-generics semigroups - ]; - doHaddock = false; - doCheck = false; - description = "Rose trees with cached and accumulating monoidal annotations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.5.1"; - sha256 = "27a5ba03273afe4e5d3e947fb65e2d70e2f82cb929316b0c3175d1f2cf95731d"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dunai-core" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai-core"; - version = "0.5.1.0"; - sha256 = "ffaf15694944fe046ba2dd385be2edad7a7bd2b9d766804770af85636a3001dd"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/turion/dunai-core"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP. (Core library fork.)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "duration" = callPackage - ({ mkDerivation, base, parsec, stdenv, template-haskell, time }: - mkDerivation { - pname = "duration"; - version = "0.1.0.0"; - sha256 = "a0b154c270be1d9c42a92fdf8198ab1030bf09a119157df33a2a43694fb212a3"; - libraryHaskellDepends = [ base parsec template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ryota-ka/duration#readme"; - description = "A tiny compile-time time utility library inspired by zeit/ms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dynamic-state" = callPackage - ({ mkDerivation, base, binary, bytestring, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.1"; - sha256 = "c4d50bdf03e7b2af05ee2b78fdd5dd5d16e72ef5edf78cada60bf4cdc6a23537"; - libraryHaskellDepends = [ - base binary bytestring hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Optionally serializable dynamic state keyed by type"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eap" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptonite, memory, mtl - , pretty-hex, stdenv - }: - mkDerivation { - pname = "eap"; - version = "0.9.0.2"; - sha256 = "0ccf6246c1e28d43aea25d1e2e0ca22edcc3bfb21fcf7924410dee7abb3efd2d"; - revision = "1"; - editedCabalFile = "1lsy7pl39s02f45l7g9alw49xwh7m8m4bm3ydcz11rh9xdgcb9jv"; - libraryHaskellDepends = [ - base binary bytestring cryptonite memory mtl pretty-hex - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/eap#readme"; - description = "Extensible Authentication Protocol (EAP)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easytest" = callPackage - ({ mkDerivation, async, base, call-stack, containers, mtl, random - , stdenv, stm, text, transformers - }: - mkDerivation { - pname = "easytest"; - version = "0.2.1"; - sha256 = "1155c3da78460eae48762e041c033d0f64f7644fa94479be2fa1194e3f57be3d"; - libraryHaskellDepends = [ - async base call-stack containers mtl random stm text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelburget/easytest"; - description = "Simple, expressive testing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ecstasy" = callPackage - ({ mkDerivation, base, containers, kan-extensions, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "ecstasy"; - version = "0.2.1.0"; - sha256 = "915942d3b8c3d61b98e5b2e825387d48cf3c2d17acdb2d377cb516c26c0fcbc3"; - libraryHaskellDepends = [ - base containers kan-extensions mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/isovector/ecstasy/"; - description = "A GHC.Generics based entity component system."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , stdenv - }: - mkDerivation { - pname = "either"; - version = "5.0.1.1"; - sha256 = "0243d51d6a02ecb541e4854a588a9b6219a4690ebcbdb79387dd14ad519cdf27"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-both" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-both"; - version = "0.1.1.1"; - sha256 = "6ea467bbcb62d2aded238d3b078fc6fdce44a2137b6be40b209562be3978a6b2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Either or both"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg" = callPackage - ({ mkDerivation, aeson, base, bytestring, ekg-core, ekg-json - , filepath, network, snap-core, snap-server, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "ekg"; - version = "0.4.0.15"; - sha256 = "482ae3be495cfe4f03332ad1c79ce8b5ad4f9c8eec824980c664808ae32c6dcc"; - revision = "6"; - editedCabalFile = "012y235n8k7hhx651l01xf88vgr2wskapbsn83w18ls1h1njqnzk"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring ekg-core ekg-json filepath network snap-core - snap-server text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg"; - description = "Remote monitoring of processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-core" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-core"; - version = "0.1.1.6"; - sha256 = "66a8dd79ad27659052168f08dd41fabb8593e364de00fb857ef5cc943acd5742"; - libraryHaskellDepends = [ - base containers ghc-prim text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-core"; - description = "Tracking of system metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-json" = callPackage - ({ mkDerivation, aeson, base, ekg-core, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ekg-json"; - version = "0.1.0.6"; - sha256 = "1e6a80aa0a28bbf41c9c6364cbb5731160d14fa54145f27a82d0b3467a04dd47"; - revision = "4"; - editedCabalFile = "16sn4nbqm0rxkf0swi6r2jn6z9x92qmcg9xlx258d98kqb5fkwjg"; - libraryHaskellDepends = [ - aeson base ekg-core text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-json"; - description = "JSON encoding of ekg metrics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ekg-statsd" = callPackage - ({ mkDerivation, base, bytestring, ekg-core, network, stdenv, text - , time, unordered-containers - }: - mkDerivation { - pname = "ekg-statsd"; - version = "0.2.4.0"; - sha256 = "5e74bf63a1cd347c939d4eb7beb9181556b7bd033a60e5f6f4df0505e98a7adb"; - revision = "3"; - editedCabalFile = "0va7fliya7g546f5qbc42bl7dyh74al38sspd2smjyl7a9d5mmlk"; - libraryHaskellDepends = [ - base bytestring ekg-core network text time unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/ekg-statsd"; - description = "Push metrics to statsd"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elf" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "elf"; - version = "0.30"; - sha256 = "97b0a2cfeff33dcc0640fbd878643e3f87bc88e2da02982f2698728735beee99"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/elf"; - description = "An Elf parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.5.1"; - sha256 = "8166f2697acebd23ebf27416f489f5bf731ae081fe49fd34834a9b7194760f4f"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-bridge" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "elm-bridge"; - version = "0.5.2"; - sha256 = "77b3c29628d26dbfd77bb2a950fae203c661bbb5087dc566d0b52e99296144d3"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/elm-bridge"; - description = "Derive Elm types and Json code from Haskell types, using aeson's options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-export" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , formatting, mtl, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "elm-export"; - version = "0.6.0.1"; - sha256 = "bf9862015918c72b54b421efcd9d858969dcd94ef0a3d0cb92d9bc0c4363f9d5"; - libraryHaskellDepends = [ - base bytestring containers directory formatting mtl text time - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/krisajenkins/elm-export"; - description = "A library to generate Elm types from Haskell source"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "elm2nix" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, async, base, binary - , bytestring, containers, data-default, directory, filepath, here - , mtl, optparse-applicative, process, req, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "elm2nix"; - version = "0.1.2"; - sha256 = "4d5afdda31461335df64991d627dc0af76e8d5db6b54d54fff35ab6866c87db9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base binary bytestring containers data-default - directory filepath here mtl process req text transformers - unordered-containers - ]; - executableHaskellDepends = [ - ansi-wl-pprint base directory here optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domenkozar/elm2nix#readme"; - description = "Turn your Elm project into buildable Nix project"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emacs-module" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions - , monad-control, mtl, prettyprinter, resourcet - , safe-exceptions-checked, stdenv, template-haskell, text - , transformers-base, vector, void - }: - mkDerivation { - pname = "emacs-module"; - version = "0.1.1"; - sha256 = "1ee0fd9cde2e218d604c5d1670f24194575f975510936510fe9fc2f6e066d9d4"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions monad-control mtl prettyprinter - resourcet safe-exceptions-checked template-haskell text - transformers-base vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sergv/emacs-module"; - description = "Utilities to write Emacs dynamic modules"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.12"; - sha256 = "0e7b2ab28bd4d072d06c6d20a4ab55b2950b4facc0f0b3200ba10f15a563232b"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emd" = callPackage - ({ mkDerivation, base, binary, containers, data-default-class - , deepseq, finite-typelits, ghc-typelits-knownnat - , ghc-typelits-natnormalise, stdenv, transformers - , typelits-witnesses, vector, vector-sized - }: - mkDerivation { - pname = "emd"; - version = "0.1.5.1"; - sha256 = "6e95300ee32c729e825cbb6e3f07a383455ea63f566ce7f3c04d0493b837311a"; - libraryHaskellDepends = [ - base binary containers data-default-class deepseq finite-typelits - ghc-typelits-knownnat ghc-typelits-natnormalise transformers - typelits-witnesses vector vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/emd#readme"; - description = "Empirical Mode Decomposition and Hilbert-Huang Transform"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.3"; - sha256 = "af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.5"; - sha256 = "5502aaf0415979dcfe64d3da407db46085f98a81d5b369fb040fc51b2244ee6b"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-text" = callPackage - ({ mkDerivation, array, base, bytestring, fmt, hashable, possibly - , stdenv, text, time, unordered-containers - }: - mkDerivation { - pname = "enum-text"; - version = "0.5.1.0"; - sha256 = "cecd016ebe1a382297c5330bdf177df191db02cb5b011c1e6557febb7a85886c"; - libraryHaskellDepends = [ - array base bytestring fmt hashable possibly text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text#readme"; - description = "A text rendering and parsing toolkit for enumerated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-text-rio" = callPackage - ({ mkDerivation, base, bytestring, enum-text, fmt, rio, stdenv - , text - }: - mkDerivation { - pname = "enum-text-rio"; - version = "1.2.0.0"; - sha256 = "ca66153f0109c3e4be9b10a5a1d80aa4433b401c228e122a8577c554430ce933"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring enum-text fmt rio text ]; - executableHaskellDepends = [ - base bytestring enum-text fmt rio text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text-rio#readme"; - description = "Making fmt available with rio"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.6.0.2"; - sha256 = "3b344af1b375cd904ab4cbe687a1a336840c6de3e66b4c2a26f73a96d5cfe610"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.5"; - sha256 = "31629409abbdcc40131b59bdb10e6cbbafc69e815f45b2a06b9eb35a0fb53435"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "2.0.0.0"; - sha256 = "1f3c9e305490202deadd8a05b7da0e2690eb2c7806511e3c45f796be677a7950"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "error-util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "error-util"; - version = "0.0.1.2"; - sha256 = "df1916a2de007697b7b1a9f83eacab4588d8dc472fd0f21395dce83b085e4e06"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/error-util"; - description = "Set of utils and operators for error handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.2"; - sha256 = "406e65338046d6c1d6994072b529272fab4ad7abbdb2c3b63576788fd8dd9618"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, fail, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.7"; - sha256 = "cdd0dc5e07f26063c58ddf1458e723aec29118d0ac9bc9543ff6662f00d4ad4d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers fail lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "esqueleto" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, conduit - , monad-logger, persistent, resourcet, stdenv, tagged, text, time - , transformers, unliftio, unordered-containers - }: - mkDerivation { - pname = "esqueleto"; - version = "3.0.0"; - sha256 = "fe277659f4bed01ca768fcd791d4b92a1aeaf012be4d17a115ce77015102eca0"; - libraryHaskellDepends = [ - base blaze-html bytestring conduit monad-logger persistent - resourcet tagged text time transformers unliftio - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitemyapp/esqueleto"; - description = "Type-safe EDSL for SQL queries on persistent backends"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, rio, stdenv, template-haskell, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "61b4d5f29a1fc66df082623e5fc9269bdbb49d28ebf4cbb740c71319257a27c8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base rio template-haskell text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-memory" = callPackage - ({ mkDerivation, base, containers, eventful-core, mtl, safe, stdenv - , stm - }: - mkDerivation { - pname = "eventful-memory"; - version = "0.2.0"; - sha256 = "6a7c3e0a12e3c4e572927929020ad92075933e5d3c66ea61ff615a3ac217adb9"; - libraryHaskellDepends = [ - base containers eventful-core mtl safe stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "In-memory implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sql-common" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core, mtl - , persistent, persistent-template, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sql-common"; - version = "0.2.0"; - sha256 = "a46ea18cbbb5bd04b3a6846273e8161b7e4208660d0abf5a401192b07636aebc"; - revision = "1"; - editedCabalFile = "1w2qq0p4304zsjkwmqx79azpq5v0ajz5grg740vwkca8qvdvdq91"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core mtl persistent - persistent-template text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common library for SQL event stores"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, eventful-core - , eventful-sql-common, mtl, persistent, stdenv, text, uuid - }: - mkDerivation { - pname = "eventful-sqlite"; - version = "0.2.0"; - sha256 = "c0bbea0ebd1f0a4891a74b190f499caf85ac026f49b9401fc76f181b0041dfef"; - libraryHaskellDepends = [ - aeson base bytestring eventful-core eventful-sql-common mtl - persistent text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "SQLite implementations for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventstore" = callPackage - ({ mkDerivation, aeson, array, base, bifunctors, bytestring, cereal - , clock, connection, containers, dns, dotnet-timespan, ekg-core - , exceptions, fast-logger, hashable, http-client, interpolate - , lifted-async, lifted-base, monad-control, monad-logger - , mono-traversable, mtl, protobuf, random, safe, safe-exceptions - , semigroups, stdenv, stm, stm-chans, streaming, text, time - , transformers-base, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "eventstore"; - version = "1.3.3"; - sha256 = "b70bba26d51f17422d242c010a710f73bf2fa2a6420ba4cb913c38f1b83fc675"; - libraryHaskellDepends = [ - aeson array base bifunctors bytestring cereal clock connection - containers dns dotnet-timespan ekg-core exceptions fast-logger - hashable http-client interpolate lifted-async lifted-base - monad-control monad-logger mono-traversable mtl protobuf random - safe safe-exceptions semigroups stm stm-chans streaming text time - transformers-base unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoEight/eventstore"; - description = "EventStore TCP Client"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" "x86_64-linux" ]; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.9"; - sha256 = "725785ac22c252b0753aefffd8eb591f8a4184cec08a5d50bca1d57c5345c9ab"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wrengr.org/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.5.0.1"; - sha256 = "5d8156ec8b044a36c2ac789b85bf65116be24304868fff472d033977ebcc1860"; - revision = "1"; - editedCabalFile = "1l55d7x61i2d5rlh7sh2nhn0af9cyp92gzdmqqnnjzg55d347qsm"; - libraryHaskellDepends = [ base numtype-dk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.8"; - sha256 = "39eb6848e73a5ef97e8eae26ee84f0412dcf8dedbacb2b232bfeec4941e33b1d"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptional" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "exceptional"; - version = "0.3.0.0"; - sha256 = "da866ed28ea14d245cc065271f4ddd6da0a91b83e8d83daddcd1ef0623e99f06"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/"; - description = "Essentially the Maybe type with error messages"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.4"; - sha256 = "4d0bfb4355cffcd67d300811df9d5fe44ea3594ed63750795bfc1f797abd84cf"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-hash" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cryptohash, directory - , executable-path, file-embed, filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "executable-hash"; - version = "0.2.0.4"; - sha256 = "34eaf5662d90d3b7841f66b322ac5bc54900b0e3cb06792852b08b3c05a42ba4"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ - base bytestring Cabal cryptohash directory file-embed filepath - template-haskell - ]; - libraryHaskellDepends = [ - base bytestring cryptohash directory executable-path file-embed - template-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/executable-hash"; - description = "Provides the SHA1 hash of the program executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exit-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exit-codes"; - version = "1.0.0"; - sha256 = "4aa2499a18b0453a9f921bb3262aefe24c8fa98ef9633ab284d8cf6f52a49e01"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JustusAdam/exit-codes"; - description = "Exit codes as defined by BSD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exomizer" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "exomizer"; - version = "1.0.0"; - sha256 = "94c24d436d12666d16cb7171c83cedec449b992dc3aeaaa6decdc0faf8e2cfd2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/exomizer#readme"; - description = "Compression and decompression in the exomizer format"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.2.0.0"; - sha256 = "57471bfd498570247c03863ec4532ff06c20198efe7a7fe4484478d7139ac967"; - revision = "1"; - editedCabalFile = "1fkllbgsygzm1lw3g3a9l8fg8ap74bx0x7ja8yx3lbrjjsaqh8pa"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.10"; - sha256 = "00d467d6f75751db37adfbc5ab238db3d92f16ca642f872f912aed8e7f00f8bc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.3.3"; - sha256 = "22fff22a2c5b36a6545b27495c0eba63e8e3f72baccb3f9d687967c6532381d5"; - libraryHaskellDepends = [ - base leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "failable" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "failable"; - version = "1.2.4.0"; - sha256 = "8fd367b3408e6f2be38a4a9c9136c76ace2acea1910c65d6bf8e77c5bdccceed"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - description = "A 'Failable' error monad class to unify failure across monads that can fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fakedata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , exceptions, filepath, random, stdenv, template-haskell, text - , time, vector, yaml - }: - mkDerivation { - pname = "fakedata"; - version = "0.2.2"; - sha256 = "390f057f6dd583e874cf98d1d69ddb712058a7037ae5b1a881360ed13ad4fa85"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory exceptions filepath random - template-haskell text time vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fakedata#readme"; - description = "Library for producing fake data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-builder" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "fast-builder"; - version = "0.1.2.0"; - sha256 = "371fe3787fd1dbdf9749eb7d9f00b8b805f166b28a1ee006c504336a49d843a9"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/fast-builder"; - description = "Fast ByteString Builder"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix-compat, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "2.4.17"; - sha256 = "b36370e5f40a8e738c53c13870c51087b65ca88885865045163af43d5958bd0a"; - revision = "1"; - editedCabalFile = "1yv4f6pbrgqqhc0z3chhjrzz1gs7idrmcbvmbl8pfyn547ci6brb"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix-compat unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, cryptonite, data-default, http-client - , http-conduit, http-types, memory, monad-logger, resourcet, stdenv - , text, time, transformers, transformers-base, unliftio - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "2.0.0"; - sha256 = "9c596a412d958ea1214ceca2ff85e06358f1cca992c8aab609c695db5764a67c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra cryptonite - data-default http-client http-conduit http-types memory - monad-logger resourcet text time transformers transformers-base - unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fclabels" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "fclabels"; - version = "2.0.3.3"; - sha256 = "9a9472a46dc23b5acc0545d345ecd708f7b003f72ab212e2d12125b902b9c2e0"; - revision = "4"; - editedCabalFile = "09pn1q4gjlhw956asmhzva1rhrafmn69xmd1sc80fh3c8vjd3icz"; - libraryHaskellDepends = [ base mtl template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sebastiaanvisser/fclabels"; - description = "First class accessor labels implemented as lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-dists" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fedora-dists"; - version = "1.0.1"; - sha256 = "942ea841f4ec99e79f0934da7eb29741560e68afa36cd7297c65b8e0c69dfe80"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/fedora-dists"; - description = "Library for Fedora distribution versions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.2.0.1"; - sha256 = "8093d7b262860abf1a2884b8f92162ff03f9d8c84cbf8aa837926af26ce39400"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.7.0.1"; - sha256 = "ffce7af67d4e7ee2f6a7c44fbb749c4253ce9bb35b8b1ffe1c93a173a01fe910"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fib" = callPackage - ({ mkDerivation, base-noprelude, integer-gmp, semirings, stdenv }: - mkDerivation { - pname = "fib"; - version = "0.1"; - sha256 = "93fe144cf51833eac154801e1a01e90c7b3281d1250e1e1af97ca404ccb9f7a6"; - revision = "1"; - editedCabalFile = "1pi7hhil698v9yk17ncw7raw0sf20yj679jvs2d0p7q8ypl9b1lh"; - libraryHaskellDepends = [ base-noprelude integer-gmp semirings ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chessai/fib"; - description = "fibonacci algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11.1"; - sha256 = "a113e7fe528be8204f40d3e9e00d595234e49def6caa133136e8254b659189d6"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-modules" = callPackage - ({ mkDerivation, async, base, directory, filepath, haskell-src-exts - , MissingH, regex-compat, regex-pcre, stdenv - }: - mkDerivation { - pname = "file-modules"; - version = "0.1.2.4"; - sha256 = "ffea2dbd51f77ed76f8559d8519674a1210611a35e2dbea72dfb41d7d5f0f235"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - executableHaskellDepends = [ - async base directory filepath haskell-src-exts MissingH - regex-compat regex-pcre - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/stack-run-auto"; - description = "Takes a Haskell source-code file and outputs its modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.4.1"; - sha256 = "c502a8b43cf08694c8d2657dc282306d811cdd91f284614a6a9945267c93cb9d"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.4"; - sha256 = "d97e29095b0d8b652bc02e52d79bb415e75285c651bcaacb108db883f72536a1"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filter-logger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, base - , bytestring, data-default, fast-logger, http-types, scotty - , semigroups, stdenv, time, wai, wai-extra, wai-logger - }: - mkDerivation { - pname = "filter-logger"; - version = "0.6.0.0"; - sha256 = "7884124056950a7f7ff393ebb7d1622695f9b66f898c60aeb8bc991c73642f21"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring data-default - fast-logger http-types semigroups time wai wai-extra wai-logger - ]; - executableHaskellDepends = [ aeson base bytestring scotty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/filter-logger#readme"; - description = "Filterable request logging wai middleware. Change how data is logged and when."; - license = stdenv.lib.licenses.mit; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.3.0"; - sha256 = "80364ec6b28b8e5c68df44d6e7f03389bd2c19eeca7a9d79d487db1ec0fa2aee"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, dec, deepseq, hashable, QuickCheck, stdenv - }: - mkDerivation { - pname = "fin"; - version = "0.1.1"; - sha256 = "31e3174c0220ed6ca07c02982105279d01309e71791534355c612e1a45478c7f"; - libraryHaskellDepends = [ base dec deepseq hashable QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.2"; - sha256 = "95a948341570bad5a9b2468c388c0eb2c20c57e10dd8fbfc994c7b8764b36a7f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.4.2"; - sha256 = "d207a46c911b69ecc1f7c50d9d65ea1aca6c6efacec6342bc3294ed1bc4bd747"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "first-class-families" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "first-class-families"; - version = "0.5.0.0"; - sha256 = "f272bc4f90b0df9ecdc6b26279d5d106472fbff5dca1f8472af31bd915e1530f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/first-class-families#readme"; - description = "First class type families"; - license = stdenv.lib.licenses.mit; - }) {}; - "first-class-patterns" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.5"; - sha256 = "7a4bcfe2c9907d7964d2a29816ea37aac64b0506fdebd34241d0dd735cb308ae"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/first-class-patterns"; - description = "First class patterns and pattern matching, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fitspec" = callPackage - ({ mkDerivation, base, cmdargs, leancheck, stdenv, template-haskell - }: - mkDerivation { - pname = "fitspec"; - version = "0.4.7"; - sha256 = "b8dc00aad234b30d1d383075062c0756bb7d412a5bf4b766f2aad0d7ac30716a"; - libraryHaskellDepends = [ - base cmdargs leancheck template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/fitspec#readme"; - description = "refining property sets for testing Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.3"; - sha256 = "9218ebd3af3f07335db8dcd148b3ce40acf984734c244cce5959f57402d48282"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, storable-record, tfp - , utility-ht - }: - mkDerivation { - pname = "fixed-length"; - version = "0.2.1"; - sha256 = "a151b68802538e8f98d05f582bd23fad94c869e1ad1f5506579524f5d2764b49"; - libraryHaskellDepends = [ - base non-empty storable-record tfp utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.2.0.0"; - sha256 = "dc67e4f139f07018be73a5f2e44ddfb3e8dab8b884a66a93c7676b2a9f3604a5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , exceptions, filepath, FLAC, mtl, stdenv, text, transformers - , vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.2.0"; - sha256 = "6c8ca5fbe7ac4c6d9475678fc3bcc3b132a75fea870a3591d646cc79add5f50f"; - revision = "1"; - editedCabalFile = "1phwdnya8bgw24a80vbw0m4pm7r67grnc6si8683jz620snnsm48"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory exceptions filepath mtl text - transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.2"; - sha256 = "15689d14d382588697ec0da88a0025c2b156061c060979deaec0d75ecc37030a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flags-applicative" = callPackage - ({ mkDerivation, base, casing, containers, mtl, network, stdenv - , text - }: - mkDerivation { - pname = "flags-applicative"; - version = "0.1.0.2"; - sha256 = "ee69b8dad942e4528e6d4cecda1b4885ae0c9b595009414fb1d6535f1b7c5ea4"; - libraryHaskellDepends = [ - base casing containers mtl network text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/flags-applicative"; - description = "Applicative flag parsing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flat-mcmc" = callPackage - ({ mkDerivation, base, formatting, mcmc-types, monad-par - , monad-par-extras, mwc-probability, pipes, primitive, stdenv, text - , transformers, vector - }: - mkDerivation { - pname = "flat-mcmc"; - version = "1.5.0"; - sha256 = "87cea9deac6e2d32d9984741ba222ccb2fb0d5f8c58e843684476bfe7632f1fd"; - revision = "1"; - editedCabalFile = "1pjkyvs4c6yx6jva08zw2b1qfhhv9q71sy806f5lddjsknnym2fn"; - libraryHaskellDepends = [ - base formatting mcmc-types monad-par monad-par-extras - mwc-probability pipes primitive text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/flat-mcmc"; - description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "flay" = callPackage - ({ mkDerivation, base, constraints, stdenv, transformers }: - mkDerivation { - pname = "flay"; - version = "0.4"; - sha256 = "01ff3e642eab48807e4369fd8c1336e22d7abdcf4374cd1322b1fe259c9413ef"; - libraryHaskellDepends = [ base constraints transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/flay"; - description = "Work generically on your datatype without knowing its shape nor its contents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flexible-defaults" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-extras, transformers - }: - mkDerivation { - pname = "flexible-defaults"; - version = "0.0.3"; - sha256 = "6586f6fce40e64f95e6d3de6d0730f9fe6668825d0dfd81336842fa8c62a630b"; - libraryHaskellDepends = [ - base containers template-haskell th-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/flexible-defaults"; - description = "Generate default function implementations for complex type classes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flow" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "flow"; - version = "1.0.19"; - sha256 = "2942c34bdb0f70bf647ab367e87ea404d8a17a9eeaf5c4357ceff2639dd7ee02"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/flow#readme"; - description = "Write more understandable Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.3"; - sha256 = "8e5fd44df2a7d9f950168d4a47c3389a719431976a52450323bd2dff458536f1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fmt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, call-stack - , containers, formatting, microlens, stdenv, text, time - , time-locale-compat - }: - mkDerivation { - pname = "fmt"; - version = "0.6.1.2"; - sha256 = "78ed7bddb25c0bc4355ca2be2be3c4d8af796bce7e76e20f04b6aebbcbab8ab9"; - libraryHaskellDepends = [ - base base64-bytestring bytestring call-stack containers formatting - microlens text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/fmt"; - description = "A new formatting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fmt-for-rio" = callPackage - ({ mkDerivation, base, enum-text-rio, stdenv }: - mkDerivation { - pname = "fmt-for-rio"; - version = "1.0.0.0"; - sha256 = "5971c6505880eb0310254f72e6ee0424e2f16c4c8490a72ddf8512c81e0bae43"; - libraryHaskellDepends = [ base enum-text-rio ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/fmt-for-rio#readme"; - description = "Adaptor for getting fmt to work with rio"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "focus"; - version = "1.0.1.3"; - sha256 = "bdb56955fdd0fe0f97e2292d121bdc7d679c37f7a87aed9195ab4c73fc7720bc"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "focuslist" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers, lens - , mono-traversable, QuickCheck, stdenv - }: - mkDerivation { - pname = "focuslist"; - version = "0.1.0.2"; - sha256 = "78527aad6212617d4c8c3183c02750693d5bd30be1a26f1caff7db434b31481b"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers lens mono-traversable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/focuslist"; - description = "Lists with a focused element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.9"; - sha256 = "98931e65001dd5d7be5a767837e74e6fc7a5ec16cbdd09408fa7e97a17995b0c"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.4"; - sha256 = "d201526442e17f2338e39eab36e423ac27e9a92c47b2b26c26ae5a8964611656"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldable1" = callPackage - ({ mkDerivation, base, stdenv, transformers, util }: - mkDerivation { - pname = "foldable1"; - version = "0.1.0.0"; - sha256 = "85d684e5caab9e0c87dd04d016432f4a9effb5c8c62354aedcf85c96c1e3e90a"; - libraryHaskellDepends = [ base transformers util ]; - doHaddock = false; - doCheck = false; - description = "Foldable types with at least 1 element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.6"; - sha256 = "2a14aae99eb30344c983b8a07e0c2e5999d097042951e9349eb32d0f388a04aa"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroupoids semigroups text - transformers unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.5"; - sha256 = "39e0c7511d7c24585e9a376cffe8ea84eb7486689d8ac6234ca59ed0dfeb489d"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "follow-file" = callPackage - ({ mkDerivation, attoparsec, attoparsec-path, base, bytestring - , conduit, conduit-combinators, directory, exceptions, hinotify - , monad-control, mtl, path, stdenv, text, unix, utf8-string - }: - mkDerivation { - pname = "follow-file"; - version = "0.0.3"; - sha256 = "232de19ab42130273aac870e5b8d13e55996af670b28c12a192fcb664fe0bb5b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/follow-file#readme"; - 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 = stdenv.lib.licenses.bsd3; - }) {}; - "force-layout" = callPackage - ({ mkDerivation, base, containers, data-default-class, lens, linear - , stdenv - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "f7729855b1b14e0b255325faaca9f4834004e02bd21def6a865d2c55c734259d"; - revision = "5"; - editedCabalFile = "14d494pa7hcxmq9cvy039y5x7da6j4p5jp8kw0kmrlb9q8h6rh18"; - libraryHaskellDepends = [ - base containers data-default-class lens linear - ]; - doHaddock = false; - doCheck = false; - description = "Simple force-directed layout"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forkable-monad" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "571e33effa5baaef4e2dc910010e2b02c01d8b8e06f051e96906f288f71ad462"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/ForkableMonad#readme"; - description = "An implementation of forkIO for monad stacks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.3"; - sha256 = "0c6c4f31688802ca44e477022c9d05f426109e3fc8cc4a98e07339b7e2c7a25d"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.7"; - sha256 = "0cdb4fc2c33612db08cd07926ac4fbea6b9f3c31955ed7d212ae04586f585c1a"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.25"; - sha256 = "c158550f8429be8614e832aa0b5018b29a4e5a8429118bdca5f6d7e74fe9d360"; - revision = "1"; - editedCabalFile = "1ps5sk50sf4b5hd87k3jqykqrwcw2wzyp50rcy6pghd61h83cjg2"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, comonad, containers, distributive - , exceptions, mtl, profunctors, semigroupoids, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "free"; - version = "5.1.3"; - sha256 = "2c70d66e3a1ad52ce4b22d5510ffc6d7b3db950bd7f43bc61801cfe7b24c2e2d"; - libraryHaskellDepends = [ - base comonad containers distributive exceptions mtl profunctors - semigroupoids template-haskell transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , template-haskell, transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.2.1.1"; - sha256 = "27cc3eaebef74268421c25d87c088003f7d8f175dd8b39818e66f62e4ecc0b6f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation template-haskell transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frisby" = callPackage - ({ mkDerivation, array, base, containers, mtl, semigroups, stdenv - }: - mkDerivation { - pname = "frisby"; - version = "0.2.2"; - sha256 = "c1b318dbf54d56e1012955cc47a1633af5fd77facc128c725353718c0663b6d5"; - libraryHaskellDepends = [ array base containers mtl semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://repetae.net/computer/frisby/"; - description = "Linear time composable parser for PEG grammars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "from-sum"; - version = "0.2.2.0"; - sha256 = "460c977b56b92d97f2aea77bb2db30dfd5a2c46dbf4d435d3fc6f609c5bcd715"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Canonical fromMaybeM and fromEitherM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, shelly, stdenv, text, time, unix, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.3.0.1"; - sha256 = "ded2165f72a2b4971f941cb83ef7f58b200e3e04159be78da55ba6c5d35f6da5"; - revision = "1"; - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify shelly - text time unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "03990f311f7d66a6996b88722602b6058fbae7ad33e74073875ef0466ef001ce"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "function-builder" = callPackage - ({ mkDerivation, base, stdenv, tagged }: - mkDerivation { - pname = "function-builder"; - version = "0.3.0.1"; - sha256 = "932d61d4622f84effcb67def19531f0baab34aa3adaff0417a6840a580f5eedf"; - libraryHaskellDepends = [ base tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/function-builder#readme"; - description = "Create poly variadic functions for monoidal results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "functor-combinators" = callPackage - ({ mkDerivation, base, bifunctors, comonad, constraints, containers - , deriving-compat, free, kan-extensions, mmorph, mtl - , natural-transformation, nonempty-containers, pointed, profunctors - , semigroupoids, stdenv, tagged, these, transformers - , trivial-constraint, vinyl - }: - mkDerivation { - pname = "functor-combinators"; - version = "0.1.1.1"; - sha256 = "0c249834f094c64d0cd2e657f666f65ece575fa50c11907e48f1af6629ee41af"; - libraryHaskellDepends = [ - base bifunctors comonad constraints containers deriving-compat free - kan-extensions mmorph mtl natural-transformation - nonempty-containers pointed profunctors semigroupoids tagged these - transformers trivial-constraint vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/functor-combinators#readme"; - description = "Tools for functor combinator-based program design"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fused-effects" = callPackage - ({ mkDerivation, base, deepseq, MonadRandom, random, stdenv - , transformers, unliftio-core - }: - mkDerivation { - pname = "fused-effects"; - version = "0.5.0.1"; - sha256 = "c524b6bcb87792f6abfb8366e0021eb0b6d4a84eae1f49f1a761f0243a19de68"; - libraryHaskellDepends = [ - base deepseq MonadRandom random transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fused-effects/fused-effects"; - description = "A fast, flexible, fused effect system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, base-unicode-symbols, data-default, lens - , stdenv, text, text-metrics, unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.1.1"; - sha256 = "98e885b42b637bf38f6763691f19d786769707fae4b109fa043e38c2c6ed43e4"; - libraryHaskellDepends = [ - base base-unicode-symbols data-default lens text text-metrics - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "galois-field" = callPackage - ({ mkDerivation, base, integer-gmp, MonadRandom, protolude, stdenv - , tasty-quickcheck, wl-pprint-text - }: - mkDerivation { - pname = "galois-field"; - version = "0.3.0"; - sha256 = "679f44c927db469c617e3f026c3defdb2126eb6b904c5c5bf7d74de3f2199630"; - libraryHaskellDepends = [ - base integer-gmp MonadRandom protolude tasty-quickcheck - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/galois-field#readme"; - description = "Galois field library"; - license = stdenv.lib.licenses.mit; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.5"; - sha256 = "d520fd677890c1bf2b1601331d003f976d85420811c3db4a72cff4d3bdb7f5a7"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "gc"; - version = "0.0.3"; - sha256 = "f0f2b7a1acd7a0dcb2b26bf3af056bf56bcbea21f9568c04bfad619e35031433"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/gc/"; - description = "Poor Richard's Memory Manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; inherit (pkgs) zlib;}; - "gdp" = callPackage - ({ mkDerivation, base, lawful, stdenv }: - mkDerivation { - pname = "gdp"; - version = "0.0.3.0"; - sha256 = "a0f70f3eb52d0c666ef2c6a68130d1e8db21c545fc9a7cd3a839dd538a347d5e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base lawful ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/gdp#readme"; - description = "Reason about invariants and preconditions with ghosts of departed proofs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-data" = callPackage - ({ mkDerivation, base, base-orphans, contravariant - , show-combinators, stdenv - }: - mkDerivation { - pname = "generic-data"; - version = "0.7.0.0"; - sha256 = "48c59d9c238596d764ab0391d3fce4dbbee64207460c902e7c771541fa47cd94"; - libraryHaskellDepends = [ - base base-orphans contravariant show-combinators - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/generic-data#readme"; - description = "Deriving instances with GHC.Generics and related utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-data-surgery" = callPackage - ({ mkDerivation, base, first-class-families, generic-data, stdenv - }: - mkDerivation { - pname = "generic-data-surgery"; - version = "0.2.0.0"; - sha256 = "1a97b635e7d8dee9be41cd6ceac691583f63dfbb4127236a8aa7165661ebf60a"; - libraryHaskellDepends = [ base first-class-families generic-data ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/generic-data-surgery#readme"; - description = "Surgery for generic data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.12.4"; - sha256 = "4401c13d38938338fb152bbc1049c5e1f880199afc2015421d5496811b4eaf6d"; - revision = "1"; - editedCabalFile = "16z0748pw4j28ib6vg5yzjm8wrarqkclr7l597q5zjxabjdn1ygj"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged }: - mkDerivation { - pname = "generic-lens"; - version = "1.1.0.0"; - sha256 = "ecf2946dbf7c84cb80febdd6c0574668ba7213644662cc1157f392f9767936bb"; - libraryHaskellDepends = [ base profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.2.0.0"; - sha256 = "9b1e00d2f06b582695a34cfdb2d8b62b32f64152c6ed43f5c2d776e6e9aa148c"; - revision = "1"; - editedCabalFile = "1d0hx41r7yq2a86ydnfh2fv540ah8cz05l071s2z4wxcjw0ymyn4"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generics-eot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generics-eot"; - version = "0.4.0.1"; - sha256 = "9be6de962c003365752b6fcb181ca9f443b68223c69c728c7991f5408d86df68"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://generics-eot.readthedocs.io/"; - description = "A library for generic programming that aims to be easy to understand"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-mrsop" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "generics-mrsop"; - version = "2.1.0"; - sha256 = "cf664f63e2eaae7d5cd3e8852705206ca85c6ee311d8f1abfcd8199ff9e5dffa"; - libraryHaskellDepends = [ base containers mtl template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming with Mutually Recursive Sums of Products"; - license = stdenv.lib.licenses.mit; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, ghc-prim, sop-core, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.4.0.1"; - sha256 = "dc99fa6c597b7ce256bdbdfc89fc615f26013e25256dd7e813f05b7845b61398"; - libraryHaskellDepends = [ - base ghc-prim sop-core template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.2"; - sha256 = "4a30bcdf195082aa2ba6d6d4cd4d4d6378f49c09b522fad686fd0658beeda332"; - revision = "1"; - editedCabalFile = "1ghgh91wd764firxc2s083jzr38w51fg0ry2b7s1wn71mnvzb893"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.8.0.0"; - sha256 = "2ac9a8a10321fd5c9ec3e52a9dda38451e25b7373acfc76c8bd57b0713566870"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.3.0.0"; - sha256 = "5090c6fc63c1a059c98bf77f09df8578ecf9c9b43a63d0538e3f8ab1d33c1651"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.5.0.0"; - sha256 = "aa828fed8bfb38bb7a621e51f3540c6a0597ac92073cc60e321338da129e8f51"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.6.0.0"; - sha256 = "3810e28fe21bf19623d4f5c8505d7ba46afcfb600ec63945e1e0de6d7c7588e2"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, transformers, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.7.0.0"; - sha256 = "ef6909bb397e7ace6f74656dba3636281a216350c8a8de2cd3b7e2993bd3e032"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - transformers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.3.1.0"; - sha256 = "2bcd3edb84fde5e6e72dd794352805e38cfa8814704ce4d95b018b2834ae362a"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.3"; - sha256 = "b99ba22694a36af01f6617463a38a35f305e55c46c52ee727302f2e1585ea9aa"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.3"; - sha256 = "947ec34b6befa40f12eb16ad1d37aba97c5daf91efcbb25c564e8ae2ac887185"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.4"; - sha256 = "36f8df481831d05752148ff7558651ff976432f2fab5b8dc9aa4485d1909cdef"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-optics" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec - , microlens, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-optics"; - version = "0.1.1.1"; - sha256 = "0a92cb7d1f98dc17634434f715473cc19596864146eee6256eaf86576c943788"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec hspec microlens QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for optics"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.3"; - sha256 = "84a4110d2d545a93ee6f1cfbcded1ef02c10791bd52ca3d3df4df672f2847483"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.4.0.0"; - sha256 = "49077837b40bbb8cbd2f45b731db1859db0ff186bccf9d49e14608613af35e7d"; - libraryHaskellDepends = [ - base genvalidity hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.1.0"; - sha256 = "af11d48c53455eb250e68c6cb4f6e8159ddc16fb635879fc2973d57d8bd5903d"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.6.0.0"; - sha256 = "4a8a0f3ab2616d6ef3d319b3114ee8549e2194a6d92a4be69e646ee16a25c804"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.1.1"; - sha256 = "c555c206edddbd70355b295ccf9ff053463c137735c4aebcc340091f6d6b7874"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.3.0.0"; - sha256 = "30a7b8e14e7f0e97d7881929e2a508fa2bafd8c6f850c069437117a456259636"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.2"; - sha256 = "d1354bdfc0a75a1f228cfed22cd0edb0cc13a925e4b2514a634d56eb5b53f412"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.3.0.0"; - sha256 = "70f06305a7b90708287285c2e6cfb7d1ef27499287952d946f1918071d531b87"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geojson" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, lens, scientific - , semigroups, stdenv, text, transformers, validation, vector - }: - mkDerivation { - pname = "geojson"; - version = "4.0.1"; - sha256 = "32fb795e89d8bb5cf4baecd4dff09019961e70aa8fe2eb60ef9e847c8a341380"; - libraryHaskellDepends = [ - aeson base containers deepseq lens scientific semigroups text - transformers validation vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/indicatrix/hs-geojson"; - description = "A thin GeoJSON Layer above the aeson library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.4"; - sha256 = "f9458ffc13a8767ca8026a2c9dfc294ce2b5ca94148d5286e368bc1c2c9b5fe7"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-compact" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ghc-compact"; - version = "0.1.0.0"; - sha256 = "50bc40e5e5b3a17b267250136af0c04027a9d9eb699e9fee8a5a321bae424e0f"; - revision = "3"; - editedCabalFile = "09l51r0nk7vj6a9crz7q5sv4962mnq18xb6zkxfl6cnm28v85nsk"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "In memory storage of deeply evaluated data structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-lib-parser, ghc-prim, happy - , haskeline, hpc, pretty, process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib"; - version = "8.8.0.20190424"; - sha256 = "959bf09429f267a97c5acb21c535bdea2a689999c6d63125613dd6a598cac10d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-lib-parser ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - executableHaskellDepends = [ - array base bytestring containers deepseq directory filepath - ghc-prim haskeline process time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc-lib-parser, stdenv, uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc-lib-parser uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-parser" = callPackage - ({ mkDerivation, base, cpphs, ghc, happy, stdenv }: - mkDerivation { - pname = "ghc-parser"; - version = "0.2.1.0"; - sha256 = "a9f17e5cb24131f7ce8df3fbdfb9b11e1dde5a469b0a1e05f34f25a4ffc8cf7c"; - libraryHaskellDepends = [ base ghc ]; - libraryToolDepends = [ cpphs happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gibiansky/IHaskell"; - description = "Haskell source parser from GHC"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.12"; - sha256 = "6ecbe676d073cb07989c61ce4c5709c4e67cbefdd2d55a4095f9388b6fe2c484"; - revision = "1"; - editedCabalFile = "1gb4hn87a78j1c2y1adi81y03irzkaxywscjkphfajsxc7f0ydw5"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.6"; - sha256 = "24a8929d6b3342484e7159997498136c6262454a2b225b3d57fbdd4e8899d7e7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-syntax-highlighter" = callPackage - ({ mkDerivation, base, ghc, ghc-boot, stdenv, text }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.4.1"; - sha256 = "4f6e6ac0c3f127ad3c57ee68d430d5afd9348eb308783d6a304119abc5779a3e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ghc ghc-boot text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; - description = "Syntax highlighter for Haskell using lexer of GHC itself"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.3.2"; - sha256 = "75685cfdaabadf66f590e2d7408aafa5fc495c7fcd01b69bcc76440f97e4108f"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-prim - , ghc-tcplugins-extra, ghc-typelits-knownnat - , ghc-typelits-natnormalise, integer-gmp, stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.3.2"; - sha256 = "1be290e6fa67c0c83af1fe54e57b9f7264cd57d67923e9396dc01c42e31b8b6b"; - libraryHaskellDepends = [ - base containers ghc ghc-prim ghc-tcplugins-extra - ghc-typelits-knownnat ghc-typelits-natnormalise integer-gmp - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.6"; - sha256 = "4b529b27b226cc3df47d95cb8f0a145ed0c25486dec4f99be8dcd700ddc7f237"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, ghc, ghc-tcplugins-extra, integer-gmp - , stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.6.2"; - sha256 = "801ceb41442dfa992fad04c64f2989d1d701bcfe0874a55aa8d250e63c1a4311"; - libraryHaskellDepends = [ - base ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghci-hexcalc" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "ghci-hexcalc"; - version = "0.1.1.0"; - sha256 = "701ee465d6f1d4b815782954fb68bd058b257b38773b07e89f2ee01c38ea53ce"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/takenobu-hs/ghci-hexcalc"; - description = "GHCi as a Hex Calculator interactive"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.7.7"; - sha256 = "6a5068c1edfff34b36de14fbe2be8d67c6960010979d276aea561a17743432e3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.2"; - sha256 = "6cbb2c649f6d4a874eb7486a2dd33db2ed0f138f1f8289a6447460d39b4b2097"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gi-atk" = callPackage - ({ mkDerivation, atk, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-atk"; - version = "2.0.21"; - sha256 = "539f1d2f57eb947166b6608a5b7ef2cdd51ca92549a594ffcb4beb4205faec5a"; - setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ atk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Atk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) atk;}; - "gi-cairo" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-cairo"; - version = "1.0.23"; - sha256 = "d022c96f87f22658dfa33fe1299597047f13dd7e387e149cc4c5fd6b284d87f8"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Cairo bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo;}; - "gi-gdk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-cairo - , gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject, gi-pango, gtk3 - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gdk"; - version = "3.0.22"; - sha256 = "f9d180574e0ab161d58202dc270a230001a7d84414dd5f10c3c58631679cd828"; - setupHaskellDepends = [ - base Cabal gi-cairo gi-gdkpixbuf gi-gio gi-glib gi-gobject gi-pango - haskell-gi - ]; - libraryHaskellDepends = [ - base bytestring containers gi-cairo gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gdk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gdkpixbuf" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gdk_pixbuf - , gi-gio, gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gdkpixbuf"; - version = "2.0.23"; - sha256 = "d72a32e6dba9943a38a1a76012dc7c7dc1f7a31b69061dc7a143d3d570cff04a"; - setupHaskellDepends = [ - base Cabal gi-gio gi-glib gi-gobject haskell-gi - ]; - libraryHaskellDepends = [ - base bytestring containers gi-gio gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gdk_pixbuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GdkPixbuf bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gdk_pixbuf;}; - "gi-gio" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, glib, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gio"; - version = "2.0.25"; - sha256 = "dfe2428664f1a050c94c96bb382c1d147bdef1fea000e7b960c9a83280a68270"; - setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gio bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-glib" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-glib"; - version = "2.0.23"; - sha256 = "fd8c6b67461896397b390d427607ed2d90840e166b46de2a8aa8488a4ae951f3"; - setupHaskellDepends = [ base Cabal haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GLib bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gobject" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib, glib - , haskell-gi, haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers - }: - mkDerivation { - pname = "gi-gobject"; - version = "2.0.22"; - sha256 = "e69da869c38f6b0f7210ec5f2f4706ee0c55340e5ab45e7cf1b48d7480513130"; - setupHaskellDepends = [ base Cabal gi-glib haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GObject bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "gi-gtk" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-pango, gtk3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk"; - version = "3.0.32"; - sha256 = "14d5723b39a9c6f0f8048fed6c9e400b8a13d59e7a19df860bdae758314d3b36"; - setupHaskellDepends = [ - base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-pango haskell-gi - ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-pango haskell-gi haskell-gi-base - haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtk3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Gtk bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtk3;}; - "gi-gtk-hs" = callPackage - ({ mkDerivation, base, base-compat, containers, gi-gdk - , gi-gdkpixbuf, gi-glib, gi-gobject, gi-gtk, haskell-gi-base, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtk-hs"; - version = "0.3.8.0"; - sha256 = "b4c4fc2936a24be471243460f4b3359096ddc989d84018566ff14a47049efe32"; - libraryHaskellDepends = [ - base base-compat containers gi-gdk gi-gdkpixbuf gi-glib gi-gobject - gi-gtk haskell-gi-base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/gi-gtk-hs"; - description = "A wrapper for gi-gtk, adding a few more idiomatic API parts on top"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "gi-gtksource" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-cairo, gi-gdk, gi-gdkpixbuf, gi-gio, gi-glib, gi-gobject - , gi-gtk, gi-pango, gtksourceview3, haskell-gi, haskell-gi-base - , haskell-gi-overloading, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-gtksource"; - version = "3.0.22"; - sha256 = "50328370c24e7b01b71d93b7ddbc204d3bf447e7739ed1afea25fbd7a4736321"; - setupHaskellDepends = [ - base Cabal gi-atk gi-cairo gi-gdk gi-gdkpixbuf gi-gio gi-glib - gi-gobject gi-gtk gi-pango haskell-gi - ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-cairo gi-gdk gi-gdkpixbuf - gi-gio gi-glib gi-gobject gi-gtk gi-pango haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ gtksourceview3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "GtkSource bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) gtksourceview3;}; - "gi-javascriptcore" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-glib - , gi-gobject, haskell-gi, haskell-gi-base, haskell-gi-overloading - , stdenv, text, transformers, webkitgtk - }: - mkDerivation { - pname = "gi-javascriptcore"; - version = "4.0.21"; - sha256 = "047053e7ae936754709a25d6124238066b733dd927aa66214e3962edada2827e"; - setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ webkitgtk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "JavaScriptCore bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) webkitgtk;}; - "gi-pango" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cairo, containers - , gi-glib, gi-gobject, haskell-gi, haskell-gi-base - , haskell-gi-overloading, pango, stdenv, text, transformers - }: - mkDerivation { - pname = "gi-pango"; - version = "1.0.22"; - sha256 = "c27914a7dbfebe6e8a04280382b16e093df1bcefdc30b889b89e9da8f808bf25"; - setupHaskellDepends = [ base Cabal gi-glib gi-gobject haskell-gi ]; - libraryHaskellDepends = [ - base bytestring containers gi-glib gi-gobject haskell-gi - haskell-gi-base haskell-gi-overloading text transformers - ]; - libraryPkgconfigDepends = [ cairo pango ]; - doHaddock = false; - doCheck = false; - preCompileBuildDriver = '' - PKG_CONFIG_PATH+=":${cairo}/lib/pkgconfig" - setupCompileFlags+=" $(pkg-config --libs cairo-gobject)" - ''; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Pango bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) cairo; inherit (pkgs) pango;}; - "gi-vte" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, gi-atk - , gi-gdk, gi-gio, gi-glib, gi-gobject, gi-gtk, gi-pango, haskell-gi - , haskell-gi-base, haskell-gi-overloading, stdenv, text - , transformers, vte_291 - }: - mkDerivation { - pname = "gi-vte"; - version = "2.91.25"; - sha256 = "6c48a4a082df589f5d52f6dfa55490fcb094babb4263a70dbeef9fdcd6c2d340"; - setupHaskellDepends = [ - base Cabal gi-atk gi-gdk gi-gio gi-glib gi-gobject gi-gtk gi-pango - haskell-gi - ]; - libraryHaskellDepends = [ - base bytestring containers gi-atk gi-gdk gi-gio gi-glib gi-gobject - gi-gtk gi-pango haskell-gi haskell-gi-base haskell-gi-overloading - text transformers - ]; - libraryPkgconfigDepends = [ vte_291 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Vte bindings"; - license = stdenv.lib.licenses.lgpl21; - }) {vte_291 = pkgs.vte;}; - "ginger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring - , data-default, filepath, http-types, mtl, optparse-applicative - , parsec, process, regex-tdfa, safe, scientific, stdenv, text, time - , transformers, unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "ginger"; - version = "0.9.1.0"; - sha256 = "1f93716bab208d50070186440162c28059eae3ab80222150848479dee7c29a62"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring data-default filepath http-types - mtl parsec regex-tdfa safe scientific text time transformers - unordered-containers utf8-string vector - ]; - executableHaskellDepends = [ - aeson base bytestring data-default optparse-applicative process - text transformers unordered-containers utf8-string yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://ginger.tobiasdammers.nl/"; - description = "An implementation of the Jinja2 template language in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "gingersnap" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-types - , postgresql-simple, resource-pool, snap-core, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "gingersnap"; - version = "0.3.1.0"; - sha256 = "01509dbfc31e865128d2ef13efc56502f9a716f7b30f0890a0616612aed08c82"; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-types postgresql-simple - resource-pool snap-core text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Consistent and safe JSON APIs with snap-core and (by default) postgresql-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "githash" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "githash"; - version = "0.1.3.3"; - sha256 = "598231964e161440335b1ba4d31d4b8195e0b78d834d3bbaf4be86faadd0b0a7"; - libraryHaskellDepends = [ - base bytestring directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/githash#readme"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-release" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, mime-types, optparse-generic, stdenv - , text, unordered-containers, uri-templater - }: - mkDerivation { - pname = "github-release"; - version = "1.2.5"; - sha256 = "d9c9e315f34cde7e313555acf7f2706b7e39f5f327d51788b2bec52e35c295c6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - executableHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types - mime-types optparse-generic text unordered-containers uri-templater - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/github-release#readme"; - description = "Upload files to GitHub releases"; - license = stdenv.lib.licenses.mit; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "github-webhooks" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, deepseq, deepseq-generics, memory, stdenv, text, time - , vector - }: - mkDerivation { - pname = "github-webhooks"; - version = "0.10.1"; - sha256 = "ddc410e81a607b1b758d5e0e94ba707bb85631b184fd50120507c2be9f2f54c2"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite deepseq - deepseq-generics memory text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/onrock-eng/github-webhooks#readme"; - description = "Aeson instances for GitHub Webhook payloads"; - license = stdenv.lib.licenses.mit; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, containers, fixed, half, libGL, stdenv - , transformers - }: - mkDerivation { - pname = "gl"; - version = "0.9"; - sha256 = "318ef0aab5239d5253c387709dd935c43a0d614f9bb1e186db4a7a96d88b61cd"; - revision = "1"; - editedCabalFile = "19qyb9m2fy9qyirmhhayg51scas42n3i2rx7jcw6v3ra8c8r9rwr"; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "2.0.1"; - sha256 = "9c738bc148407b74c94947e3fa6c739b03669b3dd0f33829617df29efd390719"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glaze" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "glaze"; - version = "0.3.0.1"; - sha256 = "bbb184408bcf24e8c4f89a960cf7a69ab0c51e98bf84c5fa9901aae1702e22a1"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glaze#readme"; - description = "Framework for rendering things with metadata/headers and values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "glazier" = callPackage - ({ mkDerivation, alternators, base, data-diverse, data-diverse-lens - , dlist, lens, mtl, stdenv, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "glazier"; - version = "1.0.0.0"; - sha256 = "e9c56250e48b99bfe6280c58d1458c5d35203bf3676705355a4d0bd89c7b71a4"; - libraryHaskellDepends = [ - alternators base data-diverse data-diverse-lens dlist lens mtl - transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/glazier#readme"; - description = "Extensible effects using ContT, State and variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gloss" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim - , gloss-rendering, GLUT, OpenGL, stdenv - }: - mkDerivation { - pname = "gloss"; - version = "1.13.1.1"; - sha256 = "9a5a797d2c664e0eea7066adcec1a841a4eb3d08688827f2f5ae2fb745e3b2ae"; - revision = "1"; - editedCabalFile = "1bcjm3issssqxd60jd2y6032y8plcs0sm3wbnha1f6fa3z46z9n0"; - libraryHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss-rendering GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Painless 2D vector graphics, animations and simulations"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-algorithms" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, stdenv }: - mkDerivation { - pname = "gloss-algorithms"; - version = "1.13.0.1"; - sha256 = "25391db76e21e70c912d818a5f28f1b647a801034b3960540264b1e8b766786d"; - revision = "1"; - editedCabalFile = "140zmk3br0nn98mjc6ri36nk8yl93n4v69zybzv2vc41yxgvnac5"; - libraryHaskellDepends = [ base containers ghc-prim gloss ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Data structures and algorithms for working with 2D graphics"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-examples" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, ghc-prim, gloss - , gloss-algorithms, gloss-raster, random, repa, repa-algorithms - , repa-io, stdenv, vector - }: - mkDerivation { - pname = "gloss-examples"; - version = "1.13.0.2"; - sha256 = "ab216c95cf26879154db0d7ee36def7a2d9b2cd6aaae4278e2b55621a51c54bc"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bmp bytestring containers ghc-prim gloss gloss-algorithms - gloss-raster random repa repa-algorithms repa-io vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Examples using the gloss library"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-raster" = callPackage - ({ mkDerivation, base, containers, ghc-prim, gloss, gloss-rendering - , repa, stdenv - }: - mkDerivation { - pname = "gloss-raster"; - version = "1.13.1.1"; - sha256 = "69bda680168221dfbdb7f252307d8380b428523266de9efad0345612b70a2ba5"; - libraryHaskellDepends = [ - base containers ghc-prim gloss gloss-rendering repa - ]; - doHaddock = false; - doCheck = false; - homepage = "http://gloss.ouroborus.net"; - description = "Parallel rendering of raster images"; - license = stdenv.lib.licenses.mit; - }) {}; - "gloss-rendering" = callPackage - ({ mkDerivation, base, bmp, bytestring, containers, GLUT, OpenGL - , stdenv - }: - mkDerivation { - pname = "gloss-rendering"; - version = "1.13.1.1"; - sha256 = "3db5001edf345ac2232d012d6f57df031674509fca18383e43ca37f7ffa97fde"; - revision = "1"; - editedCabalFile = "10x83cpxp6yrmamjg4kjm3pzlhh6zj2rdw686py0vcx0jrjy3qg7"; - libraryHaskellDepends = [ - base bmp bytestring containers GLUT OpenGL - ]; - doHaddock = false; - doCheck = false; - description = "Gloss picture data types and rendering functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "gnuplot" = callPackage - ({ mkDerivation, array, base, containers, data-accessor - , data-accessor-transformers, deepseq, filepath, process - , semigroups, stdenv, temporary, time, transformers, utility-ht - }: - mkDerivation { - pname = "gnuplot"; - version = "0.5.6.1"; - sha256 = "cb32149b2ad92c134094f2f79ee0cee88e4de995a6e4729347597a6d2949d8e5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers data-accessor data-accessor-transformers - deepseq filepath process semigroups temporary time transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Gnuplot"; - description = "2D and 3D plots using gnuplot"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-isbn" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-conduit, stdenv, text - }: - mkDerivation { - pname = "google-isbn"; - version = "1.0.3"; - sha256 = "3a4df734785c46d381cff3cb44a553b0f9d5ffb051279367a193d64928c2322f"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-conduit text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/google-isbn#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-oauth2-jwt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, HsOpenSSL - , RSA, stdenv, text, unix-time - }: - mkDerivation { - pname = "google-oauth2-jwt"; - version = "0.3.2"; - sha256 = "da1441eaafdda770d43bc62c4bef12f0f2682f490ca308596ea698758d4c4bda"; - libraryHaskellDepends = [ - base base64-bytestring bytestring HsOpenSSL RSA text unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/google-oauth2-jwt"; - description = "Get a signed JWT for Google Service Accounts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.6.0"; - sha256 = "b89ed6f47a6d44b9466d090eabddc9d9ec4b2d7e4b52a61b26d0cf19dac95ba6"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphite" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers, deepseq - , graphviz, hashable, process, QuickCheck, random, semigroups - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "graphite"; - version = "0.10.0.1"; - sha256 = "7a8366a9113c5071f5c4863a6bf10462c4274281f5523fc80f2e5539de6d0aab"; - libraryHaskellDepends = [ - base bytestring cassava containers deepseq graphviz hashable - process QuickCheck random semigroups text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/graphite#readme"; - description = "Graphs and networks library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphviz" = callPackage - ({ mkDerivation, base, bytestring, colour, containers, directory - , dlist, fgl, filepath, mtl, polyparse, process, stdenv, temporary - , text, wl-pprint-text - }: - mkDerivation { - pname = "graphviz"; - version = "2999.20.0.3"; - sha256 = "efa0a27a914e4c51ebfc8b11a741f551e97713c22a02d0e60ddbd960f8376212"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring colour containers directory dlist fgl filepath mtl - polyparse process temporary text wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/graphviz/"; - description = "Bindings to Graphviz for graph visualisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "graylog" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, network - , random, scientific, stdenv, text, time, vector - }: - mkDerivation { - pname = "graylog"; - version = "0.1.0.1"; - sha256 = "2d8173e61da8d02c39cb95e6ccea8a167c792f682a496aed5fe4edfd0e6a0082"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring network random scientific text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/haskell-graylog"; - description = "Support for graylog output"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "greskell" = callPackage - ({ mkDerivation, aeson, base, exceptions, greskell-core, semigroups - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "greskell"; - version = "0.2.3.1"; - sha256 = "f4dd2527f377ca2478fc03a520f9f1614eedbf69961a1a7c4054d8528943cf2f"; - configureFlags = [ "-f-hint-test" ]; - libraryHaskellDepends = [ - aeson base exceptions greskell-core semigroups text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-core" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, scientific - , semigroups, stdenv, text, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "greskell-core"; - version = "0.1.3.1"; - sha256 = "bcd22f9587b708e8d09a043784bcb9afcb94b6f840e5f5ecb3c60760f2efe64a"; - libraryHaskellDepends = [ - aeson base containers hashable scientific semigroups text - unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language - core data types and tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-websocket" = callPackage - ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , greskell-core, hashtables, safe-exceptions, stdenv, stm, text - , unordered-containers, uuid, vector, websockets - }: - mkDerivation { - pname = "greskell-websocket"; - version = "0.1.2.1"; - sha256 = "fd92319d970ddf4c58772bb555659fe31ea5ccd9c9c7efab968d3362ece9e473"; - libraryHaskellDepends = [ - aeson async base base64-bytestring bytestring greskell-core - hashtables safe-exceptions stm text unordered-containers uuid - vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell client for Gremlin Server using WebSocket serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, containers, monad-control, mtl - , resourcet, safe-exceptions, scientific, stdenv, text, time - , transformers, transformers-base, transformers-compat - }: - mkDerivation { - pname = "groundhog"; - version = "0.10.0"; - sha256 = "38fb65889878a50fd16e2ad8a04f0a9e2c774794086fbe156361d797b1a893f1"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - containers monad-control mtl resourcet safe-exceptions scientific - text time transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lykahb/groundhog"; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-inspector" = callPackage - ({ mkDerivation, aeson-pretty, base, bytestring, cmdargs - , containers, groundhog, groundhog-sqlite, groundhog-th, mtl - , regex-compat, stdenv, syb, template-haskell, text, time - , transformers - }: - mkDerivation { - pname = "groundhog-inspector"; - version = "0.10.0"; - sha256 = "4215ad3d497d0e9b66f0a3430a1db68abecdc013ed1cec1976f761dc7cac9ad0"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lykahb/groundhog"; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-mysql" = callPackage - ({ mkDerivation, base, bytestring, containers, groundhog - , monad-control, monad-logger, mysql, mysql-simple, resource-pool - , resourcet, stdenv, text, time, transformers - }: - mkDerivation { - pname = "groundhog-mysql"; - version = "0.10"; - sha256 = "ddf26a56078d815c77b0d36230183fe8ab804c5dc12ed09c2332ae06a88ebec5"; - libraryHaskellDepends = [ - base bytestring containers groundhog monad-control monad-logger - mysql mysql-simple resource-pool resourcet text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "MySQL backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-postgresql" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , containers, groundhog, monad-control, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, vector - }: - mkDerivation { - pname = "groundhog-postgresql"; - version = "0.10"; - sha256 = "8916f26dfe8b3a8523792ce44899fa7ee984c002100c10850819159551dc2fb6"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring containers groundhog - monad-control postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "PostgreSQL backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-sqlite" = callPackage - ({ mkDerivation, base, bytestring, containers, direct-sqlite - , groundhog, monad-control, resource-pool, resourcet, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "groundhog-sqlite"; - version = "0.10.0"; - sha256 = "fdf0377924ac6214ced50a5670b2d4811801c1a20e480b22090a705582d6defc"; - libraryHaskellDepends = [ - base bytestring containers direct-sqlite groundhog monad-control - resource-pool resourcet text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Sqlite3 backend for the groundhog library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groundhog-th" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, groundhog - , libyaml, stdenv, template-haskell, text, time - , unordered-containers, yaml - }: - mkDerivation { - pname = "groundhog-th"; - version = "0.10.2"; - sha256 = "f3532d16633e0a8592696a5e4f92064e44fbefba9b4a1f4a9ac6b4aef3ddfdae"; - libraryHaskellDepends = [ - aeson base bytestring containers groundhog libyaml template-haskell - text time unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - description = "Type-safe datatype-database mapping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "group-by-date" = callPackage - ({ mkDerivation, base, explicit-exception, filemanip, hsshellscript - , pathtype, stdenv, time, transformers, unix-compat, utility-ht - }: - mkDerivation { - pname = "group-by-date"; - version = "0.1.0.3"; - sha256 = "501a34dffc20c0f8e4086d66e61219ac1c885d889de1fba165d9aafeebf3e253"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base explicit-exception filemanip hsshellscript pathtype time - transformers unix-compat utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/group-by-date/"; - description = "Shell command for grouping files by dates into folders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "grouped-list" = callPackage - ({ mkDerivation, base, binary, containers, deepseq, pointed, stdenv - }: - mkDerivation { - pname = "grouped-list"; - version = "0.2.2.1"; - sha256 = "54fd5f1deb01541f47bd7de93d37a8e83bdf9e7686b288c01c5ba097dbcc48af"; - libraryHaskellDepends = [ base binary containers deepseq pointed ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/grouped-list/blob/master/README.md"; - description = "Grouped lists. Equal consecutive elements are grouped."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "guarded-allocation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "guarded-allocation"; - version = "0.0.1"; - sha256 = "0cac10d1790817bdbc44ffe4ee8fcb649e350bb831987ee80739393917784695"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/guarded-allocation/"; - description = "Memory allocation with added stress tests and integrity checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gym-http-api" = callPackage - ({ mkDerivation, aeson, base, exceptions, http-client, servant - , servant-client, servant-lucid, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "gym-http-api"; - version = "0.1.0.1"; - sha256 = "2c3fd9b261cd7bc3a004d41f582cd6c629956c78f7236eb91d615ca0c9b0c910"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base servant servant-client servant-lucid text - unordered-containers - ]; - executableHaskellDepends = [ - base exceptions http-client servant-client - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stites/gym-http-api#readme"; - description = "REST client to the gym-http-api project"; - license = stdenv.lib.licenses.mit; - }) {}; - "hOpenPGP" = callPackage - ({ mkDerivation, aeson, asn1-encoding, attoparsec, base - , base16-bytestring, bifunctors, binary, binary-conduit, bytestring - , bzlib, conduit, conduit-extra, containers, crypto-cipher-types - , cryptonite, errors, hashable, incremental-parser, ixset-typed - , lens, memory, monad-loops, nettle, network-uri, newtype - , openpgp-asciiarmor, prettyprinter, resourcet, semigroups, split - , stdenv, text, time, time-locale-compat, transformers - , unliftio-core, unordered-containers, zlib - }: - mkDerivation { - pname = "hOpenPGP"; - version = "2.8.5"; - sha256 = "b28a0e09cd19e59b7d8c5027061c84420eb4e081c9cab204b31abd3ce4abacb4"; - libraryHaskellDepends = [ - aeson asn1-encoding attoparsec base base16-bytestring bifunctors - binary binary-conduit bytestring bzlib conduit conduit-extra - containers crypto-cipher-types cryptonite errors hashable - incremental-parser ixset-typed lens memory monad-loops nettle - network-uri newtype openpgp-asciiarmor prettyprinter resourcet - semigroups split text time time-locale-compat transformers - unliftio-core unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "native Haskell implementation of OpenPGP (RFC4880)"; - license = stdenv.lib.licenses.mit; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.0.1"; - sha256 = "f0aac1af6d8d29b7fc2ffd43efaf5a7a5b00f2ead8dacff180bc3714c591ef8d"; - revision = "2"; - editedCabalFile = "0qscq4d3xwvjhqi1fiky7g12iwbkwn9qrypwzg9lx4p3c5xlwlvn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory filepath tar time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access Hackage's package database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-security" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, Cabal, containers, cryptohash-sha256, directory - , ed25519, filepath, ghc-prim, mtl, network, network-uri, parsec - , pretty, stdenv, tar, template-haskell, time, transformers, zlib - }: - mkDerivation { - pname = "hackage-security"; - version = "0.5.3.0"; - sha256 = "db986e17e9265aa9e40901690815b890b97d53159eb24d0a6cafaa7c18577c21"; - revision = "6"; - editedCabalFile = "1xs2nkzlvkdz8g27yzfxbjdbdadfmgiydnlpn5dm77cg18r495ay"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring Cabal - containers cryptohash-sha256 directory ed25519 filepath ghc-prim - mtl network network-uri parsec pretty tar template-haskell time - transformers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/hackage-security"; - description = "Hackage security library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, Cabal, containers - , deepseq, directory, filepath, ghc, ghc-boot, ghc-paths - , haddock-library, stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.22.0"; - sha256 = "24804f7e9da006a97712822da8afd7b24b00a9135638457266fc54e2e8273891"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring Cabal containers deepseq directory filepath - ghc ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, parsec, stdenv, text - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.7.0"; - sha256 = "e7c2794a7eb352824f098cafa07bc0506f2c3633808bfbf4c64aef0ba664d011"; - libraryHaskellDepends = [ - base bytestring containers parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hadolint" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, gitrev, HsYAML, language-docker, megaparsec, mtl - , optparse-applicative, ShellCheck, split, stdenv, text, void - }: - mkDerivation { - pname = "hadolint"; - version = "1.17.3"; - sha256 = "b77878d106a8a07ae01fd78dcf092807250b7b0167a583071ac6206caa709e02"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory filepath HsYAML - language-docker megaparsec mtl ShellCheck split text void - ]; - executableHaskellDepends = [ - base containers gitrev language-docker megaparsec - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hadolint/hadolint"; - description = "Dockerfile Linter JavaScript API"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamilton" = callPackage - ({ mkDerivation, ad, ansi-wl-pprint, base, containers - , finite-typelits, ghc-typelits-knownnat, hmatrix, hmatrix-gsl - , hmatrix-vector-sized, optparse-applicative, stdenv - , typelits-witnesses, vector, vector-sized, vty - }: - mkDerivation { - pname = "hamilton"; - version = "0.1.0.3"; - sha256 = "3c7623217c8e49cabc6620835e53609e7b7339f39a1523da2467076252addb1b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hamilton#readme"; - description = "Physics on generalized coordinate systems using Hamiltonian Mechanics and AD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hapistrano" = callPackage - ({ mkDerivation, aeson, ansi-terminal, async, base, filepath - , formatting, gitrev, mtl, optparse-applicative, path, path-io - , process, stdenv, stm, time, transformers, typed-process, yaml - }: - mkDerivation { - pname = "hapistrano"; - version = "0.3.10.0"; - sha256 = "4aeaa3f487ae482ce54b1c45ac471601b328e241a42d2b229064998bd947894f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base filepath formatting gitrev mtl path - process stm time transformers typed-process - ]; - executableHaskellDepends = [ - aeson async base formatting gitrev optparse-applicative path - path-io stm yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hapistrano"; - description = "A deployment library for Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "happy"; - version = "1.19.12"; - sha256 = "fb9a23e41401711a3b288f93cf0a66db9f97da1ce32ec4fffea4b78a0daeb40f"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hasbolt" = callPackage - ({ mkDerivation, base, binary, bytestring, connection, containers - , data-binary-ieee754, data-default, mtl, network, stdenv, text - }: - mkDerivation { - pname = "hasbolt"; - version = "0.1.4.1"; - sha256 = "abc0fd1f1ec618a0c702aa5455171e1268731310da52989f0e42546fa0734fdc"; - libraryHaskellDepends = [ - base binary bytestring connection containers data-binary-ieee754 - data-default mtl network text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmactep/hasbolt#readme"; - description = "Haskell driver for Neo4j 3+ (BOLT protocol)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.2.7.0"; - sha256 = "ecb5efc0586023f5a0dc861100621c1dbb4cbb2f0516829a16ebac39f0432abf"; - revision = "1"; - editedCabalFile = "197063dpl0wn67dp7a06yc2hxp81n24ykk7klbjx0fndm5n87dh3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable-time" = callPackage - ({ mkDerivation, base, hashable, stdenv, time }: - mkDerivation { - pname = "hashable-time"; - version = "0.2.0.2"; - sha256 = "fa61f7fbd493b5a54f2aeb10e0c1c4144111ecf34e74080d12c5738ce925fee0"; - revision = "2"; - editedCabalFile = "006phc5y9rrvsshdcmjmhxzxh8dpgs685mpqbkjm9c40xb1ydjbz"; - libraryHaskellDepends = [ base hashable time ]; - doHaddock = false; - doCheck = false; - description = "Hashable instances for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.4"; - sha256 = "125ce62701fba3f666609f5c75f452005aa5d32dff4eeee3f3903c30b2ed55e6"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.5.0"; - sha256 = "d26508444914efcd6a0369f89c3ade57feae7732c73f5329b610c0c8f1c1dec6"; - revision = "1"; - editedCabalFile = "0i8fyhk7fvz2bxnh5xsmdw5rr7yywzc2wv115034q1g4sb018zrd"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.23.0"; - sha256 = "8ad81ef082c71f41c6c6e0afbd8779497da6ffb1e9e7c2b207efe0b56aa7a211"; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.23.0"; - sha256 = "c07ebe7dea2a3c2b0a980f7b958529920caeaf5966280c1317c5fbba2f6942b8"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, ormolu, parsec, process, safe, sorted-list - , stdenv, stm, syb, tagsoup, text, transformers, unix-time - , unliftio, unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple ormolu parsec process safe sorted-list stm syb - tagsoup text transformers unix-time unliftio unordered-containers - vector versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.0.2"; - sha256 = "d8cdf3122ee384ec440269108fd85ccf207a413015ceeffb2e9bf4313a6addf3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yav/haskell-lexer"; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-names" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , data-lens-light, filepath, haskell-src-exts, mtl, stdenv - , transformers, traverse-with-class, uniplate - }: - mkDerivation { - pname = "haskell-names"; - version = "0.9.7"; - sha256 = "b2b03fb559fed5904750e5678b05be51b9158195b552971e08f825456e9ba0a9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers data-lens-light filepath - haskell-src-exts mtl transformers traverse-with-class uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/haskell-suite/haskell-names"; - description = "Name resolution library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-spacegoo" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , mtl, pretty, pretty-show, stdenv, text, vector, vector-space - }: - mkDerivation { - pname = "haskell-spacegoo"; - version = "0.2.0.1"; - sha256 = "1eb3faa9a7f6a5870337eeb0bb3ad915f58987dfe4643fe95c91cbb2738ddd3c"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra mtl pretty pretty-show - text vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Client API for Rocket Scissor Spacegoo"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.0"; - sha256 = "b4b4941e8883da32c3f2b93f3ecdd5cff82ff9304cb91e89850b19095c908dbc"; - revision = "1"; - editedCabalFile = "1pnrvh9wzdkhvkkky4rlq1imycl9k76x9rvgq7cmfp8rf1iwqi5q"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.3"; - sha256 = "49e5d23909aa0f8f88e10b1347608052c093f4fab2a79b9877d64221b1b2f69f"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.1"; - sha256 = "35f54cf51b0cd66361b29e21ebcd0603ab2396028e58ab667ac709591491f387"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskintex" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, haskell-src-exts, HaTeX, hint, parsec, process, stdenv - , text, transformers - }: - mkDerivation { - pname = "haskintex"; - version = "0.8.0.0"; - sha256 = "9d4974112f33baf47124a56f87b96892a0a37c10587098f851c71256d15cddd8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath - haskell-src-exts HaTeX hint parsec process text transformers - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://daniel-diaz.github.io/projects/haskintex"; - description = "Haskell Evaluation inside of LaTeX code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskoin-core" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring - , cereal, conduit, containers, cryptonite, entropy, hashable, hspec - , HUnit, memory, mtl, murmur3, network, QuickCheck, safe - , scientific, secp256k1-haskell, split, stdenv, string-conversions - , text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haskoin-core"; - version = "0.9.8"; - sha256 = "f9a60e19d9c0b2a9319b2a0fb79297fdf0d28fdc7f3bd87cde0f849414a5bef4"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bytestring cereal conduit - containers cryptonite entropy hashable hspec HUnit memory mtl - murmur3 network QuickCheck safe scientific secp256k1-haskell split - string-conversions text time transformers unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/haskoin#readme"; - description = "Bitcoin & Bitcoin Cash library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , dlist, hashable, hashtables, loch-th, mtl, placeholders - , postgresql-binary, postgresql-libpq, profunctors, stdenv, text - , text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.4.1"; - sha256 = "8c0b99bbea546dbc78619999c0509520a74922bc9b6c05dec03d4def978ed763"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras dlist hashable hashtables - loch-th mtl placeholders postgresql-binary postgresql-libpq - profunctors text text-builder transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver with a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.5"; - sha256 = "b8f7061c488f9b84cdcbc506c7429aa403a77f628a9b683605f8d33efa7aaf60"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5.1"; - sha256 = "739860f61589261b120368c113fbe88360e5db8eafc2166fbaba2a70692cf429"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, bytestring, bytestring-tree-builder - , contravariant, contravariant-extras, hasql, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "0.7.2"; - sha256 = "65e97fff06a9f18b5f8496a7e5af893e31d248088bdd7d7d5c6d919175fca58d"; - libraryHaskellDepends = [ - base bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "A composable abstraction over the retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "haxl" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, exceptions, filepath, ghc-prim, hashable, pretty, stdenv - , stm, text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "haxl"; - version = "2.1.2.0"; - sha256 = "5e0230a9d480abf8e37d4981ddb9c01f07f2f59089703bac181a839c744e95d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq exceptions filepath - ghc-prim hashable pretty stm text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/facebook/Haxl"; - description = "A Haskell library for efficient, concurrent, and concise data access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hbeanstalk" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, network, stdenv - }: - mkDerivation { - pname = "hbeanstalk"; - version = "0.2.4"; - sha256 = "feaf97fd18fedb3e5abf337e61c98a03108d917d9f87f885c8d02b6b838aac8f"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/scsibug/hbeanstalk/"; - description = "Client for the beanstalkd workqueue service"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.6"; - sha256 = "ad6f302492a9c41e99ce62ca955a959b0cdca0ff328e66f31bfec5a99f7cee24"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/unprolix/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6.1"; - sha256 = "91d552f3c8992f745607de39239b950db78295b533eda43d083699872a4ee36d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.2"; - sha256 = "4316e2ab829a7344900fe15966460bc553e3a60989a14c08ecadf00d2674462b"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time#readme"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, erf, exceptions, fail - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, time, transformers, transformers-base, wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "1.0.2"; - sha256 = "8e0cef556c2a9386d45b8d29e8051de99693d19b1d29323add108ecd5c69a880"; - revision = "2"; - editedCabalFile = "1qh7yaijp04li1i10cd5j6bc58fcagynxxmvs32wc8m1fvgzi05w"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory erf exceptions fail lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text time transformers transformers-base - wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Release with confidence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.1.0"; - sha256 = "c3569cd8316770115871acf334587350e887b046e35abc0d52a90dd0e6d719f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-fn" = callPackage - ({ mkDerivation, base, contravariant, hedgehog, stdenv - , transformers - }: - mkDerivation { - pname = "hedgehog-fn"; - version = "1.0"; - sha256 = "170bc58d2e5a5bc15bc3e8a0a3ea71b11b8aab8b3bfd923b7f9394afe569b915"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base contravariant hedgehog transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/hedgehog-fn"; - description = "Function generation for `hedgehog`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedis" = callPackage - ({ mkDerivation, async, base, bytestring, bytestring-lexing - , deepseq, errors, HTTP, mtl, network, network-uri, resource-pool - , scanner, stdenv, stm, text, time, tls, unordered-containers - , vector - }: - mkDerivation { - pname = "hedis"; - version = "0.12.11"; - sha256 = "9c7744ce404f06ad88f21f80332b6203caa4ebe595fc1fb6e0c986001eff03d9"; - libraryHaskellDepends = [ - async base bytestring bytestring-lexing deepseq errors HTTP mtl - network network-uri resource-pool scanner stm text time tls - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/informatikr/hedis"; - description = "Client library for the Redis datastore: supports full command set, pipelining"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedn" = callPackage - ({ mkDerivation, base, containers, deepseq, deriving-compat - , megaparsec, parser-combinators, prettyprinter, scientific, stdenv - , template-haskell, text, time, uuid-types, vector - }: - mkDerivation { - pname = "hedn"; - version = "0.2.0.1"; - sha256 = "326c54efc9a6bc92b2f7b5a6900442b8aff8cb9dac93c6f15bea1ff14c27d19b"; - revision = "1"; - editedCabalFile = "1wr3zv0bj1714y1ip40va34zysmypicd6qp0l50bg9wj2db0misz"; - libraryHaskellDepends = [ - base containers deepseq deriving-compat megaparsec - parser-combinators prettyprinter scientific template-haskell text - time uuid-types vector - ]; - doHaddock = false; - doCheck = false; - description = "EDN parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.3"; - sha256 = "4723e03896cc91d524da36fe1b8c5b174b81120c323a3fad692f9ada4bd8794f"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hex"; - version = "0.1.2"; - sha256 = "12ee1243edd80570a486521565fb0c9b5e39374f21a12f050636e71d55ec61ec"; - revision = "1"; - editedCabalFile = "0khmrdni6njr4wxgz15yz77l8ar4qm2jj6v0lvfnwqdms4s6i80y"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Convert strings into hexadecimal and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.4"; - sha256 = "937401802ed6593aad8c5acf0ea963d0f1f4473bf72185702b12eb30e52bbe2a"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hformat" = callPackage - ({ mkDerivation, ansi-terminal, base, base-unicode-symbols, stdenv - , text - }: - mkDerivation { - pname = "hformat"; - version = "0.3.3.1"; - sha256 = "302eda1d9ca71b73c5a5d31561d4ef3e7d4ff9ef1b86329aa019b5df20c5a773"; - libraryHaskellDepends = [ - ansi-terminal base base-unicode-symbols text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/hformat"; - description = "Simple Haskell formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hi-file-parser" = callPackage - ({ mkDerivation, base, binary, bytestring, rio, stdenv, vector }: - mkDerivation { - pname = "hi-file-parser"; - version = "0.1.0.0"; - sha256 = "54ac6750d5e4ef93c64b255f672261ae4c80ef11f20d92c382736e09be11fa25"; - revision = "2"; - editedCabalFile = "1bm98h0v4wf9vmdng15c2r48yz06118jxlprsnk0z3jw0d95ij9z"; - libraryHaskellDepends = [ base binary bytestring rio vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/stack#readme"; - description = "Parser for GHC's hi files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.5"; - sha256 = "3726e0bcbdbda309b919241d86629625e732fd07d78cc90ad39cb39b51cd595e"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hidden-char" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hidden-char"; - version = "0.1.0.2"; - sha256 = "ea909372a7cc06cda7ee8e9c1a6a5c16be19fef256ad4bd2c0b39e61d940f498"; - revision = "3"; - editedCabalFile = "0f6qghr4i3ar993pjlswdd2rl671lrnxj8740i2yhn89z410vzsa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/hidden-char#readme"; - description = "Provides cross-platform getHiddenChar function"; - license = stdenv.lib.licenses.mit; - }) {}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.2"; - sha256 = "2afc228104a29aed6b208b1aeba93631e96fdf11efbe68ad036f838f95f8aff2"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinfo" = callPackage - ({ mkDerivation, aeson, base, optparse-applicative, stdenv, text - , yaml - }: - mkDerivation { - pname = "hinfo"; - version = "0.0.3.0"; - sha256 = "9bcee53af6ff558efe131ff22ab678b1fc6423a7f176026fc50fbabbab620413"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - executableHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/hinfo#readme"; - description = "Command Line App With Info on your Haskell App"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.4"; - sha256 = "7d182c524384aaa15eec666803643d067671e8e806f315c10758685e90a934f4"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hint" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, ghc - , ghc-boot, ghc-paths, mtl, random, stdenv, temporary, unix - }: - mkDerivation { - pname = "hint"; - version = "0.9.0.2"; - sha256 = "0ed2c5bddcb84cba0101e38403e98207a2501953c9dc51b723f1c0e4aea3b61b"; - libraryHaskellDepends = [ - base directory exceptions filepath ghc ghc-boot ghc-paths mtl - random temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-hint/hint"; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, bytestring, language-javascript - , optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.4"; - sha256 = "81b9947714d8d2b73d0aba9e2e02af7e30c13b2cf8144df8904564d9642e57e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring language-javascript text - ]; - executableHaskellDepends = [ - base bytestring language-javascript optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hkgr" = callPackage - ({ mkDerivation, base, directory, filepath, simple-cabal - , simple-cmd, simple-cmd-args, stdenv - }: - mkDerivation { - pname = "hkgr"; - version = "0.2.4"; - sha256 = "b8390f41de99be4dd8a3450160d18459437cc42c095507bae8ae77ee6fbebb26"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base directory filepath simple-cabal simple-cmd simple-cmd-args - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/hkgr"; - description = "Simple Hackage release workflow for package maintainers"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat-batteries - , bytestring, cmdargs, containers, data-default, Decimal, Diff - , directory, easytest, filepath, hashable, haskeline, hledger-lib - , lucid, math-functions, megaparsec, mtl, mtl-compat, old-time - , parsec, pretty-show, process, regex-tdfa, safe, shakespeare - , split, stdenv, tabular, temporary, terminfo, text, time - , transformers, unordered-containers, utf8-string, utility-ht - , wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.14.2"; - sha256 = "849a6e0683192ec504da9a631ddfc82e04973583f4a028fd39b8cdac2efe29ea"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal Diff directory easytest filepath - hashable haskeline hledger-lib lucid math-functions megaparsec mtl - mtl-compat old-time parsec pretty-show process regex-tdfa safe - shakespeare split tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal directory easytest filepath - haskeline hledger-lib math-functions megaparsec mtl mtl-compat - old-time parsec pretty-show process regex-tdfa safe shakespeare - split tabular temporary terminfo text time transformers - unordered-containers utf8-string utility-ht wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-iadd" = callPackage - ({ mkDerivation, base, brick, containers, directory, free - , hledger-lib, megaparsec, microlens, microlens-th - , optparse-applicative, semigroups, stdenv, text, text-zipper, time - , transformers, unordered-containers, vector, vty, xdg-basedir - }: - mkDerivation { - pname = "hledger-iadd"; - version = "1.3.10"; - sha256 = "438be466885798f9cdf2ba78aa4a7f30a1b2732f44b403108328e2a2f76ab94d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base brick containers directory free hledger-lib megaparsec - microlens microlens-th optparse-applicative semigroups text - text-zipper time transformers unordered-containers vector vty - xdg-basedir - ]; - executableHaskellDepends = [ - base brick directory free hledger-lib megaparsec microlens - optparse-applicative text text-zipper time transformers - unordered-containers vector vty xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hpdeifel/hledger-iadd#readme"; - description = "A terminal UI as drop-in replacement for hledger add"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "7a7f5d437c98e42ba1f1529f2645e5df88d18962ae28b71b8c07e428fe08c1b9"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat-batteries - , blaze-markup, bytestring, call-stack, cassava, cassava-megaparsec - , cmdargs, containers, data-default, Decimal, deepseq, directory - , easytest, extra, file-embed, filepath, Glob, hashtables - , megaparsec, mtl, mtl-compat, old-time, parsec, parser-combinators - , pretty-show, regex-tdfa, safe, split, stdenv, tabular - , template-haskell, text, time, transformers, uglymemo, utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.14.1"; - sha256 = "e2ba4c587eca0a5a0e32871fc2a912aa4453e96701d446afbdda4cc502b8d8f0"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat-batteries blaze-markup - bytestring call-stack cassava cassava-megaparsec cmdargs containers - data-default Decimal deepseq directory easytest extra file-embed - filepath Glob hashtables megaparsec mtl mtl-compat old-time parsec - parser-combinators pretty-show regex-tdfa safe split tabular - template-haskell text time transformers uglymemo utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-ui" = callPackage - ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries - , brick, cmdargs, containers, data-default, directory, filepath - , fsnotify, hledger, hledger-lib, megaparsec, microlens - , microlens-platform, pretty-show, process, safe, split, stdenv - , text, text-zipper, time, transformers, unix, vector, vty - }: - mkDerivation { - pname = "hledger-ui"; - version = "1.14.2"; - sha256 = "9951a8665c7a182d8008c92565272a6c4a8e12d363df4b169fa09dddffee112e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal async base base-compat-batteries brick cmdargs - containers data-default directory filepath fsnotify hledger - hledger-lib megaparsec microlens microlens-platform pretty-show - process safe split text text-zipper time transformers unix vector - vty - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Curses-style user interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , case-insensitive, clientsession, cmdargs, conduit, conduit-extra - , containers, data-default, Decimal, directory, filepath, hjsmin - , hledger, hledger-lib, http-client, http-conduit, http-types, json - , megaparsec, mtl, semigroups, shakespeare, stdenv - , template-haskell, text, time, transformers, wai, wai-extra - , wai-handler-launch, warp, yaml, yesod, yesod-core, yesod-form - , yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.14.1"; - sha256 = "a1eacde5b9d531df0875b65c8239e8351749610e1e6e46c847dd02594fb6a970"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring case-insensitive - clientsession cmdargs conduit conduit-extra containers data-default - Decimal directory filepath hjsmin hledger hledger-lib http-client - http-conduit http-types json megaparsec mtl semigroups shakespeare - template-haskell text time transformers wai wai-extra - wai-handler-launch warp yaml yesod yesod-core yesod-form - yesod-static - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlibsass" = callPackage - ({ mkDerivation, base, Cabal, directory, libsass, stdenv }: - mkDerivation { - pname = "hlibsass"; - version = "0.1.8.0"; - sha256 = "26de9a1275e0c1cae5afbe79ad3aa1a857c3bfc0b6dcc97698e9d02d41de4feb"; - configureFlags = [ "-fexternalLibsass" ]; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - librarySystemDepends = [ libsass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hlibsass"; - description = "Low-level bindings to Libsass"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsass;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc-lib-parser, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern - ghc-lib-parser ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.20.0.0"; - sha256 = "ef421aba2e6c93a22043a233b2c83789b24363ebe35732d67ccafd12990a1eeb"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-backprop" = callPackage - ({ mkDerivation, backprop, base, ghc-typelits-knownnat - , ghc-typelits-natnormalise, hmatrix, hmatrix-vector-sized - , microlens, stdenv, vector, vector-sized, vinyl - }: - mkDerivation { - pname = "hmatrix-backprop"; - version = "0.1.3.0"; - sha256 = "5350f95a7bdf014f06f424f51379cc8074baa7439107ef7568c385c2aae276da"; - libraryHaskellDepends = [ - backprop base ghc-typelits-knownnat ghc-typelits-natnormalise - hmatrix hmatrix-vector-sized microlens vector vector-sized vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-backprop#readme"; - description = "hmatrix operations lifted for backprop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.8"; - sha256 = "b844420ce1e76e11ab04fba7e826b98449e166c6b08c78ba01b9e021752200b3"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.2"; - sha256 = "f2f3ee02607096a56c7c5c7f1ddff2f7f91ee05211ec2bd659add8208b1505a7"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.2.0"; - sha256 = "6c09c84fc1812acc2836ddb399948fb74bb7541711e7a0206df382df33f53759"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmm-lapack" = callPackage - ({ mkDerivation, base, comfort-array, containers, deepseq - , explicit-exception, fixed-length, lapack, lazy-csv, netlib-ffi - , non-empty, prelude-compat, QuickCheck, random, semigroups, stdenv - , tfp, transformers, utility-ht - }: - mkDerivation { - pname = "hmm-lapack"; - version = "0.4"; - sha256 = "1c0cedbd0efef71a44323e0c3ab4aa6d7dc45be36dead37b8d0e632d5d701d38"; - libraryHaskellDepends = [ - base comfort-array containers deepseq explicit-exception - fixed-length lapack lazy-csv netlib-ffi non-empty prelude-compat - QuickCheck random semigroups tfp transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/hmm-lapack"; - description = "Hidden Markov Models using LAPACK primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hoauth2" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-conduit - , http-types, microlens, stdenv, text, unordered-containers - , uri-bytestring, uri-bytestring-aeson - }: - mkDerivation { - pname = "hoauth2"; - version = "1.8.9"; - sha256 = "675395088bb95f2c03347e4a8ce0d4ead0cc4eb802d4f263579a0417877ecf0f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-conduit http-types microlens - text unordered-containers uri-bytestring uri-bytestring-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/freizl/hoauth2"; - description = "Haskell OAuth2 authentication client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenpgp-tools" = callPackage - ({ mkDerivation, aeson, alex, array, attoparsec, base - , base16-bytestring, binary, binary-conduit, bytestring, conduit - , conduit-extra, containers, crypto-pubkey, cryptohash, directory - , errors, fgl, graphviz, happy, hOpenPGP, http-client - , http-client-tls, http-types, ixset-typed, lens, monad-loops - , openpgp-asciiarmor, optparse-applicative, prettyprinter - , prettyprinter-ansi-terminal, prettyprinter-convert-ansi-wl-pprint - , resourcet, stdenv, text, time, time-locale-compat, transformers - , unordered-containers, yaml - }: - mkDerivation { - pname = "hopenpgp-tools"; - version = "0.21.3"; - sha256 = "1411887720962fd6a1101e90c01348d34bb400fbbbc34abe5c2ded5156c7c6a3"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson array attoparsec base base16-bytestring binary binary-conduit - bytestring conduit conduit-extra containers crypto-pubkey - cryptohash directory errors fgl graphviz hOpenPGP http-client - http-client-tls http-types ixset-typed lens monad-loops - openpgp-asciiarmor optparse-applicative prettyprinter - prettyprinter-ansi-terminal prettyprinter-convert-ansi-wl-pprint - resourcet text time time-locale-compat transformers - unordered-containers yaml - ]; - executableToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://salsa.debian.org/clint/hOpenPGP"; - description = "hOpenPGP-based command-line tools"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, openssl, stdenv }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.4"; - sha256 = "9df46c328fc4c1d1566e2d1539770c9fe9d0422e09ee254721b35ee7d48a7671"; - revision = "1"; - editedCabalFile = "14bs0wjrqnnn1v8c4yznfzggvmgypm2lssgl0cr498kmp54if0lf"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hosc" = callPackage - ({ mkDerivation, base, binary, blaze-builder, bytestring - , data-binary-ieee754, network, stdenv, time, transformers - }: - mkDerivation { - pname = "hosc"; - version = "0.17"; - sha256 = "66439c416246cb56c15a0f3fb0cf07b178202c7755034b648f02d4f81ba5800c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-builder bytestring data-binary-ieee754 network - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://rohandrape.net/t/hosc"; - description = "Haskell Open Sound Control"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.12"; - sha256 = "44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.9"; - sha256 = "56fc8ba0ad862668179f5bab032c3738fa42d10abce6b59f8dd01b3a11e52b52"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://mathr.co.uk/blog/hp2pretty.html"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hpack" = callPackage - ({ mkDerivation, aeson, base, bifunctors, bytestring, Cabal - , containers, cryptonite, deepseq, directory, filepath, Glob - , http-client, http-client-tls, http-types, infer-license, pretty - , scientific, stdenv, text, transformers, unordered-containers - , vector, yaml - }: - mkDerivation { - pname = "hpack"; - version = "0.31.2"; - sha256 = "6f00834e99463f022fe9346b9c2cdb1054a6d89e9d6b70a4869c2b5a50304dd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types infer-license pretty scientific text transformers - unordered-containers vector yaml - ]; - executableHaskellDepends = [ - aeson base bifunctors bytestring Cabal containers cryptonite - deepseq directory filepath Glob http-client http-client-tls - http-types infer-license pretty scientific text transformers - unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/hpack#readme"; - description = "A modern format for Haskell packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "hpack-dhall" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, dhall - , dhall-json, filepath, hpack, megaparsec, microlens - , optparse-applicative, prettyprinter, stdenv, text, transformers - , yaml - }: - mkDerivation { - pname = "hpack-dhall"; - version = "0.5.2"; - sha256 = "f187092f60fddda9f4f453cbbf9c536b3f3af193ebd23c2c234280cb6182b69a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring dhall dhall-json filepath hpack - megaparsec microlens prettyprinter text transformers yaml - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring dhall dhall-json filepath hpack - megaparsec microlens optparse-applicative prettyprinter text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/hpack-dhall#readme"; - description = "hpack's dhalling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hquantlib-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hquantlib-time"; - version = "0.0.4.1"; - sha256 = "ac9ced19f72197fc1bc8b9528c8ae9cf1e8887f2d2ed6519a480b048423d523c"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/paulrzcz/hquantlib-time.git"; - description = "HQuantLib Time is a business calendar functions extracted from HQuantLib"; - license = "LGPL"; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , process, ruby, scientific, stdenv, stm, text - , unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.8"; - sha256 = "68163072f25563ac458539ee34708700978fbd389e5e7a380839f34f017ce274"; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.7.0.0"; - sha256 = "c5d205294ff372306504b03c4334fd96215727087ee4ee1378a45273a8d6dee1"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, tagged, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.6.0"; - sha256 = "14e0977ae52fd9aa4da8a2335c7452016ed9b4214d72de5b296cb78612f5fba4"; - libraryHaskellDepends = [ base tagged transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hs-php-session" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hs-php-session"; - version = "0.0.9.3"; - sha256 = "0e717e90933f9e861d9cf374baa0dedac51d8ae7a1746ef2f7bd098fe38c8df7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/hs-php-session"; - description = "PHP session and values serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsass" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, filepath - , hlibsass, monad-loops, stdenv, transformers - }: - mkDerivation { - pname = "hsass"; - version = "0.8.0"; - sha256 = "afb4d904253e59c4f0e271fee24fabb97090372cb53c12d7bc8bd5db8cdcd2ae"; - libraryHaskellDepends = [ - base bytestring data-default-class filepath hlibsass monad-loops - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jakubfijalkowski/hsass"; - description = "Integrating Sass into Haskell applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsc2hs" = callPackage - ({ mkDerivation, base, containers, directory, filepath, process - , stdenv - }: - mkDerivation { - pname = "hsc2hs"; - version = "0.68.6"; - sha256 = "e0cc7549c22fafe6e159aadb1048c9bfcce8fda602dd2febd8b1eea4df3292b2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base containers directory filepath process - ]; - doHaddock = false; - doCheck = false; - description = "A preprocessor that helps with writing Haskell bindings to C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hschema" = callPackage - ({ mkDerivation, base, comonad, contravariant, free, hashable - , invariant, lens, mtl, natural-transformation, profunctors, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hschema"; - version = "0.0.1.1"; - sha256 = "3218cf757cd0ca57b47d3f63c2f599e785ee225e7d17cae0b15656ffa32785e8"; - libraryHaskellDepends = [ - base comonad contravariant free hashable invariant lens mtl - natural-transformation profunctors text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hschema-aeson" = callPackage - ({ mkDerivation, aeson, base, comonad, contravariant, free, hschema - , hschema-prettyprinter, hschema-quickcheck, lens, mtl - , natural-transformation, prettyprinter - , prettyprinter-ansi-terminal, QuickCheck, quickcheck-instances - , scientific, stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "hschema-aeson"; - version = "0.0.1.1"; - sha256 = "4c5f8b24c25ca385f16a6adbad175240b258746594083aa8213257eba35e057d"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hschema-prettyprinter" = callPackage - ({ mkDerivation, base, contravariant, free, hschema, lens, mtl - , natural-transformation, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "hschema-prettyprinter"; - version = "0.0.1.1"; - sha256 = "eff29fe173f759b80f5a2f762f35a730aa914ffe94a250955de1f134c5c07fee"; - libraryHaskellDepends = [ - base contravariant free hschema lens mtl natural-transformation - prettyprinter prettyprinter-ansi-terminal text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hschema-quickcheck" = callPackage - ({ mkDerivation, base, free, hschema, lens, mtl - , natural-transformation, QuickCheck, quickcheck-instances, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hschema-quickcheck"; - version = "0.0.1.1"; - sha256 = "b94aedaacddcadd935ec1dec43568826b6c98e3933a7e22d877df96cac75a9e5"; - libraryHaskellDepends = [ - base free hschema lens mtl natural-transformation QuickCheck - quickcheck-instances text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alonsodomin/haskell-schema#readme"; - description = "Describe schemas for your Haskell data types"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdev" = callPackage - ({ mkDerivation, aeson, aeson-pretty, array, async, attoparsec - , base, bytestring, Cabal, containers, cpphs, data-default, deepseq - , direct-sqlite, directory, exceptions, filepath, fsnotify, ghc - , ghc-boot, ghc-paths, haskell-names, haskell-src-exts, hformat - , hlint, HTTP, lens, lifted-base, mmorph, monad-control - , monad-loops, mtl, network, optparse-applicative, process - , regex-pcre-builtin, scientific, simple-log, sqlite-simple, stdenv - , stm, syb, template-haskell, text, text-region, time, transformers - , transformers-base, traverse-with-class, uniplate, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "hsdev"; - version = "0.3.2.3"; - sha256 = "3bb80c8afb08919e373a8fb8cf5e4baa286ac97d19845e8e2123ec7634a5610f"; - configureFlags = [ "-f-docs" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty array async attoparsec base bytestring Cabal - containers cpphs data-default deepseq direct-sqlite directory - exceptions filepath fsnotify ghc ghc-boot ghc-paths haskell-names - haskell-src-exts hformat hlint HTTP lens lifted-base mmorph - monad-control monad-loops mtl network optparse-applicative process - regex-pcre-builtin scientific simple-log sqlite-simple stm syb - template-haskell text text-region time transformers - transformers-base traverse-with-class uniplate unix - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring containers deepseq directory - exceptions filepath monad-loops mtl network optparse-applicative - process text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvoidex/hsdev"; - description = "Haskell development library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.8"; - sha256 = "60e2c1467d381ab183c95e29de58f9b0514309f21d728fec700a42adff73b64b"; - revision = "1"; - editedCabalFile = "09ixj0xywmbigfhqmq58dwqns8l3w6wprykafg52fx69bvhg9yph"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, parsec, stdenv, time, time-compat }: - mkDerivation { - pname = "hsemail"; - version = "2.2.0"; - sha256 = "04fdf2c678c6cee3ed7109e41f26d1543bffea95869daf0cb5fa656bb5b0e800"; - libraryHaskellDepends = [ base parsec time time-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the Internet Message format (e-mail)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsexif" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, iconv - , stdenv, text, time - }: - mkDerivation { - pname = "hsexif"; - version = "0.6.1.6"; - sha256 = "0f7e14cdec698c4e8e17ec84971ca5a604c9e75a861806dbf7088cdfc706b55d"; - revision = "1"; - editedCabalFile = "1dgcgsmx0k5p3ibfv3n5k0c5p1is2m5zfsd2s6nc6d0pz34d4wl9"; - libraryHaskellDepends = [ - base binary bytestring containers iconv text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/hsexif"; - description = "EXIF handling library in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - }: - mkDerivation { - pname = "hsini"; - version = "0.5.1.2"; - sha256 = "eaa6ae68c6271d5c3187054e702719b3ee7916524ffda27bb328cc9aad9ed8e4"; - revision = "1"; - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - doHaddock = false; - doCheck = false; - description = "ini configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, heredoc, process - , safe-exceptions, stdenv - }: - mkDerivation { - pname = "hsinstall"; - version = "2.2"; - sha256 = "23a702c43e0f42ad916aedd5b53970a6e64708ffc50d1d509904ebad3d478991"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ - base Cabal directory filepath heredoc process safe-exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dino-/hsinstall#readme"; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, containers, directory, mtl, network - , old-locale, process, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.2.12"; - sha256 = "f97a4c89d0921f237999de5d44950127dbe8baa177960ccccbfb79cccfd46c7a"; - revision = "1"; - editedCabalFile = "1rk2lrg3959nbgbyd1aacvwbv865lsrnczqdmj4ivkfn0c8nkidh"; - libraryHaskellDepends = [ - base containers directory mtl network old-locale process time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://software.complete.org/hslogger"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "1.0.3.2"; - sha256 = "d2d40b0c143ef58d26203f34d96d4220f1a20077386e4a5216be74260b7d6ba0"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://hslua.github.io/"; - description = "Bindings to Lua, an embeddable scripting language"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "1.0.0"; - sha256 = "ffa7c2f6cb90a914f796334c8f07b1eb7bfd9b3717c55d8f756589dd14706c73"; - revision = "1"; - editedCabalFile = "1ysgh5s99zv0khkwqw1kcli2r2vi77r7wz3yc0y0i7qr35shzklh"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-system" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, hslua - , stdenv, temporary - }: - mkDerivation { - pname = "hslua-module-system"; - version = "0.2.1"; - sha256 = "108e4dee68d09eb61b77122e0a5b8b7f0bafe1a7b4168e7ff4970c56def8fcd4"; - libraryHaskellDepends = [ - base containers directory exceptions hslua temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-system"; - description = "Lua module wrapper around Haskell's System module"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, bytestring, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.2.1"; - sha256 = "1302d9022e9beea0cf4f09f977d7ca0956c598d0bf15945de5a52dd8f7e66dc6"; - libraryHaskellDepends = [ base bytestring hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-text"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, hspec-core, hspec-discover - , hspec-expectations, QuickCheck, stdenv - }: - mkDerivation { - pname = "hspec"; - version = "2.7.1"; - sha256 = "818cebbcbde8761289902a816f865691e40724babf87e70057ecab204f6619f5"; - libraryHaskellDepends = [ - base hspec-core hspec-discover hspec-expectations QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.1"; - sha256 = "2c1bf064a815af9a3ac8af79d1bf1e761d855276366b86cbace5773794ea1f42"; - revision = "1"; - editedCabalFile = "0vjmyrsb878914b4khwdy3fcn9n217q8k5xnszlrp7dl1jnbqyi4"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.7.1"; - sha256 = "2ccc20f27970f753ed2e902c323f4562adaf1a31f4234b3504e02a8a50417323"; - revision = "1"; - editedCabalFile = "0aw68sgz2p63y0vg07c1jx2pr8lmhp5c1ck60dlipyxsa00455i6"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.7.1"; - sha256 = "0b31c29b37d7d446d44b3559f794cd62b09ee5fc3f30862eccd8284e52758764"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.5"; - sha256 = "9479251e851c07af1b88ebe91d9a20d074f505209f253ebd6f379f3914ab6210"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-leancheck" = callPackage - ({ mkDerivation, base, hspec, hspec-core, HUnit, leancheck, stdenv - }: - mkDerivation { - pname = "hspec-leancheck"; - version = "0.0.3"; - sha256 = "38de8e98ca16e54370f2387c2ceb22fadab53ada5e9c0505ce9fe23f1b99d852"; - libraryHaskellDepends = [ base hspec hspec-core HUnit leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/hspec-leancheck#readme"; - description = "LeanCheck support for the Hspec test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "2.0.1"; - sha256 = "cf4d8db8a43ed2da489253e54204f0d5413ae37e03621f358f930600b3b01671"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.6.0"; - sha256 = "e6d701c9f366f6762eb2a86022d1c7a7d7631c100945491ff53b3a3e86212ad8"; - revision = "1"; - editedCabalFile = "1qh3j6mhlz2bvdk8qc5fa4nqh93q4vqnvxmqqisg4agacnvyp4b2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-need-env" = callPackage - ({ mkDerivation, base, hspec-core, hspec-expectations, stdenv }: - mkDerivation { - pname = "hspec-need-env"; - version = "0.1.0.4"; - sha256 = "8f5ecda15d079cfc5ef7658478c3848827fde8451a0d3f1ba65e415c41966631"; - libraryHaskellDepends = [ base hspec-core hspec-expectations ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/hspec-need-env"; - description = "Read environment variables for hspec tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-pg-transact" = callPackage - ({ mkDerivation, base, bytestring, hspec, pg-transact - , postgresql-simple, resource-pool, stdenv, text, tmp-postgres - }: - mkDerivation { - pname = "hspec-pg-transact"; - version = "0.1.0.2"; - sha256 = "a5ec2a978a730500f03c15d16eff7e207a4135ebc63afe4cbca7392ad5f01c0c"; - libraryHaskellDepends = [ - base bytestring hspec pg-transact postgresql-simple resource-pool - text tmp-postgres - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact-hspec#readme"; - description = "Helpers for creating database tests with hspec and pg-transact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.9.2"; - sha256 = "055e414bd6531d3454496f9c4bfa1164b861aa9a9102867d7ffeef8d3a92283f"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai-json" = callPackage - ({ mkDerivation, aeson, aeson-qq, base, bytestring - , case-insensitive, hspec-wai, stdenv, template-haskell - }: - mkDerivation { - pname = "hspec-wai-json"; - version = "0.9.2"; - sha256 = "82e324482e04662121a14fc75232e7359d6d1454623c37253b6550a8ec6ccadc"; - libraryHaskellDepends = [ - aeson aeson-qq base bytestring case-insensitive hspec-wai - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Testing JSON APIs with hspec-wai"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsshellscript" = callPackage - ({ mkDerivation, base, c2hs, directory, parsec, random, stdenv - , unix - }: - mkDerivation { - pname = "hsshellscript"; - version = "3.4.5"; - sha256 = "7dbfd595832e4ecd7d12d8b36ce8a82192d79a764631c98071440a7daa7ec634"; - libraryHaskellDepends = [ base directory parsec random unix ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.volker-wysk.de/hsshellscript/"; - description = "Haskell for Unix shell scripting tasks"; - license = "LGPL"; - }) {}; - "hstatsd" = callPackage - ({ mkDerivation, base, bytestring, mtl, network, stdenv, text }: - mkDerivation { - pname = "hstatsd"; - version = "0.1"; - sha256 = "446779594257c0fa02d5271c997ee0c22f74f7636d89e34394ad87e5bd285824"; - libraryHaskellDepends = [ base bytestring mtl network text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/hstatsd"; - description = "Quick and dirty statsd interface"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.2"; - sha256 = "3eec43c8fb42c23d03f1db7b0b594d39cd94275c2284dcd0c64aa4d680bd7ece"; - revision = "1"; - editedCabalFile = "0k1j46nk3z64zw4bqmvw5lgy16ih200m66rv4b6ygjqv7nglqq0b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit - , conduit-extra, containers, resourcet, stdenv, text, transformers - , xml-conduit, xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.2.1"; - sha256 = "3681534cb7fc132a78ac35bd9d415280cf3e7a56a875bc7161375c69d947cca4"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit conduit-extra containers - resourcet text transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-email-validate" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "html-email-validate"; - version = "0.2.0.0"; - sha256 = "3d2a3ec75b638cec71df57512473052d485dc118aec4662d5a8dae5e95aa6daf"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - description = "Validating an email address against HTML standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.3"; - sha256 = "ceeab562184a5921381e41eddd7a91dc98e85431ab445e286320ba3aa0ad5556"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, base-compat - , bytestring, containers, cookie, hashable, http-types, stdenv - , tagged, text, time-compat, unordered-containers, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.4.1.1"; - sha256 = "d0aa13e2878e4b92edf71391e775476e7d36a4b5736bd5c701373002b7a823e9"; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base base-compat bytestring - containers cookie hashable http-types tagged text time-compat - unordered-containers uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.6.4"; - sha256 = "369278ec3d0d89bfdd8bee5bd367b22b7812b98fd62a1121276d728aeeb239d9"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-client, http-client-tls, http-types, mtl - , resourcet, stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.7.3"; - sha256 = "7aeddc51bcc8f356fb0c9c9ea901b9fbbe7eef024d59ab77261e41e043843a03"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.8"; - sha256 = "0f4c6348487abe4f9d58e43d3c23bdefc7fd1fd5672effd3c7d84aaff05f5427"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-directory" = callPackage - ({ mkDerivation, base, bytestring, html-conduit, http-client - , http-client-tls, http-date, http-types, network-uri, stdenv, text - , time, xml-conduit - }: - mkDerivation { - pname = "http-directory"; - version = "0.1.7"; - sha256 = "29e9d9283fc60ac01ba203156e5da211193aa5d5292ee39d29b02602d4517387"; - libraryHaskellDepends = [ - base bytestring html-conduit http-client http-client-tls http-date - http-types network-uri text time xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/http-directory"; - description = "http directory listing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-download" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, cryptonite, cryptonite-conduit, directory - , exceptions, filepath, http-client, http-conduit, http-types - , memory, path, path-io, retry, rio, rio-prettyprint, stdenv - }: - mkDerivation { - pname = "http-download"; - version = "0.1.0.1"; - sha256 = "83244872d6f62c1e10c69ce0e87159649eefaf895e77cbdfa8f95287975730b8"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra cryptonite - cryptonite-conduit directory exceptions filepath http-client - http-conduit http-types memory path path-io retry rio - rio-prettyprint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/http-download#readme"; - description = "Verified downloads with retries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3.1"; - sha256 = "da26db73df1eaebb20df2837b0352cc62a6c151d467bea9442767fd3d51c2a2d"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.8.0.0"; - sha256 = "398279d1dff5b60cd8b8c650caceca248ea1184d694bedf5df5426963b2b9c53"; - revision = "2"; - editedCabalFile = "0qvkhbxdz33lis5vca3jm1b44fkm7aalf4iz1gblr8xivnpmq885"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-streams" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, case-insensitive, directory, HsOpenSSL - , http-common, io-streams, mtl, network, network-uri - , openssl-streams, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "http-streams"; - version = "0.8.7.1"; - sha256 = "4bd0142aa2f682cacf25ce0290452f142c5eab8d893f15fffebcfcfe1e32864e"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - case-insensitive directory HsOpenSSL http-common io-streams mtl - network network-uri openssl-streams text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/http-streams/"; - description = "An HTTP client using io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.3"; - sha256 = "4e8a4a66477459fa436a331c75e46857ec8026283df984d54f90576cd3024016"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive - , containers, http-types, network, network-byte-order, psqueues - , stdenv, stm, time-manager - }: - mkDerivation { - pname = "http2"; - version = "2.0.3"; - sha256 = "ba5105f31d0e83d5bd7f6f6c5deef6b277cd6a82f9701e19920f54e0c00b1093"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring case-insensitive containers http-types - network network-byte-order psqueues stm time-manager - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "httpd-shed" = callPackage - ({ mkDerivation, base, network, network-bsd, network-uri, stdenv }: - mkDerivation { - pname = "httpd-shed"; - version = "0.4.1.1"; - sha256 = "590fcfcb401923652bfcaf8c9a81b3bbbe83a4b1d16f7ccfecf7e47f6b6cafa5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base network network-bsd network-uri ]; - doHaddock = false; - doCheck = false; - description = "A simple web-server with an interact style API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.1.4"; - sha256 = "cc688783dd3b761bba580cc01ddd41f75d436a21af7dd10e1268c2b0d43adc1b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.esy.fun/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "2.0.0.1"; - sha256 = "dfe9126018e4518f4babddb6a759c696665058ddca1eb2a270245c3dd1bcf658"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvega" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, vector }: - mkDerivation { - pname = "hvega"; - version = "0.3.0.1"; - sha256 = "81c2039fd53f552345c3bd7f0a65f1774b6fabff817b3ed04ab918103fa61913"; - libraryHaskellDepends = [ aeson base text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "Create Vega-Lite visualizations (version 3) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, deepseq, hw-bits, hw-excess, hw-prim - , hw-rankselect-base, stdenv, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.2.0.4"; - sha256 = "90200bf22018d12fa7a1fc2dafb56da32d55daff3e298e431650f59a5559db98"; - libraryHaskellDepends = [ - base deepseq hw-bits hw-excess hw-prim hw-rankselect-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bitvec, bytestring, deepseq, hw-int, hw-prim - , hw-string-parse, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.1.0"; - sha256 = "34ae831f26ec6d8c36575c3a32e4f80a7683dd93191b67ae92f31728be8d9264"; - libraryHaskellDepends = [ - base bitvec bytestring deepseq hw-int hw-prim hw-string-parse - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, transformers, unliftio-core - , word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.6"; - sha256 = "2c871841513859688f6dab906528b1fcbebbe6b094ce1de79fb4b4bda9b6207d"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time transformers - unliftio-core word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-conduit-merges" = callPackage - ({ mkDerivation, base, conduit, conduit-extra, mtl, stdenv }: - mkDerivation { - pname = "hw-conduit-merges"; - version = "0.2.0.0"; - sha256 = "9bcea270cc01a117c892315fff0dd46de3e58466e9ef82f7571eedad9b58028c"; - revision = "1"; - editedCabalFile = "1azji7zc0ygqjgd2shbqw7p8a2ll2qp3b1yq5i3665448brlwpvc"; - libraryHaskellDepends = [ base conduit conduit-extra mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-conduit-merges#readme"; - description = "Additional merges and joins for Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.7"; - sha256 = "f197f234f416e4f2b0d00bbca7e71105d3179a857c43d60b0157cc3d6fcbd5f1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-dsv" = callPackage - ({ mkDerivation, base, bits-extra, bytestring, deepseq - , generic-lens, ghc-prim, hedgehog, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, hw-simd, lens, optparse-applicative - , resourcet, stdenv, vector - }: - mkDerivation { - pname = "hw-dsv"; - version = "0.3.5"; - sha256 = "a20f1ba1acc654d6f03a7e9cc30ac362d20f63d67b0b105e3a3abb039549be95"; - revision = "2"; - editedCabalFile = "0flmxhc1w38si89wdr9i6x70mc3sl07hrw2b77xabva8dgx7ph3q"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bits-extra bytestring deepseq ghc-prim hw-bits hw-prim - hw-rankselect hw-rankselect-base hw-simd vector - ]; - executableHaskellDepends = [ - base bits-extra bytestring deepseq generic-lens ghc-prim hedgehog - hw-bits hw-prim hw-rankselect hw-rankselect-base hw-simd lens - optparse-applicative resourcet vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-dsv#readme"; - description = "Unbelievably fast streaming DSV file parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-eliasfano" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, generic-lens - , hw-bits, hw-int, hw-packed-vector, hw-prim, hw-rankselect - , hw-rankselect-base, lens, optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-eliasfano"; - version = "0.1.1.0"; - sha256 = "7b2840c6e6053e0ee6686111eab7ca8328a64aa973cae9975b3a4f71f8cd7460"; - revision = "1"; - editedCabalFile = "100fwgcby3nfmx2ailf8zggq0sbh5fm65x4dxyaayfzs8ngfi5is"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-bits hw-int hw-packed-vector hw-prim hw-rankselect - hw-rankselect-base vector - ]; - executableHaskellDepends = [ - base binary bytestring generic-lens hw-packed-vector lens - optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-eliasfano#readme"; - description = "Elias-Fano"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.2.2"; - sha256 = "5ff71cf33aaa02e27bc0b835c1eb793556b683bb4ad8b50de856ed42a3a195c7"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree" = callPackage - ({ mkDerivation, base, deepseq, hw-prim, stdenv }: - mkDerivation { - pname = "hw-fingertree"; - version = "0.1.1.1"; - sha256 = "4edf530abfbd95d601fc99d5f6b82a3cd3edc73e83b34c904ebee5b5acb5f005"; - libraryHaskellDepends = [ base deepseq hw-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree#readme"; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.3"; - sha256 = "00d5e9565e24a056abd0158f2772e428abe883c459820554ba478140ad48c4bb"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, vector }: - mkDerivation { - pname = "hw-hedgehog"; - version = "0.1.0.5"; - sha256 = "71cda358bcc60392895b9a97107c7a16775e0f7a33671345cdf633b67c7dcef2"; - libraryHaskellDepends = [ base hedgehog vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hedgehog#readme"; - description = "Extra hedgehog functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - , transformers - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.9"; - sha256 = "7eae165a196163993c8c3168f840813a4184b2db81a2ae68efe8be83ddf9cce5"; - libraryHaskellDepends = [ - base call-stack hedgehog hspec HUnit transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.4"; - sha256 = "3f22951262e824a6801e4ceb9c01bf735b57a2e2ba8cec3834f0993dc474a046"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Additional facilities for Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, appar, base, binary, bytestring, containers - , generic-lens, hw-bits, iproute, lens, optparse-applicative - , stdenv, text - }: - mkDerivation { - pname = "hw-ip"; - version = "2.3.4.2"; - sha256 = "69f5eb3286a17003b43813abbff7a454acb5897ea0f15d706592749890e71708"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - appar base containers generic-lens hw-bits iproute text - ]; - executableHaskellDepends = [ - appar base binary bytestring generic-lens lens optparse-applicative - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bits-extra, bytestring, dlist, generic-lens, hw-balancedparens - , hw-bits, hw-json-simd, hw-mquery, hw-parser, hw-prim - , hw-rankselect, hw-rankselect-base, hw-simd, lens, mmap - , optparse-applicative, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "1.0.0.2"; - sha256 = "5a96d09f80c6e758e9c8f6486e5c9786d953b4225c8d6f2e6cbb2ad8dd446351"; - revision = "1"; - editedCabalFile = "1laxwrcjdjrpym4gghnqa39xvdvbxsp2sbpzcc703ac3kj7v2b6h"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bits-extra bytestring dlist - hw-balancedparens hw-bits hw-mquery hw-parser hw-prim hw-rankselect - hw-rankselect-base hw-simd mmap text vector word8 - ]; - executableHaskellDepends = [ - base bytestring dlist generic-lens hw-balancedparens hw-json-simd - hw-mquery hw-prim hw-rankselect hw-rankselect-base lens mmap - optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-simd" = callPackage - ({ mkDerivation, base, bytestring, c2hs, hw-prim, lens - , optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-json-simd"; - version = "0.1.0.4"; - sha256 = "4a23de88454d5c076c1623c186bee8c9a6c1e2e8d58945b1291e09e5ff3ef3e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring hw-prim lens vector ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ - base bytestring hw-prim lens optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-json-simd#readme"; - description = "SIMD-based JSON semi-indexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, lens, semigroups - , stdenv - }: - mkDerivation { - pname = "hw-mquery"; - version = "0.2.0.2"; - sha256 = "327a50c2ddf1d106cd7350166fdf09b37b4232a9d24bb7e0bc8079366cf49ded"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base dlist lens semigroups - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Monadic query DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-packed-vector" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hw-bits, hw-prim - , stdenv, vector - }: - mkDerivation { - pname = "hw-packed-vector"; - version = "0.0.0.3"; - sha256 = "63ffce6d42a7d88d41cc0a0c9fc45a6bb0bd2d81585bf361abce28af490f02d0"; - libraryHaskellDepends = [ - base bytestring deepseq hw-bits hw-prim vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-packed-vector#readme"; - description = "Packed Vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim, stdenv - , text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.1.0.2"; - sha256 = "317c0ad35361835c8779593f284609d32d3784ecd2f5fe1ec64b0a3d489a0d9c"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, mmap - , semigroups, stdenv, transformers, unliftio-core, vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.39"; - sha256 = "4f0841600aab06250602189f94e33d11ec246db44c9cc4ffaa6a2c57f9f3c419"; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim mmap semigroups transformers - unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, generic-lens - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect-base, lens - , mmap, mtl, optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.13.0.0"; - sha256 = "fbe3b8912ebe8bc25329141f3f6cd2cd50c82bcafc6ec95e713f4e755ed68d8d"; - revision = "1"; - editedCabalFile = "17f9zdy7620d36mrrcakpr9rhzzr7rkv8hd5n47cqllmhzvns5mg"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-balancedparens hw-bits hw-prim hw-rankselect-base - vector - ]; - executableHaskellDepends = [ - base directory generic-lens hw-bits hw-prim hw-rankselect-base lens - mmap mtl optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, bitvec, hw-bits, hw-int, hw-prim - , hw-string-parse, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.3.0"; - sha256 = "ab44305ead0ba9c460cd86395ad206fcfce77f3610d7759b26f5b19f629d049e"; - libraryHaskellDepends = [ - base bits-extra bitvec hw-bits hw-int hw-prim hw-string-parse - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-simd" = callPackage - ({ mkDerivation, base, bits-extra, bytestring, c2hs, deepseq - , hw-bits, hw-prim, hw-rankselect, hw-rankselect-base, stdenv - , vector - }: - mkDerivation { - pname = "hw-simd"; - version = "0.1.1.5"; - sha256 = "cbe3475591e38ffe64db5fbc26999091d6f56d2a84c86c20976bf577221c1e5a"; - libraryHaskellDepends = [ - base bits-extra bytestring deepseq hw-bits hw-prim hw-rankselect - hw-rankselect-base vector - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-simd#readme"; - description = "SIMD library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-streams" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, hw-bits, hw-prim, mmap - , primitive, semigroups, stdenv, transformers, vector - }: - mkDerivation { - pname = "hw-streams"; - version = "0.0.0.12"; - sha256 = "a40673d42271b69ee630b9a85699f9cc043c06761af5e6d3db4938d81fb1fa20"; - libraryHaskellDepends = [ - base bytestring ghc-prim hw-bits hw-prim mmap primitive semigroups - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-streams#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.18"; - sha256 = "721809d89bbcaf29b2bbe3b9cdbb54e6d6a30afe7509186061898f7e8b996620"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.4.0.0"; - sha256 = "f50ea1d5528025400507f9b181596f7b277e645a1e33ebbc659be22b244468ae"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyper" = callPackage - ({ mkDerivation, base, blaze-html, deepseq, stdenv, text }: - mkDerivation { - pname = "hyper"; - version = "0.1.0.3"; - sha256 = "1a744c2bfa3f386922c5c30a0507a7b6b688220d0c87d2db8cbebda7faae822d"; - libraryHaskellDepends = [ base blaze-html deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/hyper-haskell"; - description = "Display class for the HyperHaskell graphical Haskell interpreter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.3"; - sha256 = "8dbb30a58799b1bf145e82b71be0f782b60e9ef55d0c5fd3d2a0c28028cc3f64"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection semigroupoids - semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, text, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.8"; - sha256 = "31fa47011c27cdad034fb691f232209b857774489a2eaf189e075bf9fced8925"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers text unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hyraxAbif" = callPackage - ({ mkDerivation, base, binary, bytestring, directory, filepath - , hscolour, pretty-show, protolude, stdenv, text - }: - mkDerivation { - pname = "hyraxAbif"; - version = "0.2.3.15"; - sha256 = "013a861a57bb71af8394ee68404d52411ae65d627e36d0c1903194331fa6d5f1"; - revision = "1"; - editedCabalFile = "07i4ippga6cnwr9yl6nkrhakl9sim73fprf29lnmsvdc8ynbifcd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring directory filepath protolude text - ]; - executableHaskellDepends = [ - base bytestring hscolour pretty-show protolude text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hyraxbio/hyraxAbif/#readme"; - description = "Modules for parsing, generating and manipulating AB1 files"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihaskell" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring, cereal - , cmdargs, containers, directory, filepath, ghc, ghc-boot - , ghc-parser, ghc-paths, haskeline, haskell-src-exts, hlint - , http-client, http-client-tls, ipython-kernel, mtl, parsec - , process, random, shelly, split, stdenv, stm, strict, text, time - , transformers, unix, unordered-containers, utf8-string, vector - }: - mkDerivation { - pname = "ihaskell"; - version = "0.10.0.2"; - sha256 = "ab63ad0a9fcff7b32581597e67c5f6f2c2bb0043e7d1f00f29f6fc2227225306"; - revision = "1"; - editedCabalFile = "0jhgnw5wrpmbp3g6zllwlmmyzyja5ry8i7dss7q8gpbvk2inlfl3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cereal cmdargs containers - directory filepath ghc ghc-boot ghc-parser ghc-paths haskeline - haskell-src-exts hlint http-client http-client-tls ipython-kernel - mtl parsec process random shelly split stm strict text time - transformers unix unordered-containers utf8-string vector - ]; - executableHaskellDepends = [ - aeson base bytestring containers directory ghc ipython-kernel - process strict text transformers unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A Haskell backend kernel for the IPython project"; - license = stdenv.lib.licenses.mit; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.3"; - sha256 = "13bf923ad64d5dd1c517a64c0fd017fe94951a18ebbfe7e587b11e3ad6ebd5fd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, Cabal, random, stdenv - , template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.4"; - sha256 = "5b1f93482bc5ed85bbe04a1c63fa8bee6d4156b79cee43f812db92765fa1666e"; - setupHaskellDepends = [ base bytestring Cabal random ]; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, stdenv }: - mkDerivation { - pname = "incremental-parser"; - version = "0.3.3"; - sha256 = "d15c43000e923d79593c2b39e196e7f780c2f22d955aa34742fb0813ecfab8f8"; - libraryHaskellDepends = [ base monoid-subclasses ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indentation-core" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "indentation-core"; - version = "0.0.0.2"; - sha256 = "099a3e3bb82c6af1b99172722bb01e954d1722d468e2d0722415f4f479993fd0"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators core library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indentation-parsec" = callPackage - ({ mkDerivation, base, indentation-core, mtl, parsec, stdenv }: - mkDerivation { - pname = "indentation-parsec"; - version = "0.0.0.2"; - sha256 = "0e37846ef1ea045d6c365be38f2b55ff7dd36e960f21ba28e879137874c8f2d4"; - libraryHaskellDepends = [ base indentation-core mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/adamsmd/indentation"; - description = "Indentation sensitive parsing combinators for Parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.5.0.1"; - sha256 = "a1582cc6b705170bab6ea5cbe360530641ae94a31714a61b56c5f2067ee4ec36"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed"; - version = "0.1.3"; - sha256 = "ef84090ec6bf79e7dc6e9d570fc370c9eea6cd251d3c023979f6e1f8d3fbf5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reinerp/indexed"; - description = "Haskell98 indexed functors, monads, comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.1.2"; - sha256 = "d896ae5b3919a7a9fecdd9336e8f330d055fbdae4821be04b7c1266ccaa07d10"; - revision = "1"; - editedCabalFile = "198hmw2m3539vmh3s58d33h6vl5d0fqpdms8rp8cwj196diipjlc"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-profunctors" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed-profunctors"; - version = "0.1"; - sha256 = "31dfb4319dff84199344000b1efad75158eeac17ddcbb27f91735e958591bb65"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities for indexed profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "infer-license" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, text - , text-metrics - }: - mkDerivation { - pname = "infer-license"; - version = "0.2.0"; - sha256 = "12e6fe616575159c03cf6fd4a4f30021ecf264a529ab4e4edd6e96e296a98e72"; - libraryHaskellDepends = [ - base directory filepath text text-metrics - ]; - doHaddock = false; - doCheck = false; - description = "Infer software license from a given license file"; - license = stdenv.lib.licenses.mit; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.5"; - sha256 = "6b5bc532f559df769f1a97747e6770ba0777e0efd24c96c22ceb6da1781cb839"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.7.1.1"; - sha256 = "a8236bd703503a88e8421a74ba9e23afd3eb8d7b918c50e828acd36bdfa21f97"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.4.1"; - sha256 = "14293c2a209f938cc3e779132f3411c330636a91b1a58549a154c025518c7c57"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inj" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "inj"; - version = "1.0"; - sha256 = "4012310e5e80d4f4eb11ec73aeda311f7cb94a5c68e7393bfb3b99513cd61ab6"; - doHaddock = false; - doCheck = false; - description = "A class for injective (one-to-one) functions"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.7.0.1"; - sha256 = "daf2f2f286ff549e319ebc9f9491ea809f27996e234ac99a5e2eecc8e35e4ca7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "inline-c-cpp" = callPackage - ({ mkDerivation, base, inline-c, safe-exceptions, stdenv - , template-haskell - }: - mkDerivation { - pname = "inline-c-cpp"; - version = "0.3.0.3"; - sha256 = "964ea5c683f6c48f979ab5747016ccd734fe4b00b2fa268eba0e03035beabceb"; - libraryHaskellDepends = [ - base inline-c safe-exceptions template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Lets you embed C++ code into Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "inline-r" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , data-default-class, deepseq, exceptions, inline-c, mtl, pretty - , primitive, process, R, reflection, setenv, singletons, stdenv - , template-haskell, text, th-lift, th-orphans, transformers, unix - , vector - }: - mkDerivation { - pname = "inline-r"; - version = "0.10.2"; - sha256 = "244f2f4fda69f9594259ef92c3310da38b77a745bf3c1feb0700f54a5aab8dd3"; - libraryHaskellDepends = [ - aeson base bytestring containers data-default-class deepseq - exceptions inline-c mtl pretty primitive process reflection setenv - singletons template-haskell text th-lift th-orphans transformers - unix vector - ]; - libraryPkgconfigDepends = [ R ]; - doHaddock = false; - doCheck = false; - homepage = "https://tweag.github.io/HaskellR"; - description = "Seamlessly call R from Haskell and vice versa. No FFI required."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) R;}; - "inliterate" = callPackage - ({ mkDerivation, base, blaze-html, cheapskate, containers - , haskell-src-exts, lucid, lucid-extras, plotlyhs, stdenv, text - , time - }: - mkDerivation { - pname = "inliterate"; - version = "0.1.0"; - sha256 = "2d96cc64e3b923003668c88fd73c30d5da09a2c9e2fb6af62912f54478d1e39f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html cheapskate containers haskell-src-exts lucid - lucid-extras plotlyhs text time - ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/inliterate"; - description = "Interactive literate programming"; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.2"; - sha256 = "4af6b920bfdf0e3135a385075946f26752dec4142917625ae8f6ba76c18372c6"; - revision = "1"; - editedCabalFile = "1hlinc8nnjlzc6ds3wf8jvkihpcbhz2dk0rqxq1ns0c5zbbhnylq"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens semigroupoids semigroups text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.4.2.2"; - sha256 = "d78fcf2129ee1bccd184069e98deacaf7f41afaa292f8aa082a6477353faf7ae"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "int-cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "int-cast"; - version = "0.2.0.0"; - sha256 = "e006956a08b751a996a92828ccb728b7237c9c435c4b35b5169eb8d44ac51969"; - revision = "2"; - editedCabalFile = "1fhc91170q9q9k628wc3dqzdvxfjs97jzg5x7g0ndaqnh60l8cy5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/int-cast"; - description = "Checked conversions between integral types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.3"; - sha256 = "5ae262018698af35bb74916fad170d96d3eb44669c72ed36db9a19a3392cec16"; - revision = "2"; - editedCabalFile = "0a6j3313vz7n7dn8abddyib4jggblaq89f87ib4imdwjxjajbm33"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolatedstring-perl6" = callPackage - ({ mkDerivation, base, bytestring, Cabal, haskell-src-meta, process - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "interpolatedstring-perl6"; - version = "1.0.2"; - sha256 = "5a8b1e8b65253ce1e1b07b9de1075e9306483160a7b419d5f126d7e2744b7bb7"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for Perl6-style multi-line interpolated strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "interpolatedstring-qq2" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "interpolatedstring-qq2"; - version = "0.1.0.0"; - sha256 = "5d36045735120a825dd6f129b7a14f6c4102f6fdb0ab40dd0ed4c1dc6ec0fd34"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/interpolatedstring-qq2#readme"; - description = "QuasiQuoter for multi-line interpolated strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.1.1"; - sha256 = "c5735cf6cde9439188890290e2d01dd40fabca670ecf17b70e12dc9e8aa33d20"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolator" = callPackage - ({ mkDerivation, aeson, base, containers, either, mono-traversable - , mtl, product-profunctors, profunctors, QuickCheck, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "interpolator"; - version = "1.0.0"; - sha256 = "675195c365ef1bddcbc4f21d5873f3b2db1c27e2c20cf2542da2a8f598d76a4e"; - libraryHaskellDepends = [ - aeson base containers either mono-traversable mtl - product-profunctors profunctors QuickCheck template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvision-insights/interpolator"; - description = "Runtime interpolation of environment variables in records using profunctors"; - license = stdenv.lib.licenses.mit; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.8.1"; - sha256 = "9ce3bf9d31b9ab2296fccc25031fd52e1c3e4abeca5d3bb452a725b586eb7e03"; - revision = "4"; - editedCabalFile = "1qx3q0v13l1zaln9zdk8chxpxhshbz5x0vqm0qda7d1kpv7h6a7r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intro" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, dlist - , extra, hashable, mtl, safe, stdenv, text, transformers - , unordered-containers, writer-cps-mtl - }: - mkDerivation { - pname = "intro"; - version = "0.5.2.1"; - sha256 = "e8e2124179c749e597998628bf2cd167d15e977db0f1105f5856a02e8bbaac44"; - revision = "1"; - editedCabalFile = "19zndrl4rgzjrg97cbc2cyiqih15gaijgibz0vppphcbmn7v9fl8"; - libraryHaskellDepends = [ - base bytestring containers deepseq dlist extra hashable mtl safe - text transformers unordered-containers writer-cps-mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/intro#readme"; - description = "Safe and minimal prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "intset-imperative" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "intset-imperative"; - version = "0.1.0.0"; - sha256 = "ae549187370f562724f453965519abf65abd3159f70b4715aa6079da48099042"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-intset-imperative#readme"; - description = "An imperative integer set written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.3"; - sha256 = "d73e5def38da9fdd85def073857aa5f4b1d3b0c2df05c43d58a677cca02d440c"; - revision = "1"; - editedCabalFile = "0sjy375npw6lqcckhyicizzv91v8jh3ca5yjkygiaj22bw5k8c74"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invertible-grammar" = callPackage - ({ mkDerivation, base, bifunctors, containers, mtl, prettyprinter - , profunctors, semigroups, stdenv, tagged, template-haskell, text - , transformers - }: - mkDerivation { - pname = "invertible-grammar"; - version = "0.1.2"; - sha256 = "f2141f2652ed601a422a8b4ba7ae109a0fd33001eeba0745e31ce9ce206bc7d9"; - revision = "2"; - editedCabalFile = "0j6zmj0dlhiq4qjrbjbvdsmky1l4z1qwqikixk1b9dpa05n01ykf"; - libraryHaskellDepends = [ - base bifunctors containers mtl prettyprinter profunctors semigroups - tagged template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/invertible-grammar"; - description = "Invertible parsing combinators framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-choice" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "io-choice"; - version = "0.0.7"; - sha256 = "394a60c4b0bcb3ce0dab6618891ab6e7405e583f724ca445ddc58b59725a669b"; - libraryHaskellDepends = [ - base lifted-base monad-control template-haskell transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Choice for IO and lifted IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.1.0"; - sha256 = "8aa2f0afb83ee2e43c472509ecd45475b9ed4409dfaec16eb781f44152f6ebb0"; - revision = "1"; - editedCabalFile = "0n0qs5lgryh3zxy73j3qbpnxand43yd2bj6pclvyii8apqqp901a"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams-haproxy" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, io-streams, network - , stdenv, transformers - }: - mkDerivation { - pname = "io-streams-haproxy"; - version = "1.0.1.0"; - sha256 = "b74eca9290fe838a0e3be857a38b62cf6fb7478acee400eac19e47471a2c96b5"; - revision = "2"; - editedCabalFile = "1pvw39f0vrzb5hdx6nqpdg4ccsxa59vwjspfjkh6vvw1zwmidgja"; - libraryHaskellDepends = [ - attoparsec base bytestring io-streams network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "HAProxy protocol 1.5 support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, primitive, stdenv, text, vector, wide-word - }: - mkDerivation { - pname = "ip"; - version = "1.5.1"; - sha256 = "94fec997abbd2a877123e27a3abf2cb123b8ce28805953ca0818c3becdb136b3"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable primitive text - vector wide-word - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "1.0.1"; - sha256 = "dfb563510d7db46aeb69897d3e550317e3a95c79cb55032c816e9dbdeb94b25f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.8"; - sha256 = "4dad14f83bc770554609ac68c3b7bc7cccea4bb2ba2f2085c6e9623378fb584c"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipynb" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , containers, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "ipynb"; - version = "0.1"; - sha256 = "45f27b613690ee8b0122bc4686fffbf36e50bfdc378385eb3805131a3f6c4a35"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring containers text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Data structure for working with Jupyter notebooks (ipynb)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, cereal-text - , containers, cryptonite, directory, filepath, memory, mtl, process - , stdenv, temporary, text, transformers, unordered-containers, uuid - , zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.10.1.0"; - sha256 = "bc11976e4850ef2c1e1c92a3fe04e481297303f13c111ac793eec52d0b7c5e0f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal cereal-text containers cryptonite - directory filepath memory mtl process temporary text transformers - unordered-containers uuid zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.1.1"; - sha256 = "b8396ef8f7afbde0ae8c888e81e42ec89c803ae3ba5cd75dfa2c1ad6d2c24123"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.4"; - sha256 = "8149ee5e5e075662971c4cbd7059a0825b124ac1ea6fb816b8cbb2b6586b4a2b"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.5"; - sha256 = "f2cd444b2be68402c773a4b451912817f06d33093aea691b42ebeed3630ff0c8"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ixset-typed" = callPackage - ({ mkDerivation, base, containers, deepseq, safecopy, stdenv, syb - , template-haskell - }: - mkDerivation { - pname = "ixset-typed"; - version = "0.4.0.1"; - sha256 = "a8d3655f4cebf66013363a4456287052391faad76f00f5b4001ba7d11073ac8c"; - revision = "1"; - editedCabalFile = "0kfklsbjn4gmx76vl7vm1s149f13h2p537930yaq8s2671lzc79p"; - libraryHaskellDepends = [ - base containers deepseq safecopy syb template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Efficient relational queries on Haskell sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.4"; - sha256 = "42aeb281fb62a08bbaca4b20801d55879b0688e25a92962158fbd0578bd21405"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.4"; - sha256 = "c8e0e72acf380b770483878798faa266cab17c4b14b72989c4fd21158c6d7277"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal#readme"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jose" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, concise, containers, cryptonite, lens, memory - , monad-time, mtl, network-uri, QuickCheck, quickcheck-instances - , safe, semigroups, stdenv, template-haskell, text, time - , unordered-containers, vector, x509 - }: - mkDerivation { - pname = "jose"; - version = "0.8.2.0"; - sha256 = "a4d17a56ddf246caa750537028c4e617b530a9b5489a7a51af9ecfa4799d624f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring concise - containers cryptonite lens memory monad-time mtl network-uri - QuickCheck quickcheck-instances safe semigroups template-haskell - text time unordered-containers vector x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-jose"; - description = "Javascript Object Signing and Encryption and JSON Web Token library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.8.0"; - sha256 = "4fb098e8ec18ebec7ab93f229dbaca992c704d006bc0f1ca98e8f00a579db6c2"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-dgtable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-dgtable"; - version = "0.5.2"; - sha256 = "e28dd65bee8083b17210134e22e01c6349dc33c3b7bd17705973cd014e9f20ac"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-dgtable#readme"; - description = "Obtain minified jquery.dgtable code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , pretty, stdenv, syb, text - }: - mkDerivation { - pname = "json"; - version = "0.9.3"; - sha256 = "8baf1de09983df8036fda854c4d1446f156a52d4988b863175e29af35c1d1afd"; - revision = "2"; - editedCabalFile = "0iqmwfq6s1fc8jj16yx2d7jpzf94scd1hc4yvz281zxj7kds2ms5"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec pretty syb text - ]; - doHaddock = false; - doCheck = false; - description = "Support for serialising Haskell to and from JSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-alt" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "json-alt"; - version = "1.0.0"; - sha256 = "b850533adf93fbda01d4aee1f0116cfd67bfce17baf0a035ddc20cfe4a5d75c7"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Union 'alternative' or Either that has untagged JSON encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-autotype" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, filepath - , GenericPretty, hashable, json-alt, lens, mtl - , optparse-applicative, pretty, process, QuickCheck, scientific - , smallcheck, stdenv, template-haskell, text, uniplate - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "json-autotype"; - version = "3.0.1"; - sha256 = "6aae99110b29fcdbd3e7918eabc4ebf1d1f4bc1a6a94a33f0814324eba25395a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers filepath GenericPretty hashable json-alt lens - mtl pretty process QuickCheck 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Automatic type declaration for JSON input data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.7"; - sha256 = "87e9103e5e8b63a26b22641b142e9e8bd0ad0cb63cca2776094b034a74fc5a66"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, deepseq, hashable, monad-logger, mtl, QuickCheck - , stdenv, stm-conduit, text, time, unliftio, unordered-containers - , vector - }: - mkDerivation { - pname = "json-rpc"; - version = "1.0.1"; - sha256 = "101d24d637ddd874edc0c530ee53ff73b67f1db010e4f96459315cf1d5bff0bd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra deepseq - hashable monad-logger mtl QuickCheck stm-conduit text time unliftio - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring conduit conduit-extra monad-logger mtl - QuickCheck stm-conduit text time unliftio unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/json-rpc.git#readme"; - description = "Fully-featured JSON-RPC 2.0 library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "json-rpc-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, json-rpc-server, mtl - , stdenv, text, unordered-containers, vector, vector-algorithms - }: - mkDerivation { - pname = "json-rpc-client"; - version = "0.2.5.0"; - sha256 = "5349f5c0b0fa8f6c5433152d6effc10846cfb3480e78c5aa99adb7540bcff49c"; - revision = "10"; - editedCabalFile = "19vf7gibvqgcm27b5n0ls4s7wi1kr87crn776ifqc9gbr2l9bfpi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring json-rpc-server mtl text unordered-containers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-client"; - description = "JSON-RPC 2.0 on the client side."; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.5"; - sha256 = "9f917ba4b01e1a439482cda9be9fff865043915067cc26571e3df682a3bf3ac0"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-rpc-server" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, mtl, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-server"; - version = "0.2.6.0"; - sha256 = "169e9997734bd1d7d07a13b5ae0223d5363c43de93b0d5fbb845a598f9eaccf5"; - revision = "7"; - editedCabalFile = "1fjkl0p5glkk01jny6ar62356pmp2a2vf9v1jq67ly3y14dcvywq"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring deepseq mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/grayjay/json-rpc-server"; - description = "JSON-RPC 2.0 on the server side."; - license = stdenv.lib.licenses.mit; - }) {}; - "jsonpath" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "jsonpath"; - version = "0.1.0.2"; - sha256 = "8c0493694379edf0d4e51d042674247eeb2612cae09a94ec48588b8fd24d08ad"; - libraryHaskellDepends = [ - aeson attoparsec base text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/akshaymankar/jsonpath-hs#readme"; - description = "Library to parse and execute JSONPath"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "jwt" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cryptonite - , http-types, memory, network-uri, scientific, semigroups, stdenv - , text, time, unordered-containers, vector, x509, x509-store - }: - mkDerivation { - pname = "jwt"; - version = "0.10.0"; - sha256 = "bc1c7b18ba3366dd537f0ccd46e887e5892591a2a60b5ccbc15289ea70c52ea8"; - revision = "2"; - editedCabalFile = "1ld5dh4x3sb28416bk3k39k46vmx1s7agk17v7cb5cxam4hj3c1c"; - libraryHaskellDepends = [ - aeson base bytestring containers cryptonite http-types memory - network-uri scientific semigroups text time unordered-containers - vector x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/puffnfresh/haskell-jwt"; - description = "JSON Web Token (JWT) decoding and encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, free, invariant, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.2"; - sha256 = "6b727e586f744b96529415eeabc745dfe05feea61f6b6bad90c224c879f4dbd3"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive free invariant mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.0.2"; - sha256 = "bef2860c257cb5380d61faeb33cb337ba253b42ce73ad995ef73395eb945f204"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "katip" = callPackage - ({ mkDerivation, aeson, async, auto-update, base, bytestring - , containers, either, hostname, microlens, microlens-th - , monad-control, mtl, old-locale, resourcet, safe-exceptions - , scientific, semigroups, stdenv, stm, string-conv - , template-haskell, text, time, transformers, transformers-base - , transformers-compat, unix, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "katip"; - version = "0.8.3.0"; - sha256 = "a085b3d83f841bde5f479c71db7cc6d6a287cc012f47785ce6eadcfc2e64f872"; - libraryHaskellDepends = [ - aeson async auto-update base bytestring containers either hostname - microlens microlens-th monad-control mtl old-locale resourcet - safe-exceptions scientific semigroups stm string-conv - template-haskell text time transformers transformers-base - transformers-compat unix unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/katip"; - description = "A structured logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kazura-queue" = callPackage - ({ mkDerivation, atomic-primops, base, primitive, stdenv }: - mkDerivation { - pname = "kazura-queue"; - version = "0.1.0.4"; - sha256 = "5e5441f0eee97a4752f485ad2a3e7c0add7a2928190d416b8f83e2939a59237e"; - libraryHaskellDepends = [ atomic-primops base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/asakamirai/kazura-queue#readme"; - description = "Fast concurrent queues much inspired by unagi-chan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12.2"; - sha256 = "b2510a635fbbcc53475611fd286801f3d898bb339720d722fc1506d11a6084d7"; - revision = "1"; - editedCabalFile = "1cx5bwd32mpqdgllrkld254a8ydks196m3j9dvm3razg8mxnz2x6"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-apply" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kind-apply"; - version = "0.3.2.0"; - sha256 = "98dd45968f777f08aa4e6a8fe20dfa0b345ab474b92ac37835503589a2930073"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities to work with lists of types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics" = callPackage - ({ mkDerivation, base, kind-apply, stdenv }: - mkDerivation { - pname = "kind-generics"; - version = "0.3.0.0"; - sha256 = "1df923a4a223c8c3c69135bd4be65bab6d6404cad026d90539fd350ab98c7976"; - libraryHaskellDepends = [ base kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming in GHC style for arbitrary kinds and GADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics-th" = callPackage - ({ mkDerivation, base, kind-generics, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "kind-generics-th"; - version = "0.1.1.0"; - sha256 = "743e5c827666ccd3ce7c5a3114259212872b09a8b8d8ae98af8ea726748b905f"; - libraryHaskellDepends = [ - base kind-generics template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - description = "Template Haskell support for generating `GenericK` instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kleene" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, lattices, MemoTrie, QuickCheck, range-set-list - , regex-applicative, semigroupoids, stdenv, step-function, text - , transformers - }: - mkDerivation { - pname = "kleene"; - version = "0.1"; - sha256 = "0f8225812d41485a945d85c46a95bc840b98b4740f0de1c714de63d8b87f8103"; - revision = "2"; - editedCabalFile = "1kiaxmxhlv1pczw8bg5vhcbyxgl87qs5bgcdaipd29ml0z7sncsd"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers lattices MemoTrie - QuickCheck range-set-list regex-applicative semigroupoids - step-function text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/kleene"; - description = "Kleene algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "kraken" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, mtl, stdenv - }: - mkDerivation { - pname = "kraken"; - version = "0.1.0"; - sha256 = "335ce7cb85f7d3ed71eb067ad9642d13d2ca1d62ce8670596c8b69aacc27828a"; - revision = "2"; - editedCabalFile = "141qx2fb3dimv20qsl2q1bagwcn9i0r72z2ha1w7191m557in319"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls mtl - ]; - doHaddock = false; - doCheck = false; - description = "Kraken.io API client"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lackey" = callPackage - ({ mkDerivation, base, servant, servant-foreign, stdenv, text }: - mkDerivation { - pname = "lackey"; - version = "1.0.10"; - sha256 = "b219d2cf93824de15eab7ef359c1e5dcf24c4b5b203660a9f645d024b8cedb8e"; - libraryHaskellDepends = [ base servant servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby clients from Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "lambdabot-core" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , dependent-map, dependent-sum, dependent-sum-template, directory - , edit-distance, filepath, haskeline, hslogger, HTTP, lifted-base - , monad-control, mtl, network, network-bsd, parsec, prim-uniq - , random, random-fu, random-source, regex-tdfa, SafeSemaphore - , split, stdenv, syb, template-haskell, time, transformers - , transformers-base, unix, utf8-string, zlib - }: - mkDerivation { - pname = "lambdabot-core"; - version = "5.2"; - sha256 = "5a4b281d626ad7e7218b544bce30af6de173360c11b74a85856342b4383f08f2"; - revision = "2"; - editedCabalFile = "1khn1j3z7mkzggp7s35p0dixsj81yljfrf5r9d289dvy1dip8akf"; - libraryHaskellDepends = [ - base binary bytestring containers dependent-map dependent-sum - dependent-sum-template directory edit-distance filepath haskeline - hslogger HTTP lifted-base monad-control mtl network network-bsd - parsec prim-uniq random random-fu random-source regex-tdfa - SafeSemaphore split syb template-haskell time transformers - transformers-base unix utf8-string zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Lambdabot"; - description = "Lambdabot core functionality"; - license = "GPL"; - }) {}; - "lambdabot-irc-plugins" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , lambdabot-core, lifted-base, mtl, network, SafeSemaphore, split - , stdenv, time - }: - mkDerivation { - pname = "lambdabot-irc-plugins"; - version = "5.2"; - sha256 = "70168af5e5ee946f04e223a7f73b069c17053fecc5e112eaaf11c55cdfab0d54"; - libraryHaskellDepends = [ - base bytestring containers directory filepath lambdabot-core - lifted-base mtl network SafeSemaphore split time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Lambdabot"; - description = "IRC plugins for lambdabot"; - license = "GPL"; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.2.0"; - sha256 = "578b5b8bff09bcf3cde8f26026cef02633aa5d93a72ab007d5cd3967951a18af"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath text transformers - wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.8.3"; - sha256 = "f3d66c18abececb468f2b069f0c3274709456fde6938eace46dacf1c9b14202e"; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath pretty - process syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2.1"; - sha256 = "65c485ede8219236f58faba305123b2652e64994c8e297861b25490ec8229b43"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-docker" = callPackage - ({ mkDerivation, base, bytestring, containers, free, megaparsec - , mtl, prettyprinter, split, stdenv, template-haskell, text - , th-lift, time - }: - mkDerivation { - pname = "language-docker"; - version = "8.0.2"; - sha256 = "32424a420f5a95a5be370a56826a801fb9d5351a38643a593f30d4485bebcf01"; - libraryHaskellDepends = [ - base bytestring containers free megaparsec mtl prettyprinter split - template-haskell text th-lift time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hadolint/language-docker#readme"; - description = "Dockerfile parser, pretty-printer and embedded DSL"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "language-ecmascript" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, charset, containers - , data-default-class, Diff, mtl, parsec, QuickCheck, stdenv - , template-haskell, uniplate - }: - mkDerivation { - pname = "language-ecmascript"; - version = "0.19"; - sha256 = "570a4b7bdebf4532e9c059f2afa7575247be2b7f539361995297308c387c658f"; - revision = "2"; - editedCabalFile = "1xj5h5ajybq4pwlw8zsn1lb920km1pcdv20apbpa7pgi39zcpzfd"; - libraryHaskellDepends = [ - ansi-wl-pprint base charset containers data-default-class Diff mtl - parsec QuickCheck template-haskell uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jswebtools/language-ecmascript"; - description = "JavaScript parser and pretty-printer library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.6.0.14"; - sha256 = "c1e16a60b1ddaba61042a35cf6f96dc3b0fbda54c7a7c9a30c994f949e4c8ec8"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, base-compat, Cabal, deepseq, lens, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.1.0.1"; - sha256 = "f0147300724ac39ce388cd6cd717ac3ccc6ed1884ffaafebb18d0f3021e01acf"; - revision = "1"; - editedCabalFile = "1zv12p4ralrks0517zs52rzmzmsxxkcxkqz7zijfgcsvh6bsmafi"; - libraryHaskellDepends = [ - base base-compat Cabal deepseq lens pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and useful functions to represent and manipulate the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-puppet" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, async, attoparsec, base - , base16-bytestring, bytestring, case-insensitive, containers - , cryptonite, directory, filecache, filepath, formatting, Glob - , hashable, hruby, hslogger, http-api-data, http-client, lens - , lens-aeson, megaparsec, memory, mtl, operational - , optparse-applicative, parsec, parser-combinators, pcre-utils - , protolude, random, regex-pcre-builtin, scientific, servant - , servant-client, split, stdenv, stm, strict-base-types, text, time - , transformers, unix, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "language-puppet"; - version = "1.4.6.1"; - sha256 = "add32ccaee7b3e6cd4151f787e8c8fb65d055ba63f58f809739cd16fa9732e70"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring - case-insensitive containers cryptonite directory filecache filepath - formatting hashable hruby hslogger http-api-data http-client lens - lens-aeson megaparsec memory mtl operational parsec - parser-combinators pcre-utils protolude random regex-pcre-builtin - scientific servant servant-client split stm strict-base-types text - time transformers unix unordered-containers vector yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint async base bytestring containers Glob hslogger - http-client lens mtl optparse-applicative regex-pcre-builtin - strict-base-types text transformers unordered-containers vector - yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "Tools to parse and evaluate the Puppet DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack" = callPackage - ({ mkDerivation, base, blas-ffi, blaze-html, boxes, comfort-array - , deepseq, fixed-length, guarded-allocation, hyper, lapack-ffi - , lazyio, netlib-ffi, non-empty, semigroups, stdenv, text, tfp - , transformers, utility-ht - }: - mkDerivation { - pname = "lapack"; - version = "0.3.1"; - sha256 = "79f34725accb6917443bb24d7ce1e212ab132b1dc1cade68ccdbc83760b316f1"; - libraryHaskellDepends = [ - base blas-ffi blaze-html boxes comfort-array deepseq fixed-length - guarded-allocation hyper lapack-ffi lazyio netlib-ffi non-empty - semigroups text tfp transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack/"; - description = "Numerical Linear Algebra using LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-carray" = callPackage - ({ mkDerivation, base, carray, lapack-ffi, netlib-carray - , netlib-ffi, stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "lapack-carray"; - version = "0.0.3"; - sha256 = "510ffbbe349add60dd147181a7517f57071b71f7691e299255b95433dbe48dd0"; - libraryHaskellDepends = [ - base carray lapack-ffi netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-carray/"; - description = "Auto-generated interface to Fortran LAPACK via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-comfort-array" = callPackage - ({ mkDerivation, base, comfort-array, lapack-ffi - , netlib-comfort-array, netlib-ffi, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "lapack-comfort-array"; - version = "0.0.0.1"; - sha256 = "01d2c8c33ab89193e2531db0fdc46433885b335eb86552ea5f5a9c83c75ac94e"; - libraryHaskellDepends = [ - base comfort-array lapack-ffi netlib-comfort-array netlib-ffi - storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-comfort-array/"; - description = "Auto-generated interface to Fortran LAPACK via comfort-array"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.2.1"; - sha256 = "b03d22ca5d322ec50418e5e8e937b640910fd76a855722ec63ca1850f5256542"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.4"; - sha256 = "1c2a8b9cefebc3ce5493071670d9c71e4fc30d6527d6a6c92174ce4c39a0a082"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , integer-logarithms, QuickCheck, semigroupoids, stdenv, tagged - , transformers, universe-base, universe-reverse-instances - , unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "2.0.1"; - sha256 = "dee5ab7c2bd16465132cf03e86d93e07bc8c67248171ea65448fd284a03bf630"; - revision = "1"; - editedCabalFile = "1zfxq1gpfv0vb7arw0hw2nf61hyjwl8c72jng4v61xywvqh9i36q"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable integer-logarithms - QuickCheck semigroupoids tagged transformers universe-base - universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lawful" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "lawful"; - version = "0.1.0.0"; - sha256 = "0056794106bbf7fa4d8d4d943fdc75a39b8a5ac1e18ceac2909183a1a7cc8d04"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/lawful#readme"; - description = "Assert the lawfulness of your typeclass instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazy-csv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "lazy-csv"; - version = "0.5.1"; - sha256 = "888bcbdd43886099f197c1c246cea324c97c076d4839e97eea0b8d6d7b49649f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/lazy-csv"; - description = "Efficient lazy parsers for CSV (comma-separated values)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.9.1"; - sha256 = "abcd854763a828ec1f3008c41612a86deb2fc0bb4eaaa041951b6937f155c90e"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Enumerative property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck-instances" = callPackage - ({ mkDerivation, array, base, bytestring, containers, leancheck - , nats, stdenv, text, time - }: - mkDerivation { - pname = "leancheck-instances"; - version = "0.0.3"; - sha256 = "a671ee53d343208ef3dccc93f3f64b1ed8e9ed4f6c509072fa4ab2b69de0cac0"; - libraryHaskellDepends = [ - array base bytestring containers leancheck nats text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck-instances#readme"; - description = "Common LeanCheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "learn-physics" = callPackage - ({ mkDerivation, base, gloss, gnuplot, hmatrix, not-gloss - , spatial-math, stdenv, vector-space - }: - mkDerivation { - pname = "learn-physics"; - version = "0.6.5"; - sha256 = "4b03a2d2d5871906fea7b7926d7ad3bfad537b300eb53311a0d360fdfc008d41"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base gloss gnuplot hmatrix not-gloss spatial-math vector-space - ]; - executableHaskellDepends = [ - base gloss gnuplot not-gloss spatial-math - ]; - doHaddock = false; - doCheck = false; - description = "Haskell code for learning physics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.17.1"; - sha256 = "4711bd5703ba22cc4a5cf62679775b92f92c108c6496f7b2b3ef31414761f3be"; - revision = "2"; - editedCabalFile = "1bh868l69nisdhw8qw5y51nj2w0pbbq7mxqiwf42iq0vcb6h0ybv"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.4"; - sha256 = "a3c5d82a392939a4dcb37da50e31bf8697580c420cba40ffd08e91067423cf1b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.0.2"; - sha256 = "4311f035caa39db3a70915a165bcbfb55ad22376085d95a9b4f57c58994702cc"; - revision = "6"; - editedCabalFile = "1pg5v8fnlqw1krgi3d2a03a0zkjjdv5yp5f5z6q4mlb5jldz99a8"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "1.2.3"; - sha256 = "8059e2b7a917e0108861ca795b0adfbb0bf1db5b1bdb55e677256a37d8de0e29"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "1.2.3"; - sha256 = "914f5f077d7bed8a93866ac696e69c35bb8d0fbe81314236288b057941703901"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.2"; - sha256 = "9c275afad37a5064b9a13c6207ee2307f6ccccc3a5517c0fae84524bad65b0e6"; - revision = "1"; - editedCabalFile = "06sbynlrbqb51rn392w1q82qww1f6k8mmw1npgla2wc6s39k4977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-misc" = callPackage - ({ mkDerivation, base, lens, stdenv, tagged, template-haskell }: - mkDerivation { - pname = "lens-misc"; - version = "0.0.2.0"; - sha256 = "59925fe9125e297df0f1afcc8ac0f25de14fd017f7848ac2687ed63850ecd8cb"; - libraryHaskellDepends = [ base lens tagged template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/lens-misc#readme"; - description = "Miscellaneous lens utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-process" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, filepath, lens - , process, stdenv - }: - mkDerivation { - pname = "lens-process"; - version = "0.3.0.1"; - sha256 = "a60971100dbfa2352b111ad9dfd87f4c9596d4964874e9f198652824acb37f17"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base filepath lens process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/lens-process"; - description = "Optics for system processes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.1"; - sha256 = "0d946baa2be86452fe0a2185575e1d00752a075c92c48acdb3ed7833cd1ec730"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex-pcre" = callPackage - ({ mkDerivation, base, bytestring, lens, pcre-heavy, pcre-light - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "lens-regex-pcre"; - version = "0.3.1.0"; - sha256 = "7e45f0ebf531aa4cb97ae92f3532a49d77bcdd639f8c3b2860e9f37af4e770b9"; - libraryHaskellDepends = [ - base bytestring lens pcre-heavy pcre-light template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisPenner/lens-regex-pcre#readme"; - description = "A lensy interface to regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-simple" = callPackage - ({ mkDerivation, base, lens-family, lens-family-core - , lens-family-th, mtl, stdenv, transformers - }: - mkDerivation { - pname = "lens-simple"; - version = "0.1.0.9"; - sha256 = "613d99b8074197f8a026a641a9940dd188e0d81e808169f420981a9ca15b832a"; - libraryHaskellDepends = [ - base lens-family lens-family-core lens-family-th mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michaelt/lens-simple"; - description = "simplified import of elementary lens-family combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-typelevel" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "lens-typelevel"; - version = "0.1.1.0"; - sha256 = "773d07872000869d3fd4b45256e4ce8da16f85754da87bdd084a33f5b2b94d53"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/lens-typelevel#readme"; - description = "Type-level lenses using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.3.1.0"; - sha256 = "d661b993f5794a0d55472e87573b19e53fb2b0c90ab5749d6f69eacdcba807b1"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale - , safe-exceptions, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.0.10"; - sha256 = "6b2e35a206a23c43e7d1ad15ac2f330851012e6070c422e39e68ee60eb41c26f"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale safe-exceptions text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "liboath-hs" = callPackage - ({ mkDerivation, base, bytestring, inline-c, liboath, oath - , safe-exceptions, stdenv, time - }: - mkDerivation { - pname = "liboath-hs"; - version = "0.0.1.1"; - sha256 = "33b48fc2789b85c87ae2f24469d044bfc1549171138363554fbb7d0159267046"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring inline-c safe-exceptions time - ]; - librarySystemDepends = [ oath ]; - libraryPkgconfigDepends = [ liboath ]; - executableHaskellDepends = [ base bytestring time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/liboath-hs#readme"; - description = "Bindings to liboath"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) liboath; inherit (pkgs) oath;}; - "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, protolude - , random, repline, stdenv, stm, text, time, transformers - , transformers-base, unordered-containers, word8 - }: - mkDerivation { - pname = "libraft"; - version = "0.5.0.0"; - sha256 = "4ccfec39efa92d764a12cc487b5ac0d99d4762193b80a174d16d68086613938f"; - 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 filepath haskeline lifted-base - monad-control monad-metrics mtl network network-simple - optparse-applicative parsec postgresql-simple postgresql-simple-url - protolude random repline stm text time transformers - transformers-base unordered-containers word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/raft#readme"; - description = "Raft consensus algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.1"; - sha256 = "ab05fa889e52ae0cbefcde33a56602e69bd6e656e9d5511c1def7ffc10075862"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.3"; - sha256 = "671b2e2ece639e9a8e45af49cfda8fcb074f43fb74b1e2f545bd405a665c5964"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.4"; - sha256 = "c9c988c2078f9d83034b26f487182869aaaa67c4b1e340c306b35dc9410b9433"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "line" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptohash-sha256, http-conduit, http-types, scotty, stdenv, text - , time, transformers, wai - }: - mkDerivation { - pname = "line"; - version = "4.0.1"; - sha256 = "a1dfab5dcd078747920fc61a024eb096a554f465d57c8bc642c155150f41667c"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptohash-sha256 - http-conduit http-types scotty text time transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/utatti/line"; - description = "Haskell SDK for the LINE API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.9"; - sha256 = "c5a9b209d31fc00b62d43c1de34fb59f9f115c51e6db43353f76a4825fc4fe40"; - revision = "1"; - editedCabalFile = "13ff7xvw25fpsikcvf0nly2ca614wzv10qyg4sh378p5r8rvfgka"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear-circuit" = callPackage - ({ mkDerivation, base, comfort-array, comfort-graph, containers - , lapack, netlib-ffi, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "linear-circuit"; - version = "0.1.0.2"; - sha256 = "95a67081822068b5973dbbff143369103ee4676e621c8b91b6f77a7111a6c231"; - libraryHaskellDepends = [ - base comfort-array comfort-graph containers lapack netlib-ffi - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/linear-circuit"; - description = "Compute resistance of linear electrical circuits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.0"; - sha256 = "1412db341c574b6a18e2fa23ee5e3ca6f32719409ea602a6215f1fd0aafb73e7"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Work with linux namespaces: create new or enter existing ones"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, foldl, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.4"; - sha256 = "3863844bf18a47997dce5972df30b6a38d257cbc168216be2233a40b33c15577"; - libraryHaskellDepends = [ - base foldl mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "list-witnesses" = callPackage - ({ mkDerivation, base, decidable, microlens, profunctors - , singletons, stdenv, vinyl - }: - mkDerivation { - pname = "list-witnesses"; - version = "0.1.1.1"; - sha256 = "47f1d31e8d168e465170d35796e288bd666376a1075b2779b9c4697f277b058e"; - libraryHaskellDepends = [ - base decidable microlens profunctors singletons vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/list-witnesses#readme"; - description = "Witnesses for working with type-level lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , containers, exceptions, llvm-config, llvm-hs-pure, mtl, stdenv - , template-haskell, transformers, utf8-string - }: - mkDerivation { - pname = "llvm-hs"; - version = "8.0.0"; - sha256 = "d0989ffab5537e78594c6bc33083bf21270f3b1f9f648c655a9ee7dd7a67d397"; - revision = "1"; - editedCabalFile = "1mq04vjz34c8a4291q7ln0wh4kw03hkf2l1659mdrnv7yyi72j0w"; - setupHaskellDepends = [ base Cabal containers ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers exceptions llvm-hs-pure - mtl template-haskell transformers utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "General purpose LLVM bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "8.0.0"; - sha256 = "cc593468297a6ede3079542cde273c02cf4661bf1698e2d66eaddfb6035334eb"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.1.0"; - sha256 = "e3ec6dfafeb9be454d010e1a4330b5a66beb8fb9496a9b70a42e9b18ea0494a0"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loc" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "loc"; - version = "0.1.3.4"; - sha256 = "c263ff5fbbd7d8cb597e617cb4a0cf961cac3b62c64de777e27d784e32b6b8f5"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chris-martin/loc"; - description = "Types representing line and column positions and ranges in text files"; - license = stdenv.lib.licenses.asl20; - }) {}; - "locators" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptohash, stdenv - }: - mkDerivation { - pname = "locators"; - version = "0.2.4.4"; - sha256 = "2d6d0940206e285a086ea66c7b5f8b3a082fa629a8d335323dbbf78547e09aa5"; - libraryHaskellDepends = [ base bytestring containers cryptohash ]; - doHaddock = false; - doCheck = false; - description = "Human exchangable identifiers and locators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.8.0.0"; - sha256 = "a68aee51f113fbaebc1153aac65bb438b013601e415b83d69b8668e3cd4ea394"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.12"; - sha256 = "7191cba40b9b348c54171f2b86caabb75a30e52b6d7e4c57321bf5dcdf1f367e"; - revision = "4"; - editedCabalFile = "1z7p87dl1rj0v2gnfwfa7zmgaxccd093hvjkijc56whyg4b4az4y"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logger-thread" = callPackage - ({ mkDerivation, base, fast-logger, protolude, safe-exceptions - , stdenv, stm, text, time - }: - mkDerivation { - pname = "logger-thread"; - version = "0.1.0.2"; - sha256 = "ac0a54001a69cff6f975209c4d9d399fb58ef59bb0ad6ac742c5ffedeac04a2a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base fast-logger protolude safe-exceptions stm text time - ]; - executableHaskellDepends = [ base protolude stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joe9/logger-thread#readme"; - description = "Run FastLogger in a thread and direct all queued messages to it"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base, unliftio-core - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.8"; - sha256 = "0397c88afa2df317eb0867b8ac4718f04ffd49d5d3a7199b728981cfb6df4a4f"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.7.0.2"; - sha256 = "ccc198a05563a4d8fc145ecde8b43a83599b3bcb032d2614a8e852f0ba6ecff5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/logict#readme"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "loopbreaker" = callPackage - ({ mkDerivation, base, containers, ghc, stdenv, syb }: - mkDerivation { - pname = "loopbreaker"; - version = "0.1.1.1"; - sha256 = "18d81ab891e9d5aa23d26a73d977284bb9a69161b5008bfd2e5613be011dbe47"; - libraryHaskellDepends = [ base containers ghc syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/polysemy-research/loopbreaker#readme"; - description = "inline self-recursive definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucache" = callPackage - ({ mkDerivation, base, containers, contravariant, stdenv }: - mkDerivation { - pname = "lrucache"; - version = "1.2.0.1"; - sha256 = "fc1ab2375eeaae181d838095354d3ef77d4072815006a285dd39a165a5855b85"; - libraryHaskellDepends = [ base containers contravariant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chowells79/lrucache"; - description = "a simple, pure LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.12"; - sha256 = "304bc31b4b5d65b0e7bc4ad88ca2a2c84f64e92fa9aee7f3591486d67cb4dc94"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.2.2"; - sha256 = "83399f85c9461c44c8dd6d34a076fdefa7f9cb1f92dba5f3d03989233c45247e"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid - Bootstrap, Rdash, Vega-Lite, Leaflet JS, Email"; - license = stdenv.lib.licenses.mit; - }) {}; - "lxd-client-config" = callPackage - ({ mkDerivation, aeson, base, containers, directory, filepath - , stdenv, text, yaml - }: - mkDerivation { - pname = "lxd-client-config"; - version = "0.1.0.1"; - sha256 = "903852c99bebc0af3cc3a26734056003f9097ada08eb1f361abce097a120afcf"; - libraryHaskellDepends = [ - aeson base containers directory filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-lxd-client-config#readme"; - description = "Read the configuration file of the standard LXD client"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.6.4"; - sha256 = "72de2b2e27cb36832ec4a66de36f1ba6c53d2abd197b7f0351865b4567db7768"; - revision = "2"; - editedCabalFile = "1h0qq6kxv4kc0j0rmx7rhwhvfg1hc08r10q152km4p8kgshcwlig"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, machines, stdenv }: - mkDerivation { - pname = "machines-binary"; - version = "0.3.0.3"; - sha256 = "60ff456d658ea1a427f32ee5ae1c726e2e7703942bd33edf28b457d753c20652"; - libraryHaskellDepends = [ base binary bytestring machines ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-binary"; - description = "Binary utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-directory" = callPackage - ({ mkDerivation, base, directory, filepath, machines, machines-io - , stdenv, transformers - }: - mkDerivation { - pname = "machines-directory"; - version = "0.2.1.0"; - sha256 = "849c07db6ff6cfd88348d228a7a3f8ccb16e99568230ee0d20faa5670474deb4"; - libraryHaskellDepends = [ - base directory filepath machines machines-io transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-directory"; - description = "Directory (system) utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "machines-io" = callPackage - ({ mkDerivation, base, bytestring, chunked-data, machines, stdenv - , transformers - }: - mkDerivation { - pname = "machines-io"; - version = "0.2.0.13"; - sha256 = "4d579d5e9e94fafcfca91322734263498999d2e2af45c40ff0d1db78f4a8f5d4"; - libraryHaskellDepends = [ - base bytestring chunked-data machines transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aloiscochard/machines-io"; - description = "IO utilities for the machines library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "magico" = callPackage - ({ mkDerivation, base, comfort-array, lapack, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "magico"; - version = "0.0.2.1"; - sha256 = "9d744003a09cfb119dcda858300e2b92c7ca9e1def7a85b6c1e88ccffa5198cd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base comfort-array lapack transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/magico"; - description = "Compute solutions for Magico puzzle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.2.0.1"; - sha256 = "cf06f5934e374e1972f2cc76701c03d67c5536034d9ad32cace4e03819a57842"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7.0.1"; - sha256 = "88856f0ff7c523db03f70939a3ca55f3a827e8ee8ae3f795dc2c2c866fdb2e32"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.7"; - sha256 = "d130c22e988b02bdb4b06234a400578638f5daba6ad9bca08f845d364733b173"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.4"; - sha256 = "c2e3e742be2b4af6ed62be262cab59d2366556e120b1f8856cff6e7ef270fdd4"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest - , data-default-class, deepseq, exceptions, primitive, scheduler - , stdenv, unliftio-core, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.4.5.0"; - sha256 = "811b26a2b82af7ea2f5b7530ede027b79aa4dad24775a7f87aa12b2eaea7b41a"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq exceptions primitive - scheduler unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , directory, filepath, JuicyPixels, massiv, netpbm, process, stdenv - , vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.9.0"; - sha256 = "79fca7336f0c72da798e4f0457da3f5c31cb61aa1efa1b2e786343b5d5e2f46a"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq directory filepath - JuicyPixels massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-test" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , exceptions, hspec, massiv, primitive, QuickCheck, scheduler - , stdenv, unliftio, vector - }: - mkDerivation { - pname = "massiv-test"; - version = "0.1.2"; - sha256 = "e2c29a7db528a37e1f3bc22a97406500c544c349aeb8619d7a98af7c7847578f"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq exceptions hspec massiv - primitive QuickCheck scheduler unliftio vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Library that contains generators, properties and tests for Massiv Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, data-default-class, deepseq, primitive - , stdenv, vector, vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.3.3.0"; - sha256 = "63c599ea76a4cd7fc41d564a37c09d1f7806085f48028bc02779300d885eb6e8"; - libraryHaskellDepends = [ - base data-default-class deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Collection of tools for numeric computations"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matplotlib" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , filepath, process, split, stdenv, temporary - }: - mkDerivation { - pname = "matplotlib"; - version = "0.7.5"; - sha256 = "9a05e177ce4a0d39f117e89af2390c42a09ec7ef1be39c66c6f45c59a4c9d247"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq filepath process split - temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abarbu/matplotlib-haskell"; - description = "Bindings to Matplotlib; a Python plotting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.5.0"; - sha256 = "fd013f0b061f7fd006242340fb6bc936114c8fc7d255ba58bd54cd1d66391d4d"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.1.3"; - sha256 = "32b79a75c8cf5b21a40ea51bc091ee5fd4809483d933b0dbc578528ccf8e924d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "matrix-static" = callPackage - ({ mkDerivation, base, deepseq, ghc-typelits-natnormalise, matrix - , stdenv, vector - }: - mkDerivation { - pname = "matrix-static"; - version = "0.2.1"; - sha256 = "36f4106836350932425e985472b54d913d679496c3758b7efa00a3a0d57006cb"; - libraryHaskellDepends = [ - base deepseq ghc-typelits-natnormalise matrix vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wchresta/matrix-static#readme"; - description = "Type-safe matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbtiles" = callPackage - ({ mkDerivation, base, bytestring, directory, monad-control, mtl - , resource-pool, sqlite-simple, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "mbtiles"; - version = "0.6.0.0"; - sha256 = "b8a82f0a1c551a59961449587f031f679dd2f5f082ce45b6f7d88d81f99ad62f"; - libraryHaskellDepends = [ - base bytestring directory monad-control mtl resource-pool - sqlite-simple text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/mbtiles#readme"; - description = "Haskell MBTiles client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mega-sdist" = callPackage - ({ mkDerivation, base, bytestring, optparse-simple, pantry, path - , path-io, rio, rio-orphans, stdenv, yaml - }: - mkDerivation { - pname = "mega-sdist"; - version = "0.4.0.1"; - sha256 = "1bc911e2570014615a7147f195f8fe62ffc63e3e9f9ec8602ee00cd86a573aa4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring optparse-simple pantry path path-io rio rio-orphans - yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mega-sdist#readme"; - description = "Handles uploading to Hackage from mega repos"; - license = stdenv.lib.licenses.mit; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "7.0.5"; - sha256 = "f2dc2ea9da25f726c0650051f4fe3cec0003a97dfa37b62a3f1acdba580c1d2f"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "megaparsec-tests" = callPackage - ({ mkDerivation, base, bytestring, containers, hspec - , hspec-expectations, hspec-megaparsec, megaparsec, mtl, QuickCheck - , stdenv, text, transformers - }: - mkDerivation { - pname = "megaparsec-tests"; - version = "7.0.5"; - sha256 = "d847a88de94968ba7d7a95ce13799afeecf5f1bc61c17de7c668e02544707c86"; - revision = "1"; - editedCabalFile = "1mayv955ipg94hbsix3dvpp1c2aay860h9zpg38qjmfiaks4zpjj"; - libraryHaskellDepends = [ - base bytestring containers hspec hspec-expectations - hspec-megaparsec megaparsec mtl QuickCheck text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Test utilities and the test suite of Megaparsec"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.14.18"; - sha256 = "f5458d170a291788ac8da896bb44b0cc84021c99dd596c52adf2f7a7f6c03507"; - revision = "2"; - editedCabalFile = "1kwlgsjxh4ncvc6x9rps82bm55qyzn8lvzg49s4rbyc7vjjsbmx6"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "menshen" = callPackage - ({ mkDerivation, base, regex-tdfa, scientific, stdenv, text }: - mkDerivation { - pname = "menshen"; - version = "0.0.3"; - sha256 = "8be77ec070a9bd5b1f7ce05da19ee322bf7ecdebe04c43d767f583a52718a57f"; - revision = "1"; - editedCabalFile = "0hxj40q50pbl57dribvnk8ak907p15jnk3zycv6n9vj91la9js48"; - libraryHaskellDepends = [ base regex-tdfa scientific text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/menshen#readme"; - description = "Data Validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.2"; - sha256 = "0f4ed76a96029413aef856a00defaa5d75be196a12a0dc1e75b9a0a866607779"; - revision = "4"; - editedCabalFile = "1bx3xrafmf82b9wlvhggv87fwqgpgqxjdgkk9r5b323m9ci2gign"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "merkle-tree" = callPackage - ({ mkDerivation, base, bytestring, cereal, cryptonite, memory - , protolude, random, stdenv - }: - mkDerivation { - pname = "merkle-tree"; - version = "0.1.1"; - sha256 = "215a62476230374b8bbf2f7a0a3e88345a18cf9c6f672ef7d422c3f6bd5ba2aa"; - libraryHaskellDepends = [ - base bytestring cereal cryptonite memory protolude random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/merkle-tree#readme"; - description = "An implementation of a Merkle tree and merkle tree proofs of inclusion"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "messagepack" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , stdenv - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.4"; - sha256 = "939590c05d5b0831b3b4796f2e1a070e290982c92b2009f2aa1ef5f4b05b5d7c"; - revision = "2"; - editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rodrigosetti/messagepack"; - description = "Serialize instance for Message Pack Object"; - license = stdenv.lib.licenses.mit; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microformats2-parser" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-qq, attoparsec, base - , base-compat, blaze-html, blaze-markup, bytestring, containers - , data-default, either, errors, html-conduit, lens-aeson, network - , network-uri, options, pcre-heavy, safe, scotty, stdenv, tagsoup - , text, time, transformers, unordered-containers, vector, wai-cli - , wai-extra, xml-lens, xss-sanitize - }: - mkDerivation { - pname = "microformats2-parser"; - version = "1.0.1.9"; - sha256 = "50c71d9cd57991011855ad16759a6d43f56abc0e7424475db5263c5f04e2abd3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-qq attoparsec base base-compat blaze-markup bytestring - containers data-default either errors html-conduit lens-aeson - network-uri pcre-heavy safe tagsoup text time transformers - unordered-containers vector xml-lens xss-sanitize - ]; - executableHaskellDepends = [ - aeson aeson-pretty base base-compat blaze-html blaze-markup - data-default network network-uri options scotty text wai-cli - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/microformats2-parser"; - description = "A Microformats 2 parser"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.10"; - sha256 = "9c55a89d1c91fddcafca4bb1fa99a3ef29223436d75191fb29385de2bd3f47ec"; - revision = "1"; - editedCabalFile = "1qh5ifbwh62v14ygg3fj22wqimylph17ykng70vqv5x2rkp630jq"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "A tiny lens library with no dependencies. If you're writing an app, you probably want microlens-platform, not this."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0.4"; - sha256 = "dcdf98e5c86259fe524241345560a6baf2f5f00b08040271f034da55e604c370"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.2"; - sha256 = "b57848cf35305f972f450fb6fb743605a9e82a818f3549f06cdfe5d336c4c9db"; - libraryHaskellDepends = [ base microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.10"; - sha256 = "63784af17969f63fee64684d7ad43187a0b978d85ba1bee15abda9a65b5e4d80"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.1.11.1"; - sha256 = "d3e74f46a72aad12b71d8549a98fbc023fb364766f17d75742fb32fee70bdf50"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.3.11"; - sha256 = "8b77f0630d022e42deb8438d8383c361555975d07f44efb79ee5e9fa3a0525a1"; - revision = "1"; - editedCabalFile = "14v7ffibzsa1fhf4pwvpw9ia67kgmk8wmxwibj7vr9rayrxy1ffv"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Feature-complete microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-process" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, filepath, microlens - , process, stdenv - }: - mkDerivation { - pname = "microlens-process"; - version = "0.2.0.1"; - sha256 = "b9f03fee93e2c9cf84c65de88159068bbde9b095b92a4331228a9ab380c6363f"; - revision = "2"; - editedCabalFile = "0jy50p09axr5gwkhc2qnlragpzvy3s6b947s7r3354ya2byli4dz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base filepath microlens process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/lens-process/tree/master/microlens"; - description = "Micro-optics for the process library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.2.3"; - sha256 = "321018c6c0aad3f68eb26f6c7e7a518db43039e3f8f19c4634ceb4c7f8051c8f"; - revision = "1"; - editedCabalFile = "167in7b1qhgrspx81bdm2jyg9qji66sk7id282c0s99kmp0d01n6"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, time }: - mkDerivation { - pname = "microspec"; - version = "0.2.1.3"; - sha256 = "8bf530a4bce642431014d5395e4c8ab412bed44fe6caa6c2e1239ea9577b2518"; - libraryHaskellDepends = [ base QuickCheck time ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midair" = callPackage - ({ mkDerivation, base, containers, safe, stdenv, stm }: - mkDerivation { - pname = "midair"; - version = "0.2.0.1"; - sha256 = "421f941bc6b4a4d27c3de2d618557188e59e929b56860dade281e89b555172b6"; - libraryHaskellDepends = [ base containers safe stm ]; - doHaddock = false; - doCheck = false; - description = "Hot-swappable FRP"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "midi-music-box" = callPackage - ({ mkDerivation, base, containers, diagrams-lib - , diagrams-postscript, event-list, midi, optparse-applicative - , stdenv, utility-ht - }: - mkDerivation { - pname = "midi-music-box"; - version = "0.0.1.1"; - sha256 = "eb1f5d5627a795140e19dbebaba1396f8f97517bdde31d2372876a6d78442296"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers diagrams-lib diagrams-postscript event-list midi - optparse-applicative utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/midi-music-box"; - description = "Convert MIDI file to music box punch tape"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.5.0"; - sha256 = "10b038e6c11fd1beacd3c9a429a9a244e3c50e1715f8d92d2a1eb9b6b600436f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.9"; - sha256 = "0a32435169ef4ba59f4a4b8addfd0c04479410854d1b8d69a1e38fb389ba71d2"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.2.1.0"; - sha256 = "127eb21b889ca9411bee0612ac8aebac7992b9f790dc94b83e28312441d317de"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "minio-hs" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, binary, bytestring - , case-insensitive, conduit, conduit-extra, connection, cryptonite - , cryptonite-conduit, digest, directory, exceptions, filepath - , http-client, http-client-tls, http-conduit, http-types, ini - , memory, protolude, raw-strings-qq, resourcet, retry, stdenv, text - , time, transformers, unliftio, unliftio-core, unordered-containers - , xml-conduit - }: - mkDerivation { - pname = "minio-hs"; - version = "1.5.2"; - sha256 = "b4aee64d3dadad5ed748d650bb96ffc4e8f04249ddeee6c0e7ef2b06be8c0afa"; - configureFlags = [ "-f-live-test" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base64-bytestring binary bytestring case-insensitive - conduit conduit-extra connection cryptonite cryptonite-conduit - digest directory exceptions filepath http-client http-client-tls - http-conduit http-types ini memory protolude raw-strings-qq - resourcet retry text time transformers unliftio unliftio-core - unordered-containers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minio/minio-hs#readme"; - description = "A MinIO Haskell Library for Amazon S3 compatible cloud storage"; - license = stdenv.lib.licenses.asl20; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, minimorph, stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.5.0.0"; - sha256 = "ee30db437e6f7012b8862061c842dfaae7e52ea46832fd743e891ca04999fa41"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base binary containers minimorph text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - configureFlags = [ "-fwin32-2-5-3" ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miso" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , http-types, lucid, network-uri, servant, servant-lucid, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "miso"; - version = "1.2.0.0"; - sha256 = "c224712081c23397499ba351e6ff2a18e9d3631d527c2f066bf8eddc61c9d023"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data http-types lucid - network-uri servant servant-lucid text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmjio/miso"; - description = "A tasty Haskell front-end framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, hspec, hspec-smallcheck, mtl, QuickCheck - , smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.4.0.1"; - sha256 = "af304e7ef49d57a42a10af6312e7968eaaf156de75f9867dc9968cd2c8c2d381"; - libraryHaskellDepends = [ - base hspec hspec-smallcheck mtl QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "716ec75fc8eb573c9c6ab327a9658685f5131eacff69fbbc72289cdd0133e0ff"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers, deepseq - , dlist, email-validate, foldl, hashable, html-entity-map, lucid - , megaparsec, microlens, microlens-th, modern-uri, mtl - , parser-combinators, stdenv, text, text-metrics - , unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.7.1"; - sha256 = "d60458bd46649a5fa43da3ca25ccb38618adb7d392b29b018ce581c9042aec2a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers deepseq dlist email-validate - foldl hashable html-entity-map lucid megaparsec microlens - microlens-th modern-uri mtl parser-combinators text text-metrics - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory - , ghc-syntax-highlighter, gitrev, lucid, megaparsec, mmark - , mmark-ext, optparse-applicative, stache, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "mmark-cli"; - version = "0.0.5.0"; - sha256 = "7ec1e69f4ce0ed638f8a979f0da2e3173d2c034ffd23b9b166a95317b0b81997"; - revision = "2"; - editedCabalFile = "1kpxrf3gwcl0l8jqq3dic49705p338rcvach95vp1g1jjpwd8kbj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson base bytestring directory ghc-syntax-highlighter gitrev lucid - megaparsec mmark mmark-ext optparse-applicative stache text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-cli"; - description = "Command line interface to the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-ext" = callPackage - ({ mkDerivation, base, foldl, ghc-syntax-highlighter, lucid - , microlens, mmark, modern-uri, skylighting, stdenv, text - }: - mkDerivation { - pname = "mmark-ext"; - version = "0.2.1.2"; - sha256 = "2ca4d826e1714a0079f409a35a1f413870dbe95b9f7d5b7d3c734224eddf84e8"; - revision = "1"; - editedCabalFile = "10dlh96l6fdbpl1slr8v022735z9zkdszd1aziid5ml3gf63ssd8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base foldl ghc-syntax-highlighter lucid microlens mmark modern-uri - skylighting text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-ext"; - description = "Commonly useful extensions for the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.3"; - sha256 = "7923f7ad6260a05aaa8175b9f2a250f5bb63187427681171bd36d29a6cf2da65"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmtf" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , data-msgpack, deepseq, http-conduit, stdenv, text - }: - mkDerivation { - pname = "mmtf"; - version = "0.1.3.1"; - sha256 = "2c4260e96f7d38ceeec26f5b73a9373943344ae2ceba667228aa508c3a926ff6"; - libraryHaskellDepends = [ - array base binary bytestring containers data-msgpack deepseq - http-conduit text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmactep/mmtf#readme"; - description = "Macromolecular Transmission Format implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.3.1.0"; - sha256 = "05220a231996dc75fbfe126639499d0ac6765a23f59fff354ecadd9c85a227de"; - revision = "2"; - editedCabalFile = "0slfswzl4khpn0z8g7frn63gx7hw9n7nc3yff659q18nq7c6vjxd"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "modular" = callPackage - ({ mkDerivation, base, ghc-typelits-knownnat, stdenv }: - mkDerivation { - pname = "modular"; - version = "0.1.0.8"; - sha256 = "430b462330bd795c554f1fe87073022216abb0cea3a872fddd6e864faa3aefc5"; - libraryHaskellDepends = [ base ghc-typelits-knownnat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pgujjula/modular#readme"; - description = "Type-safe modular arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.31"; - sha256 = "adde9c21da5ca159c0240a91daccd228c18dc990ba0b2e229ba1b4029701992b"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.11"; - sha256 = "dba2d125ecebdee0600fd5f1b750f7ccec5345f3be6e20f7191efb876d48857f"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-logger-syslog" = callPackage - ({ mkDerivation, base, bytestring, fast-logger, hsyslog - , monad-logger, stdenv, text, transformers - }: - mkDerivation { - pname = "monad-logger-syslog"; - version = "0.1.6.0"; - sha256 = "43e6348cb27c128062b7f5c9ef3ae5698ddaf40073543f9041210f02a80399d8"; - libraryHaskellDepends = [ - base bytestring fast-logger hsyslog monad-logger text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-logger-syslog"; - description = "syslog output for monad-logger"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.5.1"; - sha256 = "c65a4a3c3e05757c251557b392f2cc7edcc09c2c46cbb0e72f4efe291eb85bff"; - libraryHaskellDepends = [ - array base containers primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-metrics" = callPackage - ({ mkDerivation, base, clock, ekg-core, exceptions, hashable - , microlens, mtl, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "monad-metrics"; - version = "0.2.1.4"; - sha256 = "8e1d9222f8ea7cd3c08f78d8cfaf436e3bb3e247294d44414c8e0f86039c0341"; - libraryHaskellDepends = [ - base clock ekg-core exceptions hashable microlens mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-metrics#readme"; - description = "A convenient wrapper around EKG metrics"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.5"; - sha256 = "823ad5666cbcaefe2c6e0ff131daa0713dff9b3b534fb809643b869e5e4a15a9"; - revision = "1"; - editedCabalFile = "17l7zjykf5iqjmw1pq4iwls7v9x9d3in94iikxabx43q5l2iccsm"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mongoDB" = callPackage - ({ mkDerivation, array, base, base16-bytestring, base64-bytestring - , binary, bson, bytestring, conduit, conduit-extra, containers - , cryptohash, data-default-class, hashtables, lifted-base - , monad-control, mtl, network, nonce, parsec, pureMD5, random - , random-shuffle, resourcet, stdenv, stm, tagged, text, time, tls - , transformers, transformers-base - }: - mkDerivation { - pname = "mongoDB"; - version = "2.5.0.0"; - sha256 = "ed7bbd423d5c14f262c43fd4c61e5146de4cc94a49bc70736942efa4b980f497"; - libraryHaskellDepends = [ - array base base16-bytestring base64-bytestring binary bson - bytestring conduit conduit-extra containers cryptohash - data-default-class hashtables lifted-base monad-control mtl network - nonce parsec pureMD5 random random-shuffle resourcet stm tagged - text time tls transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mongodb-haskell/mongodb"; - description = "Driver (client) for MongoDB, a free, scalable, fast, document DBMS"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.15.1"; - sha256 = "c2df5b79ed2f88f2ee313e57c1d591d4463788e20d39e439297eec5ba5835ddf"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-keys" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, keys - , mono-traversable, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "mono-traversable-keys"; - version = "0.1.0"; - sha256 = "bc85929322e287a8d6c4ab2f8beede6d99417fc8c23c519b9719bbe68125d477"; - libraryHaskellDepends = [ - base bytestring containers hashable keys mono-traversable - semigroups text transformers unordered-containers vector - vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/mono-traversable-keys#readme"; - description = "Type-classes for interacting with monomorphic containers with a key"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-extras" = callPackage - ({ mkDerivation, base, groups, semigroupoids, semigroups, stdenv }: - mkDerivation { - pname = "monoid-extras"; - version = "0.5.1"; - sha256 = "67b8b06e1d14ff3ff221827ab2e44eb5b439071ff5044349f961b464f19bd975"; - revision = "1"; - editedCabalFile = "0b8x5d6vh7mpigvjvcd8f38a1nyzn1vfdqypslw7z9fgsr742913"; - libraryHaskellDepends = [ base groups semigroupoids semigroups ]; - doHaddock = false; - doCheck = false; - description = "Various extra monoid-related definitions and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "0.4.6.1"; - sha256 = "d097876d8778fc550a071fc5fb564e8969903e8022c5f2dc25697bd8269daea6"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoidal-containers" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, hashable, lens - , newtype, semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "monoidal-containers"; - version = "0.4.0.0"; - sha256 = "a132b8adc82cd132ffdf1079b137176a2ccb9c80603cb17ec92f0c753a14b096"; - revision = "1"; - editedCabalFile = "18m2r5kfvkss8vh537vh2k4zbpncmwadg1g4pzsw0rdmkyn7lyjd"; - libraryHaskellDepends = [ - aeson base containers deepseq hashable lens newtype semigroups - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bgamari/monoidal-containers"; - description = "Containers with monoidal accumulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "more-containers" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "more-containers"; - version = "0.2.2.0"; - sha256 = "07295037809930acccd73c8b15e73b28ac0342db18d780bc46c0f0c7dda693c4"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/more-containers"; - description = "A few more collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mpi-hs" = callPackage - ({ mkDerivation, base, binary, bytestring, c2hs, cereal - , monad-loops, openmpi, stdenv, store - }: - mkDerivation { - pname = "mpi-hs"; - version = "0.5.3.0"; - sha256 = "33cf1250003cf27f3a867ea40d1f68b107a0a159fd882593e83f70305d27557c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring cereal monad-loops store - ]; - librarySystemDepends = [ openmpi ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base binary ]; - executableSystemDepends = [ openmpi ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/eschnett/mpi-hs#readme"; - description = "MPI bindings for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {inherit (pkgs) openmpi;}; - "msgpack" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, deepseq, hashable, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "msgpack"; - version = "1.0.1.0"; - sha256 = "e7b4ac6e6cd8e5d062fd95e46b68f6e78f8d98208de7bcc4d0b8af065b4e4bd2"; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 deepseq - hashable mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "A Haskell implementation of MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "msgpack-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, msgpack - , scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "msgpack-aeson"; - version = "0.1.0.0"; - sha256 = "72605d87d66c25cfce95e361fe6eba526fb2ed23ccea727c28c948564a9cf6f9"; - libraryHaskellDepends = [ - aeson base bytestring deepseq msgpack scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://msgpack.org/"; - description = "Aeson adapter for MessagePack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.2"; - sha256 = "1955398fe2115674f47f553b2caaf928c6aa3424271a5cd13bc191e54bfe3a9e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multipart" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, stringsearch }: - mkDerivation { - pname = "multipart"; - version = "0.1.3"; - sha256 = "9f60512e7b04c78442bd7c9de621597f6f2c4288b3bc1bb2834d08b5bd2796f4"; - revision = "1"; - editedCabalFile = "037ngpayaisc1jgcxyixy7lx42p2mz950k6wb0pl6dkc951hl88c"; - libraryHaskellDepends = [ base bytestring parsec stringsearch ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/silkapp/multipart"; - description = "HTTP multipart split out of the cgi package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multiset" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "multiset"; - version = "0.3.4.3"; - sha256 = "79fcae15a5d3ce28f0b973ad90290f7451396e81cc92007456ce2bb49b9415c4"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "The Data.MultiSet container type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.2"; - sha256 = "c5422b078a17b6057c83d18c984d84e7b7974b73e658b9dfbc4f5ea6a49ed743"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur3" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "murmur3"; - version = "1.0.3"; - sha256 = "102c81e0e6ae604f51bccced6d2d493f4de0b65e856cd0492a17f9f8e4d51f2a"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plaprade/murmur3"; - description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.1"; - sha256 = "ac8bf93d36fc766f54a54b72ddf71d1ab90864ca86bdce3415d2e69823fdb348"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.1.0"; - sha256 = "a3ae5a66ae4be6d098f9194e7c83b3c21e885821a47a692c50885c4045be8429"; - libraryHaskellDepends = [ base mwc-random primitive transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability-transition" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, hspec, logging-effect - , mtl, mwc-probability, primitive, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability-transition"; - version = "0.4"; - sha256 = "3e44b6f3f3b2a739776484e7d4ab98ab1d5c7e50bcba53a40d2f0ac96003e768"; - libraryHaskellDepends = [ - base exceptions ghc-prim hspec logging-effect mtl mwc-probability - primitive QuickCheck transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/mwc-probability-transition"; - description = "A Markov stochastic transition operator with logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.14.0.0"; - sha256 = "00370edaa60a51c86663868ecc2b1995824970001875cec458e9acc13511efa2"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.7"; - sha256 = "ef2d7bc6791171f0c5efa8a6b40c2be386867e8b0c72580343a6646d514972d9"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-haskell" = callPackage - ({ mkDerivation, base, binary, binary-ieee754, binary-parsers - , blaze-textual, bytestring, bytestring-lexing, cryptonite - , io-streams, memory, monad-loops, network, scientific, stdenv - , tcp-streams, text, time, tls, vector, wire-streams, word24 - }: - mkDerivation { - pname = "mysql-haskell"; - version = "0.8.4.2"; - sha256 = "5f51eb5a77934cd9046d85bce7477288752e3de0d4119111493d5bc967e2e9d1"; - libraryHaskellDepends = [ - base binary binary-ieee754 binary-parsers blaze-textual bytestring - bytestring-lexing cryptonite io-streams memory monad-loops network - scientific tcp-streams text time tls vector wire-streams word24 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/mysql-haskell"; - description = "pure haskell MySQL driver"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-haskell-nem" = callPackage - ({ mkDerivation, base, bytestring, io-streams, mysql-haskell - , scientific, stdenv, text, time - }: - mkDerivation { - pname = "mysql-haskell-nem"; - version = "0.1.0.0"; - sha256 = "7a0868b76edc96a7aff7860f96436b9040f6cb9319dd67f68bfd700948721f0d"; - libraryHaskellDepends = [ - base bytestring io-streams mysql-haskell scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lorenzo/mysql-haskell-nem#readme"; - description = "Adds a interface like mysql-simple to mysql-haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "n2o" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv, text - }: - mkDerivation { - pname = "n2o"; - version = "0.11.1"; - sha256 = "674d30b2971f7aaf9fee85b82767895fdcb012ab1df90b8ab7ed49b1858e6f7b"; - libraryHaskellDepends = [ base binary bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xafizoff/n2o#readme"; - description = "Abstract Protocol Loop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "named" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "named"; - version = "0.3.0.1"; - sha256 = "3262c1c6120fa5c27c0dd1aa48c5e246fcc210be0f0c71691391190b1726d736"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/monadfix/named"; - description = "Named parameters (keyword arguments) for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.3.0.0"; - sha256 = "0be38f6a22afb69ddda5a3cae095b51835bdae853256403e97078679a9fba526"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, megaparsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.5"; - sha256 = "0c3d5204ca80713461b5b5411bdaceade0ec7a174c04104e65dd5d79fd02cb26"; - libraryHaskellDepends = [ - base base-prelude megaparsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-carray" = callPackage - ({ mkDerivation, array, base, carray, netlib-ffi, stdenv - , transformers - }: - mkDerivation { - pname = "netlib-carray"; - version = "0.1"; - sha256 = "a577d19a79f7360d7916185e92feabdc42723a130ac3794e011655de3ba90466"; - libraryHaskellDepends = [ - array base carray netlib-ffi transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-carray/"; - description = "Helper modules for CArray wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-comfort-array" = callPackage - ({ mkDerivation, base, comfort-array, netlib-ffi, stdenv - , transformers - }: - mkDerivation { - pname = "netlib-comfort-array"; - version = "0.0.0.1"; - sha256 = "e32e5eabca4549cdd8dbd71c58acf14377d389317b999b25b37d62f9100d976c"; - libraryHaskellDepends = [ - base comfort-array netlib-ffi transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-comfort-array/"; - description = "Helper modules for comfort-array wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, guarded-allocation, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1.1"; - sha256 = "211016f9dc28f0519b1151ce5b1f74e8371a32f53fdb34c69277f099d82b2e47"; - libraryHaskellDepends = [ - base guarded-allocation storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.3"; - sha256 = "68fcb39e7097ccfd0327d36588d18faea438c389a5310d9ea4a91ec74b809d9d"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "netrc" = callPackage - ({ mkDerivation, base, bytestring, deepseq, parsec, stdenv }: - mkDerivation { - pname = "netrc"; - version = "0.2.0.0"; - sha256 = "9a5e07efa44f4b715b110aa4f9687e2b75458fb7537a2f4f1a3582c9e2e82a86"; - revision = "6"; - editedCabalFile = "0mn0ar2xhjdsm50kmpw5ndvbyfmc30b3x0bx291d2ml7hqspnnsw"; - libraryHaskellDepends = [ base bytestring deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/netrc"; - description = "Parser for .netrc files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.3.0"; - sha256 = "cf3f08980e8e52190301d33db3b1fe7f02bcf5d276a74a8b8283b79e72bf7d5d"; - revision = "1"; - editedCabalFile = "1j8h6m4cj1ykxrsxmjiyb1c4mv6cawssgb8phl0aijrjn3b79f2b"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "network"; - version = "2.8.0.1"; - sha256 = "61f55dbfed0f0af721a8ea36079e9309fcc5a1be20783b44ae500d9e4399a846"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-anonymous-i2p" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions, mtl - , network, network-attoparsec, network-simple, stdenv, text - , transformers, uuid - }: - mkDerivation { - pname = "network-anonymous-i2p"; - version = "0.10.0"; - sha256 = "cff5796c36c1ebbb969e5433538eb3f3979acef9825a7bfb683ed002023fff2c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions mtl network - network-attoparsec network-simple text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-anonymous-i2p"; - description = "Haskell API for I2P anonymous networking"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, enclosed-exceptions - , exceptions, lifted-base, monad-control, mtl, network, stdenv - , transformers - }: - mkDerivation { - pname = "network-attoparsec"; - version = "0.12.2"; - sha256 = "9790a9bad286ab1474dadbece3e4b2e1dd068d4ede3847cb73bcd66386bf08f0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring enclosed-exceptions exceptions - lifted-base monad-control mtl network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solatis/haskell-network-attoparsec"; - description = "Utility functions for running a parser against a socket"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-bsd" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "network-bsd"; - version = "2.8.0.0"; - sha256 = "25ded905970d2a22bfea0427534870d890b3cfc3f7867bf8f5c62391f3e3cb35"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-bsd"; - description = "Network.BSD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-byte-order" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "network-byte-order"; - version = "0.1.3.0"; - sha256 = "e38b5213fc01c86f4afe3be6e85a5375d028d1acab2a74522d682583d783e4ce"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Network byte order utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.2"; - sha256 = "ecfd60e162de3993a71906293dcf2ec8bd4c794471eb8dca13746c1d8fd3ad7f"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-house" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "network-house"; - version = "0.1.0.2"; - sha256 = "071fbc22fc516175e78235d9e29ccefd8eec7c3caa2e6de74dddf62cdbffab43"; - libraryHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/network-house"; - description = "data and parsers for Ethernet, TCP, UDP, IPv4, IPv6, ICMP, DHCP, TFTP"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.3"; - sha256 = "e01dcc4389f3800536066ca150b6b5130d9d4b7fe7ed8e98ae7d92f3f7b1955c"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-messagepack-rpc" = callPackage - ({ mkDerivation, base, bytestring, data-msgpack, safe-exceptions - , stdenv, text, unordered-containers - }: - mkDerivation { - pname = "network-messagepack-rpc"; - version = "0.1.2.0"; - sha256 = "7ed2442333de97512d92cd029bf802fc68a0d757df9787cdb4debbbde67c0a85"; - libraryHaskellDepends = [ - base bytestring data-msgpack safe-exceptions text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iij-ii/direct-hs/tree/master/network-messagepack-rpc"; - description = "MessagePack RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-multicast" = callPackage - ({ mkDerivation, base, network, network-bsd, stdenv }: - mkDerivation { - pname = "network-multicast"; - version = "0.3.2"; - sha256 = "830a4ae819e50d83f945eae0715d6574643f64d839b9e6f86ac64bbe2e881b72"; - libraryHaskellDepends = [ base network network-bsd ]; - doHaddock = false; - doCheck = false; - description = "Simple multicast library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "network-simple" = callPackage - ({ mkDerivation, base, bytestring, network, network-bsd - , safe-exceptions, socks, stdenv, transformers - }: - mkDerivation { - pname = "network-simple"; - version = "0.4.5"; - sha256 = "07a0bf25972a5fb42ab68f71db00b2758c6b15f09f73b1324550749d397b179e"; - libraryHaskellDepends = [ - base bytestring network network-bsd safe-exceptions socks - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple"; - description = "Simple network sockets usage patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-simple-tls" = callPackage - ({ mkDerivation, base, bytestring, data-default, network - , network-simple, safe-exceptions, stdenv, tls, transformers, x509 - , x509-store, x509-system, x509-validation - }: - mkDerivation { - pname = "network-simple-tls"; - version = "0.3.2"; - sha256 = "5077aed7b57c25001f8f5305fce93b4e184399e5d3dc6805931cf8bcad3fdc25"; - libraryHaskellDepends = [ - base bytestring data-default network network-simple safe-exceptions - tls transformers x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/network-simple-tls"; - description = "Simple interface to TLS secured network sockets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.4"; - sha256 = "5b870bffb4a61b29616bf9520733c7f16fd455ac2e678cc156d61ffa47c4ec47"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2.2.0"; - sha256 = "3a00ffd1bb48a81e09f8be6510fa4c642ba1482b2f8d4777af1b5dd06c55ebac"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.4"; - sha256 = "007f3dd80d759b09534dd215b040d1a435b7d2612be3d0a365c27c60c973f932"; - revision = "1"; - editedCabalFile = "1id9a6prj2bzdsyfsfr0pnfy9p8v9wlw59x12fny6y2szfcxcrv7"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "no-value" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "no-value"; - version = "1.0.0.0"; - sha256 = "8ed237efdab93eb273596e03cc391803640acb189b35a863e4e440451aea9fc9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/no-value#readme"; - description = "A type class for choosing sentinel-like values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3.2"; - sha256 = "1b10fc14386a9152e2bf9d1cc5383326ffcd96bc6a323e94b65ec4ae7a688748"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.4"; - sha256 = "8071a8680bd44f81e7660c74c495302a34344a42d8ccdc3e869f0e29a398dd28"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "nonempty-containers" = callPackage - ({ mkDerivation, base, comonad, containers, deepseq, semigroupoids - , stdenv, these - }: - mkDerivation { - pname = "nonempty-containers"; - version = "0.3.1.0"; - sha256 = "d4b893c8aae14bc481ee990c6672376705d1a95856b464264707106eb6f3d495"; - libraryHaskellDepends = [ - base comonad containers deepseq semigroupoids these - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/nonempty-containers#readme"; - description = "Non-empty variants of containers data types, with full API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nonemptymap" = callPackage - ({ mkDerivation, base, containers, semigroupoids, stdenv }: - mkDerivation { - pname = "nonemptymap"; - version = "0.0.6.0"; - sha256 = "24bd4c4c3569ca103352493fc61739574eda0587532f8c85d959795d6728fadf"; - libraryHaskellDepends = [ base containers semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/nonemptymap#readme"; - description = "A NonEmptyMap Implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "not-gloss" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, GLUT, OpenGL - , OpenGLRaw, spatial-math, stdenv, time, vector - , vector-binary-instances - }: - mkDerivation { - pname = "not-gloss"; - version = "0.7.7.0"; - sha256 = "4740d1ee04015bca98092f72c11414326d1bd08473aead61f6678773fb8b835f"; - libraryHaskellDepends = [ - base binary bmp bytestring GLUT OpenGL OpenGLRaw spatial-math time - vector vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - description = "Painless 3D graphics, no affiliation with gloss"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nowdoc" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell }: - mkDerivation { - pname = "nowdoc"; - version = "0.1.1.0"; - sha256 = "4ffe490b2c161a53f0d636d54269df357d41c7b212c70dcb1c7e2cffd33f5268"; - revision = "1"; - editedCabalFile = "074xgrxs8ynq29bsx66an03q0457f80ga9jf4sqi0q34jgfpmbcv"; - libraryHaskellDepends = [ base bytestring template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/nowdoc#readme"; - description = "Here document without variable expansion like PHP Nowdoc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nqe" = callPackage - ({ mkDerivation, base, conduit, containers, hashable, mtl, stdenv - , stm, unique, unliftio - }: - mkDerivation { - pname = "nqe"; - version = "0.6.1"; - sha256 = "adf772bca05f8445e585537e3807df394a8d7c7e3a095fd532ee55cc60f30dd0"; - libraryHaskellDepends = [ - base conduit containers hashable mtl stm unique unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/nqe#readme"; - description = "Concurrency library in the style of Erlang/OTP"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.3"; - sha256 = "bda68ef2893202432be55a7749269ec7660781cba5e2049f9ad474531e21778b"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3.1"; - sha256 = "c9e4b6f20c47ab38faea9a6a230a722f3b50462989d1b0ad1e7bfd1cb8f46114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numhask"; - version = "0.3.1"; - sha256 = "e7bc2f55f642ee9ef06c19a23545f58dbce9ae9387ceb17ab96626ae8f52f964"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "numeric classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.2"; - sha256 = "98787dc0dd1757e6ed9c37e7d735b448fb9a9281988d97625292c9d8e16a732b"; - revision = "1"; - editedCabalFile = "0892xm8vyyvl1glg4vniz8r5ydg1nz3zmbpgk5mxdih6wi6nmpy4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nuxeo" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-conduit, http-types, optparse-applicative - , stdenv, text, time, url - }: - mkDerivation { - pname = "nuxeo"; - version = "0.3.2"; - sha256 = "e230a92a3f4b2f56128bfce8b478cdedcbb68b5a8b99d60e895b24af58b61954"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-conduit - http-types text time url - ]; - executableHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/nuxeo#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nvim-hs" = callPackage - ({ mkDerivation, base, bytestring, cereal, cereal-conduit, conduit - , containers, data-default, deepseq, foreign-store, hslogger - , megaparsec, messagepack, mtl, network, optparse-applicative, path - , path-io, prettyprinter, prettyprinter-ansi-terminal, resourcet - , stdenv, stm, streaming-commons, template-haskell, text, time - , time-locale-compat, transformers, transformers-base - , typed-process, unliftio, unliftio-core, utf8-string, vector, void - }: - mkDerivation { - pname = "nvim-hs"; - version = "2.1.0.2"; - sha256 = "36870c61715effedd59a124ecd60c2a8b981fff1ec95aeb063c98e2060deb42a"; - revision = "1"; - editedCabalFile = "1v52rmk7hbdn40964r50jjz3lanfc5q8xrdqpv1wmwviw3j4rip8"; - libraryHaskellDepends = [ - base bytestring cereal cereal-conduit conduit containers - data-default deepseq foreign-store hslogger megaparsec messagepack - mtl network optparse-applicative path path-io prettyprinter - prettyprinter-ansi-terminal resourcet stm streaming-commons - template-haskell text time time-locale-compat transformers - transformers-base typed-process unliftio unliftio-core utf8-string - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "nvim-hs-contrib" = callPackage - ({ mkDerivation, base, bytestring, data-default, directory - , filepath, messagepack, mtl, nvim-hs, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text, time, utf8-string - , yaml - }: - mkDerivation { - pname = "nvim-hs-contrib"; - version = "2.0.0.0"; - sha256 = "f9affcb5770d32479ac8cabb21397569d2d4619c9638db0c09ea2ea1e1de1c77"; - libraryHaskellDepends = [ - base bytestring data-default directory filepath messagepack mtl - nvim-hs prettyprinter prettyprinter-ansi-terminal text time - utf8-string yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/neovimhaskell/nvim-hs-contrib"; - description = "Haskell plugin backend for neovim"; - license = stdenv.lib.licenses.asl20; - }) {}; - "nvvm" = callPackage - ({ mkDerivation, base, bytestring, c2hs, Cabal, cuda, directory - , filepath, stdenv, template-haskell - }: - mkDerivation { - pname = "nvvm"; - version = "0.9.0.0"; - sha256 = "0bc2367b662ce414aa5f989cc1d1266daa0c552868cb374f304bfca29957ef01"; - setupHaskellDepends = [ - base Cabal cuda directory filepath template-haskell - ]; - libraryHaskellDepends = [ base bytestring cuda template-haskell ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcdonell/nvvm"; - description = "FFI bindings to NVVM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "oblivious-transfer" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, memory, protolude - , random, stdenv - }: - mkDerivation { - pname = "oblivious-transfer"; - version = "0.1.0"; - sha256 = "5f1fcaf951a7828bbac3aef6ff8c540b187b0117f51b49428d018712eabd05cf"; - revision = "1"; - editedCabalFile = "1v9js45kc94zirg530d0f3r9wwsx60xnz7diqzvfxlbvw01649yk"; - libraryHaskellDepends = [ - base bytestring cryptonite memory protolude random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/oblivious-transfer#readme"; - description = "An implementation of the Oblivious Transfer protocol in Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, parsec, semigroups, stdenv - , template-haskell, text, time, transformers, unixODBC - , unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.2.2"; - sha256 = "659a124883696168daf3cd20403394616a56837c904810073183ce41769e7336"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting parsec - semigroups template-haskell text time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis" = callPackage - ({ mkDerivation, base, HTTP, network, network-uri, stdenv }: - mkDerivation { - pname = "oeis"; - version = "0.3.10"; - sha256 = "bbfa724d9f69f14bcc95a5ecbd94a3e0ec1b072b69a5413c70174d2406884529"; - libraryHaskellDepends = [ base HTTP network network-uri ]; - doHaddock = false; - doCheck = false; - description = "Interface to the Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oeis2" = callPackage - ({ mkDerivation, aeson, base, containers, http-conduit, lens - , lens-aeson, stdenv, text, vector - }: - mkDerivation { - pname = "oeis2"; - version = "1.0.3"; - sha256 = "97ef0e95f3b78efd696eb0d4f0cab27e37a3f45aa9831057f0b5a9f78ca7ab11"; - libraryHaskellDepends = [ - aeson base containers http-conduit lens lens-aeson text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23prime/oeis2#readme"; - description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.4.0"; - sha256 = "798ceb6b799c22811ad40289f0eaa54037028cc637cbd0df35a770bcf2efecf2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.4"; - sha256 = "30bd9195db5c55bc6f9252d10ac03855c792c6dd2ff401f757c155f2d838e92b"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/kaction/haskell-once"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "opaleye" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, contravariant, postgresql-simple, pretty - , product-profunctors, profunctors, scientific, semigroups, stdenv - , text, time, time-locale-compat, transformers, uuid, void - }: - mkDerivation { - pname = "opaleye"; - version = "0.6.7004.1"; - sha256 = "e12d1fdf762524997713db4538fe4b9477ff0c48e939d0c712e842c4276e4f26"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive - contravariant postgresql-simple pretty product-profunctors - profunctors scientific semigroups text time time-locale-compat - transformers uuid void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; - description = "An SQL-generating DSL targeting PostgreSQL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-witness" = callPackage - ({ mkDerivation, base, constraints, hashable, random, stdenv - , template-haskell, transformers, witness - }: - mkDerivation { - pname = "open-witness"; - version = "0.4.0.1"; - sha256 = "0770500d6eeb301fc92d30bec2ccef55b05beb0200125fcbddb6b50836034111"; - libraryHaskellDepends = [ - base constraints hashable random template-haskell transformers - witness - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/open-witness"; - description = "open witnesses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.2"; - sha256 = "2b0655a64ee36d529030df04f09b6fdf63749f64ec3d29b4f1861cf9c69a05e2"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "git://klacansky.com/openexr-write.git"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.2"; - sha256 = "5342621eaed3cacada7304aae0e3537e8c18b34d35e1457b00f95c7c27a529bd"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.mit; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.1.0"; - sha256 = "1ef36be24b2a1d2aee892891e6c7bd975830c38900dbb96a80e5df95c37c5482"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "openssl-streams" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, io-streams, network - , stdenv - }: - mkDerivation { - pname = "openssl-streams"; - version = "1.2.2.0"; - sha256 = "b966b06f579bc9d1f4698408deff77ff6f7047a083d7d44fbeb379af4cf5f466"; - revision = "1"; - editedCabalFile = "125bxb2axgpcq7rrpamfq0yz017i0ks9zsykh6hn0ifw3lxj1k29"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL io-streams network - ]; - doHaddock = false; - doCheck = false; - description = "OpenSSL network support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "optics-core" = callPackage - ({ mkDerivation, array, base, containers, indexed-profunctors - , stdenv, transformers - }: - mkDerivation { - pname = "optics-core"; - version = "0.2"; - sha256 = "287ff8c28cba855aa9d247f3ed6d476338039653e99a2f3312f9f5ce51571aa6"; - libraryHaskellDepends = [ - array base containers indexed-profunctors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics as an abstract interface: core definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.15.1.0"; - sha256 = "4db3675fd1e0594afdf079db46f4cd412d483835d703e7c07e1a1a37d6f046f3"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-enum" = callPackage - ({ mkDerivation, base, enum-text, fmt, optparse-applicative, stdenv - , text - }: - mkDerivation { - pname = "optparse-enum"; - version = "1.0.0.0"; - sha256 = "2340a91b5e33034bb75bf445c2182bdd1fa52719fd50642514a4daa0b5bb7c34"; - libraryHaskellDepends = [ - base enum-text fmt optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/optparse-enum#readme"; - description = "An enum-text based toolkit for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.1"; - sha256 = "009bf703d13e1e5833c74ac5bbfa324b85d5180eb80e89cb3f10d94a8a874e30"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, githash, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.1.2"; - sha256 = "02716473cc57ff1212c5174cc213f5b1bb744e680c222a4ae97e0b12f38400e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base githash optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ordered-containers" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "ordered-containers"; - version = "0.2.2"; - sha256 = "c75ac7330e70cd5d6ac0062b68033779cf15cd986d4ca20f838e016d466d22c9"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Set- and Map-like types that remember the order elements were inserted"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ormolu" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, exceptions - , ghc-lib-parser, gitrev, mtl, optparse-applicative, stdenv, syb - , text - }: - mkDerivation { - pname = "ormolu"; - version = "0.0.3.1"; - sha256 = "8fb635d49812aac4b50a5dc04fbf07a3d6e586825a04606d6b2e81d817d7765f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers dlist exceptions ghc-lib-parser mtl syb - text - ]; - executableHaskellDepends = [ - base ghc-lib-parser gitrev optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/ormolu"; - description = "A formatter for Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oset" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "oset"; - version = "0.4.0.1"; - sha256 = "5b9742f6ba0cd8363779ba4a239028209278a12c903abc0e59c70c718828d12c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/oset#readme"; - description = "An insertion-order-preserving set"; - license = stdenv.lib.licenses.mit; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.4.2"; - sha256 = "da47a26a684b3541542e4f4e7095d2a6bc69e9c47d6953db4baf9084b7ca467d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pairing" = callPackage - ({ mkDerivation, arithmoi, base, binary, bytestring, errors - , galois-field, integer-logarithms, memory, MonadRandom, protolude - , QuickCheck, random, stdenv, wl-pprint-text - }: - mkDerivation { - pname = "pairing"; - version = "0.4.1"; - sha256 = "9cdde6c89769ad011b42ace04c98dda00d3051ce953d342917d9f7dc15431c5e"; - libraryHaskellDepends = [ - arithmoi base binary bytestring errors galois-field - integer-logarithms memory MonadRandom protolude QuickCheck random - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/pairing#readme"; - description = "Bilinear pairings"; - license = stdenv.lib.licenses.mit; - }) {}; - "palette" = callPackage - ({ mkDerivation, array, base, colour, containers, MonadRandom - , stdenv - }: - mkDerivation { - pname = "palette"; - version = "0.3.0.2"; - sha256 = "9114496d98873d41b8b8e4f006e78dab674a74cec2d2d80cd1c97f22d9b04020"; - revision = "1"; - editedCabalFile = "0x536r15zzxlkf5p5a2x64qr5szdf9yh04vaiiwfhsm232qb6fjq"; - libraryHaskellDepends = [ - array base colour containers MonadRandom - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Utilities for choosing and creating color schemes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base - , base64-bytestring, binary, blaze-html, blaze-markup, bytestring - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doctemplates, exceptions, filepath, Glob - , haddock-library, hslua, hslua-module-system, hslua-module-text - , HsYAML, HTTP, http-client, http-client-tls, http-types, ipynb - , JuicyPixels, mtl, network, network-uri, pandoc-types, parsec - , process, random, safe, scientific, SHA, skylighting, split - , stdenv, syb, tagsoup, temporary, texmath, text, time - , unicode-transforms, unix, unordered-containers, vector, xml - , zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.7.3"; - sha256 = "a877203379ec5179716d6999f76352229d7f40f5bec70dbfa48c140848cef236"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base base64-bytestring binary - blaze-html blaze-markup bytestring case-insensitive cmark-gfm - containers data-default deepseq directory doctemplates exceptions - filepath Glob haddock-library hslua hslua-module-system - hslua-module-text HsYAML HTTP http-client http-client-tls - http-types ipynb JuicyPixels mtl network network-uri pandoc-types - parsec process random safe scientific SHA skylighting split syb - tagsoup temporary texmath text time unicode-transforms unix - unordered-containers vector xml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share/man/man1 - mv "man/"*.1 $out/share/man/man1/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-citeproc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , Cabal, containers, data-default, directory, filepath, hs-bibutils - , libyaml, mtl, network, old-locale, pandoc, pandoc-types, parsec - , rfc5051, safe, setenv, split, stdenv, syb, tagsoup, text, time - , unordered-containers, vector, xml-conduit, yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.16.2"; - sha256 = "5b6725b003474f19fd7de65f3371a015a7b210b42543fe952f2bc4c7d509b596"; - revision = "2"; - editedCabalFile = "0z7ia0f89lamrvnr75j7r6jhklkly0qcyplws9ww9rpbj9j7shyk"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - aeson base bytestring containers data-default directory filepath - hs-bibutils 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-csv2table" = callPackage - ({ mkDerivation, base, csv, pandoc, pandoc-types, stdenv, text }: - mkDerivation { - pname = "pandoc-csv2table"; - version = "1.0.7"; - sha256 = "4a237d031716e930977aadeee9314f543ba8036c63ca1329958c080b4a66de2c"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base csv pandoc pandoc-types text ]; - executableHaskellDepends = [ base csv pandoc pandoc-types ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/baig/pandoc-csv2table-filter"; - description = "Convert CSV to Pandoc Table Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "pandoc-markdown-ghci-filter" = callPackage - ({ mkDerivation, aeson, base, containers, ghcid, pandoc - , pandoc-types, stdenv, text - }: - mkDerivation { - pname = "pandoc-markdown-ghci-filter"; - version = "0.1.0.0"; - sha256 = "eabf55d6dbc7f5c4cd64b6bda194bc5a2bced33a1acdccd5f040053b398eb0d4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers ghcid pandoc pandoc-types text - ]; - executableHaskellDepends = [ - aeson base containers ghcid pandoc pandoc-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pandoc-markdown-ghci-filter#readme"; - description = "Pandoc-filter to evaluate `code` section in markdown and auto-embed output"; - license = stdenv.lib.licenses.mit; - }) {}; - "pandoc-pyplot" = callPackage - ({ mkDerivation, base, containers, data-default-class, deepseq - , directory, filepath, hashable, open-browser, optparse-applicative - , pandoc, pandoc-types, stdenv, template-haskell, temporary, text - , typed-process, yaml - }: - mkDerivation { - pname = "pandoc-pyplot"; - version = "2.1.5.1"; - sha256 = "6ece30d729524c240bb379aa70a87ca11b9b1cab4e4b6817dcfd7c5bf0b11580"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers data-default-class directory filepath hashable - pandoc pandoc-types temporary text typed-process yaml - ]; - executableHaskellDepends = [ - base data-default-class deepseq directory filepath open-browser - optparse-applicative pandoc pandoc-types template-haskell temporary - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LaurentRDC/pandoc-pyplot#readme"; - description = "A Pandoc filter to include figures generated from Python code blocks"; - license = stdenv.lib.licenses.mit; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.17.6.1"; - sha256 = "1834c2064918a21d346f399c4abcd424617a9a4f0f1e1a8e8ab9b590127edeb4"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://pandoc.org/"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pantry" = callPackage - ({ mkDerivation, 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 - , stdenv, 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"; - version = "0.1.1.2"; - sha256 = "f1e97cf5f2d7500c1fc461f53f12417f58857ed9d420a2d6fdc81f3693be3ad4"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/pantry#readme"; - description = "Content addressable Haskell package management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, ghc-prim, stdenv - }: - mkDerivation { - pname = "parallel"; - version = "3.2.2.0"; - sha256 = "170453a71a2a8b31cca63125533f7771d7debeb639700bdabdd779c34d8a6ef6"; - revision = "1"; - editedCabalFile = "0a3kn7arck8f2gwm8cwfkplsw4q9v9j6ifbhj1l3bmclmkwcckcj"; - libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "paripari" = callPackage - ({ mkDerivation, base, bytestring, parser-combinators, stdenv, text - }: - mkDerivation { - pname = "paripari"; - version = "0.6.0.1"; - sha256 = "26cc3ba2a3826e455805f6cf04dfd2f2a1971bd4362b8bbfc2f46a2f1acf02c5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring parser-combinators text - ]; - executableHaskellDepends = [ - base bytestring parser-combinators text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/paripari#readme"; - description = "Parser combinators with fast-path and slower fallback for error reporting"; - license = stdenv.lib.licenses.mit; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.9"; - sha256 = "3c469ddcee3a63ef790d88f676dcf99b9d90b8815112f18c17febafc9e8025a9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Parse command-line arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.14.0"; - sha256 = "c72c92e07ee1d2ec0a423b89fdc11e0863725675f3c2d5621509d9cb84545c8c"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-class" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-class"; - version = "1.0.0.0"; - sha256 = "029c4ec5e6b0efd0505f1051c29c02060ddab3018b9aef4c4ae96a99f58e1773"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/parsec-class"; - description = "Class of types that can be constructed from their text representation"; - license = stdenv.lib.licenses.mit; - }) {}; - "parsec-numbers" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numbers"; - version = "0.1.0"; - sha256 = "77019a4817712f6bfc61c9d148b680579955eb40d286f7766f7b0a90c726febf"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Utilities for parsing numbers from strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.1"; - sha256 = "03162e40cde50253529fa452165b681d5064d03ad07992800702156adfb6254d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parser-combinators-tests" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "parser-combinators-tests"; - version = "1.1.0"; - sha256 = "bfe20f39892aa75f7a5bfbc62c395e2a6107b3c7edbeed3e1a060f1c627b7d54"; - revision = "1"; - editedCabalFile = "0adgbzpylvk9p7ylxynsdrmqhhbh5pm8ww1s3nz3czl79y8lhh47"; - isLibrary = false; - isExecutable = false; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Test suite of parser-combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, binary, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.10"; - sha256 = "17b91f1318ca54679395b382a056df633fdb44fbb962eca66b1787f957af1a6c"; - libraryHaskellDepends = [ - attoparsec base base-orphans binary charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-semigroup" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-semigroup"; - version = "0.5.1.1"; - sha256 = "18d0ae9938707137514073ad338d6b52e22f48433c346f9062e9cd7cfdc916d8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chris-martin/partial-semigroup"; - description = "A partial binary associative operator"; - license = stdenv.lib.licenses.asl20; - }) {}; - "password" = callPackage - ({ mkDerivation, base, scrypt, stdenv, text }: - mkDerivation { - pname = "password"; - version = "0.1.0.1"; - sha256 = "79eaf0d698e09c3ad114d6344f2cc9097ec1d2d841f8838abb46c61867b22659"; - libraryHaskellDepends = [ base scrypt text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/password/password#readme"; - description = "plain-text password and hashed password datatypes and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "password-instances" = callPackage - ({ mkDerivation, aeson, base, http-api-data, password, persistent - , stdenv - }: - mkDerivation { - pname = "password-instances"; - version = "0.3.0.1"; - sha256 = "23d123275a5aa23319968fe4dfc6dc01a2870e672e30a90885316414809fa90f"; - libraryHaskellDepends = [ - aeson base http-api-data password persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/password/password-instances#readme"; - description = "typeclass instances for password package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell - }: - mkDerivation { - pname = "path"; - version = "0.6.1"; - sha256 = "4b8bd85a13395b4240c639b9cf804371854d5dac69158f661068bd3089a25e59"; - revision = "2"; - editedCabalFile = "05pgmg0w1mfwcmx9ad4p09xqxld8njhgwmgq38v7pr58czvmd6ks"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.4.2"; - sha256 = "23c7f203347bc20e5649476e9b5df662a09ffbb8c1a2f3e658935845621d1d4b"; - revision = "1"; - editedCabalFile = "02irjcw5rdcx9wvsb7mcanylp2bwaiacpfjjbcvqq1lhvqcyw73i"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-text-utf8" = callPackage - ({ mkDerivation, base, bytestring, path, safe-exceptions, stdenv - , text - }: - mkDerivation { - pname = "path-text-utf8"; - version = "0.0.1.2"; - sha256 = "f6c2652d23171ffa87f13d2c804630499b6b2210853aaf8008f4d593b5f41cfd"; - libraryHaskellDepends = [ - base bytestring path safe-exceptions text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chris-martin/path-text-utf8"; - description = "Read and write UTF-8 text files"; - license = stdenv.lib.licenses.asl20; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcf-font" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector, zlib - }: - mkDerivation { - pname = "pcf-font"; - version = "0.2.2.0"; - sha256 = "8a67d04240a7668e669414d1b4f531d290c79a63198e0ecf02cb0339bff098ef"; - libraryHaskellDepends = [ - base binary bytestring containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font"; - description = "PCF font parsing and rendering library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcf-font-embed" = callPackage - ({ mkDerivation, base, bytestring, pcf-font, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "pcf-font-embed"; - version = "0.1.2.0"; - sha256 = "c55d51ee6f959c9c05bb9d9adac3aad1cd87b2bba3cca7d3667d67f1a230fd51"; - libraryHaskellDepends = [ - base bytestring pcf-font template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michael-swan/pcf-font-embed"; - description = "Template Haskell for embedding text rendered using PCF fonts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, entropy - , primitive, random, stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.6"; - sha256 = "085012ff6a319ac9d4f69b1c62ea6fe1d69e723f30200cfe5d521d2058b41dd5"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.1.0"; - sha256 = "16f6bfaa320bba91cd0c1a502d871c1c7a3a2de2d58dfaa2d90dba6558d51b53"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pedersen-commitment" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, memory - , mtl, protolude, stdenv, text - }: - mkDerivation { - pname = "pedersen-commitment"; - version = "0.2.0"; - sha256 = "6793cc37efa22307c935636f15dae7670330a84a7435f36412ced3b81410b0b7"; - libraryHaskellDepends = [ - base bytestring containers cryptonite memory mtl protolude text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adjoint-io/pedersen-commitment#readme"; - description = "An implementation of Pedersen commitment schemes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pencil" = callPackage - ({ mkDerivation, base, data-default, directory, edit-distance - , filepath, hashable, hsass, mtl, pandoc, parsec, semigroups - , stdenv, text, time, unordered-containers, vector, xml, yaml - }: - mkDerivation { - pname = "pencil"; - version = "1.0.1"; - sha256 = "940980de5238e763aa88a17910f6bcdad862ccfda359d32636d76cca1a583428"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elben/pencil"; - description = "Static site generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "percent-format" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "percent-format"; - version = "0.0.1"; - sha256 = "7530a64ba6f1ac2b59bdc325f3a8a6f0006b4a24dc2cd86eb2b41ab46d460c09"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/percent-format#readme"; - description = "simple printf-style string formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peregrin" = callPackage - ({ mkDerivation, base, bytestring, postgresql-simple, stdenv, text - }: - mkDerivation { - pname = "peregrin"; - version = "0.3.0"; - sha256 = "4263682a514ae2b31b31a271ea9f7a2751eac5b32375cd9cf0bcd0ad92691b4a"; - libraryHaskellDepends = [ base bytestring postgresql-simple text ]; - doHaddock = false; - doCheck = false; - description = "Database migration support for use in other libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "persist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "persist"; - version = "0.1.1.4"; - sha256 = "a4f507229a2831a87813f11d1bdf720bf1b5cb7f15a2c2b28660f08f5da1253c"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/persist"; - description = "Minimal serialization library with focus on performance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.4"; - sha256 = "6d3abe73d61cf691bb1b5a412fa8a6d8fcc5cb3070176041ad8953b63ca5f8f9"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-types-HDBC-pg" = callPackage - ({ mkDerivation, base, bytestring, convertible, dlist, HDBC - , persistable-record, relational-query, relational-query-HDBC - , stdenv, text-postgresql - }: - mkDerivation { - pname = "persistable-types-HDBC-pg"; - version = "0.0.3.5"; - sha256 = "955c73edd056e1ecb6a3543d726070c3f219a67017ef18ac9ae75711f63cec2f"; - libraryHaskellDepends = [ - base bytestring convertible dlist HDBC persistable-record - relational-query relational-query-HDBC text-postgresql - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC and Relational-Record instances of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, blaze-markup, bytestring, conduit, containers - , fast-logger, http-api-data, monad-logger, mtl, old-locale - , path-pieces, resource-pool, resourcet, scientific, silently - , stdenv, tagged, template-haskell, text, time, transformers - , unliftio-core, unordered-containers, vector, void - }: - mkDerivation { - pname = "persistent"; - version = "2.9.2"; - sha256 = "497e5d2c96aaa370f147ece995a798d1ea217e35996f908d42681f41ec1c4af3"; - revision = "1"; - editedCabalFile = "1v6ll8aggz6gvz53mzfrnb4jsc25dspk39x3vcxpzqkdp8rgz1am"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html blaze-markup - bytestring conduit containers fast-logger http-api-data - monad-logger mtl old-locale path-pieces resource-pool resourcet - scientific silently tagged template-haskell text time transformers - unliftio-core unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-iproute" = callPackage - ({ mkDerivation, aeson, aeson-iproute, base, bytestring - , http-api-data, iproute, path-pieces, persistent, stdenv, text - }: - mkDerivation { - pname = "persistent-iproute"; - version = "0.2.4"; - sha256 = "054ffb553dd2effa02b4c3fb11dfd66fc724ef16ee2dcbd0d8485af6a8cd57d3"; - libraryHaskellDepends = [ - aeson aeson-iproute base bytestring http-api-data iproute - path-pieces persistent text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/greydot/persistent-iproute"; - description = "Persistent instances for types in iproute"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.9.0"; - sha256 = "ee4b17bd5ab8f724ad6cb98941418fca37eeaacb2ba7f21c2c7e2792898a4129"; - revision = "1"; - editedCabalFile = "0xvis08x4ajayp73f6j0czpksn309f3anv5kklxa9r6j8j5qkhvz"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , io-streams, monad-logger, mysql-haskell, network, persistent - , persistent-template, resource-pool, resourcet, stdenv, text, time - , tls, transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-mysql-haskell"; - version = "0.5.2"; - sha256 = "56c27a690be1ebeb1b6a74d7b3fe7fd9894d92f14c82f3675945c6b758c282cd"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "A pure haskell backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-pagination" = callPackage - ({ mkDerivation, base, conduit, esqueleto, foldl, microlens, mtl - , persistent, stdenv - }: - mkDerivation { - pname = "persistent-pagination"; - version = "0.1.1.0"; - sha256 = "0a9e10b196ec795d16c3b7e56fdb4ddefb16040928f69b33e9cfb7b49fb055bc"; - libraryHaskellDepends = [ - base conduit esqueleto foldl microlens mtl persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/persistent-pagination#readme"; - description = "Efficient and correct pagination for persistent or esqueleto queries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.9.1"; - sha256 = "f8d2be7aea65149da7dd96449394c38acf676ffc74b0638d0f9ba5230da6250a"; - revision = "1"; - editedCabalFile = "186fbykla4hpsl14l1ccjr3rfdabl47c9x28m290477ilaygk685"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-qq" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, persistent, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "persistent-qq"; - version = "2.9.1"; - sha256 = "ed3d56027d6719ec58bfe98da232066191876e20b597ef99a79c504d526d9bff"; - libraryHaskellDepends = [ - base haskell-src-meta mtl persistent template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/persistent#readme"; - description = "Provides a quasi-quoter for raw SQL for persistent"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, old-locale, persistent, resource-pool - , resourcet, sqlite, stdenv, text, time, transformers - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.9.3"; - sha256 = "985b9f7323e88f784ff93dd6f5bc65cb0183435dea052a5d238dec1e11b28b8f"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - old-locale persistent resource-pool resourcet text time - transformers unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, aeson-compat, base, bytestring, containers - , ghc-prim, http-api-data, monad-control, monad-logger, path-pieces - , persistent, stdenv, tagged, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.6.0"; - sha256 = "5bfa8cbe7c25bdef33cc6d6ece1673f847c2a56860f57c69d8d2d0ecacf82173"; - revision = "1"; - editedCabalFile = "1p7j3lz0jrczrl25bw7cg0vskhxki065x8r6913sh8l1kvrdbkk8"; - libraryHaskellDepends = [ - aeson aeson-compat base bytestring containers ghc-prim - http-api-data monad-control monad-logger path-pieces persistent - tagged template-haskell text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-typed-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, http-api-data - , monad-logger, path-pieces, persistent, persistent-template - , resource-pool, resourcet, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "persistent-typed-db"; - version = "0.0.1.1"; - sha256 = "36c1dc06d548813463d830d8adfbbb39fca948e2598bbd64b272fe57b66fc932"; - revision = "1"; - editedCabalFile = "106dkixvzg2zia8hzxsw5fb458v7bka69szlnfxnffa5sdbm8him"; - libraryHaskellDepends = [ - aeson base bytestring conduit http-api-data monad-logger - path-pieces persistent persistent-template resource-pool resourcet - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/persistent-typed-db#readme"; - description = "Type safe access to multiple database schemata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pg-harness-client" = callPackage - ({ mkDerivation, base, bytestring, HTTP, stdenv }: - mkDerivation { - pname = "pg-harness-client"; - version = "0.6.0"; - sha256 = "d0624036ffa888edd9b5073a3c485400ef1057497f1748f5084c03818bcaf819"; - libraryHaskellDepends = [ base bytestring HTTP ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BardurArantsson/pg-harness"; - description = "Client library for pg-harness-server"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pg-harness-server" = callPackage - ({ mkDerivation, async, base, ini, postgresql-simple, random - , scotty, stdenv, text, transformers, warp - }: - mkDerivation { - pname = "pg-harness-server"; - version = "0.6.2"; - sha256 = "cc975305951aca58d50356ddc80a402ae80c794d223f8209c25bd640ee0679f2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - async base ini postgresql-simple random scotty text transformers - warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BardurArantsson/pg-harness"; - description = "REST service for creating temporary PostgreSQL databases"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.1.2.0"; - sha256 = "b2e27082c40ab48e046262e9f56c1106384d28475d4f2e605a7b5fc24051f5f5"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "Another postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.3"; - sha256 = "ef3b560276981def53abc01cbe3cb4d0bece8eaa8a210ee890729ee500c4e695"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pinboard" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-client - , http-client-tls, http-types, monad-logger, mtl, network - , profunctors, random, stdenv, text, time, transformers, unliftio - , unliftio-core, unordered-containers, vector - }: - mkDerivation { - pname = "pinboard"; - version = "0.10.1.4"; - sha256 = "89445a815c3970c909d00c65dc525fe78930b76d4f086dc81597633737ebb3ce"; - libraryHaskellDepends = [ - aeson base bytestring containers http-client http-client-tls - http-types monad-logger mtl network profunctors random text time - transformers unliftio unliftio-core unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonschoning/pinboard"; - description = "Access to the Pinboard API"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.13"; - sha256 = "76ba4f2832dae70b5f8d97e16fadd766c097f9bcd96b3a9abec0c5e24aee03b2"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-category" = callPackage - ({ mkDerivation, base, lens, mtl, pipes, pipes-extras, stdenv }: - mkDerivation { - pname = "pipes-category"; - version = "0.3.0.0"; - sha256 = "4711d889ed2bf7244bbbc292af5746e0378d72a09929aa1e668056e7f0180701"; - libraryHaskellDepends = [ base lens mtl pipes pipes-extras ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-category#readme"; - description = "Allows instances for Category, Arrow and ArrowChoice for Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.12"; - sha256 = "4343c67710e2fcd8987c537389773358150559bf06e86d96b1097c15ae81589d"; - revision = "2"; - editedCabalFile = "1c06nypirrd76jg5y508517smxh3izy98y6kj89k79kbpi5rncbj"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.15"; - sha256 = "02a9633ac912fd48e9a5ca0e6b48a6e9541ce59d11243096ca6af6b25701cbb3"; - revision = "1"; - editedCabalFile = "0xrd5zwkr1c7lswzi91gxl3ndra8y9g2b4j00sszyy3w187a2zwi"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fluid" = callPackage - ({ mkDerivation, base, constraints, lens, lifted-async - , monad-control, pipes, semigroups, stdenv, stm, these - , transformers, transformers-base - }: - mkDerivation { - pname = "pipes-fluid"; - version = "0.6.0.1"; - sha256 = "105d8e8df7e731e2d272a22891eb68db1ca3ec9f425b67af77c5d91e3f032f06"; - libraryHaskellDepends = [ - base constraints lens lifted-async monad-control pipes semigroups - stm these transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-fluid#readme"; - description = "Reactively combines Producers so that a value is yielded as soon as possible"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.12"; - sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7"; - revision = "1"; - editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.6"; - sha256 = "a231fb08dfac54c1fac7a0c805f1b6c6e60a380021bb5722b508d6b36e4ba700"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-misc" = callPackage - ({ mkDerivation, base, clock, Decimal, lens, mmorph, mtl, pipes - , pipes-category, pipes-concurrency, semigroups, stdenv, stm - , transformers - }: - mkDerivation { - pname = "pipes-misc"; - version = "0.5.0.0"; - sha256 = "4e2e7e396ee0c659ae3742388d06b69e3b5146a5563cd3f4ba56f9a1febb8d26"; - libraryHaskellDepends = [ - base clock Decimal lens mmorph mtl pipes pipes-category - pipes-concurrency semigroups stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/pipes-misc#readme"; - description = "Miscellaneous utilities for pipes, required by glazier-tutorial"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network" = callPackage - ({ mkDerivation, base, bytestring, exceptions, network - , network-simple, pipes, pipes-safe, stdenv, transformers - }: - mkDerivation { - pname = "pipes-network"; - version = "0.6.5"; - sha256 = "74a461153a2f650e9e15037002b6d9177b132f409e3204824655ffbb939dc795"; - libraryHaskellDepends = [ - base bytestring exceptions network network-simple pipes pipes-safe - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network"; - description = "Use network sockets together with the pipes library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-network-tls" = callPackage - ({ mkDerivation, base, bytestring, network, network-simple - , network-simple-tls, pipes, pipes-network, pipes-safe, stdenv, tls - , transformers - }: - mkDerivation { - pname = "pipes-network-tls"; - version = "0.3"; - sha256 = "a2694a6b15d71a8cae898dd8e6a085a4e1ae317c40f2752ceed2b991dfb6bab2"; - libraryHaskellDepends = [ - base bytestring network network-simple network-simple-tls pipes - pipes-network pipes-safe tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-network-tls"; - description = "TLS-secured network connections support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-random" = callPackage - ({ mkDerivation, base, mwc-random, pipes, stdenv, vector }: - mkDerivation { - pname = "pipes-random"; - version = "1.0.0.5"; - sha256 = "b3ec59bde4d004db2130097c7d981e3fdaf3c63a0ba7e903da33673d3b034bf7"; - libraryHaskellDepends = [ base mwc-random pipes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/pipes-random"; - description = "Producers for handling randomness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.3.2"; - sha256 = "0c7b58bff49902319d9183f606e2a5a36d46298dcbbefd05b5bc43654571a682"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "planb-token-introspection" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, containers - , http-client, http-client-tls, http-types, mtl, safe-exceptions - , stdenv, text, transformers - }: - mkDerivation { - pname = "planb-token-introspection"; - version = "0.1.4.0"; - sha256 = "e7fa0eccf6449c53bc0d682df9dd2cc0beda28230b79f104f8d8ac1574dff265"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring containers http-client - http-client-tls http-types mtl safe-exceptions text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/planb-token-introspection#readme"; - description = "Token Introspection for PlanB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text, time - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2.1"; - sha256 = "c95ed42c789d26165183c2cbb4e8a44065478cad0a80053ac8e6fa2a84c7ecb4"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly" = callPackage - ({ mkDerivation, base, primitive, semirings, stdenv, vector - , vector-algorithms - }: - mkDerivation { - pname = "poly"; - version = "0.3.1.0"; - sha256 = "f08aae2433c4811cd06099e9bd34c42828fed3bf3a7dca02e8777ddef1b41db1"; - revision = "1"; - editedCabalFile = "10lcg7x6vzrzgj5libfwnmxj2y3f1j5gpz9l8mgzivapknvhhpfx"; - libraryHaskellDepends = [ - base primitive semirings vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/poly#readme"; - description = "Polynomials"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.12.1"; - sha256 = "dd8d34e05853ea0ab9b9fee1cbaa51ae33095f7c0c09ff539dcd6d771e0adaa5"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "polysemy" = callPackage - ({ mkDerivation, async, base, containers, first-class-families, mtl - , stdenv, syb, template-haskell, th-abstraction, transformers - , type-errors, type-errors-pretty, unagi-chan - }: - mkDerivation { - pname = "polysemy"; - version = "1.0.0.0"; - sha256 = "e694ed0adfda26e86bbf720add36982fe659dd44ad69119930deaa5a33dfc3f8"; - libraryHaskellDepends = [ - async base containers first-class-families mtl syb template-haskell - th-abstraction transformers type-errors type-errors-pretty - unagi-chan - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/polysemy#readme"; - description = "Higher-order, low-boilerplate, zero-cost free monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polysemy-plugin" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers, ghc - , ghc-tcplugins-extra, polysemy, stdenv, syb, transformers - }: - mkDerivation { - pname = "polysemy-plugin"; - version = "0.2.4.0"; - sha256 = "af268f108bd3f97dc5dfb8015321a29156f0d3128a8691b32c03296dd6b8f65e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers ghc ghc-tcplugins-extra polysemy syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/polysemy#readme"; - description = "Disambiguate obvious uses of effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polysemy-zoo" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , containers, ghc-prim, hedis, mtl, polysemy, polysemy-plugin - , random, reflection, stdenv - }: - mkDerivation { - pname = "polysemy-zoo"; - version = "0.5.0.1"; - sha256 = "7c94bd767c35b519dcbb1c8d433f37e2f0ddb855a8200557b97c291bf1a8ef19"; - libraryHaskellDepends = [ - async base binary bytestring constraints containers ghc-prim hedis - mtl polysemy polysemy-plugin random reflection - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/polysemy-zoo#readme"; - description = "Experimental, user-contributed effects and interpreters for polysemy"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.2"; - sha256 = "3a5b51356c2c0844ac085d9ad073851d46426a09ffb59bcbfb8e072de4bd1fbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "port-utils" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "port-utils"; - version = "0.2.1.0"; - sha256 = "b6f830946a9daa829bb14dc7f105f28ae2cfa2ee8540af8550e3c975ac7117de"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/port-utils#readme"; - description = "Utilities for creating and waiting on ports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "posix-paths" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "posix-paths"; - version = "0.2.1.6"; - sha256 = "7239746716761bfc268b60348c5da3c2cf098fe2583f365096a6bef10f637e45"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - description = "POSIX filepath/directory functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "possibly" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "possibly"; - version = "1.0.0.0"; - sha256 = "52cd989873c966faffe60d0fe41a0222cb4dccc50313f9c9ed61a0d09db5ea22"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text#readme"; - description = "type Possibly a = Either String a"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.2"; - sha256 = "68af247669bdb9303e40d4efd5f8a57f3f6e328050f665df0f3790f010e570fe"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.2"; - sha256 = "cea053c79ef1505c30518db7b9fb2ee68c9e2915d48b22f01f8eb9a9b49f06f9"; - revision = "1"; - editedCabalFile = "0hilyfb2gjh471ia2g8mwjs56ykrgl0qd06vpigwhc493ia7a9mv"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-orm" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , bytestring-builder, directory, filepath, ghc-prim - , haskell-src-exts, mtl, old-locale, postgresql-simple, process - , stdenv, temporary, text, time, transformers, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "postgresql-orm"; - version = "0.5.1"; - sha256 = "a3507e5ccdb8712dbd8c228b706ce6303f4c0794d4d48fd8a683f4ce7cd10a3b"; - 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 ]; - doHaddock = false; - doCheck = false; - description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; - license = "GPL"; - }) {}; - "postgresql-schema" = callPackage - ({ mkDerivation, base, basic-prelude, optparse-applicative - , postgresql-simple, shelly, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-schema"; - version = "0.1.14"; - sha256 = "73decc70c9fc349d0162c253eb0e92a1add5964c28ef89abfe30e97f1184d572"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base basic-prelude postgresql-simple shelly text - ]; - executableHaskellDepends = [ - base basic-prelude optparse-applicative shelly text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mfine/postgresql-schema"; - description = "PostgreSQL Schema Management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable, Only - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.6.2"; - sha256 = "fbfaf2b326d5d43798f60b25862a9ac5006c0074fe295ba523fb55443a75f396"; - revision = "2"; - editedCabalFile = "1rlawj79mfff915bz5fr62g5ig4pfh77m30xrq8q71s6ql0ly4bj"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable Only postgresql-libpq - scientific template-haskell text time transformers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-migration" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cryptohash - , directory, postgresql-simple, stdenv, text, time - }: - mkDerivation { - pname = "postgresql-simple-migration"; - version = "0.1.15.0"; - sha256 = "6d37425a805c6268f323e63d091020622d17b88b37c8963da0b7d26ea787d648"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple time - ]; - executableHaskellDepends = [ - base base64-bytestring bytestring cryptohash directory - postgresql-simple text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ameingast/postgresql-simple-migration"; - description = "PostgreSQL Schema Migrations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-queue" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, monad-control - , pg-transact, postgresql-simple, random, stdenv, stm, text, time - , transformers - }: - mkDerivation { - pname = "postgresql-simple-queue"; - version = "1.0.1"; - sha256 = "330b69c54e075104171758117e714b7da6c740dff8ca09fbe33bd3ab854e5a3f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions monad-control pg-transact - postgresql-simple random stm text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgresql-queue#readme"; - description = "A PostgreSQL backed queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-simple-url" = callPackage - ({ mkDerivation, base, network-uri, postgresql-simple, split - , stdenv - }: - mkDerivation { - pname = "postgresql-simple-url"; - version = "0.2.1.0"; - sha256 = "1307f57cde2bd7f6d795a860deab53d3d64043f51af31e3114dee516ef7ee9c9"; - revision = "2"; - editedCabalFile = "1nb1ks6hdfn16389f2yhf37qhjqd2y5wjc1dcp9bjhzd787z7ypr"; - libraryHaskellDepends = [ - base network-uri postgresql-simple split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/postgresql-simple-url"; - description = "Parse postgres:// url into ConnectInfo"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-transactional" = callPackage - ({ mkDerivation, base, monad-control, mtl, postgresql-simple - , stdenv - }: - mkDerivation { - pname = "postgresql-transactional"; - version = "1.1.1"; - sha256 = "f9302a1e134b31f2e9bd243c4fe36a25b3a9a9d6984288be1bc9c29882545ed3"; - libraryHaskellDepends = [ - base monad-control mtl postgresql-simple - ]; - doHaddock = false; - doCheck = false; - description = "a transactional monad on top of postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-typed" = callPackage - ({ mkDerivation, aeson, array, attoparsec, base, binary, bytestring - , containers, cryptonite, data-default, haskell-src-meta, HDBC - , memory, network, old-locale, postgresql-binary, scientific - , stdenv, template-haskell, text, time, tls, utf8-string, uuid - , x509, x509-store, x509-validation - }: - mkDerivation { - pname = "postgresql-typed"; - version = "0.6.1.0"; - sha256 = "2903e69baed64f5d6b1f43e54e9e016f70b1689da8a99f9a49f182251767ebdc"; - libraryHaskellDepends = [ - aeson array attoparsec base binary bytestring containers cryptonite - data-default haskell-src-meta HDBC memory network old-locale - postgresql-binary scientific template-haskell text time tls - utf8-string uuid x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dylex/postgresql-typed"; - description = "PostgreSQL interface with compile-time SQL type checking, optional HDBC backend"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.2"; - sha256 = "d2aaacbe069a5dac61cee677c68eb34d74afa09c59d90d43e2fa07a6c5869fec"; - revision = "1"; - editedCabalFile = "1la186z2np3nv06p0485xwg342gyjp7a2ikg73qs7mbg086352zs"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.2"; - sha256 = "c1250f8e9a9f134f89292a31067958dc7eec2871abc1e7631a0bf3324b0360d7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "present" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "present"; - version = "4.1.0"; - sha256 = "bae8b334817a31572cc0e771f40e89b976e72b2b55d0955e4e198502dd8a427b"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/present"; - description = "Make presentations for data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.0"; - sha256 = "ff9a5f2023d6a4454f06cc395726b4cac3f9d0ea03759b14ccf7d62df79e9c7a"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.9.5"; - sha256 = "b095bebb79951d2e25a543a591844fb638165672d7b95d325844611297ba423f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "2.2.0.1"; - sha256 = "18ab80e80593063b11aa85c117e12253ec5dc438b1d342822ea1c25886485173"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-sop" = callPackage - ({ mkDerivation, base, generics-sop, pretty-show, stdenv }: - mkDerivation { - pname = "pretty-sop"; - version = "0.2.0.3"; - sha256 = "bedb878698d798f4d4367fd2fd8f6c3a69cb33e41c17364274233f3c175f7e83"; - libraryHaskellDepends = [ base generics-sop pretty-show ]; - doHaddock = false; - doCheck = false; - description = "A generic pretty-printer using generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.3.0.1"; - sha256 = "fb6580d80155c78ba7734b36e8bff2f0a39d287f1ba8efcfd93cc5f6c7f4b319"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.2.1.1"; - sha256 = "3bb48405422b56db2ee6a8557d29d38f1fd7ca23c2b0ee3f60442d580a1e2cdd"; - revision = "1"; - editedCabalFile = "0p3qvc1fr2ayxq5s7ysm80nl6107xfkv27p3mcripffq1lqvmlma"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible pretty-printer"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-convert-ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-convert-ansi-wl-pprint"; - version = "1.1"; - sha256 = "b8982d38776249d3d29a4ede426a27a02f7cbb6843722b5ec8ede18d032fa60c"; - revision = "1"; - editedCabalFile = "1c4zcscmvq0vbdgnp7n0avv8si5jshl4kw2qd1lqmhr28kj8x45f"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base prettyprinter - prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prim-uniq" = callPackage - ({ mkDerivation, base, dependent-sum, primitive, stdenv }: - mkDerivation { - pname = "prim-uniq"; - version = "0.1.0.1"; - sha256 = "fb059785133fe5ecaa57c6c840192f252c4c5a1a598160d5704ac2a83e895aff"; - libraryHaskellDepends = [ base dependent-sum primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/prim-uniq"; - description = "Opaque unique identifiers in primitive state monads"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.6.4.0"; - sha256 = "4cbeaf7924dd79221f327ea101a29bf35c4976dc3319df157ff46ea68e6a0c64"; - revision = "1"; - editedCabalFile = "18a14k1yiam1m4l29rin9a0y53yp3nxvkz358nysld8aqwy2qsjv"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-extras" = callPackage - ({ mkDerivation, base, bytestring, cereal, deferred-folds, focus - , foldl, list-t, primitive, profunctors, stdenv, vector - }: - mkDerivation { - pname = "primitive-extras"; - version = "0.7.1.1"; - sha256 = "b57dd914bbe8f1ab6a4bb7d7eaa965d44dee6f0d4b9281bea0b5ebdcf07ecec1"; - revision = "1"; - editedCabalFile = "10z7fnz907s7ar15lk3kq62p11bbsksdb0nmg5y7ii0n97mqni96"; - libraryHaskellDepends = [ - base bytestring cereal deferred-folds focus foldl list-t primitive - profunctors vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/primitive-extras"; - description = "Extras for the \"primitive\" library"; - license = stdenv.lib.licenses.mit; - }) {}; - "probability" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "probability"; - version = "0.2.6"; - sha256 = "5fa7a5a9ccebea6f7a55abed5c488a0a56e84b69aa9c35d75d1ba625937d1f8b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers random transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Probabilistic_Functional_Programming"; - description = "Probabilistic Functional Programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.3"; - sha256 = "1ef93a2cacbaf1fb2ae713f2d0d869593d4a5b8605eff38108877cbbfb51c1bb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, semigroups, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.3"; - sha256 = "74632acc5bb76e04ade95e187be432b607da0e863c0e08f3cabafb23d8b4a3b7"; - revision = "1"; - editedCabalFile = "1ynskm55fynsli6lpz6v5py344yhf1mq5xz2b1p7arvf2xqrx4kv"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - semigroups tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "prometheus-client" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, clock - , containers, deepseq, exceptions, mtl, stdenv, stm, text - , transformers, transformers-compat, utf8-string - }: - mkDerivation { - pname = "prometheus-client"; - version = "1.0.0"; - sha256 = "279e415720adb45a0ca67af18029c7b9e2ea0a34ec79b7278ed8e20e135b3344"; - libraryHaskellDepends = [ - atomic-primops base bytestring clock containers deepseq exceptions - mtl stm text transformers transformers-compat utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/prometheus-haskell"; - description = "Haskell client library for http://prometheus.io."; - license = stdenv.lib.licenses.asl20; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "prospect" = callPackage - ({ mkDerivation, base, deepseq, free, kan-extensions, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "prospect"; - version = "0.1.0.0"; - sha256 = "6ffae759fb5d81786342686c5544601a6bbaa74a7ca7f7c1a3ab4ebbc7846de7"; - libraryHaskellDepends = [ - base deepseq free kan-extensions mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/prospect#readme"; - description = "Explore continuations with trepidation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , lens-family, parsec, pretty, primitive, profunctors, stdenv - , tagged, text, transformers, vector, void - }: - mkDerivation { - pname = "proto-lens"; - version = "0.5.1.0"; - sha256 = "c1afae9c8471d71786568498c2b97a4f7684d75d0e60afd33178ecab934468cb"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim lens-family parsec - pretty primitive profunctors tagged text transformers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.8"; - sha256 = "8300c8281395b0a60f77073c0477822d5a008a18c2d5c15e29645bd92817ba4a"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.6"; - sha256 = "980c8bcd9b19a7cd4824be422bf3054e69caa91acd1d1adef08b2d5cfacfbb80"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-runtime, proto-lens-setup, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.5.0.0"; - sha256 = "20e507d724e01f85aca77655aa89a07f96ab8fde3bc3d38381179e65787867c8"; - setupHaskellDepends = [ base Cabal proto-lens-setup ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-runtime text - ]; - libraryToolDepends = [ protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath - , haskell-src-exts, lens-family, pretty, proto-lens, protobuf - , stdenv, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.5.0.0"; - sha256 = "161dcee2aed780f62c01522c86afce61721cf89c0143f157efefb1bd1fa1d164"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers filepath haskell-src-exts lens-family pretty - proto-lens text - ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers lens-family proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-runtime" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, filepath - , lens-family, proto-lens, stdenv, text, vector - }: - mkDerivation { - pname = "proto-lens-runtime"; - version = "0.5.0.0"; - sha256 = "ecc1f4f2488e92ccc293f18faf84d1aa6f1e10a88196d0a61549da1c3383a141"; - libraryHaskellDepends = [ - base bytestring containers deepseq filepath lens-family proto-lens - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-setup" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, deepseq - , directory, filepath, process, proto-lens-protoc, stdenv - , temporary, text - }: - mkDerivation { - pname = "proto-lens-setup"; - version = "0.4.0.2"; - sha256 = "1bc500c0a032da878833ae46964b635b4b5d7f0a1e6c5f8577bea6d7fe9c14ff"; - libraryHaskellDepends = [ - base bytestring Cabal containers deepseq directory filepath process - proto-lens-protoc temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Cabal support for codegen with proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal - , data-binary-ieee754, deepseq, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "protobuf"; - version = "0.2.1.2"; - sha256 = "b3c871918a665f0543fde247ab8af61c4fc451103140d34bf652c0d5fc4d17de"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal data-binary-ieee754 deepseq mtl - text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alphaHeavy/protobuf"; - description = "Google Protocol Buffers via GHC.Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.1.0"; - sha256 = "9029d395f099aa7ce510a9e0eb0b2c21e5b4ecaa2b242d5a1753de6b93abcdc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-buffers" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, directory, filepath, mtl, parsec, stdenv - , syb, text, utf8-string, vector - }: - mkDerivation { - pname = "protocol-buffers"; - version = "2.4.13"; - sha256 = "4c37f7c7f440703d3a9ec267b606b536fb4fe035e860223419cd123897588e77"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - directory filepath mtl parsec syb text utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Parse Google Protocol Buffer specifications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-buffers-descriptor" = callPackage - ({ mkDerivation, base, bytestring, containers, protocol-buffers - , stdenv - }: - mkDerivation { - pname = "protocol-buffers-descriptor"; - version = "2.4.13"; - sha256 = "d7914ed492d107981c71bb069626d751ab0804c0518054a800f94c2ab58f6ab0"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers protocol-buffers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k-bx/protocol-buffers"; - description = "Text.DescriptorProto.Options and code generated from the Google Protocol Buffer specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.1"; - sha256 = "49982332f18246c9f46dc8f9500dcbd92a445d17124b4acd084568c14ac6a131"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.1.0.1"; - sha256 = "f51eb0bc2921036cc924b1e0ae42f8fb2488907c80b7bcff35461db913b1d792"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.3"; - sha256 = "d23d39b5088f1656649c8e42fc86a20e48799d38f79d162fb38bd50d7ef7f37f"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3.1"; - sha256 = "996894e00af70c715a208a09824a38c001963762f3715cecec8ac4f2fef6ac51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psql-helpers" = callPackage - ({ mkDerivation, base, postgresql-simple, stdenv }: - mkDerivation { - pname = "psql-helpers"; - version = "0.1.0.0"; - sha256 = "f13ca642072477d3ab0246c514e3fc78e0c5cb419345240fbad994ed2a3219f4"; - libraryHaskellDepends = [ base postgresql-simple ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/psql-helpers#readme"; - description = "A small collection of helper functions to generate postgresql queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.2"; - sha256 = "26263b555d943f9b18bbebda6a090848fdba3c1b403a9b7c848f6bac99e893f9"; - revision = "1"; - editedCabalFile = "0d0mm3c8x31dasfzp1884r2irkm3c9irvvbahjzfr1bzzxfb7vyv"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pure-zlib" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , bytestring-builder, containers, fingertree, stdenv - }: - mkDerivation { - pname = "pure-zlib"; - version = "0.6.7"; - sha256 = "167a28f55135b179ef2e4eb94b1415b6440e37646a6e1f3bc4f891343f42b2b5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base base-compat bytestring bytestring-builder containers - fingertree - ]; - executableHaskellDepends = [ base base-compat bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/GaloisInc/pure-zlib"; - description = "A Haskell-only implementation of zlib / DEFLATE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pusher-http-haskell" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, hashable, http-client, http-types, memory, stdenv - , text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pusher-http-haskell"; - version = "1.5.1.11"; - sha256 = "588f74023b0e4cbbaa23284ad133e055debfa8c2deecfd7e50f31d4a89e1260b"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite hashable - http-client http-types memory text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/WillSewell/pusher-http-haskell"; - description = "Haskell client library for the Pusher HTTP API"; - license = stdenv.lib.licenses.mit; - }) {}; - "qchas" = callPackage - ({ mkDerivation, base, hmatrix, linear, random, stdenv }: - mkDerivation { - pname = "qchas"; - version = "1.1.0.1"; - sha256 = "a9f340d1a6d4f5f24f713b1105e4ec8bba0c24609dcef3fd95f104594232263d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hmatrix linear random ]; - executableHaskellDepends = [ base hmatrix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ardeleanasm/qchas#readme"; - description = "A library for implementing Quantum Algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qnap-decrypt" = callPackage - ({ mkDerivation, base, binary, bytestring, cipher-aes128, conduit - , conduit-extra, crypto-api, directory, filepath - , optparse-applicative, stdenv, streaming-commons, tagged - , utf8-string - }: - mkDerivation { - pname = "qnap-decrypt"; - version = "0.3.5"; - sha256 = "ab1b8005e5cb267101f57e0bc842fae50feab38fed1faa7e80967d29ea42a0d6"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qnap-decrypt#readme"; - description = "Decrypt files encrypted by QNAP's Hybrid Backup Sync"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "qrcode-core" = callPackage - ({ mkDerivation, base, binary, bytestring, case-insensitive - , containers, dlist, primitive, stdenv, text, vector - }: - mkDerivation { - pname = "qrcode-core"; - version = "0.9.2"; - sha256 = "fe56ac16900741260e3074b6957c89e3e3cd49bbfbcd83d338150e5b8c0a429d"; - libraryHaskellDepends = [ - base binary bytestring case-insensitive containers dlist primitive - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qrcode#readme"; - description = "QR code library in pure Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "qrcode-juicypixels" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, JuicyPixels - , qrcode-core, stdenv, text, vector - }: - mkDerivation { - pname = "qrcode-juicypixels"; - version = "0.8.0"; - sha256 = "930f73206ef1e6c43caebd31f2df0c086b52458d056a148bbe42c0e91f729291"; - libraryHaskellDepends = [ - base base64-bytestring bytestring JuicyPixels qrcode-core text - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qrcode#readme"; - description = "Converts a qrcode-core image to JuicyPixels"; - license = stdenv.lib.licenses.mit; - }) {}; - "quadratic-irrational" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv, transformers - }: - mkDerivation { - pname = "quadratic-irrational"; - version = "0.1.0"; - sha256 = "fe7517151e86d16107c33a261cc0543443d34016ef83bd09878e2bb67bdccf4d"; - libraryHaskellDepends = [ arithmoi base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ion1/quadratic-irrational"; - description = "An implementation of quadratic irrationals"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickbench" = callPackage - ({ mkDerivation, base, containers, directory, docopt, pretty-show - , process, safe, split, stdenv, tabular, time - }: - mkDerivation { - pname = "quickbench"; - version = "1.0"; - sha256 = "8bfe252e50a683346e753db312e9542f8d43256947ab215fcfd24af03787b926"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory docopt pretty-show process safe split - tabular time - ]; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/quickbench#readme"; - description = "quick & easy benchmarking of command-line programs"; - license = "GPL"; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-classes" = callPackage - ({ mkDerivation, aeson, base, base-orphans, bifunctors, containers - , fail, primitive, QuickCheck, semigroupoids, semigroups, semirings - , stdenv, tagged, transformers, vector - }: - mkDerivation { - pname = "quickcheck-classes"; - version = "0.6.1.0"; - sha256 = "10a9a2e6f16995fc01c62fa1a1b07b4241dc31559566be87e3a0053d9dd3b806"; - revision = "2"; - editedCabalFile = "0jfi8vjnyybby8mcg4qqmb1cjijmfcvaybf0lqwzs0bazjf0rqq9"; - libraryHaskellDepends = [ - aeson base base-orphans bifunctors containers fail primitive - QuickCheck semigroupoids semigroups semirings tagged transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/quickcheck-classes#readme"; - description = "QuickCheck common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, splitmix, stdenv, tagged, text, time, time-compat - , transformers, transformers-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.22"; - sha256 = "5d65bf81895b7af2d36f105d0b3afa5600b0bce0a14809c93d7ca87672ca5a91"; - revision = "2"; - editedCabalFile = "1ia5fjhpg7rz793552v88gv2iqx7hl9mi2g09m0llasy1cpzc9jr"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific splitmix tagged text time - time-compat transformers transformers-compat unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.1.1"; - sha256 = "51358328e5d3ea20dcb668e971e07bc7c8451cade47e930c68e3a6718317032a"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-state-machine" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, exceptions - , matrix, mtl, pretty-show, QuickCheck, stdenv, tree-diff, unliftio - , vector - }: - mkDerivation { - pname = "quickcheck-state-machine"; - version = "0.6.0"; - sha256 = "3e5f7199282c185986eedbf7cd22e2c68d4ec6ef24bec80c27a33429c555727d"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers exceptions matrix mtl pretty-show - QuickCheck tree-diff unliftio vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/advancedtelematic/quickcheck-state-machine#readme"; - description = "Test monadic programs using state machine based models"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-transformer" = callPackage - ({ mkDerivation, base, QuickCheck, random, stdenv, transformers }: - mkDerivation { - pname = "quickcheck-transformer"; - version = "0.3.1"; - sha256 = "d4818954d0538cf2b1c94f3a5c489d63cfc5dc684fe83d50bdb73871df0976c9"; - libraryHaskellDepends = [ base QuickCheck random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/quickcheck-transformer/"; - description = "A GenT monad transformer for QuickCheck library"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "radius" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptonite, iproute - , memory, stdenv - }: - mkDerivation { - pname = "radius"; - version = "0.6.1.0"; - sha256 = "bebd5ec73e85f11427a4e1040bbac695ef9bc947db2c23e2c85ddbcb31dd2260"; - libraryHaskellDepends = [ - base binary bytestring cryptonite iproute memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/RADIUS"; - description = "Remote Authentication Dial In User Service (RADIUS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens-simple, process, stdenv - , text - }: - mkDerivation { - pname = "rainbow"; - version = "0.30.0.2"; - sha256 = "be021eb05bc3e6a00b4fc10e1af941afa0c0a69ab83e5204e8455cfd5c0f5ec7"; - libraryHaskellDepends = [ - base bytestring lens-simple process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-simple, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.20.0.0"; - sha256 = "937f61d2fbc7b41f065cec9bb9d6550b54346e52b788d30f73ef78cf8545b61f"; - libraryHaskellDepends = [ - base bytestring containers lens-simple rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rando" = callPackage - ({ mkDerivation, base, stdenv, tf-random, vector }: - mkDerivation { - pname = "rando"; - version = "0.0.0.4"; - sha256 = "8eb8f4a5498ede50c468b74b04f9931cbcd6b4e6b03cf8dd56ad0b84c8ad7cb3"; - libraryHaskellDepends = [ base tf-random vector ]; - doHaddock = false; - doCheck = false; - description = "Easy-to-use randomness for livecoding"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.2"; - sha256 = "dcab3f6f32a83abd19ce1bddd8f7a7b31a4fb3bf126a58e472f71eafc36ab29a"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-fu" = callPackage - ({ mkDerivation, base, erf, math-functions, monad-loops, mtl - , random-shuffle, random-source, rvar, stdenv, syb - , template-haskell, transformers, vector - }: - mkDerivation { - pname = "random-fu"; - version = "0.2.7.3"; - sha256 = "301ae3791c2f7ec172787f1742c9c25c525c8fe9e1fb697c74b94e84e21b2b1c"; - libraryHaskellDepends = [ - base erf math-functions monad-loops mtl random-shuffle - random-source rvar syb template-haskell transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random number generation"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-source" = callPackage - ({ mkDerivation, base, flexible-defaults, mersenne-random-pure64 - , mtl, mwc-random, random, stateref, stdenv, syb, template-haskell - , th-extras - }: - mkDerivation { - pname = "random-source"; - version = "0.3.0.6"; - sha256 = "f3dfec3aef0614ff856abbba018f3bc3446295157895ea09a015737d67205b73"; - libraryHaskellDepends = [ - base flexible-defaults mersenne-random-pure64 mtl mwc-random random - stateref syb template-haskell th-extras - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Generic basis for random number generators"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range" = callPackage - ({ mkDerivation, base, free, parsec, stdenv }: - mkDerivation { - pname = "range"; - version = "0.2.1.1"; - sha256 = "ac760a2408d51e40148b93b72d79320f13dfc8a68424d2510b518a49ef87ee8d"; - libraryHaskellDepends = [ base free parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/range"; - description = "An efficient and versatile range library"; - license = stdenv.lib.licenses.mit; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3.1"; - sha256 = "12e8d9cb99a2847da32934ed7f44a5acedaa59d8fa19eff0f46aa77921460c55"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rank2classes" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, distributive, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "rank2classes"; - version = "1.3.2.1"; - sha256 = "44a414398cf9dd67fd9795680268bdb7307eadfa1dd52c92c67a0e89899e02ea"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base distributive template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/grampa/tree/master/rank2classes"; - description = "standard type constructor class hierarchy, only with methods of rank 2 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.2"; - sha256 = "02db61c98e6e550824e8d9813efe5e97293843e39e1c00e88837061b61a017c4"; - revision = "1"; - editedCabalFile = "19i9wlk951d85dqnmbgrnz0fg4xcw7cbv9cs2h8b440lycj3p4cv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, stdenv - , text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "1.0.9"; - sha256 = "abcc51c2fa35622e7e3deb04e444c3dc7f0d601d848f03ef401cdd25a13a96cf"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, stdenv, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "1.1.1"; - sha256 = "c93fbdf724f1c6291ec7263f2864f93a7ec360db08025d825db8c8f34284ebe2"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "rattle" = callPackage - ({ mkDerivation, base, bytestring, cryptohash-sha256, deepseq - , directory, extra, filepath, hashable, shake, stdenv, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "rattle"; - version = "0.1"; - sha256 = "19620782a25e354c032f9e9afc125ed30c70fea466fb9745b2374588292a2a83"; - revision = "1"; - editedCabalFile = "1ppli9l28b4pg6h57kx7vvy0wqacn4vx86bvrgjcwwlvlir49scw"; - libraryHaskellDepends = [ - base bytestring cryptohash-sha256 deepseq directory extra filepath - hashable shake time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/rattle#readme"; - description = "Forward build system, with caching and speculation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rattletrap" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, binary, binary-bits - , bytestring, containers, filepath, http-client, http-client-tls - , scientific, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "rattletrap"; - version = "9.0.7"; - sha256 = "cf11e73cb1b0da1dc7542ad4f844ee97841a63ed6c7b2178fe52c9071d0eef4d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls scientific template-haskell - text transformers - ]; - executableHaskellDepends = [ - aeson aeson-pretty base binary binary-bits bytestring containers - filepath http-client http-client-tls scientific template-haskell - text transformers - ]; - doHaddock = false; - doCheck = false; - description = "Parse and generate Rocket League replays"; - license = stdenv.lib.licenses.mit; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest, fail - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.4"; - sha256 = "79bde4bee706392004070bebceef0cf11d67823065ac9d7fbf57f4b40c7d86fe"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base fail ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rdf" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, dlist, fgl - , stdenv, text, transformers - }: - mkDerivation { - pname = "rdf"; - version = "0.1.0.3"; - sha256 = "5a7443a97abb283e1b1cd83c4fc6fd447f6a289390ea3410de76c84ef2dfd72f"; - revision = "1"; - editedCabalFile = "0x5zdjbyrpap5qs40yl0m96fcgy11f6s5r3v0n8n5904cxa5sqy3"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq dlist fgl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/traviswhitaker/rdf"; - description = "Representation and Incremental Processing of RDF Data"; - license = stdenv.lib.licenses.mit; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.3"; - sha256 = "cb223e3717838dcd501d4758e0348e6eff6978318f62053cf7dd3286ef5b996a"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reanimate" = callPackage - ({ mkDerivation, ansi-wl-pprint, attoparsec, base - , base64-bytestring, bytestring, cassava, chiphunk, colour - , containers, cubicbezier, diagrams, diagrams-contrib - , diagrams-core, diagrams-lib, diagrams-svg, directory, filepath - , fsnotify, hashable, here, JuicyPixels, lens, linear, matrix, mtl - , open-browser, optparse-applicative, palette, parallel, process - , random-shuffle, reanimate-svg, stdenv, svg-builder, temporary - , text, time, vector, websockets, xml - }: - mkDerivation { - pname = "reanimate"; - version = "0.1.8.0"; - sha256 = "7cffb8a02c3160735ddfbe4a1344fbf48d3f1f0f7663ca404087be432c6620ef"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint attoparsec base base64-bytestring bytestring cassava - chiphunk colour containers cubicbezier diagrams diagrams-contrib - diagrams-core diagrams-lib diagrams-svg directory filepath fsnotify - hashable here JuicyPixels lens linear matrix mtl open-browser - optparse-applicative palette parallel process random-shuffle - reanimate-svg svg-builder temporary text time vector websockets xml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lemmih/reanimate"; - description = "Animation library based on SVGs"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "reanimate-svg" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "reanimate-svg"; - version = "0.9.3.1"; - sha256 = "849cf6a4819c5da464f3782fea805888aebe2bfbb9e729825428dd939b83aeaf"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rebase" = callPackage - ({ mkDerivation, base, base-prelude, bifunctors, bytestring - , containers, contravariant, contravariant-extras, deepseq, dlist - , either, fail, hashable, mtl, profunctors, scientific - , semigroupoids, semigroups, stdenv, stm, text, time, transformers - , unordered-containers, uuid, vector, void - }: - mkDerivation { - pname = "rebase"; - version = "1.3.1.1"; - sha256 = "0aec6f85a98e376bfd01819d1ef48855ab1539a619e5981fd0fd4d7e94139560"; - libraryHaskellDepends = [ - base base-prelude bifunctors bytestring containers contravariant - contravariant-extras deepseq dlist either fail hashable mtl - profunctors scientific semigroupoids semigroups stm text time - transformers unordered-containers uuid vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rebase"; - description = "A more progressive alternative to the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, ghc, stdenv, uniplate }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.2.2"; - sha256 = "9cdfab5b9fb4e8c1b2053e7a56274d14c79a2a2deef3cc69ee493d007f43aae7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base extra ghc uniplate ]; - executableHaskellDepends = [ base extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "record-hasfield" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "record-hasfield"; - version = "1.0"; - sha256 = "523d2f5ffcbc54881fb3318411a095ae4ac6ec48e36cd6aecf90486a89849eca"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-hasfield#readme"; - description = "A version of GHC.Records as available in future GHCs."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "records-sop" = callPackage - ({ mkDerivation, base, deepseq, generics-sop, ghc-prim, stdenv }: - mkDerivation { - pname = "records-sop"; - version = "0.1.0.3"; - sha256 = "4581dc60889928f4ab1f493cbe6362b7a3854785b8e305d5c4bc444dbe591388"; - libraryHaskellDepends = [ base deepseq generics-sop ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Record subtyping and record utilities with generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, comonad, free, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.1.3"; - sha256 = "b21736e54b1d5fb0149624e95f2d8d8fd3413bb0972eda6a70e5753d3c9f1528"; - revision = "2"; - editedCabalFile = "01q18gplv5k328qf74innnx2z2p15pg5nc6sikxq6fkkw4v3rkyb"; - libraryHaskellDepends = [ - base base-orphans comonad free template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Representing common recursion patterns as higher-order functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.3"; - sha256 = "7186733767405984c1eda96b18908f458b379f116a1589cd66f4319fe8458e27"; - revision = "1"; - editedCabalFile = "1v0r75wkaahxdv4y0sqgcikvgwymiz12fa8nkk59n1g4x9nng9wb"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "references" = callPackage - ({ mkDerivation, array, base, containers, directory, either - , filepath, instance-control, mtl, stdenv, template-haskell, text - , transformers, uniplate - }: - mkDerivation { - pname = "references"; - version = "0.3.3.1"; - sha256 = "bc07606d36639148374e7a29a67ac489c7a0ed02655311b5d633a144a746c10e"; - libraryHaskellDepends = [ - array base containers directory either filepath instance-control - mtl template-haskell text transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/references"; - description = "Selectors for reading and updating data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.5"; - sha256 = "272ee9bffb722047067296a34f68d7450e3f6abfbe62eed02a9cef20ed212977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring, containers - , hashable, regex-base, regex-pcre-builtin, regex-tdfa - , regex-tdfa-text, stdenv, template-haskell, text, time - , time-locale-compat, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "regex"; - version = "1.0.2.0"; - sha256 = "aacd9b91e0598931745db5a3eea1cdfd6edf3b1e18ceb288c82eb8088b005fb8"; - revision = "1"; - editedCabalFile = "1476dxzj482j6zkvbvyszsjw1bm7jn2nwk40rq99ylvzm2sj0asn"; - libraryHaskellDepends = [ - array base base-compat bytestring containers hashable regex-base - regex-pcre-builtin regex-tdfa regex-tdfa-text template-haskell text - time time-locale-compat transformers unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3.1"; - sha256 = "8f064fc23b58fcdd0ef3ce9e2597d877a86bec1770f2b877cb3057b54bb70a5c"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-applicative-text" = callPackage - ({ mkDerivation, base, regex-applicative, stdenv, text }: - mkDerivation { - pname = "regex-applicative-text"; - version = "0.1.0.1"; - sha256 = "b093051f80865d257da2ded8ad1b566927b01b3d2f86d41da2ffee4a26c4e2d9"; - revision = "4"; - editedCabalFile = "0ykzppl1v6k70idjl73m4w161f6lsax89v1gp100y4xgipf3yijj"; - libraryHaskellDepends = [ base regex-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/regex-applicative-text#readme"; - description = "regex-applicative on text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "regex-base"; - version = "0.93.2"; - sha256 = "20dc5713a16f3d5e2e6d056b4beb9cfdc4368cd09fd56f47414c847705243278"; - revision = "2"; - editedCabalFile = "0dks3m5xwcjqqlyyg7abh12ci3ap5qn6wz3bz80kr6rcfgk0fhvd"; - libraryHaskellDepends = [ array base bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.1"; - sha256 = "d57cb1a5a4d66753b18eaa37a1621246f660472243b001894f970037548d953b"; - revision = "1"; - editedCabalFile = "0yg34p0rkql07y6rs6l70zlk8x51lra9vabkin921l581k6br498"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.94.4"; - sha256 = "8eaa7d4ac6c0a4ba35aa59fc3f6b8f8e252bb25a47e136791446a74752e226c0"; - revision = "1"; - editedCabalFile = "0jk29n0may65ghixlx1wwfmfcabsm730y8ppry1qy4naywhi1vs7"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.94.5.8.8.35"; - sha256 = "84be730f33c82a195e338e233c1d9279ca59985e03415d4470b9d7f01a2ee5e8"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/regex-pcre"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre-text" = callPackage - ({ mkDerivation, array, base, bytestring, regex-base - , regex-pcre-builtin, regex-tdfa-text, stdenv, text - }: - mkDerivation { - pname = "regex-pcre-text"; - version = "0.94.0.1"; - sha256 = "17991ed7b00da5cfb2efa0cefac16f9e0452fc794fe538d26d5cc802f0d8e9bd"; - libraryHaskellDepends = [ - array base bytestring regex-base regex-pcre-builtin regex-tdfa-text - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/regex-pcre-text"; - description = "Text-based PCRE API for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.95.2"; - sha256 = "56019921cd4a4c9682b81ec614236fea816ba8ed8785a1640cd66d8b24fc703e"; - revision = "2"; - editedCabalFile = "1zrlwmmrb3x3r3af1r42xwhwspzfgnzh4dw1158523sndsg8qn08"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://sourceforge.net/projects/lazy-regex"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim, mtl - , parsec, regex-base, stdenv - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.2.3.2"; - sha256 = "0e8ea50b60abbe998b191005695647fc2fcb544bdf5b6829b7e7a48f33bed00f"; - revision = "1"; - editedCabalFile = "03z5jmpkgyd6ydwmnxcmhysjfwb0m5ngfgvxzf4f1vx2qgifqm5i"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim mtl parsec regex-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/regex-tdfa"; - description = "Replaces/Enhances Text.Regex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa-text" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa-text"; - version = "1.0.0.3"; - sha256 = "38d77a0d225c306c52c6d4eed12d11d05a4bc4194d547cb9a7a9b6f5a8792001"; - revision = "1"; - editedCabalFile = "00swglzmdw30g4bn47z6j71all0djjb2hjm7bkfl7pza4wv14wpv"; - libraryHaskellDepends = [ array base regex-base regex-tdfa text ]; - doHaddock = false; - doCheck = false; - description = "Text interface for regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-with-pcre" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, regex - , regex-base, regex-pcre-builtin, regex-pcre-text, regex-tdfa - , stdenv, template-haskell, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "regex-with-pcre"; - version = "1.0.2.0"; - sha256 = "53c7bd8fc0e361b04af3bd3f2f546826a88b6827b252688d4ebb3fb8092f76a7"; - libraryHaskellDepends = [ - base base-compat bytestring containers regex regex-base - regex-pcre-builtin regex-pcre-text regex-tdfa template-haskell text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "registry" = callPackage - ({ mkDerivation, base, containers, exceptions, hashable, mmorph - , mtl, protolude, resourcet, semigroupoids, semigroups, stdenv - , template-haskell, text, transformers-base - }: - mkDerivation { - pname = "registry"; - version = "0.1.7.0"; - sha256 = "960aad4f7cdf300ed830981664946c10c7c408485dc46e785a5146171a39aa91"; - libraryHaskellDepends = [ - base containers exceptions hashable mmorph mtl protolude resourcet - semigroupoids semigroups template-haskell text transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "data structure for assembling components"; - license = stdenv.lib.licenses.mit; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relapse" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "relapse"; - version = "1.0.0.0"; - sha256 = "65c68af5e3d18e67bd6f81ab62ea9cc271d8283d876f7baf1c4ee64515a9aa19"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iostat/relapse#readme"; - description = "Sensible RLP encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.12.2.2"; - sha256 = "5bfe69ee23fe71602d6696c3fd8ff4a19519b58f564aa8396b1fb2c20c67c81c"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-query-HDBC" = callPackage - ({ mkDerivation, base, containers, convertible, dlist, HDBC - , HDBC-session, names-th, persistable-record, product-isomorphic - , relational-query, relational-schemas, sql-words, stdenv - , template-haskell, th-data-compat, transformers - }: - mkDerivation { - pname = "relational-query-HDBC"; - version = "0.7.2.0"; - sha256 = "83e90974b7e1281d7e1ac3aea03c145080aa53adfd1c36bf7096dc6b2096ef3f"; - libraryHaskellDepends = [ - base containers convertible dlist HDBC HDBC-session names-th - persistable-record product-isomorphic relational-query - relational-schemas sql-words template-haskell th-data-compat - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "HDBC instance of relational-query and typed query interface for HDBC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-record" = callPackage - ({ mkDerivation, base, persistable-record - , persistable-types-HDBC-pg, product-isomorphic, relational-query - , relational-query-HDBC, stdenv - }: - mkDerivation { - pname = "relational-record"; - version = "0.2.2.0"; - sha256 = "0bbd2663c394a39a7b3d9bcd257d91e3312be7f3c8df562b6868e82c0b96b3da"; - libraryHaskellDepends = [ - base persistable-record persistable-types-HDBC-pg - product-isomorphic relational-query relational-query-HDBC - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Meta package of Relational Record"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.7.0"; - sha256 = "0b8dcab7fcde1b87aa06566f7e07a01cdb5d74edca7b178606a31c2cb5b00ffa"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relude" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, mtl, stdenv, stm, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "relude"; - version = "0.5.0"; - sha256 = "75411b958121c813f4a0a2297542d4df85f141f52c1c081803fb48b73c691d81"; - revision = "1"; - editedCabalFile = "0qw27rmf14dn44lics58mqdf4wfcnx5z5zrwi13bsbf8qicmd7cb"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable mtl stm text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/relude"; - description = "Custom prelude from Kowainik"; - license = stdenv.lib.licenses.mit; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "repa" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, QuickCheck, stdenv - , template-haskell, vector - }: - mkDerivation { - pname = "repa"; - version = "3.4.1.4"; - sha256 = "43607a5de4b89b8e58bfcbc261445d89fa40b685d43952797704b80d09e5a39e"; - revision = "3"; - editedCabalFile = "17hxj42cm82sac42by78jgbjjn5r3qv7n4919llaq17a2k1np0sw"; - libraryHaskellDepends = [ - base bytestring ghc-prim QuickCheck template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "High performance, regular, shape polymorphic parallel arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repa-algorithms" = callPackage - ({ mkDerivation, base, repa, stdenv, vector }: - mkDerivation { - pname = "repa-algorithms"; - version = "3.4.1.3"; - sha256 = "de586fe7e14e0e000da50022e2129cabfd47773ba7844753c535c982f20e0fae"; - revision = "1"; - editedCabalFile = "0lvb1sn95qca9m1b8cy0a2j9gjzqm8g5v68ykglffjskv78d0jfm"; - libraryHaskellDepends = [ base repa vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "Algorithms using the Repa array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "repa-io" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, old-time, repa - , stdenv, vector - }: - mkDerivation { - pname = "repa-io"; - version = "3.4.1.1"; - sha256 = "b5dbca96a988fb8bd918288ea1cfcf215fe46062e45001b209603b63a39ba9da"; - revision = "4"; - editedCabalFile = "1lswfxmfn31gm2ayqwns9q9kpbad69scxpq6ybyzxkb9jd0jx4bl"; - libraryHaskellDepends = [ - base binary bmp bytestring old-time repa vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://repa.ouroborus.net"; - description = "Read and write Repa arrays in various formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "replace-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text }: - mkDerivation { - pname = "replace-attoparsec"; - version = "1.0.3.0"; - sha256 = "9fd72de0b40bb5f1486e63377432dab9eef2d592222668344c97a70edcbd7a6e"; - libraryHaskellDepends = [ attoparsec base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jamesdbrock/replace-attoparsec"; - description = "Find, replace, and edit text patterns with Attoparsec parsers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "replace-megaparsec" = callPackage - ({ mkDerivation, base, megaparsec, stdenv }: - mkDerivation { - pname = "replace-megaparsec"; - version = "1.1.5.0"; - sha256 = "cd5f2457a04bd0ef5d790c23cc2422255285f27339bd11df1ff515a3cc0dc21f"; - libraryHaskellDepends = [ base megaparsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jamesdbrock/replace-megaparsec"; - description = "Find, replace, and edit text patterns with Megaparsec parsers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, fail, haskeline, mtl, process - , stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.2.1.0"; - sha256 = "45c3186ff35ed650ee9c641f545a30860eedc44107fefb21da36df47aeb1ae7b"; - libraryHaskellDepends = [ - base containers fail haskeline mtl process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, http-api-data - , http-client, http-client-tls, http-types, monad-control, mtl - , retry, stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "req"; - version = "2.1.0"; - sha256 = "d6946db9e02f3080dfe55c713fe1ae815bc014a1da630eb73b18f3b90622551f"; - revision = "1"; - editedCabalFile = "0dgd4wgijd0k96khy56b6gnzmqzmz44a4qsj0v5mwslvnvkq598a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection http-api-data http-client - http-client-tls http-types monad-control mtl retry text time - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "require" = callPackage - ({ mkDerivation, base, bytestring, directory, inliterate - , megaparsec, optparse-generic, stdenv, text, universum - }: - mkDerivation { - pname = "require"; - version = "0.4.3"; - sha256 = "8a79a55a61a072df82470b31722aaaa02a88c122b0cc2ad12deb0cd3b1d7cd48"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring directory inliterate megaparsec optparse-generic - text universum - ]; - executableHaskellDepends = [ - base bytestring directory inliterate megaparsec optparse-generic - text universum - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/require#readme"; - description = "Scrap your qualified import clutter"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rerebase" = callPackage - ({ mkDerivation, rebase, stdenv }: - mkDerivation { - pname = "rerebase"; - version = "1.3.1.1"; - sha256 = "02d56cc8e8ce118a362a6394ac527c73d028d146937f51ed9c3911318d8b78c9"; - libraryHaskellDepends = [ rebase ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rerebase"; - description = "Reexports from \"base\" with a bunch of other standard libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "resistor-cube" = callPackage - ({ mkDerivation, base, comfort-array, lapack, stdenv }: - mkDerivation { - pname = "resistor-cube"; - version = "0.0.1.2"; - sha256 = "c69ad83ea57a2e9c6ab6e87a33ccdbb08651b1cc1407ff8c698b42bc6ef7b7c9"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base comfort-array lapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/resistor-cube"; - description = "Compute total resistance of a cube of resistors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.2"; - sha256 = "1323425aba3827479eb3588efaf7608b12a083327d64ec814f02863c3673cbe5"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, random, stdenv - , transformers - }: - mkDerivation { - pname = "retry"; - version = "0.8.1.0"; - sha256 = "b29521112dafdd91a64e71fec9656a23542fc820c4acadf3dae15565501e600a"; - libraryHaskellDepends = [ - base exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc1751" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "rfc1751"; - version = "0.1.2"; - sha256 = "a345e81625ffbdf3d3dc1723d322133108a5fd9ba17fbfae6e954046cd2b9aca"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/rfc1751.git#readme"; - description = "RFC-1751 library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.4"; - sha256 = "615daa230eabc781eff1d3ce94c42fc5ba6188dbeb115a233328454b02c1b3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rg" = callPackage - ({ mkDerivation, array, base, fmt, possibly, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "rg"; - version = "1.4.0.0"; - sha256 = "47da6b1356e04bd38dce995d36f352652a486dfce2db2c328f7f0384eb1dd0b2"; - libraryHaskellDepends = [ - array base fmt possibly text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/rg#readme"; - description = "A dynamic/unbounded alternative to Bounded Enum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rhine" = callPackage - ({ mkDerivation, base, containers, deepseq, dunai, free - , MonadRandom, random, stdenv, time, transformers, vector-sized - }: - mkDerivation { - pname = "rhine"; - version = "0.5.1.0"; - sha256 = "e9c04d1215f8b84c6b38279ce9271f9278a0fbaa85816118c4fd44eda7b2d008"; - libraryHaskellDepends = [ - base containers deepseq dunai free MonadRandom random time - transformers vector-sized - ]; - doHaddock = false; - doCheck = false; - description = "Functional Reactive Programming with type-level clocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rhine-gloss" = callPackage - ({ mkDerivation, base, dunai, gloss, rhine, stdenv }: - mkDerivation { - pname = "rhine-gloss"; - version = "0.5.1.0"; - sha256 = "9466c9d0fc4d606ab6022f2e31c724859880ee421a5fcc7009b3cd1dc9a9055b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base dunai gloss rhine ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Gloss backend for Rhine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rigel-viz" = callPackage - ({ mkDerivation, aeson, base, bytestring, colour, containers - , stdenv, text - }: - mkDerivation { - pname = "rigel-viz"; - version = "0.2.0.0"; - sha256 = "ba972f5ed4fde34b3d6185f311666cec93ec5618f047c28a09c5e9683d34cc7c"; - libraryHaskellDepends = [ - aeson base bytestring colour containers text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/rigel-viz"; - description = "A mid-level wrapper for vega-lite"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unliftio-core, unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.13.0"; - sha256 = "95750d0df4bc3c609df74e59854126ee8e0359edcfd25b75715e8542265d59cb"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unliftio-core unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-orphans" = callPackage - ({ mkDerivation, base, exceptions, fast-logger, monad-control - , monad-logger, resourcet, rio, stdenv, transformers-base - }: - mkDerivation { - pname = "rio-orphans"; - version = "0.1.1.0"; - sha256 = "7e8d2c6df6e7afdbca5b344c6e57c754e2d6b9c0cfb4f00e1df88dad1bd48b4e"; - libraryHaskellDepends = [ - base exceptions fast-logger monad-control monad-logger resourcet - rio transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "Orphan instances for the RIO type in the rio package"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-prettyprint" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array - , base, Cabal, colour, mtl, path, rio, stdenv, text - }: - mkDerivation { - pname = "rio-prettyprint"; - version = "0.1.0.0"; - sha256 = "15e4ddc5268f033cfad89ddd023d4157c7dc5784004aa40d232581380e6b1459"; - revision = "2"; - editedCabalFile = "1hvhjqy7kfk7fglx1rw8axscy0dfzqwd1564awnwdhvmf8silkkn"; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal array base Cabal colour mtl - path rio text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/stack#readme"; - description = "Pretty-printing for RIO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roc-id" = callPackage - ({ mkDerivation, base, MonadRandom, Only, stdenv, text - , vector-sized - }: - mkDerivation { - pname = "roc-id"; - version = "0.1.0.0"; - sha256 = "3144d7edc22fc5816b38fa356811417125572d062e07d23d8319466c68868429"; - libraryHaskellDepends = [ - base MonadRandom Only text vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonathanknowles/roc-id#readme"; - description = "Implementation of the ROC National ID standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rocksdb-haskell" = callPackage - ({ mkDerivation, base, binary, bytestring, data-default, directory - , filepath, resourcet, rocksdb, stdenv, transformers - }: - mkDerivation { - pname = "rocksdb-haskell"; - version = "1.0.1"; - sha256 = "b8407c933f503c2e21578a558b829288917f0f6f5ff7c32229cf5b11abed4dff"; - libraryHaskellDepends = [ - base binary bytestring data-default directory filepath resourcet - transformers - ]; - librarySystemDepends = [ rocksdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/serokell/rocksdb-haskell"; - description = "Haskell bindings to RocksDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) rocksdb;}; - "rocksdb-query" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , rocksdb-haskell, stdenv, unliftio - }: - mkDerivation { - pname = "rocksdb-query"; - version = "0.2.0"; - sha256 = "8e2d645542c98fd69fa73c136d2aa4bba574354c3121bc7b461d367a17fdc206"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet rocksdb-haskell unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/rocksdb-query#readme"; - description = "RocksDB database querying library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rosezipper" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "rosezipper"; - version = "0.2"; - sha256 = "6cab4f1c192cc3b8b0a9eb11a32780d235020a539a0e91125eed5ec590bad7bc"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Generic zipper implementation for Data.Tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rpmbuild-order" = callPackage - ({ mkDerivation, base, Cabal, containers, directory - , explicit-exception, fgl, filepath, process, stdenv, transformers - }: - mkDerivation { - pname = "rpmbuild-order"; - version = "0.2.1"; - sha256 = "b66d6078e82da6c2becf1e0082fb0f17e5a8a0052d95442dc3b0b63915a6a082"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory explicit-exception fgl filepath - process transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/rpmbuild-order"; - description = "Order RPM packages by dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "runmemo" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "runmemo"; - version = "1.0.0.1"; - sha256 = "ba5ef3177f8fe5f443808e44f62d03b23ac19bbef7f708e40532031a3505d689"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/runmemo"; - description = "A simple memoization helper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rvar" = callPackage - ({ mkDerivation, base, MonadPrompt, mtl, random-source, stdenv - , transformers - }: - mkDerivation { - pname = "rvar"; - version = "0.2.0.3"; - sha256 = "d78aaf2ffdba182dda95d1692fec7abc5d77fa371120618a397b5675438c6bc0"; - revision = "1"; - editedCabalFile = "1ifwwjlhc3l8ycjmmarw6v1nm7jxpgqw2ly0q35idlj0jc0nbxn6"; - libraryHaskellDepends = [ - base MonadPrompt mtl random-source transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/random-fu"; - description = "Random Variables"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "s3-signer" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, byteable - , bytestring, case-insensitive, cryptohash, http-types, stdenv - , time, utf8-string - }: - mkDerivation { - pname = "s3-signer"; - version = "0.5.0.0"; - sha256 = "d73671d5bda0f5f627bbd876916341985c281c3572e6f8406cdf2f14ed9188e4"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder byteable bytestring - case-insensitive cryptohash http-types time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmjio/s3-signer"; - description = "Pre-signed Amazon S3 URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.18"; - sha256 = "d7775be28af83beeee2fa8921201c6b93358ba6a23a2967d53e5f382a9ec0fed"; - revision = "1"; - editedCabalFile = "0zr1di94nbvs6848g1ng6azl7nwm7454kjig2c7gcf9sp4q7z8ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-foldable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe-foldable"; - version = "0.1.0.0"; - sha256 = "ca7f2ecc0e799c239df8ce56e8592fb8b8264c229ab4e1c66e0f821d299007d1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/safe-foldable#readme"; - description = "Safe wrappers for null-partial Foldable operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist - , hashable, scientific, stdenv, tasty, tasty-hunit - , tasty-quickcheck, text, time, unordered-containers, uuid-types - , vector - }: - mkDerivation { - pname = "safe-json"; - version = "0.1.0"; - sha256 = "b853b0a028fe562af5c2acfd4a7a9687edd72783f8075aab7ee662e680f8059e"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist hashable scientific tasty - tasty-hunit tasty-quickcheck text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Vlix/safe-json#readme"; - description = "Automatic JSON format versioning"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-money" = callPackage - ({ mkDerivation, base, binary, constraints, deepseq, hashable - , QuickCheck, stdenv, text, vector-space - }: - mkDerivation { - pname = "safe-money"; - version = "0.9"; - sha256 = "ee6810cc3f67da59d9300b3baa1c90f9a9d6876d0f563a070a9f3ddcbcbe7d30"; - libraryHaskellDepends = [ - base binary constraints deepseq hashable QuickCheck text - vector-space - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/safe-money"; - description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , old-time, stdenv, template-haskell, text, time, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.9.4.3"; - sha256 = "787db1a56b7024ab5619b4f25af5379133f5f2a5e1a0657e66c8dfac1a131f08"; - revision = "1"; - editedCabalFile = "060yxbk2fy5gddnpf6kxppc9fwkhiyldm39bj7873wggnpdc2xds"; - libraryHaskellDepends = [ - array base bytestring cereal containers old-time template-haskell - text time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default - , directory, dlist, exceptions, filepath, hashable, heaps - , megaparsec, mtl, scientific, stdenv, text, time, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "salak"; - version = "0.3.5.3"; - sha256 = "4b805722457e5ffeacd8eaef0c97b636aa335993af870e5d36ea9bd7e516df4c"; - revision = "1"; - editedCabalFile = "138c763crbfipcb9ss1lk3wx3482nm2v4zbm3k88h6jszxhmxvav"; - libraryHaskellDepends = [ - base bytestring containers data-default directory dlist exceptions - filepath hashable heaps megaparsec mtl scientific text time - unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration (re)Loader and Parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak-toml" = callPackage - ({ mkDerivation, base, salak, stdenv, text, time, tomland - , unordered-containers - }: - mkDerivation { - pname = "salak-toml"; - version = "0.3.5.3"; - sha256 = "de9c112307cfca83ad35254eeb025f2e0793192a8f5f30d36fcdc672aa9857a3"; - libraryHaskellDepends = [ - base salak text time tomland unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration Loader for toml"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak-yaml" = callPackage - ({ mkDerivation, base, conduit, libyaml, salak, stdenv, text }: - mkDerivation { - pname = "salak-yaml"; - version = "0.3.5.3"; - sha256 = "0000a908b36da9e393233e85d47346b9f5c04c4709bbe68a45b92d541ae58c1f"; - libraryHaskellDepends = [ base conduit libyaml salak text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration Loader for yaml"; - license = stdenv.lib.licenses.mit; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.2"; - sha256 = "fd989db905f3e1d742b9fcb9501d6483ffa82620e287cf51b62e0d6d2caaa308"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.8"; - sha256 = "5593d10dfe3ce177cf9037338a2ca80923f796c7a8cd70cc062b32c66cf4ecc1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "sandman" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , optparse-applicative, process, stdenv, text, unix-compat - }: - mkDerivation { - pname = "sandman"; - version = "0.2.0.1"; - sha256 = "407d283e1fc4a2a369615bac569683bf399ac14ddbce1331850bfe1d7837ce64"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal containers directory filepath optparse-applicative - process text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/sandman#readme"; - description = "Manages Cabal sandboxes to avoid rebuilding packages"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.1"; - sha256 = "f639656fc21925c45f3f55769b9fb7a90699e943376a725e215a5deea473b3e4"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Send textual messages to a Handle in a thread-friendly way"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, aeson-pretty, array, base - , base64-bytestring, basic-prelude, binary, binary-conduit - , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 - , lens, lens-aeson, monad-loops, resourcet, stdenv - , template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.6.3"; - sha256 = "316e4c2301fece2db29ffc5cbca45c00f4d20539b1a5c14e20b43c3a8ee2a20d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base basic-prelude binary-conduit bytestring - cmdargs conduit conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "sbv" = callPackage - ({ mkDerivation, array, async, base, containers, crackNum, deepseq - , directory, filepath, generic-deriving, ghc, mtl, pretty, process - , QuickCheck, random, stdenv, syb, template-haskell, time - , transformers - }: - mkDerivation { - pname = "sbv"; - version = "8.3"; - sha256 = "edb76cda89669194e8b9c8f6d149d7ff0f93dbceb41f3e481fea6193f9805734"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array async base containers crackNum deepseq directory filepath - generic-deriving ghc mtl pretty process QuickCheck random syb - template-haskell time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://leventerkok.github.com/sbv/"; - description = "SMT Based Verification: Symbolic Haskell theorem prover using SMT solving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scalpel" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-default - , http-client, http-client-tls, scalpel-core, stdenv, tagsoup, text - }: - mkDerivation { - pname = "scalpel"; - version = "0.6.1"; - sha256 = "06eacef7ea7a057005cb9d5b2d61dd73151d7708ccfe5e10de4133aca8fe0933"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-default http-client - http-client-tls scalpel-core tagsoup text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scalpel-core" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, fail - , pointedlist, regex-base, regex-tdfa, stdenv, tagsoup, text - , vector - }: - mkDerivation { - pname = "scalpel-core"; - version = "0.6.1"; - sha256 = "d6bb86efd623ca54d094e88aa31d30cc2f3f2693aad7e38794f9157d0b002fa5"; - libraryHaskellDepends = [ - base bytestring containers data-default fail pointedlist regex-base - regex-tdfa tagsoup text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scanf" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "scanf"; - version = "0.1.0.0"; - sha256 = "5675132f172ab4ed460f440df21e203c09457c2fff34fb6a389129a9da78c375"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/scanf#readme"; - description = "Easy and type-safe format strings for parsing and printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, fail, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.3.1"; - sha256 = "53205f5a7dcb7a0547c9394ddb28a6eeb181627f006b875bfc08a88c498218d6"; - libraryHaskellDepends = [ base bytestring fail ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scheduler" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest - , deepseq, exceptions, primitive, stdenv, unliftio-core - }: - mkDerivation { - pname = "scheduler"; - version = "1.4.2.1"; - sha256 = "2cf09ecf8350a74a0a66c603b26b358e30d894aab151f7ee9b874a3dcf00951c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base deepseq exceptions primitive unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/haskell-scheduler"; - description = "Work stealing scheduler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.5"; - sha256 = "6f3be75e2fed8b7c7d655a96788fe385629ded5196316158d814a0f9873cd2df"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.5.0.0"; - sha256 = "883bcc6967194ca2a5d69067b85efccf7f6ba40e7237d4371bab94d6a04766f4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.6+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "secp256k1-haskell" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cereal - , deepseq, entropy, hashable, libsecp256k1, QuickCheck, stdenv - , string-conversions - }: - mkDerivation { - pname = "secp256k1-haskell"; - version = "0.1.8"; - sha256 = "530e371bce0b615b77779cfb78afba30ca06e6add59a0cacad99134e377bb57a"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cereal deepseq entropy hashable - QuickCheck string-conversions - ]; - libraryPkgconfigDepends = [ libsecp256k1 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; - description = "Bindings for secp256k1 library from Bitcoin Core"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) libsecp256k1;}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, mtl - , random, stdenv, text, time, uuid-types - }: - mkDerivation { - pname = "selda"; - version = "0.4.0.0"; - sha256 = "71edfb4ef254582b89ee35997afa79be772bd458ea2d3b5f4956657723e41db7"; - libraryHaskellDepends = [ - base bytestring containers exceptions mtl random text time - uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, selda, stdenv, text }: - mkDerivation { - pname = "selda-json"; - version = "0.1.1.0"; - sha256 = "88061090d899eb831c72d39de21d6311ab1219e89188f641c777daf22b2622aa"; - libraryHaskellDepends = [ aeson base bytestring selda text ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "JSON support for the Selda database library"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-postgresql" = callPackage - ({ mkDerivation, base, bytestring, exceptions, postgresql-binary - , postgresql-libpq, selda, selda-json, stdenv, text, time - , uuid-types - }: - mkDerivation { - pname = "selda-postgresql"; - version = "0.1.8.0"; - sha256 = "b16d8fcefe4382e6b252025f4d207fdb4696caf14dea472955918e541063f674"; - revision = "1"; - editedCabalFile = "0zbx50lw8d5x7lsx9gpy2ql1n2nryhyd6x7w98lbnb3nzn3szzqr"; - libraryHaskellDepends = [ - base bytestring exceptions postgresql-binary postgresql-libpq selda - selda-json text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "PostgreSQL backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-sqlite" = callPackage - ({ mkDerivation, base, bytestring, direct-sqlite, directory - , exceptions, selda, stdenv, text, time, uuid-types - }: - mkDerivation { - pname = "selda-sqlite"; - version = "0.1.7.0"; - sha256 = "337e5f5959e3fa6e1b346be7366eb6ab2d5a9178a8b66bc3dc6317d2b47b2a62"; - revision = "1"; - editedCabalFile = "0m9zps90idp41h3fggd30xjqyjy2yyyb572231w5m2ygl4kv8hvh"; - libraryHaskellDepends = [ - base bytestring direct-sqlite directory exceptions selda text time - uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/valderman/selda"; - description = "SQLite backend for the Selda database EDSL"; - license = stdenv.lib.licenses.mit; - }) {}; - "selective" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "selective"; - version = "0.3"; - sha256 = "5a09a2a2f15f3d55eab33d177bbd71c83137d6e507ced208b951c50053c2b48c"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/selective"; - description = "Selective applicative functors"; - license = stdenv.lib.licenses.mit; - }) {}; - "semialign" = callPackage - ({ mkDerivation, base, base-compat, containers, hashable - , semigroupoids, stdenv, tagged, these, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "semialign"; - version = "1.1"; - sha256 = "f3e218bf7fb3ea8145dbf1051e3460e99a0d4064f0e76238595f996858e287d8"; - libraryHaskellDepends = [ - base base-compat containers hashable semigroupoids tagged these - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Align and Zip type-classes from the common Semialign ancestor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.3.4"; - sha256 = "00d2e48973c3ab0a5d52616728ed63d0509454c8328148f698720014d7c58964"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable tagged template-haskell transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.5"; - sha256 = "ab2a96af6e81e31b909c37ba65f436f1493dbf387cfe0de10b6586270c4ce29d"; - revision = "1"; - editedCabalFile = "1inqcxrzzs8xz60pvbmznyi6g6xwzpxv7p6dqlcwariz31grzvs1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semirings" = callPackage - ({ mkDerivation, base, containers, hashable, integer-gmp, stdenv - , unordered-containers - }: - mkDerivation { - pname = "semirings"; - version = "0.4.2"; - sha256 = "b2748b4309b780e5a4473a31ad69bed2f04ddc5d03ef099501bb260d535ccc2d"; - revision = "1"; - editedCabalFile = "1wrkcfblq3j2688xg8f1ial05sijkssmdm2rv9sw6jfxiays60vq"; - libraryHaskellDepends = [ - base containers hashable integer-gmp unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chessai/semirings"; - description = "two monoids as one, in holy haskimony"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "semver"; - version = "0.3.4"; - sha256 = "42dbdacb08f30ac8bf2f014981cb080737f793b89d57626cb7e2ab8c3d768e6b"; - libraryHaskellDepends = [ attoparsec base deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.11.1"; - sha256 = "e0e6c45e73578d2d7139e23a965937ac4514e5d310613607bfd4afd1abd50825"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "serialise" = callPackage - ({ mkDerivation, array, base, bytestring, cborg, containers - , ghc-prim, half, hashable, primitive, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "serialise"; - version = "0.2.2.0"; - sha256 = "33bcbb7b3796cf8a4615eadc29f7e382c2dc50d94c62b4825a73ed0687eea19e"; - libraryHaskellDepends = [ - array base bytestring cborg containers ghc-prim half hashable - primitive text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A binary serialisation library for Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors - , bytestring, Cabal, cabal-doctest, case-insensitive, deepseq - , http-api-data, http-media, http-types, mmorph, mtl, network-uri - , QuickCheck, singleton-bool, stdenv, string-conversions, tagged - , text, transformers, vault - }: - mkDerivation { - pname = "servant"; - version = "0.16.2"; - sha256 = "d6fcd5a7ebb9776edad295ec44c6179daad95b6696b02611a4d5af45a70ff47b"; - revision = "1"; - editedCabalFile = "0v913vjklgwyfbn7k2v70943gy4i8ja3y6crpyrg5llxkb81jpbc"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bifunctors bytestring - case-insensitive deepseq http-api-data http-media http-types mmorph - mtl network-uri QuickCheck singleton-bool string-conversions tagged - text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-JuicyPixels" = callPackage - ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant - , servant-server, stdenv, wai, warp - }: - mkDerivation { - pname = "servant-JuicyPixels"; - version = "0.3.0.5"; - sha256 = "9d563ad9ec2cbb46667c2fa87157e788732cd2bdf873882622fdfa8ebe591dd2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-media JuicyPixels servant - ]; - executableHaskellDepends = [ - base JuicyPixels servant servant-server wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/servant-JuicyPixels"; - description = "Servant support for JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "servant-auth"; - version = "0.3.2.0"; - sha256 = "7bb4d5118c072cb3845aaba4287b2d5e34e5ccca96916895456a828bf7a9418b"; - revision = "2"; - editedCabalFile = "06jpxqz5444k19p1n4i4yf2pvql37w9ngssp1grxl42dxk2bcg94"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "Authentication combinators for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-docs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, lens, servant - , servant-auth, servant-docs, stdenv, text - }: - mkDerivation { - pname = "servant-auth-docs"; - version = "0.2.10.0"; - sha256 = "adf3c33ce4134a78ae7a5c06092ea5812c99d4b942ff2dd685995eb3b2b53e48"; - revision = "4"; - editedCabalFile = "1dvwkaihrm7dc2zdrqqvc0j7zmij487klrmsggsdiid7y68nyrqh"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base lens servant servant-auth servant-docs text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-docs/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-server" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cookie, data-default-class, entropy - , http-types, jose, lens, memory, monad-time, mtl, servant - , servant-auth, servant-server, stdenv, tagged, text, time - , unordered-containers, wai - }: - mkDerivation { - pname = "servant-auth-server"; - version = "0.4.5.0"; - sha256 = "de94fc149a50c06c19ef28f5b610b91fd74e8c5b0c1fb4bde50a6444241d7d4b"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cookie data-default-class entropy http-types jose - lens memory monad-time mtl servant servant-auth servant-server - tagged text time unordered-containers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-server/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-swagger" = callPackage - ({ mkDerivation, base, lens, servant, servant-auth, servant-swagger - , stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-auth-swagger"; - version = "0.2.10.0"; - sha256 = "50a783639eb882fd5047d69245f7770817658814d8c409b547ebdddae05acd12"; - revision = "3"; - editedCabalFile = "087faa5bg2hlxyhg7jzy2jj4fzs3dkp0znsbabrharcvdlkpqj1r"; - libraryHaskellDepends = [ - base lens servant servant-auth servant-swagger swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-servant/servant-auth#readme"; - description = "servant-swagger/servant-auth compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-auth-wordpress" = callPackage - ({ mkDerivation, base, mtl, servant-server, stdenv, text, time, wai - , wordpress-auth - }: - mkDerivation { - pname = "servant-auth-wordpress"; - version = "1.0.0.1"; - sha256 = "882750ffc3b86d347c1d7b13abad92586f2b6291f945fb913de2eaf9eb5bcf22"; - libraryHaskellDepends = [ - base mtl servant-server text time wai wordpress-auth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/wordpress-auth#readme"; - description = "Authenticate Routes Using Wordpress Cookies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.9"; - sha256 = "79981f35382b8dc0bd0492a1362f6bbb3e77ff72649cc09ab513c5530dbbd6dd"; - revision = "3"; - editedCabalFile = "0pn9ca2jmx71clz0j9nlz1lwmr2xv39zqfda10al11am9mc4j8n4"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions" = callPackage - ({ mkDerivation, base, bytestring, http-types, servant - , servant-checked-exceptions-core, servant-client - , servant-client-core, servant-server, stdenv, wai, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions"; - version = "2.2.0.0"; - sha256 = "70156713a8a612469efc074dd26d3a4d91fcdc9425d1a96dc214343165b60bea"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-types servant servant-checked-exceptions-core - servant-client servant-client-core servant-server wai world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, contravariant, http-media - , http-types, mtl, profunctors, servant, servant-docs, stdenv - , tagged, text, transformers, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions-core"; - version = "2.2.0.0"; - sha256 = "ccf46e9b9e91f7b3eee0c1f32c1a4e09fb00ba89ea5d06aef4c019d9349f2ac7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring contravariant http-media http-types mtl - profunctors servant servant-docs tagged text transformers - world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, filepath, free, functor-combinators, http-client - , http-types, optparse-applicative, profunctors, random - , recursion-schemes, servant, servant-client, servant-client-core - , servant-docs, servant-server, stdenv, text, transformers, vinyl - , warp - }: - mkDerivation { - pname = "servant-cli"; - version = "0.1.0.1"; - sha256 = "b646df84a8e27f782aa9e592275c6838b1b480e9f48dad948cf52c901443a189"; - revision = "1"; - editedCabalFile = "1h29x87kqyylwigz86bwrgjdykk1119alsy65a7jkkcrj7a3syqa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers filepath free - functor-combinators http-types optparse-applicative profunctors - recursion-schemes servant servant-client-core servant-docs text - transformers vinyl - ]; - executableHaskellDepends = [ - aeson base bytestring containers http-client optparse-applicative - random servant servant-client servant-server text vinyl warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/servant-cli#readme"; - description = "Command line interface for Servant API clients"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, deepseq - , exceptions, http-client, http-media, http-types, kan-extensions - , monad-control, mtl, semigroupoids, servant, servant-client-core - , stdenv, stm, text, time, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.16.0.1"; - sha256 = "0c517cff5b672fdc1d7dd7d4fa282f6827fc0cb2e0f89622d7a897da56e0d9f0"; - libraryHaskellDepends = [ - base base-compat bytestring containers deepseq exceptions - http-client http-media http-types kan-extensions monad-control mtl - semigroupoids servant servant-client-core stm text time - transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Automatic derivation of querying functions for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, containers, deepseq, exceptions, free, http-media - , http-types, network-uri, safe, servant, stdenv, template-haskell - , text, transformers - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.16"; - sha256 = "bf8d750ba21fef9772387d0d03e35acac51093ea9ab031c8951c2af38f4a7b33"; - revision = "2"; - editedCabalFile = "172diqnz0ddvlfznfjk0k1l02f1mb11i1dkzr6rizdmhb66qpqil"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring bytestring containers - deepseq exceptions free http-media http-types network-uri safe - servant template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, mtl, resourcet, servant - , stdenv, unliftio-core - }: - mkDerivation { - pname = "servant-conduit"; - version = "0.15"; - sha256 = "dfd115301f29fd517cab6805211b8d10d4bdcf1cc5eb399aebb9124d199ef656"; - revision = "3"; - editedCabalFile = "0adximf4hg3bf7d9mkcjdsp5klg787ryb1hy3j49fg39l1rszac4"; - libraryHaskellDepends = [ - base bytestring conduit mtl resourcet servant unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, hashable, http-media, http-types, lens, servant - , stdenv, string-conversions, text, universe-base - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.4"; - sha256 = "0de0ea23739e41b411941a4ceb0721bad217a939c1e37a833991f75a4ace65fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - hashable http-media http-types lens servant string-conversions text - universe-base unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-elm" = callPackage - ({ mkDerivation, aeson, base, directory, elm-bridge, lens, servant - , servant-foreign, stdenv, text, wl-pprint-text - }: - mkDerivation { - pname = "servant-elm"; - version = "0.6.1"; - sha256 = "02c6b1555cf99c75625e6b63823222939a758f9591718486ed948b9eb5584f2a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base directory elm-bridge lens servant servant-foreign text - wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mattjbray/servant-elm#readme"; - description = "Automatically derive Elm functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.15"; - sha256 = "f1197f1319a735b37c5fdd991556bf34b780a9b87d0e57d936a42ae6734bbd73"; - revision = "2"; - editedCabalFile = "0axz78g0vhasq5cvqg1lq0b2qanmb768f1bvzbfx58rn6arwflnj"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-http-streams" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , containers, deepseq, exceptions, http-common, http-media - , http-streams, http-types, io-streams, kan-extensions - , monad-control, mtl, semigroupoids, servant, servant-client-core - , stdenv, text, time, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "servant-http-streams"; - version = "0.16.0.1"; - sha256 = "ef0f15b77484e7d8a31b29f442e706328be96f8aa6c4de3f45673b65178adc59"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive containers deepseq - exceptions http-common http-media http-streams http-types - io-streams kan-extensions monad-control mtl semigroupoids servant - servant-client-core text time transformers transformers-base - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Automatic derivation of querying functions for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-js" = callPackage - ({ mkDerivation, base, base-compat, charset, lens, servant - , servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-js"; - version = "0.9.4.1"; - sha256 = "8d8c43203f44d6debdf36e95b95bcfe995f3aebf95e75d35022f097c40b39a00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat charset lens servant servant-foreign text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatically derive javascript functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-kotlin" = callPackage - ({ mkDerivation, base, containers, directory, formatting, lens - , servant, servant-foreign, stdenv, text, time, wl-pprint-text - }: - mkDerivation { - pname = "servant-kotlin"; - version = "0.1.1.9"; - sha256 = "15070843a436dfcee9d19a376fff920e395c2649225affb5181a2e4e12b9dcf3"; - libraryHaskellDepends = [ - base containers directory formatting lens servant servant-foreign - text time wl-pprint-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matsubara0507/servant-kotlin#readme"; - description = "Automatically derive Kotlin class to query servant webservices"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv, text }: - mkDerivation { - pname = "servant-lucid"; - version = "0.9"; - sha256 = "6e3d6528a624a9b07c8f20359cfdf2392a7c4ec950b042abf56c802623e355f5"; - revision = "3"; - editedCabalFile = "10j29y9zjflh88csvn7zi4pm8jr9dxsglin94wypjrhcwy7yj1ic"; - libraryHaskellDepends = [ base http-media lucid servant text ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-machines" = callPackage - ({ mkDerivation, base, bytestring, machines, mtl, servant, stdenv - }: - mkDerivation { - pname = "servant-machines"; - version = "0.15"; - sha256 = "b18cc998c70adb9fc084942f184a2a6c44f6fc2eb830869a1a706ebeb706ec8c"; - revision = "4"; - editedCabalFile = "1p8ld4cxwsirlwz5ihrz6fyxbary4llxsnby42vjnhl19gylhdmk"; - libraryHaskellDepends = [ base bytestring machines mtl servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for machines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.5"; - sha256 = "ae547026ddc5d15bec0af9ea9324954f88dd605cae0775c81c45b1723dc77b81"; - revision = "3"; - editedCabalFile = "1137vz9xm8iwj6x8h1q1yify6c1lahy0dxj6hpbhgi4s3mqkhm2g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-multipart" = callPackage - ({ mkDerivation, array, base, bytestring, directory, http-media - , lens, random, resourcet, servant, servant-client-core - , servant-docs, servant-foreign, servant-server, stdenv, text - , transformers, wai, wai-extra - }: - mkDerivation { - pname = "servant-multipart"; - version = "0.11.5"; - sha256 = "0afe0afbe1463c6f178c9441f6a840a48d53481a0817fec1e8176c17fc007fa5"; - libraryHaskellDepends = [ - array base bytestring directory http-media lens random resourcet - servant servant-client-core servant-docs servant-foreign - servant-server text transformers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-multipart#readme"; - description = "multipart/form-data (e.g file upload) support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pipes" = callPackage - ({ mkDerivation, base, bytestring, monad-control, mtl, pipes - , pipes-safe, servant, stdenv - }: - mkDerivation { - pname = "servant-pipes"; - version = "0.15.1"; - sha256 = "7e65ff5733a86d3a395cfc400ed0162b765fa2248e6bfa4f08b4a9d3913b56e4"; - revision = "1"; - editedCabalFile = "0xm07qxw0szffm8krbvj2kdflwlx2ixlhp5scaj3fhwivycyayvg"; - libraryHaskellDepends = [ - base bytestring monad-control mtl pipes pipes-safe servant - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-rawm" = callPackage - ({ mkDerivation, base, bytestring, filepath, http-client - , http-media, http-types, lens, resourcet, servant-client - , servant-client-core, servant-docs, servant-server, stdenv, wai - , wai-app-static - }: - mkDerivation { - pname = "servant-rawm"; - version = "0.3.2.0"; - sha256 = "2d90c1f6a284673ed28fc617170f191f5ed2f45ffd14e61fe49c575a7f426d04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring filepath http-client http-media http-types lens - resourcet servant-client servant-client-core servant-docs - servant-server wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-rawm"; - description = "Embed a raw 'Application' in a Servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-ruby" = callPackage - ({ mkDerivation, base, casing, servant-foreign, stdenv, text }: - mkDerivation { - pname = "servant-ruby"; - version = "0.9.0.0"; - sha256 = "63787834369f2fce2216af3a38157af9370a0e4d02965ccd407ec493a62127f4"; - libraryHaskellDepends = [ base casing servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joneshf/servant-ruby#readme"; - description = "Generate a Ruby client from a Servant API with Net::HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, Cabal, cabal-doctest, containers, exceptions - , filepath, http-api-data, http-media, http-types, monad-control - , mtl, network, network-uri, resourcet, servant, stdenv - , string-conversions, tagged, text, transformers, transformers-base - , wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.16.2"; - sha256 = "002d8cdcd64fea4623b86fe29e4954b36e8ec159ec78684e5ce59c5f9e7c93d0"; - revision = "1"; - editedCabalFile = "017aw6wyhi5g7zkk59yj44r1n02zzin2w9wdskwqys7iqkvnvczn"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - filepath http-api-data http-media http-types monad-control mtl - network network-uri resourcet servant string-conversions tagged - text transformers transformers-base wai wai-app-static word8 - ]; - executableHaskellDepends = [ - aeson base base-compat servant text wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.2.1"; - sha256 = "35d3c1d24fece75c43d6063b3beba6ef37aa34241304761543be5430e2d32596"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , Cabal, cabal-doctest, hspec, http-media - , insert-ordered-containers, lens, QuickCheck, servant - , singleton-bool, stdenv, swagger2, text, unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.7.1"; - sha256 = "8d46b4bb8cc1fa178aa8ffcb54d194a959d7f6b1bce1d039c24634bd8addb26d"; - revision = "2"; - editedCabalFile = "0ij93pd7lsq39grglhfrdjrg21bxigmhavy51xilg6rrpnfcj2wv"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring hspec http-media - insert-ordered-containers lens QuickCheck servant singleton-bool - swagger2 text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate a Swagger/OpenAPI/OAS 2.0 specification for your servant API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.4.3.23.11"; - sha256 = "0a4a0aea76b303b6594a07d4514bb23b60c8e7593daac40036d8fc4d0e34d967"; - revision = "2"; - editedCabalFile = "1wmxiihiwjkzwqqj2996fqmixz6jblj5gh43p7dxbww3g9fdz8qi"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3.3"; - sha256 = "03724a312f08d9f59893cf8a55be719219c0490bdd3fc0f83359ca459995ed3e"; - revision = "3"; - editedCabalFile = "0yx3q7y533v61ca4bm4wi8h7chbghj2rz92b330a544w7ac8il0p"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-redoc" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui-redoc"; - version = "0.3.3.1.22.3"; - sha256 = "fbdf5282db9851d2d752842a3748348f7d21d372f1e99083723b090703ccf32f"; - revision = "2"; - editedCabalFile = "195vfc3871l1clk85kzxjvz1zr986lbvgy26fazfkfsn032s74c6"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui: ReDoc theme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-tracing" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, bytestring-lexing - , containers, hashable, http-api-data, http-client, lifted-base - , monad-control, mtl, random, servant, servant-server, stdenv, text - , time, transformers, unordered-containers, wai, warp - }: - mkDerivation { - pname = "servant-tracing"; - version = "0.1.0.2"; - sha256 = "3edf2e58c60b6624a81c57bbc606889d779ba0cc57fc785240cb353f9caaea62"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring bytestring-lexing containers hashable - http-api-data http-client lifted-base monad-control mtl random - servant servant-server text time unordered-containers wai - ]; - executableHaskellDepends = [ - async base bytestring containers http-client lifted-base - monad-control mtl servant servant-server text transformers wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/haskell-opentracing-light#readme"; - license = stdenv.lib.licenses.mit; - }) {}; - "servant-xml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , xmlbf, xmlbf-xeno - }: - mkDerivation { - pname = "servant-xml"; - version = "1.0.1.4"; - sha256 = "5dd006f1d303ffdb670ceea96bfd5eef07d11a75d2a3de47e9ca32c917e1ff4b"; - libraryHaskellDepends = [ - base bytestring http-media servant xmlbf xmlbf-xeno - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/servant-xml"; - description = "Servant support for the XML Content-Type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.1"; - sha256 = "01547419509cd0424885146734c08acede329a660022f534ac9b19cc685bf601"; - revision = "4"; - editedCabalFile = "0k9jg3vf0p1332243mji4lzm3lk3frsmxxlz6lgg68rwh3baz6f0"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "servius" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-html, bytestring - , cmark-gfm, http-types, shakespeare, stdenv, text, wai - , wai-app-static - }: - mkDerivation { - pname = "servius"; - version = "1.2.3.0"; - sha256 = "72c4b63e85df0cb51935bec85e31d44c6ee5cafd0015bd5e6ff44286e9e18b27"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base blaze-builder blaze-html bytestring cmark-gfm http-types - shakespeare text wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/servius#readme"; - description = "Warp web server with template rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "ses-html" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, byteable - , bytestring, cryptohash, HsOpenSSL, http-streams, stdenv, tagsoup - , time - }: - mkDerivation { - pname = "ses-html"; - version = "0.4.0.0"; - sha256 = "cff76ee03b538e69a3d107cd63d577210cf0f9879d470bf55519e887e2a8a08f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html byteable bytestring cryptohash - HsOpenSSL http-streams tagsoup time - ]; - doHaddock = false; - doCheck = false; - description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "set-cover" = callPackage - ({ mkDerivation, base, containers, enummapset, psqueues, semigroups - , stdenv, utility-ht - }: - mkDerivation { - pname = "set-cover"; - version = "0.0.9"; - sha256 = "afebfd20c00ff68cd99c7e457d15542003228a56d98af63565549a77852f73e1"; - revision = "2"; - editedCabalFile = "1jpg9iyq0mymdbq392nfmicwfmcmq5mg688ndmhvjx08ljdl54ha"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers enummapset psqueues semigroups utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/set-cover/"; - description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.9"; - sha256 = "3bb386f705fc918615b288f55422ce6c14f087ff36e554cbafb9ffab9dea66a1"; - revision = "1"; - editedCabalFile = "01i087l8v129q90jf09khaw5p4iqix5s17gzgfz2pbi030zhb82h"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/Kritzefitz/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sexp-grammar" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , happy, invertible-grammar, prettyprinter, recursion-schemes - , scientific, semigroups, stdenv, text, utf8-string - }: - mkDerivation { - pname = "sexp-grammar"; - version = "2.0.2"; - sha256 = "270d54ac86766cff367013287a42e17fd41f96ab99ecfcf1a72d5d2e8e2fb6b2"; - libraryHaskellDepends = [ - array base bytestring containers deepseq invertible-grammar - prettyprinter recursion-schemes scientific semigroups text - utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esmolanka/sexp-grammar"; - description = "Invertible grammar combinators for S-expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sexpr-parser" = callPackage - ({ mkDerivation, base, bytestring, megaparsec, process, stdenv }: - mkDerivation { - pname = "sexpr-parser"; - version = "0.1.1.2"; - sha256 = "4948477db69a57c907dbd99f27ac0b861b92971c48a9368f8e627f39510b74a0"; - revision = "3"; - editedCabalFile = "0sv07n6s023z2dl6n89kx26nnc3nrkpmbbfj4sqcrj6i3q4k06g4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base megaparsec ]; - executableHaskellDepends = [ base bytestring megaparsec process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rcook/sexpr-parser#readme"; - description = "Simple s-expression parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, file-embed, filepath, filepattern, hashable, heaps - , js-dgtable, js-flot, js-jquery, primitive, process, random - , stdenv, template-haskell, time, transformers, unix - , unordered-containers, utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.18.4"; - sha256 = "2026a70828333d1527098f757f47ec1978e2b151e2810113d0e116339cd1ef6e"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath filepattern - hashable heaps js-dgtable js-flot js-jquery primitive process - random time transformers unix unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra file-embed filepath - filepattern hashable heaps js-dgtable js-flot js-jquery primitive - process random template-haskell time transformers unix - unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake-language-c" = callPackage - ({ mkDerivation, base, data-default-class, fclabels, process, shake - , split, stdenv, unordered-containers - }: - mkDerivation { - pname = "shake-language-c"; - version = "0.12.0"; - sha256 = "661e350179e55c930c3c36f53853db2bc2697d88c5265049085cea09f5aa1ab0"; - libraryHaskellDepends = [ - base data-default-class fclabels process shake split - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/samplecount/shake-language-c"; - description = "Utilities for cross-compiling with Shake"; - license = stdenv.lib.licenses.asl20; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.23"; - sha256 = "e3cf451ac288ff1576f75e99fb55eea83e0b8e03ba334f0bf885b07da1323344"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shared-memory" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "shared-memory"; - version = "0.2.0.0"; - sha256 = "266739418194429f0e3a316decd28bf15ae8cc4ce2e1e19c523dc92b3f023abc"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/shared-memory"; - description = "POSIX shared memory"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shellmet" = callPackage - ({ mkDerivation, base, markdown-unlit, process, stdenv, text }: - mkDerivation { - pname = "shellmet"; - version = "0.0.3.0"; - sha256 = "897c1c7c9b57a7d626b5a3976fab348e232f38b01989796253316b3811fd69c4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process text ]; - executableHaskellDepends = [ base text ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/shellmet"; - description = "Out of the shell solution for scripting in Haskell"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, lifted-async, lifted-base - , monad-control, mtl, process, stdenv, system-fileio - , system-filepath, text, time, transformers, transformers-base - , unix, unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.8.1"; - sha256 = "de8814879c7a5e7f1f7f0d9c56c1dfee30d6d63ba1140946e5ed158dd75e6e08"; - revision = "1"; - editedCabalFile = "0crf0m077wky76f5nav2p9q4fa5q4yhv5l4bq9hd073dzdaywhz0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions lifted-async lifted-base monad-control mtl process - system-fileio system-filepath text time transformers - transformers-base unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shikensu" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, filepath, flow - , Glob, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "shikensu"; - version = "0.3.11"; - sha256 = "69f59f067522715a86f60bf4e60f9597bc1243e50d204b99b31e89e8e8c63010"; - libraryHaskellDepends = [ - aeson base bytestring directory filepath flow Glob text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/icidasset/shikensu#readme"; - description = "Run a sequence of functions on in-memory representations of files"; - license = stdenv.lib.licenses.mit; - }) {}; - "shortcut-links" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "shortcut-links"; - version = "0.4.2.1"; - sha256 = "0d36ecfabc8e2d3a4c0015b521b6cb8efa8469bbd518a509326f07a3aa24deff"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/shortcut-links"; - description = "Link shortcuts for use in text markup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.1.0"; - sha256 = "d53abf2b289a3075555f1ede76f5beba0fadce352cd94efbad610bc1eb76020a"; - revision = "1"; - editedCabalFile = "1zr6xw4fvgx187yiqy7n0r9mnasyv1hxg2q9xzw3lmsf4z3xz6y7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "show-prettyprint" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, prettyprinter, stdenv - , trifecta - }: - mkDerivation { - pname = "show-prettyprint"; - version = "0.3.0.1"; - sha256 = "b34df8dec052a9b73fdba0122cd19cbbfade7e0244bc8b5c202b1ef0f3fd0d0c"; - libraryHaskellDepends = [ - ansi-wl-pprint base prettyprinter trifecta - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/show-prettyprint#readme"; - description = "Robust prettyprinter for output of auto-generated Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shower" = callPackage - ({ mkDerivation, base, megaparsec, pretty, stdenv }: - mkDerivation { - pname = "shower"; - version = "0.2.0.2"; - sha256 = "f6ddc86ba4d363fe37dcaa9cf1c7e2a739f7f5290549e3d6159ce3bd13698a3a"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base megaparsec pretty ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://monadfix.com/shower"; - description = "Clean up the formatting of 'show' output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siggy-chardust" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "siggy-chardust"; - version = "1.0.0"; - sha256 = "9f730c3cc04ea629e0b655bfff66f83e146eb3b9f0908d5dc00b4c558d5f5a43"; - revision = "1"; - editedCabalFile = "1lknm1jr6h5qpixc727aj3zbmj4ia21r9lb8gzj50iildgmfk33b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/siggy-chardust#readme"; - description = "Rounding rationals to significant digits and decimal places"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5.1"; - sha256 = "7fc9baf6f47ffc082e7e05c9dade1451bdee06a0c4e2d882e8e0b692f50bfad1"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, cmdargs, directory, filepath - , http-types, mime-types, monad-control, mtl, process, setenv - , simple-templates, stdenv, text, transformers, transformers-base - , unordered-containers, vector, wai, wai-extra - }: - mkDerivation { - pname = "simple"; - version = "0.11.3"; - sha256 = "4ce52280605c54a71c95d2040d736067ae4bb61fa0b796c09abe6aa6b8b92e62"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring directory - filepath http-types mime-types monad-control mtl simple-templates - text transformers transformers-base unordered-containers vector wai - wai-extra - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs directory filepath process - setenv simple-templates text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://simple.cx"; - description = "A minimalist web framework for the WAI server interface"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "simple-cabal" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "simple-cabal"; - version = "0.1.1"; - sha256 = "7b1e7c36da8910a439b3e80efd1c25834b415b1ad8a35169fa109776f44cd684"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cabal"; - description = "Cabal file wrapper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, unix - }: - mkDerivation { - pname = "simple-cmd"; - version = "0.2.1"; - sha256 = "5ac384f6c8608f4276efa8336dd134d3935b358deab826efb2c30e93bb8665ac"; - libraryHaskellDepends = [ base directory filepath process unix ]; - doHaddock = false; - doCheck = false; - description = "Simple String-based process commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd-args" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv }: - mkDerivation { - pname = "simple-cmd-args"; - version = "0.1.4"; - sha256 = "913f7f1ac48f38de8f2b898ded00c53319adbec4fcbe9275b63061a0a86a6b0b"; - libraryHaskellDepends = [ base optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cmd-args"; - description = "Simple command args parsing and execution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-log" = callPackage - ({ mkDerivation, async, base, base-unicode-symbols, containers - , data-default, deepseq, directory, exceptions, filepath, hformat - , microlens, microlens-platform, mmorph, mtl, SafeSemaphore, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "simple-log"; - version = "0.9.12"; - sha256 = "5c1074229a41ee2c2b1d6eb7036a82927e6585e9ef81d8c6e721fac497566880"; - libraryHaskellDepends = [ - async base base-unicode-symbols containers data-default deepseq - directory exceptions filepath hformat microlens microlens-platform - mmorph mtl SafeSemaphore text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/simple-log"; - description = "Simple log for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.30"; - sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-session" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, byteable - , bytestring, containers, cookie, cryptohash, http-types, simple - , stdenv, transformers, wai, wai-extra - }: - mkDerivation { - pname = "simple-session"; - version = "0.10.1.1"; - sha256 = "8a9c9cb7a80080b6440a80549919d3cee3409af6c516b3d10d1392708b48e7c1"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder byteable bytestring containers - cookie cryptohash http-types simple transformers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://simple.cx"; - description = "Cookie-based session management for the Simple web framework"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "simple-templates" = callPackage - ({ mkDerivation, aeson, attoparsec, base, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "simple-templates"; - version = "0.9.0.0"; - sha256 = "aac13b08fa89ecec8e329678cfff580fed6abd49ff913835cebb1592bd0e4827"; - libraryHaskellDepends = [ - aeson attoparsec base scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://simple.cx"; - description = "A basic template language for the Simple web framework"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.6"; - sha256 = "1062808e3c440999d4d8ed13703191782fc6f57874ddc76836122267691f80ef"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simplistic-generics" = callPackage - ({ mkDerivation, base, comonad, kind-apply, stdenv }: - mkDerivation { - pname = "simplistic-generics"; - version = "0.1.0.0"; - sha256 = "3278c2e18573a70514b89c21464cb8567c26e850c643de93f0e2a6dc4815e087"; - libraryHaskellDepends = [ base comonad kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming without too many type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, dec, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.5"; - sha256 = "405dd57dea92857c04f539c3394894c40c8103ea0c4f3f0fdbfbd8acccde899f"; - revision = "1"; - editedCabalFile = "1g2dchvp5clg3hfdrp7hf5pbl9kcyhqhnqxqxd7n861nfd661wqd"; - libraryHaskellDepends = [ base dec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.3"; - sha256 = "f16b3a490bf8e4de566392a51430185b5d1ebdc5bc760c921703d5af9be14576"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , ghc-boot-th, mtl, pretty, stdenv, syb, template-haskell, text - , th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.5.1"; - sha256 = "20b00a3a732812ec1141014d2f8d379e392165ce7881fa7de9add8db0e22f147"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl pretty syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "size-based" = callPackage - ({ mkDerivation, base, dictionary-sharing, stdenv, template-haskell - , testing-type-modifiers - }: - mkDerivation { - pname = "size-based"; - version = "0.1.2.0"; - sha256 = "779ff6c45476d20ffd2ad7327b44cefaaf0436ed89f43b2967761c0b58a4151a"; - revision = "1"; - editedCabalFile = "0kax1ypjyglkn6iff1x4yz12y7f2n249m95xvdhrc63hsa4xlcqv"; - libraryHaskellDepends = [ - base dictionary-sharing template-haskell testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - description = "Sized functors, for size-based enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sized-grid" = callPackage - ({ mkDerivation, adjunctions, aeson, base, comonad, constraints - , distributive, generics-sop, lens, mtl, random, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "sized-grid"; - version = "0.1.1.6"; - sha256 = "4907af7a4ac56a838d599f319b2096a63c4f30eaf84cac0a5a22d937605c0b1b"; - libraryHaskellDepends = [ - adjunctions aeson base comonad constraints distributive - generics-sop lens mtl random vector vector-space - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edwardwas/sized-grid"; - description = "Multidimensional grids with sized specified at compile time"; - license = stdenv.lib.licenses.mit; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skews" = callPackage - ({ mkDerivation, base, bytestring, deque, stdenv, websockets }: - mkDerivation { - pname = "skews"; - version = "0.1.0.2"; - sha256 = "1740e41a60a2ccd09205473483c4833cedceab9f83cd431822e01c7736fd8977"; - libraryHaskellDepends = [ base bytestring deque websockets ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iij-ii/direct-hs/tree/master/skews"; - description = "A very quick-and-dirty WebSocket server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skip-var" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "skip-var"; - version = "0.1.1.0"; - sha256 = "bfbce57abd47c9c892f734b5c7d2bccad90fa5f8f8a6d4747cca15d2a493d41e"; - revision = "1"; - editedCabalFile = "0vl2y19l7xhlq08f91ggycj4imfdxvkj2fsaz8ifc0waxk3q7ja8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dtaskoff/skip-var#readme"; - description = "Skip variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , skylighting-core, stdenv - }: - mkDerivation { - pname = "skylighting"; - version = "0.8.2.1"; - sha256 = "bf97eedeea512dc416f3508c3aaa2ef10e08cc2ce542d25529f59ca698479af6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers skylighting-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-base, regex-pcre-builtin, safe, stdenv, text - , transformers, utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.8.2.1"; - sha256 = "3a6446918e77d43977a8c9cc7f2b677334aeb8e3999e5df6e1c929b27684ac41"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-base regex-pcre-builtin safe text - transformers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slack-web" = callPackage - ({ mkDerivation, aeson, base, containers, errors, http-api-data - , http-client, http-client-tls, megaparsec, mtl, servant - , servant-client, servant-client-core, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "slack-web"; - version = "0.2.0.11"; - sha256 = "47d1226c6f0870ec23edfed17f09c91013bc49309bd4408011b1581d8ea5cf92"; - libraryHaskellDepends = [ - aeson base containers errors http-api-data http-client - http-client-tls megaparsec mtl servant servant-client - servant-client-core text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jpvillaisaza/slack-web"; - description = "Bindings for the Slack web API"; - license = stdenv.lib.licenses.mit; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.5"; - sha256 = "9020e67895a57bde02d7df2c0af06a4c769eff56d48b6a830f6d803df891aea4"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smallcheck-series" = callPackage - ({ mkDerivation, base, bytestring, containers, logict, smallcheck - , stdenv, text, transformers - }: - mkDerivation { - pname = "smallcheck-series"; - version = "0.6.1"; - sha256 = "61a4853702e0aeb17639e15596fdd57d8a8b6abfd881096a7a26764e225b721e"; - revision = "2"; - editedCabalFile = "1944nax2aq32cd8i335nc511zis3lcwkclkh5caigsfs34kwwglg"; - libraryHaskellDepends = [ - base bytestring containers logict smallcheck text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdnavarro/smallcheck-series"; - description = "Extra SmallCheck series and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.9"; - sha256 = "d3cafbc34a5d03363ddd41e59bd681168cd2d0aa8be4678db9ae1904ad202a4f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-blaze" = callPackage - ({ mkDerivation, base, blaze-html, snap-core, stdenv }: - mkDerivation { - pname = "snap-blaze"; - version = "0.2.1.5"; - sha256 = "b36e35bd4ba3087b3de92702e488ba6570675719243b5dbdf4eae0b819988841"; - libraryHaskellDepends = [ base blaze-html snap-core ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/snap-blaze"; - description = "blaze-html integration for Snap"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-core" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , case-insensitive, containers, directory, filepath, hashable - , HUnit, io-streams, lifted-base, monad-control, mtl, network - , network-uri, old-locale, random, readable, regex-posix, stdenv - , text, time, transformers, transformers-base, unix-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "snap-core"; - version = "1.0.4.1"; - sha256 = "c0b177d47fcee1923d08bdba5b5f975d54e5e495ca666be5cc617aa71776b5a5"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder case-insensitive - containers directory filepath hashable HUnit io-streams lifted-base - monad-control mtl network network-uri old-locale random readable - regex-posix text time transformers transformers-base unix-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "Snap: A Haskell Web Framework (core interfaces and types)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-server" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , bytestring-builder, case-insensitive, clock, containers, filepath - , HsOpenSSL, io-streams, io-streams-haproxy, lifted-base, mtl - , network, old-locale, openssl-streams, snap-core, stdenv, text - , time, unix, unix-compat, vector - }: - mkDerivation { - pname = "snap-server"; - version = "1.1.1.1"; - sha256 = "450b651e0123307b1f438d9c2960ae773029f170d13139d85bd9527079398453"; - revision = "3"; - editedCabalFile = "1xma33r1by1q79qqbb70lwf4d846qlqs0f22rzrd3cdzkzcf9qf5"; - configureFlags = [ "-fopenssl" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring bytestring-builder - case-insensitive clock containers filepath HsOpenSSL io-streams - io-streams-haproxy lifted-base mtl network old-locale - openssl-streams snap-core text time unix unix-compat vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "A web server for the Snap Framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socket-activation" = callPackage - ({ mkDerivation, base, network, stdenv, transformers, unix }: - mkDerivation { - pname = "socket-activation"; - version = "0.1.0.2"; - sha256 = "b99e7b4f296cd462aac84e5bb61fb02953e2080d1351e9e10a63d35dc34eb43b"; - revision = "1"; - editedCabalFile = "0bvm8ik8fp0v5gjw6q4h767zgs1i4ydckdypvqa85sarc985hkmp"; - libraryHaskellDepends = [ base network transformers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddfisher/haskell-socket-activation"; - description = "systemd socket activation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, basement, bytestring, cereal, network - , stdenv - }: - mkDerivation { - pname = "socks"; - version = "0.6.1"; - sha256 = "734447558bb061ce768f53a0df1f2401902c6bee396cc96ce627edd986ef6a73"; - libraryHaskellDepends = [ - base basement bytestring cereal network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sop-core" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sop-core"; - version = "0.4.0.0"; - sha256 = "a381b0efb8e2dedb6627da6adb0a2b72421f87d43d9b53d68d5b2e866015911d"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3.1"; - sha256 = "70a6ab47d1e16271332574667dd30f77eefb331a6e7dda4e959f48ac3359aa45"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3.1"; - sha256 = "cde9c76515588257fddece108376537bcda7698d0107bf0386b968ea5189ec38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "spatial-math" = callPackage - ({ mkDerivation, base, binary, cereal, ghc-prim, lens, linear - , stdenv, TypeCompose - }: - mkDerivation { - pname = "spatial-math"; - version = "0.5.0.1"; - sha256 = "c91cf29157c2a3425f40afdd6fb763f2fc4299eb4c32725ac64d2ba568c2a410"; - libraryHaskellDepends = [ - base binary cereal ghc-prim lens linear TypeCompose - ]; - doHaddock = false; - doCheck = false; - description = "3d math including quaternions/euler angles/dcms and utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, leancheck, stdenv }: - mkDerivation { - pname = "speculate"; - version = "0.3.5"; - sha256 = "706cb2ac18b2d646bc20cc80135bad10e30bd0096ab479308cd110077035ea44"; - libraryHaskellDepends = [ base cmdargs containers leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "sphinx" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , network, stdenv, text, text-icu, xml - }: - mkDerivation { - pname = "sphinx"; - version = "0.6.0.2"; - sha256 = "76a977c6ce6e71c220bd5fed7acd0be500c2a1b5c8d081a29564a8e37ba7a6df"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 network text text-icu - xml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/haskell-sphinx-client"; - description = "Haskell bindings to the Sphinx full-text searching daemon"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.3"; - sha256 = "fce462557f490c6c3d264ca70ef98a2c644ba341a71e6ee9f87ee7f3e7ab0acc"; - revision = "1"; - editedCabalFile = "178d81ksnmgppbd09ci53r88iyacn3phy55v5i4ybfz5d8rfjpa5"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spoon" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "spoon"; - version = "0.3.1"; - sha256 = "b9b350b6730e34c246bbf7e228a86b3d4925b52c95542f7676d719ef2a9881d4"; - revision = "1"; - editedCabalFile = "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Catch errors thrown from pure computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.8"; - sha256 = "646716e795f3cd82f0277ffb672eca26a03f6897d85da3c267ee04cf4dc4a765"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.3"; - sha256 = "2575bd23b81d8cfb792ef78ab8bef70c6b2d74d9309b07be8573e7df0a7ae687"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, blaze-textual - , bytestring, containers, direct-sqlite, Only, semigroups, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "sqlite-simple"; - version = "0.4.16.0"; - sha256 = "60d2a188d1967ebc0d3ec9175776c45a6e1e6e7a4d44567548cb7fe6961d30de"; - revision = "1"; - editedCabalFile = "123bykwxl3p6918bjxv073ksf8k1hn6s0rlph934h18400n51fdf"; - libraryHaskellDepends = [ - attoparsec base blaze-builder blaze-textual bytestring containers - direct-sqlite Only semigroups template-haskell text time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nurpax/sqlite-simple"; - description = "Mid-Level SQLite client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sqlite-simple-errors" = callPackage - ({ mkDerivation, base, parsec, sqlite-simple, stdenv, text }: - mkDerivation { - pname = "sqlite-simple-errors"; - version = "0.6.1.0"; - sha256 = "5101f84a6d74d658398cc4ef557ad3c6158d53e9c948301cc47ed0cc3eaa716f"; - libraryHaskellDepends = [ base parsec sqlite-simple text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/sqlite-simple-errors"; - description = "Wrapper around errors from sqlite-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "2.0.1"; - sha256 = "739ff0d0a882f46bbcd391a2b1ee271906e9c049c463fb8846c1d32d3f829e2b"; - revision = "3"; - editedCabalFile = "1y1wff5mdcin3wc9pbj3agsircrf1pxjjm8j90n8g40l7acnf63c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stack" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array - , async, attoparsec, base, base64-bytestring, bytestring, Cabal - , colour, conduit, conduit-extra, containers, cryptonite - , cryptonite-conduit, deepseq, directory, echo, exceptions, extra - , file-embed, filelock, filepath, fsnotify, generic-deriving - , hackage-security, hashable, hi-file-parser, hpack, hpc - , http-client, http-client-tls, http-conduit, http-download - , http-types, memory, microlens, mintty, mono-traversable, mtl - , mustache, neat-interpolation, network-uri, open-browser - , optparse-applicative, pantry, path, path-io, persistent - , persistent-sqlite, persistent-template, pretty, primitive - , process, project-template, regex-applicative-text, resource-pool - , resourcet, retry, rio, rio-prettyprint, semigroups, split, stdenv - , stm, streaming-commons, tar, template-haskell, temporary - , terminal-size, text, text-metrics, th-reify-many, time, tls - , transformers, typed-process, unicode-transforms, unix - , unix-compat, unliftio, unordered-containers, vector, yaml - , zip-archive, zlib - }: - mkDerivation { - pname = "stack"; - version = "2.1.3.1"; - sha256 = "f983369a22a3e3af9ae09770cf34e4ba439cc7f5ef5a0e87f4db11c1ec5356e0"; - configureFlags = [ - "-fdisable-git-info" "-fhide-dependency-versions" - "-fsupported-build" - ]; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal filepath ]; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal array async attoparsec base - base64-bytestring bytestring Cabal colour conduit conduit-extra - containers cryptonite cryptonite-conduit deepseq directory echo - exceptions extra file-embed filelock filepath fsnotify - generic-deriving hackage-security hashable hi-file-parser hpack hpc - http-client http-client-tls http-conduit http-download http-types - memory microlens mintty mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - pantry path path-io persistent persistent-sqlite - persistent-template pretty primitive process project-template - regex-applicative-text resource-pool resourcet retry rio - rio-prettyprint semigroups split stm streaming-commons tar - template-haskell temporary terminal-size text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - executableHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal array async attoparsec base - base64-bytestring bytestring Cabal colour conduit conduit-extra - containers cryptonite cryptonite-conduit deepseq directory echo - exceptions extra file-embed filelock filepath fsnotify - generic-deriving hackage-security hashable hi-file-parser hpack hpc - http-client http-client-tls http-conduit http-download http-types - memory microlens mintty mono-traversable mtl mustache - neat-interpolation network-uri open-browser optparse-applicative - pantry path path-io persistent persistent-sqlite - persistent-template pretty primitive process project-template - regex-applicative-text resource-pool resourcet retry rio - rio-prettyprint semigroups split stm streaming-commons tar - template-haskell temporary terminal-size text text-metrics - th-reify-many time tls transformers typed-process - unicode-transforms unix unix-compat unliftio unordered-containers - vector yaml zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - preCheck = "export HOME=$TMPDIR"; - postInstall = '' - exe=$out/bin/stack - mkdir -p $out/share/bash-completion/completions - $exe --bash-completion-script $exe >$out/share/bash-completion/completions/stack - ''; - homepage = "http://haskellstack.org"; - description = "The Haskell Tool Stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "fd569cd27cfd62fb9d3e544e222450ec2734c44a3293994f35a26af982ce3d93"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "state-codes" = callPackage - ({ mkDerivation, aeson, base, shakespeare, stdenv, text }: - mkDerivation { - pname = "state-codes"; - version = "0.1.3"; - sha256 = "1667dc977607fc89a0ca736294b2f0a19608fbe861f03f404c3f8ee91fd0f4a1"; - libraryHaskellDepends = [ aeson base shakespeare text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acamino/state-codes#README"; - description = "ISO 3166-2:US state codes and i18n names"; - license = stdenv.lib.licenses.mit; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statestack" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "statestack"; - version = "0.2.0.5"; - sha256 = "f4eadcf9b08c14cb084436f81e16edf78d6eeda77a3f93e38ba5d7e263ea5f66"; - revision = "3"; - editedCabalFile = "0s9v88gcc5wnfj4c6xq86asadmh4y8z8ycv2wz5nwfwfazfgzcy3"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simple State-like monad transformer with saveable and restorable state"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "static-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - , vector - }: - mkDerivation { - pname = "static-text"; - version = "0.2.0.4"; - sha256 = "07cfa2b73e98c67a95f64de5ed8c8a1b088c7f8d3b1b4683418f9bcbc41ea4a5"; - libraryHaskellDepends = [ - base bytestring template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/static-text#readme"; - description = "Lists, Texts, ByteStrings and Vectors of statically known length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, async, base, base-orphans, binary - , data-default-class, deepseq, dense-linear-algebra, math-functions - , monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.15.2.0"; - sha256 = "c496dbb8767a65ea3c352fd08ce1918200a0cc9d8f8b5f262aebbb43dee22a49"; - libraryHaskellDepends = [ - aeson async base base-orphans binary data-default-class deepseq - dense-linear-algebra math-functions monad-par mwc-random primitive - vector vector-algorithms vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.3"; - sha256 = "24da421150f269ebb6679d7ea2c18dcea5cd253b3e27bf4bded656e7e90eb507"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.1"; - sha256 = "e80e5be72a4564fa45e1e27f91c0984e12d2a736d0ceb9594350d573efee1442"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2.1"; - sha256 = "e8e687268c86a6b635e7ee08415f31921d4a46eed267fe573a57981ec00d8419"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.6"; - sha256 = "5018769e91e551086bc96457da44faa3a03b4470a55212505102bc09518174bf"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.3.0"; - sha256 = "9af499b2b19b2f173f97db37f843938efd2c59c30285e436564aefd2aa5bdc3a"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "store" = callPackage - ({ mkDerivation, array, async, base, base-orphans - , base64-bytestring, bifunctors, bytestring, containers - , contravariant, cryptohash, deepseq, directory, filepath, free - , ghc-prim, hashable, hspec, hspec-smallcheck, integer-gmp - , lifted-base, monad-control, mono-traversable, network, primitive - , resourcet, safe, semigroups, smallcheck, stdenv, store-core, syb - , template-haskell, text, th-lift, th-lift-instances, th-orphans - , th-reify-many, th-utilities, time, transformers - , unordered-containers, vector, void - }: - mkDerivation { - pname = "store"; - version = "0.5.1.2"; - sha256 = "85c955a66b9f587db552a23df7a07c4d37879f0e6f31926091f0840f24a37ca9"; - libraryHaskellDepends = [ - array async base base-orphans base64-bytestring bifunctors - bytestring containers contravariant cryptohash deepseq directory - filepath free ghc-prim hashable hspec hspec-smallcheck integer-gmp - lifted-base monad-control mono-traversable network primitive - resourcet safe semigroups smallcheck store-core syb - template-haskell text th-lift th-lift-instances th-orphans - th-reify-many th-utilities time transformers unordered-containers - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "store-core" = callPackage - ({ mkDerivation, base, bytestring, fail, ghc-prim, primitive - , stdenv, text, transformers - }: - mkDerivation { - pname = "store-core"; - version = "0.4.4.2"; - sha256 = "c94185c3c3832ab8195ae17b0535fa020067c0a3f4d550a713eccf03211f8ea0"; - libraryHaskellDepends = [ - base bytestring fail ghc-prim primitive text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/store#readme"; - description = "Fast and lightweight binary serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.40.0"; - sha256 = "3f44ea58082e1a0eec40c34f2c9cc470e5bfe335af592745e00d6ee7295b4876"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.3.0"; - sha256 = "b4008eee1fcee6a9f63d0d31eebefd6cf72731fab65d943831338c3961fafd62"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, streaming - , streaming-bytestring - }: - mkDerivation { - pname = "streaming-attoparsec"; - version = "1.0.0.1"; - sha256 = "1ec9f3570dd7e27803053b3c682de94a32c2a1026d14b91c0fb0a98577942f94"; - libraryHaskellDepends = [ - attoparsec base bytestring streaming streaming-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-attoparsec"; - description = "Attoparsec integration for the streaming ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-bytestring" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions, mmorph, mtl - , resourcet, stdenv, streaming, transformers, transformers-base - }: - mkDerivation { - pname = "streaming-bytestring"; - version = "0.1.6"; - sha256 = "c1d723fc9676b85f62f9fc937d756af61d81f69c9c6591e5d38c9b09b7a253d3"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions mmorph mtl resourcet streaming - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming-bytestring"; - description = "effectful byte steams, or: bytestring io done right"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-cassava" = callPackage - ({ mkDerivation, base, bytestring, cassava, mtl, stdenv, streaming - , streaming-bytestring, transformers - }: - mkDerivation { - pname = "streaming-cassava"; - version = "0.1.0.1"; - sha256 = "b1a8abd8e6d44a6aa824576d2f429f023be5017447eda57287f170ffbe422537"; - libraryHaskellDepends = [ - base bytestring cassava mtl streaming streaming-bytestring - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Cassava support for the streaming ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.1.2"; - sha256 = "ea2a6d4b2dfabe8cdf3b4e0a29db9b14170f59d3554b70e0377779867efcfc16"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming-wai" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, http-types - , stdenv, streaming, wai - }: - mkDerivation { - pname = "streaming-wai"; - version = "0.1.1"; - sha256 = "35b4182386cc1d23731b3eac78dda79a1b7878c0b6bd78fd99907c776dbfaf30"; - libraryHaskellDepends = [ - base bytestring bytestring-builder http-types streaming wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jb55/streaming-wai"; - description = "Streaming Wai utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, containers, deepseq - , exceptions, ghc-prim, heaps, lockfree-queue, monad-control, mtl - , stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.6.1"; - sha256 = "c2bd7228862f9ce25de424f3df629b265e7e54da87335929ef0c3c4b18613d90"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base containers deepseq exceptions ghc-prim heaps - lockfree-queue monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streamproc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "streamproc"; - version = "1.6.2"; - sha256 = "e76effaaff83e6a066df949415db109b405bda0aaeb95f0710906c65892584f2"; - revision = "1"; - editedCabalFile = "19c51gks028x8mnywkx1nz0s6bwn2mxs5ddmaj2q8n9l5pvfkcgs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/streamproc"; - description = "Stream Processer Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.3"; - sha256 = "02d934ec5053d3d42031798e5a3cd25547ccde5973d562f9fc943d635d9956c0"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-list" = callPackage - ({ mkDerivation, base, hashable, semigroupoids, stdenv }: - mkDerivation { - pname = "strict-list"; - version = "0.1.5"; - sha256 = "ba7338766ba5fbb4069b748e5bdce12866379c32f1ab1c6015d45dbd1010bb1a"; - libraryHaskellDepends = [ base hashable semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/strict-list"; - description = "Strict linked list"; - license = stdenv.lib.licenses.mit; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-interpolate" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text, text-conversions, utf8-string - }: - mkDerivation { - pname = "string-interpolate"; - version = "0.1.0.1"; - sha256 = "8cfcf18cc73293dff928bf5a2b932ee13eea019f27dc6b618061b2af626e653e"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - text-conversions utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Haskell string/text/bytestring interpolation that just works"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.4"; - sha256 = "c85b9c1e27596ea8e765e4b630b7be53c331c51b680ad46cc2d248d3099fdd71"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.1"; - sha256 = "1caeff34b02cd860ae1740629ae97f7df8458bb7ab6a83e3b15c124b513e5e21"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stripe-concepts" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "stripe-concepts"; - version = "1.0.2.0"; - sha256 = "533c36aa753911836705b4d52cac94ed868008bdf5ca51fb6373a08dea251729"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Types for the Stripe API"; - license = stdenv.lib.licenses.mit; - }) {}; - "stripe-scotty" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-types, scotty - , stdenv, stripe-concepts, stripe-signature, text - , unordered-containers - }: - mkDerivation { - pname = "stripe-scotty"; - version = "1.0.0.0"; - sha256 = "7a69544cc9cde5e6884ba5d1b322347a0ca03e59218793a5f85317aa870abba4"; - revision = "1"; - editedCabalFile = "0c3r39217650yjxxs1523ywvyiirrh2f209gl4hfznyigkx2kg41"; - libraryHaskellDepends = [ - aeson base bytestring http-types scotty stripe-concepts - stripe-signature text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Listen for Stripe webhook events with Scotty"; - license = stdenv.lib.licenses.mit; - }) {}; - "stripe-signature" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cryptonite - , memory, stdenv, stripe-concepts, text - }: - mkDerivation { - pname = "stripe-signature"; - version = "1.0.0.1"; - sha256 = "362b681d6ef90bc6ab90affd2fa29634015416d91c9c2f1c8ab70eb369e0afd0"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cryptonite memory stripe-concepts - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Verification of Stripe webhook signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "stripe-wreq" = callPackage - ({ mkDerivation, aeson, base, bytestring, lens, stdenv - , stripe-concepts, text, unordered-containers, wreq - }: - mkDerivation { - pname = "stripe-wreq"; - version = "1.0.1.0"; - sha256 = "7ef4ebeebda0ffcbe1cb0dcf8655c1ada87a57c153a41bcc489b28f81303ad44"; - libraryHaskellDepends = [ - aeson base bytestring lens stripe-concepts text - unordered-containers wreq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Use the Stripe API via Wreq"; - license = stdenv.lib.licenses.mit; - }) {}; - "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , http-client, http-client-tls, http-types, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "strive"; - version = "5.0.9"; - sha256 = "e2a961ed1f282d9fcb660ddc3a9a9bae06d3ac8f35ac964f38836450498e4280"; - libraryHaskellDepends = [ - aeson base bytestring data-default gpolyline http-client - http-client-tls http-types template-haskell text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/strive#readme"; - description = "A client for the Strava V3 API"; - license = stdenv.lib.licenses.mit; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.2"; - sha256 = "842f7cd48c6f3b696dd900e9972ce1d50992162de46d7ad2b01b7944de08db57"; - revision = "2"; - editedCabalFile = "0ma2s0by622kaq7p57g859pxha02bqrd7n86cczfb2gzcm7kqma7"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "structured-cli" = callPackage - ({ mkDerivation, base, data-default, haskeline, mtl, split, stdenv - , transformers - }: - mkDerivation { - pname = "structured-cli"; - version = "2.5.2.0"; - sha256 = "40157b7a14b2564d9e4cdc55b703a7838231bdf50bede9ba1d6d9c87fd13076b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base data-default haskeline mtl split transformers - ]; - executableHaskellDepends = [ base data-default mtl split ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/structured-cli#readme"; - description = "Application library for building interactive console CLIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "summoner" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base-noprelude - , bytestring, directory, filepath, generic-deriving, gitrev - , neat-interpolation, optparse-applicative, process, relude - , shellmet, stdenv, text, time, tomland - }: - mkDerivation { - pname = "summoner"; - version = "1.3.0.1"; - sha256 = "fa94dc57a47e17e6c91d51a00e2bebb7b2c8ac196633ceaa015de674a3b008d4"; - revision = "5"; - editedCabalFile = "1fy1d12rq8cqafyr0yvwsnslmmvdhpjigjv2ppvhs4ihgghrrij3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base-noprelude bytestring directory filepath - generic-deriving gitrev neat-interpolation optparse-applicative - process relude shellmet text time tomland - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/summoner"; - description = "Tool for scaffolding fully configured batteries-included production-level Haskell projects"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sv" = callPackage - ({ mkDerivation, attoparsec, base, bifunctors, bytestring - , contravariant, hw-dsv, semigroupoids, stdenv, sv-core - , transformers, utf8-string, validation - }: - mkDerivation { - pname = "sv"; - version = "1.3.1"; - sha256 = "53b85d2cdb4a2b76a87158191f5444ba6e1179503428d4b674ef05a2ea932249"; - revision = "2"; - editedCabalFile = "1c0q010bpzdmjlncjn58fvz50l5z2wqp4hjpj0isvdr5iq96pgza"; - libraryHaskellDepends = [ - attoparsec base bifunctors bytestring contravariant hw-dsv - semigroupoids sv-core transformers utf8-string validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/sv"; - description = "Encode and decode separated values (CSV, PSV, ...)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sv-cassava" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cassava, stdenv - , sv-core, utf8-string, validation, vector - }: - mkDerivation { - pname = "sv-cassava"; - version = "0.3"; - sha256 = "2b1c5725aa13dfed861b975ca359bd0a8186928b098ee35dc94f97792e539cb0"; - revision = "3"; - editedCabalFile = "13414sn9rllq842bz0lv8qzdy6fxv72jbhmk64krrxq2xmw7wkhb"; - libraryHaskellDepends = [ - attoparsec base bytestring cassava sv-core utf8-string validation - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/sv"; - description = "Integration to use sv with cassava's parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sv-core" = callPackage - ({ mkDerivation, attoparsec, base, bifunctors, bytestring - , containers, contravariant, deepseq, double-conversion, lens, mtl - , parsec, profunctors, readable, semigroupoids, semigroups, stdenv - , text, transformers, trifecta, utf8-string, validation, vector - , void - }: - mkDerivation { - pname = "sv-core"; - version = "0.4.1"; - sha256 = "c7baf9edb83f0a5a0cac69a9cf80e534b20bfd7f1d4d85c14e2f2b2d046c32af"; - revision = "2"; - editedCabalFile = "05h0lsj434qv81b2fvnm80wyb7272wcwly3jfk4l1qp5hjyq6917"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/sv"; - description = "Encode and decode separated values (CSV, PSV, ...)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-builder" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hashable, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "svg-builder"; - version = "0.1.1"; - sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc"; - revision = "2"; - editedCabalFile = "100nmkgcm1ncv4mkr1xcsa7bb3z6zx0lfayk8innd4hm62xsvhj3"; - libraryHaskellDepends = [ - base blaze-builder bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diagrams/svg-builder.git"; - description = "DSL for building SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.4"; - sha256 = "4ce471e3c3378587360c2e3de055267991b88d846e858bcc3135b4ea0c171ac2"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, base, base-compat-batteries, bytestring - , Cabal, cabal-doctest, containers, cookie, generics-sop, hashable - , http-media, insert-ordered-containers, lens, mtl, network - , QuickCheck, scientific, stdenv, template-haskell, text, time - , transformers, transformers-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.4"; - sha256 = "91718133e85ba1af57e33aa9760609861ac706b4d6ffd74d8f068ef2eda10854"; - revision = "1"; - editedCabalFile = "02qlfsgqc5jmc616xn30hn213dwhsqlkrrk2pa6774f0dcn8rpiz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson base base-compat-batteries bytestring containers cookie - generics-sop hashable http-media insert-ordered-containers lens mtl - network QuickCheck scientific template-haskell text time - transformers transformers-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swish" = callPackage - ({ mkDerivation, base, containers, directory, filepath, hashable - , intern, mtl, network-uri, old-locale, polyparse, stdenv, text - , time - }: - mkDerivation { - pname = "swish"; - version = "0.10.0.2"; - sha256 = "c1496923e477450155d72f2065ab268ae03cec93b36d68f7137ce4d29174dce4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers directory filepath hashable intern mtl network-uri - old-locale polyparse text time - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/dburke/swish"; - description = "A semantic web toolkit"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7.1"; - sha256 = "e04a9c7ae48d9fe25e9b7a064f7122d39c710753544511e15df7a6e87fdfe700"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.4"; - sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "systemd" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, transformers - , unix - }: - mkDerivation { - pname = "systemd"; - version = "1.2.0"; - sha256 = "af1c64f9ee869a08ced257106bff8082c5e7b6ba21fa554e5fc708cf7b7c5f12"; - libraryHaskellDepends = [ - base bytestring network transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erebe/systemd"; - description = "Systemd facilities (Socket activation, Notify)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1.1"; - sha256 = "e5b4ee185f30a64d854fb02291f7bdf60f8846f1fcc3d67ebc6ab1f61e74ee88"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "tagged"; - version = "0.8.6"; - sha256 = "ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd"; - revision = "2"; - editedCabalFile = "1y8z8hmm846z7h3wqncpi0d4zhsnkwf08q0wchivkjw8di7ahz0z"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.3"; - sha256 = "2cec62a7aac67cae90003e811eda26bfcf3c297b9987e548c0d54cc6b653b2d8"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagshare" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "d2314bae2e6820700f2a61db9c9f7976e1b53547a49cdd3352bdf29ac3856ce0"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "TagShare - explicit sharing with tags"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.8"; - sha256 = "ba7e5500d853d29f0675b90655b7fdd032a4a7eee82a56e7ee3ef9949fe93ad5"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagstream-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, conduit-extra, data-default, resourcet - , stdenv, text, transformers, xml-conduit - }: - mkDerivation { - pname = "tagstream-conduit"; - version = "0.5.5.3"; - sha256 = "b296e8f0ba18ae951b5bb3fc2d9d964954666df61ea9363d667f251af17134ab"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring case-insensitive conduit - conduit-extra data-default resourcet text transformers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yihuang/tagstream-conduit"; - description = "streamlined html tag parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.1"; - sha256 = "b384449f62b2b0aa3e6d2cb1004b8060b01f21ec93e7b63e7af6d8fad8a9f1de"; - revision = "1"; - editedCabalFile = "1ni8zym7k6f1hg6wfvnnf3xcs2ar3z8xaabkgjg8q329arjcm8wp"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.3.2"; - sha256 = "004578db7088e7ad53e23f8a293d739314698f0ec421ffad7be101e13c1cf62d"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - , wcwidth - }: - mkDerivation { - pname = "tasty"; - version = "1.2.3"; - sha256 = "8ca107abc12a476cfbc84f516f30a614c81be315903f910bc681137eb702f662"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix wcwidth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-ant-xml" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, ghc-prim, mtl, stdenv, stm, tagged, tasty - , transformers, xml - }: - mkDerivation { - pname = "tasty-ant-xml"; - version = "1.1.6"; - sha256 = "1c17899e3870922113bbfbf50e33b24478b53cae85dc76906a2de57c03bd188f"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving ghc-prim mtl - stm tagged tasty transformers xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-ant-xml"; - description = "Render tasty output to XML for Jenkins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "2.0.0.1"; - sha256 = "3face0f15baf33e55d1ecef336bf262cd70f84696e1925f8863378f642fe8fa5"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.1"; - sha256 = "be6c5b384614a592fb056e2e4f7806416aa37f114db77d0f8986938ba7cc1d3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "http://git.coop/lwm/tasty-discover"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.2"; - sha256 = "1689d91bf02994858bdaa7fdad0944eebfa8ea27744da9bae48cea59c36caf9c"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.2"; - sha256 = "04103d2a2fd6acc8f66b67d943060e88a2ea36b799502bf3e76c2726a15c714c"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-hedgehog"; - version = "1.0.0.2"; - sha256 = "65538f7371f5ccf52c232a4723d931dd0278ea49bf478c2abe50c3bc4c1d5bef"; - libraryHaskellDepends = [ base hedgehog tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/tasty-hedgehog"; - description = "Integration for tasty and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.5.1"; - sha256 = "fe889ec0f7b3991c46a07d9ff9cf09608a73a18f434a7480d2a09c79e56f3345"; - revision = "4"; - editedCabalFile = "1yppwhs2r2rlwrzli9ccv5ldgl95h5p7pqhsr898r3das6daf6sk"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.2"; - sha256 = "4823c85efe15f36e1d71867aaa6cdcdff3ef39f97492321e9bb8a30c742f6ef7"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, tasty }: - mkDerivation { - pname = "tasty-leancheck"; - version = "0.0.1"; - sha256 = "2791628bf9698aee88c9e1b07ff2f910510664cdc44e2a30c805c2026888d31a"; - libraryHaskellDepends = [ base leancheck tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/tasty-leancheck#readme"; - description = "LeanCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-lua" = callPackage - ({ mkDerivation, base, bytestring, file-embed, hslua, stdenv, tasty - , text - }: - mkDerivation { - pname = "tasty-lua"; - version = "0.2.0.1"; - sha256 = "1d976b6cabfb86fd6d9b4ca82af8ee90c20c8457a6577da008a34f98b3199276"; - libraryHaskellDepends = [ - base bytestring file-embed hslua tasty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/tasty-lua"; - description = "Write tests in Lua, integrate into tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10.1"; - sha256 = "50d77092005ffd605177322d8d049994cbd8091dc0b56774d8cce6ba4bdb9b4c"; - revision = "1"; - editedCabalFile = "1ms8ph2vp8x1icqiw468zlpsj4pii7xjm6g3k6ikkcy7cx3vnv4s"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.13"; - sha256 = "da5d755276652b75aa2f8876f2b62f81bfa368f12c17dbd018dcd2cde4eba9e9"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, io-streams - , network, pem, stdenv, tls, x509, x509-store, x509-system - }: - mkDerivation { - pname = "tcp-streams"; - version = "1.0.1.1"; - sha256 = "0a6313e4b329b6f9fd3854963868cc2208aaad4259ae6618afa91950990fe2b7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring data-default-class io-streams network pem tls x509 - x509-store x509-system - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "One stop solution for tcp client and server with tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tcp-streams-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, HsOpenSSL-x509-system - , io-streams, network, stdenv, tcp-streams - }: - mkDerivation { - pname = "tcp-streams-openssl"; - version = "1.0.1.0"; - sha256 = "c3e7588ba7348fac87a9dcc531909f90bb3b4a1c01da9eb871a918d02b146afe"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL HsOpenSSL-x509-system io-streams network - tcp-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/didi-FP/tcp-streams"; - description = "Tcp streams using openssl for tls support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2.1"; - sha256 = "d46e38067c4d064f3c9c77219f570ba4e9dbbd7273a5edc4860610cde4afb84e"; - revision = "4"; - editedCabalFile = "0830zzgbf5xffa1yqwcvy4xm1wzzydvy5wmy3sqk3a5n85v295by"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "template-toolkit" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , directory, hashtables, mtl, parsec, pcre-utils - , regex-pcre-builtin, scientific, stdenv, text, time - , unordered-containers, uri-encode - }: - mkDerivation { - pname = "template-toolkit"; - version = "0.1.1.0"; - sha256 = "e112d6896958d9d6eb7a4fc63b0b77a9a185d5452d0d4318c6a62121b17b1a5b"; - libraryHaskellDepends = [ - aeson base binary bytestring containers directory hashtables mtl - parsec pcre-utils regex-pcre-builtin scientific text time - unordered-containers uri-encode - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kobargh/template-toolkit#readme"; - description = "Template Toolkit implementation for Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-resourcet" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, resourcet - , stdenv, transformers, unix - }: - mkDerivation { - pname = "temporary-resourcet"; - version = "0.1.0.1"; - sha256 = "e0406f6834690ffa3a0b9727302a5ae928cbdc1eb42431a15daaac498fcaee71"; - libraryHaskellDepends = [ - base directory exceptions filepath resourcet transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/ttuegel/temporary-resourcet"; - description = "Portable temporary files and directories with automatic deletion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tensors" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "tensors"; - version = "0.1.4"; - sha256 = "d65d2c0dc7c6c90357c892b42dc13f853c95b96270e4b5afb3d717d42f1a38f2"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/tensors#readme"; - description = "Tensor in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "termbox" = callPackage - ({ mkDerivation, array, base, c2hs, stdenv }: - mkDerivation { - pname = "termbox"; - version = "0.2.0"; - sha256 = "0fcb204e2ddfdac84add91f49b8e28da1502ef8671a02611d8d01a568ce4c113"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/termbox"; - description = "termbox bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-progress-bar" = callPackage - ({ mkDerivation, base, deepseq, stdenv, terminal-size, text, time - }: - mkDerivation { - pname = "terminal-progress-bar"; - version = "0.4.1"; - sha256 = "a61ca10c92cacc712dbbe28881dc23f41cc139760b7b2eef66bd0faa60ea5e24"; - libraryHaskellDepends = [ base deepseq terminal-size text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roelvandijk/terminal-progress-bar"; - description = "A progress bar in the terminal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, test-framework }: - mkDerivation { - pname = "test-framework-leancheck"; - version = "0.0.1"; - sha256 = "236c4c2e6b647c5eb84aeda94a949d50341999825d1a9372f195218137609f2f"; - libraryHaskellDepends = [ base leancheck test-framework ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/test-framework-leancheck#readme"; - description = "LeanCheck support for test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.5"; - sha256 = "c9f678d4ec30599172eb887031f0bce2012b532daeb713836bd912bff64eee59"; - revision = "1"; - editedCabalFile = "1vmpk70h1594h9s216d3ngkb399fpny1d3sh4gg0vrc75p4as68d"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-feat" = callPackage - ({ mkDerivation, base, QuickCheck, size-based, stdenv - , testing-type-modifiers - }: - mkDerivation { - pname = "testing-feat"; - version = "1.1.0.0"; - sha256 = "1904d31ddce611474e8c836582efbca1ae7d1c7dc76083cf4300e8e0eeff58ec"; - libraryHaskellDepends = [ - base QuickCheck size-based testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JonasDuregard/testing-feat"; - description = "Functional Enumeration of Algebraic Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.11.3"; - sha256 = "2e01dd4534f3dba26a4d5ec889dcb2c6195bd0211b125eab305aae41eeea370f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, bytestring, deferred-folds, stdenv, text - , transformers - }: - mkDerivation { - pname = "text-builder"; - version = "0.6.6.1"; - sha256 = "b5fa52a4a33bc6ba727996607ccdff0c35b951d1d522e786c96e59f16dafd20d"; - libraryHaskellDepends = [ - base bytestring deferred-folds text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-format" = callPackage - ({ mkDerivation, array, base, double-conversion, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, transformers - }: - mkDerivation { - pname = "text-format"; - version = "0.3.2"; - sha256 = "326637b8ad8420a51c0531cb444e45e0029d68c5980a53d5ffdfa2297d47bae3"; - revision = "1"; - editedCabalFile = "155bddqabsxdfzdr7wl67qw9w777c2qkwxgjpx625875cvyhqkpa"; - libraryHaskellDepends = [ - array base double-conversion ghc-prim integer-gmp old-locale text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-format"; - description = "Text formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.13"; - sha256 = "ec174c30333548e21b045554329e6332d54bc355d96e0951ea3ea524463a2a34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.1"; - sha256 = "c6e26888d2751b78e3102747d0bccedeee4002a1eb6c76dd1fe6c3836b5082e8"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5.0.1"; - sha256 = "58a7680fc75a058ef8a03a6d519d5266f204bae2eb30021663de135a1c31b518"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-region" = callPackage - ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring - , groups, lens, stdenv, text - }: - mkDerivation { - pname = "text-region"; - version = "0.3.1.0"; - sha256 = "a74cac02ae5b3c37d09d415f2440a2ea1977145b962b3e291c6484d7cffac5ff"; - revision = "1"; - editedCabalFile = "1z5l1hv8sc4ida5s4r03ihak612lrq0rf7sdfkw7gf05f67c622p"; - libraryHaskellDepends = [ - aeson base base-unicode-symbols bytestring groups lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvoidex/text-region"; - description = "Marking text regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.3"; - sha256 = "bf5b9fedb7d0301e8fdf33e3223d10ca940e9e72c18bac135be80b6016edd977"; - revision = "1"; - editedCabalFile = "0lb4papn54fbgjdqj4ladaf5q12dhlwkg5z2vc5qxlh35x82sw4a"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, contravariant - , generic-deriving, ghc-boot-th, ghc-prim, integer-gmp, nats - , semigroups, stdenv, tagged, template-haskell, text - , th-abstraction, th-lift, transformers, transformers-compat, void - }: - mkDerivation { - pname = "text-show"; - version = "3.8.2"; - sha256 = "9f63ac31b76afa4b4e28eb50e98a69aedd868e46b616491d79e3772a5fc18658"; - revision = "1"; - editedCabalFile = "0fdlba9rmjk7irf376rglyyi9rbz49mhm5zyx112ah8nqgh50myi"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers contravariant generic-deriving - ghc-boot-th ghc-prim integer-gmp nats semigroups tagged - template-haskell text th-abstraction th-lift transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show-instances" = callPackage - ({ mkDerivation, base, base-compat-batteries, bifunctors, binary - , containers, directory, ghc-boot-th, haskeline, hpc, old-locale - , old-time, pretty, random, semigroups, stdenv, tagged - , template-haskell, terminfo, text, text-short, text-show, time - , transformers, transformers-compat, unix, unordered-containers - , vector, xhtml - }: - mkDerivation { - pname = "text-show-instances"; - version = "3.8.3"; - sha256 = "ad549ae8614843558f7cc44ee6d054ae9950c9ac45d349b18cc97d3e6e196387"; - revision = "1"; - editedCabalFile = "104r5k4h4sdf69frpc0pr8jijk4v9dalw9c18yib653bwjw0ypl4"; - libraryHaskellDepends = [ - base base-compat-batteries bifunctors binary containers directory - ghc-boot-th haskeline hpc old-locale old-time pretty random - semigroups tagged template-haskell terminfo text text-short - text-show time transformers transformers-compat unix - unordered-containers vector xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show-instances"; - description = "Additional instances for text-show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-zipper" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text, vector }: - mkDerivation { - pname = "text-zipper"; - version = "0.10.1"; - sha256 = "9afaeb93d55b0bb6d0d6f495e3ff0789a60d0dee57fb6103f52e4c05ae64b14b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base deepseq text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/text-zipper/"; - description = "A text editor zipper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.1.1"; - sha256 = "71b494920377cfd1c58f220e5d8862c1f2c0d2b1ce529352f2fde20428a96ce2"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.3.1.0"; - sha256 = "4b9e1bcc6ec3d897fb09c3d7fa2f37f0672d5370e0e3e49809886da81fe001b9"; - revision = "1"; - editedCabalFile = "1c0sy614vfcdvshn0z09nzfiq89v5if31yvvpxzrivrdy9gf912s"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.0.2.7"; - sha256 = "13aaff2410e39e518f6de74a5bdd20de0e0139fc4af2c344e7c282cf63fa4e7a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv, syb - , template-haskell, th-expand-syns, th-lift, th-orphans - }: - mkDerivation { - pname = "th-desugar"; - version = "1.9"; - sha256 = "f14a7a854df55abb3bbca5ef0ec202ed4d7e1631a5fb51767d360dc1b604afef"; - libraryHaskellDepends = [ - base containers mtl syb template-haskell th-expand-syns th-lift - th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.5.0"; - sha256 = "5e909e674bc6311d4a8c2376df1e5bda2d8ecde8d79ec8d3d51f59c5bc779cdc"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.8.1"; - sha256 = "3fa1f4193794d8d6dc7864e20a2f89ab268c321a4b3d254fd38282619f8e5ed7"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/RyanGlScott/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, th-lift, transformers, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.14"; - sha256 = "e87c194c9aa85576ba32dd7f7c70b8c182a3089d9c3107c9e5c448b6ad242b64"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text th-lift - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-nowq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, time }: - mkDerivation { - pname = "th-nowq"; - version = "0.1.0.3"; - sha256 = "a997d2807b566ac4b4a22633b338ce80a03a60653f4ba611b5b98e9cd6f18c22"; - libraryHaskellDepends = [ base template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/th-nowq#readme"; - description = "Template Haskell splice that expands to current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.9"; - sha256 = "3f3c6bead037cb11faf633b3938d1af2c6b11399e8353b72e80d9eb3b57e41f6"; - revision = "1"; - editedCabalFile = "100gpi0np50vxlapyl6d05w8ss9l2gqacn28i228hsvhvrxxwjdy"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-printf" = callPackage - ({ mkDerivation, base, charset, containers, microlens-platform, mtl - , parsec, semigroups, stdenv, template-haskell, th-lift - , transformers - }: - mkDerivation { - pname = "th-printf"; - version = "0.6.0"; - sha256 = "c258ed7852cbafa6c4b7142343d6294513081a7b7ddeeb89c089b082fa5f0ed7"; - libraryHaskellDepends = [ - base charset containers microlens-platform mtl parsec semigroups - template-haskell th-lift transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pikajude/th-printf#readme"; - description = "Quasiquoters for printf"; - license = stdenv.lib.licenses.mit; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.5"; - sha256 = "af1b2e7e39e029d8c9a20efdd7b49d4d15616ac360adddc7a09560b9a223359c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.9"; - sha256 = "f889dd029d5ab191ace99fe595f363c60314d536e61c8c58f6167f1a9d29ae43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-test-utils" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "th-test-utils"; - version = "1.0.1"; - sha256 = "9d75fd38252cceac121e38c18645ef14d799332739432d18a836f0ac3e917de1"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/th-test-utils#readme"; - description = "Utility functions for testing Template Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-utilities" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , primitive, stdenv, syb, template-haskell, text, th-orphans - }: - mkDerivation { - pname = "th-utilities"; - version = "0.2.3.1"; - sha256 = "264dff849c2593886195d525fe17a78c5299aeee2229cf524afc17c4f85bc3eb"; - libraryHaskellDepends = [ - base bytestring containers directory filepath primitive syb - template-haskell text th-orphans - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/th-utilities#readme"; - description = "Collection of useful functions for use with Template Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, assoc, base, base-compat, binary, deepseq - , hashable, QuickCheck, semigroupoids, stdenv, unordered-containers - }: - mkDerivation { - pname = "these"; - version = "1.0.1"; - sha256 = "79cc1ee35d268c5871f585681c649daded2ffe5fc657c3db87a9b2f38a8917cc"; - revision = "1"; - editedCabalFile = "0923r86fnmgpx0msm68aszirh2n19nn5bccgjxfh2146jw4z7w3z"; - libraryHaskellDepends = [ - aeson assoc base base-compat binary deepseq hashable QuickCheck - semigroupoids unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.1"; - sha256 = "8181448452c759b660f6d7c8775fd99479ccc382cd291460903b15574e5d5c34"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.2"; - sha256 = "d648e01631189036a386d91de22f2b862e830ad0625b1f6096b347974f465294"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threepenny-gui" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, containers - , data-default, deepseq, exceptions, file-embed, filepath, hashable - , safe, snap-core, snap-server, stdenv, stm, template-haskell, text - , transformers, unordered-containers, vault, vector, websockets - , websockets-snap - }: - mkDerivation { - pname = "threepenny-gui"; - version = "0.8.3.1"; - sha256 = "5497dcfa3328de5bd834f7440df863ddb56c70652c69f8fce7dfada995b75522"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default deepseq - exceptions file-embed filepath hashable safe snap-core snap-server - stm template-haskell text transformers unordered-containers vault - vector websockets websockets-snap - ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Threepenny-gui"; - description = "GUI framework that uses the web browser as a display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "thyme" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , cpphs, deepseq, mtl, old-locale, profunctors, QuickCheck, random - , stdenv, text, time, vector, vector-space, vector-th-unbox - }: - mkDerivation { - pname = "thyme"; - version = "0.3.5.5"; - sha256 = "84c6701fb7b40841d22582202382c362fd9e0d6e5f1c959b7e0f2f91a85c796c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers deepseq mtl old-locale - profunctors QuickCheck random text time vector vector-space - vector-th-unbox - ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liyang/thyme"; - description = "A faster time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.5"; - sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-manager" = callPackage - ({ mkDerivation, auto-update, base, stdenv }: - mkDerivation { - pname = "time-manager"; - version = "0.0.0"; - sha256 = "90a616ed20b2119bb64f78f84230b6798cde22a35e87bc8d9ee08cdf1d90fcdb"; - libraryHaskellDepends = [ auto-update base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Scalable timer"; - license = stdenv.lib.licenses.mit; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.1"; - sha256 = "bbf133bd986e79664560f42f2a36b7ad2e89c1095316029e7d6b228412355380"; - revision = "1"; - editedCabalFile = "00063s6a75sy9fjg5507yix0wizdfx5vangn3yfmfvh3wgw8yj8c"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, time - , time-locale-compat - }: - mkDerivation { - pname = "time-qq"; - version = "0.0.1.0"; - sha256 = "ad6f0e5a6e5606ec2df3bb20006f92158100f20298a1b71fe6d79532c6814c87"; - libraryHaskellDepends = [ - base template-haskell time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/christian-marie/time-qq"; - description = "Quasi-quoter for UTCTime times"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timer-wheel" = callPackage - ({ mkDerivation, atomic-primops, base, psqueues, stdenv, vector }: - mkDerivation { - pname = "timer-wheel"; - version = "0.2.0.1"; - sha256 = "be93289e65b43a790a2529551e0871123081e77b90dea1b69ea4ae5912d86bd4"; - libraryHaskellDepends = [ atomic-primops base psqueues vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/timer-wheel"; - description = "A timer wheel"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tintin" = callPackage - ({ mkDerivation, base, clay, containers, data-has, directory - , frontmatter, inflections, inliterate, lucid, optparse-generic - , process, require, stdenv, temporary, text, universum, yaml - }: - mkDerivation { - pname = "tintin"; - version = "1.10.1"; - sha256 = "2217674d77a5756acf84bdf0072cb3faec82a788b600c36299b3e3f14fc82da4"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/theam/tintin#readme"; - description = "A softer alternative to Haddock"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.15.0"; - sha256 = "cb71164ce47af991babc9837e3e86c4f9d4e0cac1440f56faa71f4497af58d5f"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tldr" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, cmark, directory - , filepath, optparse-applicative, semigroups, stdenv, text - , typed-process - }: - mkDerivation { - pname = "tldr"; - version = "0.4.0.2"; - sha256 = "c22187ab15d0eeffe8efbd630b3c72e0a6a5df633aef996ff83ef6759ef7c9ff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring cmark text - ]; - executableHaskellDepends = [ - base directory filepath optparse-applicative semigroups - typed-process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/tldr-hs#readme"; - description = "Haskell tldr client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, memory, mtl, network - , stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.4.1"; - sha256 = "bbead1afc0b808bd5cff7bddaeae84ade37f18bbe72bd78d45a2fa4ac41908f8"; - revision = "1"; - editedCabalFile = "0qk07miindqvynhgsqj8jjk1d6i95lbgwipanwnn4vh1707z8xhv"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class memory mtl network transformers x509 x509-store - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, time, tls, x509, x509-store, x509-system - , x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.5"; - sha256 = "a345c4863bf923829d73abb8e2b706dab8058b12cdf73859d3860eaf7223eb9b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem time tls - x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, basement, bytestring, clock - , memory, psqueues, stdenv, tls - }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.4"; - sha256 = "ba207f79b4536a65625063106c621e8bafc0dc7928bd9273270e19f36d59938c"; - libraryHaskellDepends = [ - auto-update base basement bytestring clock memory psqueues tls - ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, async, base, bytestring, directory, network - , port-utils, postgresql-simple, process, stdenv, temporary, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "0.2.0.0"; - sha256 = "04cff3ddcf4935df9693f44b4338d35da2905a467d5829606de72a8f60468823"; - libraryHaskellDepends = [ - async base bytestring directory network port-utils - postgresql-simple process temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres for testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "token-bucket" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "token-bucket"; - version = "0.1.0.1"; - sha256 = "312609c0037271b1091f23c2edf467e9449edca5bbed0cfb45c2c93c1bee6ad0"; - revision = "5"; - editedCabalFile = "049d9bk5f8qa6d7gjgg4nqd56xz1mrxr1rxcwxsrk4vkqcpmzs6q"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/token-bucket"; - description = "Rate limiter using lazy bucket algorithm"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , markdown-unlit, megaparsec, mtl, parser-combinators, stdenv, text - , time, transformers, unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "1.1.0.1"; - sha256 = "51cde31c25056c6a0714758eb782bda0c019bdd2ef58f29baf6364cbf6451f46"; - revision = "1"; - editedCabalFile = "16382q0q77bv9zlahmgbmc90hvl1b23g9fxk4dl2f1lhlfqjkxnw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable megaparsec mtl - parser-combinators text time transformers unordered-containers - ]; - executableHaskellDepends = [ base text time unordered-containers ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "Bidirectional TOML serialization"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "tonalude" = callPackage - ({ mkDerivation, base, bytestring, rio, stdenv, unliftio }: - mkDerivation { - pname = "tonalude"; - version = "0.1.1.0"; - sha256 = "5aa0ce5f89d5e7568e303f1ba41ca998ba05fbf94c17eb42fb01d3e65b601018"; - libraryHaskellDepends = [ base bytestring rio unliftio ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "A standard library for Tonatona framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tonaparser" = callPackage - ({ mkDerivation, base, envy, rio, say, stdenv }: - mkDerivation { - pname = "tonaparser"; - version = "0.1.0.0"; - sha256 = "402215adc8596cd3053f3dc6ffceaf11b6f53f0d8d6a7ccfa44c7a3a0273386d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base envy rio say ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "Scalable way to pass runtime configurations for tonatona"; - license = stdenv.lib.licenses.mit; - }) {}; - "tonatona" = callPackage - ({ mkDerivation, base, rio, stdenv, tonaparser }: - mkDerivation { - pname = "tonatona"; - version = "0.1.1.0"; - sha256 = "340d5079ca966662f2458d42ff5c5943370777d3a003f0d358379d28ea480d9e"; - libraryHaskellDepends = [ base rio tonaparser ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "meta application framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tonatona-logger" = callPackage - ({ mkDerivation, base, rio, stdenv, tonaparser, tonatona }: - mkDerivation { - pname = "tonatona-logger"; - version = "0.2.0.0"; - sha256 = "caed8d35fc9aa9482b974df7d3f3050347047d3e4e0579bce1d579485dcdf192"; - libraryHaskellDepends = [ base rio tonaparser tonatona ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "tonatona plugin for logging"; - license = stdenv.lib.licenses.mit; - }) {}; - "tonatona-persistent-postgresql" = callPackage - ({ mkDerivation, base, monad-logger, persistent - , persistent-postgresql, resource-pool, rio, stdenv, tonaparser - , tonatona - }: - mkDerivation { - pname = "tonatona-persistent-postgresql"; - version = "0.1.0.1"; - sha256 = "b6bc628099ad456a54863ae5788a1734411d25ac8971d6a812802e22001caebb"; - libraryHaskellDepends = [ - base monad-logger persistent persistent-postgresql resource-pool - rio tonaparser tonatona - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "tonatona plugin for accessing PostgreSQL database"; - license = stdenv.lib.licenses.mit; - }) {}; - "tonatona-persistent-sqlite" = callPackage - ({ mkDerivation, base, monad-logger, persistent, persistent-sqlite - , resource-pool, rio, stdenv, tonaparser, tonatona - }: - mkDerivation { - pname = "tonatona-persistent-sqlite"; - version = "0.1.0.1"; - sha256 = "cbe78bf4d2866d025cfc643cd577b5576c3bdc66032ae1d5c939b61b407c1228"; - libraryHaskellDepends = [ - base monad-logger persistent persistent-sqlite resource-pool rio - tonaparser tonatona - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "tonatona plugin for accessing Sqlite database"; - license = stdenv.lib.licenses.mit; - }) {}; - "tonatona-servant" = callPackage - ({ mkDerivation, base, data-default, exceptions, http-types - , monad-logger, rio, servant, servant-server, stdenv, tonaparser - , tonatona, tonatona-logger, wai, wai-extra, warp - }: - mkDerivation { - pname = "tonatona-servant"; - version = "0.1.0.3"; - sha256 = "3963c887e4952ec46076c61866459ca541aa41e606deb64de5db7ee1ae2281ec"; - libraryHaskellDepends = [ - base data-default exceptions http-types monad-logger rio servant - servant-server tonaparser tonatona tonatona-logger wai wai-extra - warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "tonatona plugin for servant"; - license = stdenv.lib.licenses.mit; - }) {}; - "topograph" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, containers - , stdenv, vector - }: - mkDerivation { - pname = "topograph"; - version = "1"; - sha256 = "a7a95e00518d1c52dcf5261b0be4776012122032fdbdeae0bdf41ce38a92a76e"; - revision = "2"; - editedCabalFile = "0sci2p1spsh7as4n7mp1hb4pwiq4wd69p60c71kwx56wpwiglp9i"; - libraryHaskellDepends = [ - base base-compat base-orphans containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/topograph"; - description = "Directed acyclic graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "torsor" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "torsor"; - version = "0.1"; - sha256 = "75a3f53a08b9333613a16c5e98f12a069a1c1a360dc3c2abf7b47522acb06d9c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/torsor#readme"; - description = "Torsor Typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tracing" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, containers, http-client, ip, mtl, network - , random, stdenv, stm, text, time, transformers, unliftio - }: - mkDerivation { - pname = "tracing"; - version = "0.0.4.0"; - sha256 = "4be2c266499f6dc494e548ebe75c84aa19d43f14202513a0f652fb5573821ad0"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive containers - http-client ip mtl network random stm text time transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/tracing"; - description = "Distributed tracing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.5"; - sha256 = "da67cf11515da751b32a8ce6e96549f7268f7c435769ad19dc9766b69774620b"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.1.0"; - sha256 = "d69b371265f20ecd6c72e3643036f835dc8b654516d2a5e496fabaae4f0ad1fa"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, bytestring-builder, containers, hashable - , parsec, parsers, pretty, QuickCheck, scientific, stdenv, tagged - , text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.1"; - sha256 = "e3d901ad6f3e2732f07e0dafcafb27bef2f2cadec46bf9c9a5c95e60f1b2a684"; - revision = "2"; - editedCabalFile = "081fcdkps3sc1pcfbcxs5f1ifnpx8hsk9ms2gafd793lia6whfsk"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - bytestring-builder containers hashable parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, array, base - , blaze-builder, blaze-html, blaze-markup, bytestring, Cabal - , cabal-doctest, charset, comonad, containers, deepseq, fingertree - , ghc-prim, hashable, lens, mtl, parsers, profunctors, reducers - , semigroups, stdenv, transformers, unordered-containers - , utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "2"; - sha256 = "53972fe9d206eab6ae1a654fe8c57274f01b373b0c8b3882ef01e962226af643"; - revision = "4"; - editedCabalFile = "0xbwyvwl6f2zylk60f2akwgq03qv49113xil7b1z1s3vlwbn5aj1"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint array base blaze-builder blaze-html - blaze-markup bytestring charset comonad containers deepseq - fingertree ghc-prim hashable lens mtl parsers profunctors reducers - semigroups transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.2.2.1"; - sha256 = "3ab7ff8bc630fbdd3d479e993d67853dacfc2967a2ca46b8bb7ee9387158d971"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "trivial-constraint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "trivial-constraint"; - version = "0.6.0.0"; - sha256 = "e527a3f98b2d32ea8453bc2b29510b7c48c1076b4061168ef8b8d07a28f51178"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leftaroundabout/trivial-constraint"; - description = "Constraints that any type, resp. no type fulfills"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "true-name" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "true-name"; - version = "0.1.0.3"; - sha256 = "c630ef80687e12c092a797229be96e930819c1042c7cc9f755637ef74774e468"; - revision = "1"; - editedCabalFile = "0x56r3wyrrsckx6kdvr4v9janrby5qa21fjqwg9k211765c9ddj6"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liyang/true-name"; - description = "Template Haskell hack to violate module abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttl-hashtables" = callPackage - ({ mkDerivation, base, clock, containers, data-default, failable - , hashable, hashtables, mtl, stdenv, transformers - }: - mkDerivation { - pname = "ttl-hashtables"; - version = "1.3.1.1"; - sha256 = "9bbfe272a87c0ff99b93f75b79f5fbae34d5949cfe87bc6323acbaf9deab5591"; - revision = "1"; - editedCabalFile = "17pkzci2nqi0d4zcpyxcv5l1hn7m04h2kwqjgqm7kc2c3p620qv3"; - libraryHaskellDepends = [ - base clock containers data-default failable hashable hashtables mtl - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Extends hashtables so that entries added can be expired after a TTL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple" = callPackage - ({ mkDerivation, base, OneTuple, stdenv }: - mkDerivation { - pname = "tuple"; - version = "0.3.0.2"; - sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624"; - libraryHaskellDepends = [ base OneTuple ]; - doHaddock = false; - doCheck = false; - description = "Various functions on tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.1.0"; - sha256 = "f6e18d0f444993c959eaa7d1aca87993c779b929260b1c6dd823715d3e736043"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, streaming-commons, system-fileio, system-filepath, temporary - , text, time, transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.16"; - sha256 = "5616e6d6c184fbe77e695f99f6f22c52072b80dce4a6e68974f51aaa5fd18c98"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm streaming-commons - system-fileio system-filepath temporary text time transformers unix - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-errors" = callPackage - ({ mkDerivation, base, first-class-families, stdenv, syb - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "type-errors"; - version = "0.2.0.0"; - sha256 = "174d509c30ec806117a244add923fee578ba5f3505b0156f4e03a32023892eb4"; - libraryHaskellDepends = [ - base first-class-families syb template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/type-errors#readme"; - description = "Tools for writing better type errors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-errors-pretty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-errors-pretty"; - version = "0.0.1.0"; - sha256 = "b466d66ec26441a05052ed9f57ab1ac7b6818daff11e8e667aaf2a5cf516e7f6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chshersh/type-errors-pretty"; - description = "Combinators for writing pretty type errors easily"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-map" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "type-map"; - version = "0.1.6.0"; - sha256 = "25d7ff6ceda7eb4f9aa95a1a4d8463fc71f88d019ca0d1410ecff2df56a1537d"; - libraryHaskellDepends = [ base containers ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/type-map"; - description = "Type-indexed maps"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , ghc-prim, stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.5.1.0"; - sha256 = "4cc45bb6258ffe5c932d9ed7f25883adc6f6fdde345de774ccd665e3e4037f91"; - libraryHaskellDepends = [ - base bytestring containers double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.2.0.0"; - sha256 = "9250be034d38b1412f530b92814b5de9ad189e97b5f0120b42955f9995dba3b2"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.4.0.0"; - sha256 = "b8eb5e12f4979dd3e2ea7c0edca60e31a7f4fbaab35d7dd44e9b5d5bf783247d"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers, unliftio-core - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.6.0"; - sha256 = "31a2a81f33463fedc33cc519ad5b9679787e648fe2ec7efcdebd7d54bdbbc2b1"; - libraryHaskellDepends = [ - async base bytestring process stm transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typelits-witnesses" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv }: - mkDerivation { - pname = "typelits-witnesses"; - version = "0.4.0.0"; - sha256 = "e0505cdb323111d1a0dfb121b7e0dc7fd4b43cd931b7f3368187eaca942d1ece"; - libraryHaskellDepends = [ base dependent-sum ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/typelits-witnesses"; - description = "Existential witnesses, singletons, and classes for operations on GHC TypeLits"; - license = stdenv.lib.licenses.mit; - }) {}; - "typenums" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "typenums"; - version = "0.1.2.1"; - sha256 = "c6b4e083e664ecea40be2555f24c2e8b322b4f32a4a434e6514fecd6d6d6991b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adituv/typenums#readme"; - description = "Type level numbers using existing Nat functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typerep-map" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, primitive - , stdenv, vector - }: - mkDerivation { - pname = "typerep-map"; - version = "0.3.2"; - sha256 = "60bdbc337e34b446a7c126bc99dfe9ae0089500fd435c6967f38ca548184e768"; - revision = "3"; - editedCabalFile = "032y3parcz7ffmsqichmshczk7zxkg66dciwvr5d7fznqvy3sg1s"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/typerep-map"; - description = "Efficient implementation of a dependent map with types as keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "tz" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-default - , deepseq, stdenv, template-haskell, time, tzdata, vector - }: - mkDerivation { - pname = "tz"; - version = "0.1.3.3"; - sha256 = "d18e3bf47a5008d90483956f7810ce6137d910925287cfcadcb59b49dbb0d1b2"; - libraryHaskellDepends = [ - base binary bytestring containers data-default deepseq - template-haskell time tzdata vector - ]; - doHaddock = false; - doCheck = false; - preConfigure = "export TZDIR=${pkgs.tzdata}/share/zoneinfo"; - homepage = "https://github.com/nilcons/haskell-tz"; - description = "Efficient time zone handling"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20190911.0"; - sha256 = "699108b493b13f50b7e299da00e2f2251f6885da851cb68a183daf1e00c1d594"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ua-parser" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, file-embed - , pcre-light, stdenv, text, yaml - }: - mkDerivation { - pname = "ua-parser"; - version = "0.7.5.1"; - sha256 = "1fcc39a99b9ad7eb2ddb2194ea84def35860078c0344531e2715dc2b819e3424"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring data-default file-embed pcre-light text yaml - ]; - doHaddock = false; - doCheck = false; - description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ucam-webauth" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , cryptonite, errors, http-api-data, http-types, microlens - , microlens-mtl, mtl, parser-combinators, pem, stdenv, text, time - , ucam-webauth-types, x509 - }: - mkDerivation { - pname = "ucam-webauth"; - version = "0.1.0.0"; - sha256 = "335920d87a8d8fa24bcba34c4cba0a7adc84199c3161757ae00d7bad54428992"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dbaynard/UcamWebauth#readme"; - description = "The Ucam-Webauth protocol, used by Raven"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "ucam-webauth-types" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , case-insensitive, containers, deepseq, http-types, microlens - , microlens-mtl, mtl, stdenv, text, time, timerep - }: - mkDerivation { - pname = "ucam-webauth-types"; - version = "0.1.0.0"; - sha256 = "d1ca7f834078ca63d398c1c2498e8f89e9edfae16b3150937973e5daaa32064b"; - revision = "4"; - editedCabalFile = "1lb0yq1051fi71qrbnkyg39c7rn5x62w2qkqvp88ih4wzdib8fzv"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring case-insensitive containers - deepseq http-types microlens microlens-mtl mtl text time timerep - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dbaynard/UcamWebauth#readme"; - description = "Types for the Ucam-Webauth protocol, as used by Raven"; - license = "(BSD-3-Clause OR Apache-2.0)"; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unagi-chan" = callPackage - ({ mkDerivation, atomic-primops, base, ghc-prim, primitive, stdenv - }: - mkDerivation { - pname = "unagi-chan"; - version = "0.4.1.3"; - sha256 = "e232e525881eb05f0c20b5a4e53150a3063351e5d94917c6f55934477a9ad695"; - libraryHaskellDepends = [ atomic-primops base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - description = "Fast concurrent queues with a Chan-like API, and more"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbound-generics" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, containers, contravariant - , deepseq, exceptions, mtl, profunctors, stdenv, template-haskell - , transformers, transformers-compat - }: - mkDerivation { - pname = "unbound-generics"; - version = "0.4.0"; - sha256 = "bd6aeda0921d540b3c4181805299ab34e0194389bd8617696d7fa9cc49d95511"; - libraryHaskellDepends = [ - ansi-wl-pprint base containers contravariant deepseq exceptions mtl - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lambdageek/unbound-generics"; - description = "Support for programming with names and binders using GHC Generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxing-vector" = callPackage - ({ mkDerivation, base, deepseq, mono-traversable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "unboxing-vector"; - version = "0.1.1.0"; - sha256 = "48425b2780d84b0489a8bc95778768730248bf04dc4624155525b6bcff2b4d44"; - libraryHaskellDepends = [ - base deepseq mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minoki/unboxing-vector#readme"; - description = "A newtype-friendly variant of unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1.1"; - sha256 = "6fdbaa2f45e191c4226b305b4f56a1c43149eb4e253b0a3ebf80ab77e9b5f8c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.4"; - sha256 = "31d138f4c5634ce7357d3aa7e02ed28dad828ab64897ec46852ae8d3ccb61b95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-jp/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.6"; - sha256 = "8326d001c463893a81fcfb431e3cc50c652fab041e9a37e284c445adfd667aaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union" = callPackage - ({ mkDerivation, base, deepseq, hashable, profunctors, stdenv - , tagged, vinyl - }: - mkDerivation { - pname = "union"; - version = "0.1.2"; - sha256 = "63e9dc2901a7d857e278445ca2b03bb869ecb01264206a14319d073e39dd8ec4"; - revision = "4"; - editedCabalFile = "09b6wqnmv4g2pnjzl5k90yp78jcif8pk40c0spdrbr2vr5766clj"; - libraryHaskellDepends = [ - base deepseq hashable profunctors tagged vinyl - ]; - doHaddock = false; - doCheck = false; - description = "Extensible type-safe unions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "uniq-deep"; - version = "1.1.1"; - sha256 = "c642d17af439700fc359ac3a3c35cc7ce79ab77e0f34fdc9a0a26aacb7df33cf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep#readme"; - description = "uniq-deep"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unique-logic" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "unique-logic"; - version = "0.4"; - sha256 = "1209ab415264c97030f5ddae5f6bc5171abf0f7dd93b7b807446c65dcf03ea53"; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unique-logic/"; - description = "Solve simple simultaneous equations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unique-logic-tf" = callPackage - ({ mkDerivation, base, containers, data-ref, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "unique-logic-tf"; - version = "0.5.1"; - sha256 = "8b818cb19dea8ed6fbdd21795b76f3fa0dcc4416bcf5ceb4c7d6f179ea945028"; - libraryHaskellDepends = [ - base containers data-ref semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unique-logic-tf/"; - description = "Solve simple simultaneous equations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe" = callPackage - ({ mkDerivation, stdenv, universe-base, universe-dependent-sum - , universe-instances-extended, universe-reverse-instances - }: - mkDerivation { - pname = "universe"; - version = "1.1.1"; - sha256 = "eff7cde7412d221cd9e93ad0dd1060cd00a0f208bd3e078b954130ba4ae4a54a"; - libraryHaskellDepends = [ - universe-base universe-dependent-sum universe-instances-extended - universe-reverse-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, containers, stdenv, tagged, transformers }: - mkDerivation { - pname = "universe-base"; - version = "1.1.1"; - sha256 = "1ded30b31b1abbc7621bdb0086ba0d91c1920157e87a4abeb4f2fcf9f3f6dea8"; - revision = "1"; - editedCabalFile = "1l6vxapfjhm5mb6w25ah8sl78hdw1ia5s18cf40lm0vzb6ip4bkk"; - libraryHaskellDepends = [ base containers tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-dependent-sum" = callPackage - ({ mkDerivation, base, dependent-sum, stdenv, template-haskell - , th-abstraction, transformers, universe-base - }: - mkDerivation { - pname = "universe-dependent-sum"; - version = "1.1.0.1"; - sha256 = "f1e2f0eacf57bf29ded105beda42c84a87e1018970f5474bb3144d9b0f74dbd5"; - revision = "2"; - editedCabalFile = "1vh93f1nq72fwnrhl9r8qwwiwr26l9pgcmdic56j2b2iz3imnfhc"; - libraryHaskellDepends = [ - base dependent-sum template-haskell th-abstraction transformers - universe-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from dependent-sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.1"; - sha256 = "8bb1190ef89af0ba09c354b0512fefd61f44c10a805c509550a975f68febe49d"; - revision = "1"; - editedCabalFile = "0hjrjjl6v5q9f7cmxhrdxfdk1l86im0b8anxkpgrry7s8q998979"; - libraryHaskellDepends = [ base universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-extended" = callPackage - ({ mkDerivation, adjunctions, base, comonad, containers - , contravariant, stdenv, universe-base - }: - mkDerivation { - pname = "universe-instances-extended"; - version = "1.1.1"; - sha256 = "102a1f8af4706719da85736ffd7abf8e52b74bf9bfcdd452a33e339905a6f3de"; - libraryHaskellDepends = [ - adjunctions base comonad containers contravariant universe-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from selected extra packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.1"; - sha256 = "c6aef59a7c5387c7b19efaa4f0af4d3543c9fa37f14d3789c4b5bc60563ee336"; - revision = "1"; - editedCabalFile = "0pyqcg8mfw6gg7gxxd46xq3hnhcpd39g7jb9q1awcdipzq7xjrh2"; - libraryHaskellDepends = [ base universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.1"; - sha256 = "0dbb197676975bbdc6ea1fb07a6a4c79b9d165084ec25ed1800d5c6548d8b55d"; - revision = "2"; - editedCabalFile = "1ls6hss9mrdk535k9ssy4lv01gbw11pbqiikpv2m8sjmh65fjilx"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, unordered-containers, utf8-string - , vector - }: - mkDerivation { - pname = "universum"; - version = "1.5.0"; - sha256 = "53d29c4de630320c4364d37ea26a150c40e8df7faf81f69bb94372314f883f9f"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, bytestring, deepseq, directory - , filepath, process, stdenv, stm, time, transformers, unix - , unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.12"; - sha256 = "8fa9f4d4cc078fd7c76914652070d06a646f83d34e51547fede4fdd7f30ffe09"; - libraryHaskellDepends = [ - async base bytestring deepseq directory filepath process stm time - transformers unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.2.0"; - sha256 = "24c38b3d610ca2642ed496d1de3d7b6b398ce0410aa0a15f3c7ce636ba8f7a78"; - revision = "2"; - editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-pool" = callPackage - ({ mkDerivation, base, resource-pool, stdenv, time, transformers - , unliftio-core - }: - mkDerivation { - pname = "unliftio-pool"; - version = "0.2.1.0"; - sha256 = "bb54478ddf736783309296ffeeed694543c745d13f127f91b1e3537daa8f0f62"; - libraryHaskellDepends = [ - base resource-pool time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - description = "Data.Pool generalized to MonadUnliftIO."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio-streams" = callPackage - ({ mkDerivation, base, bytestring, io-streams, stdenv, text - , unliftio-core - }: - mkDerivation { - pname = "unliftio-streams"; - version = "0.1.1.0"; - sha256 = "7c8973b7c4bb473c94f95972f19361974d643a11ff8ed0eebbd82a100c43e762"; - libraryHaskellDepends = [ - base bytestring io-streams text unliftio-core - ]; - doHaddock = false; - doCheck = false; - description = "Generalization of io-streams to MonadUnliftIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "d8faaf0c23ed143942ba7948616c73134c78e02aa4cf252605c73fb2412876ef"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.2"; - sha256 = "c7d47c25c1dbeae8c80ef7f83095093177e119effa90715a55b15fcaebd8ff6a"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text - , uri-bytestring - }: - mkDerivation { - pname = "uri-bytestring-aeson"; - version = "0.1.0.7"; - sha256 = "7e90b5eb1c65a83461e127a27ce635f2f8279eb0d0cb14823831b6dfb503ef9b"; - libraryHaskellDepends = [ - aeson base bytestring text uri-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reactormonk/uri-bytestring-aeson"; - description = "Aeson instances for URI Bytestring"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-templater" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, charset - , containers, dlist, HTTP, mtl, parsers, stdenv, template-haskell - , text, time, trifecta, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "uri-templater"; - version = "0.3.1.0"; - sha256 = "21e665ff2600b3de42b6ad01ef342b6165859dc6e66897f84a9075649f1c49c2"; - revision = "1"; - editedCabalFile = "0vl1nv40yzns9fnaz6h34x72vpfaaws8f0zm8qlr82333pxg2scw"; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring charset containers dlist HTTP mtl - parsers template-haskell text time trifecta unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/uri-templater"; - description = "Parsing & Quasiquoting for RFC 6570 URI Templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "url" = callPackage - ({ mkDerivation, base, stdenv, utf8-string }: - mkDerivation { - pname = "url"; - version = "2.1.3"; - sha256 = "5af27e3f8c0a27e52d0dcb98ef06a0fdd01efe8bb21242c29432e1bc380a4f61"; - libraryHaskellDepends = [ base utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Url"; - description = "A library for working with URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.1"; - sha256 = "2fe703a9c65fcfb12ba86bcffed22dca4c4a76fc78e1271816ae46b0f6a58e29"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-postgresql-simple" = callPackage - ({ mkDerivation, base, bytestring, mtl, postgresql-simple, stdenv - , text, time, users, uuid - }: - mkDerivation { - pname = "users-postgresql-simple"; - version = "0.5.0.2"; - sha256 = "051b5d2c9c6cdeaacb6271a50ee4084cc1473de8d873825dc6d98023e96ec100"; - libraryHaskellDepends = [ - base bytestring mtl postgresql-simple text time users uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A PostgreSQL backend for the users package"; - license = stdenv.lib.licenses.mit; - }) {}; - "users-test" = callPackage - ({ mkDerivation, base, hspec, stdenv, text, users }: - mkDerivation { - pname = "users-test"; - version = "0.5.0.1"; - sha256 = "f68549fa0cc002b16dc55f23a73b1a423aa2e64ab584c4041252a3bb6a5cac3e"; - libraryHaskellDepends = [ base hspec text users ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "Library to test backends for the users library"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "util"; - version = "0.1.17.0"; - sha256 = "0c9844c0814401d5f4596d66d2a1315e4f2ad28a1b9fa9ab71d1aaf86deed2f3"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1.1"; - sha256 = "85a628430a0c3273b7344f47aa810ffefc638ce19deb5e00d133a032603d92a9"; - revision = "1"; - editedCabalFile = "1rrjg9z399k6pb55nv85mlr5bkmdqbjwkvl1cy7ydccdx6ks4syp"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.9.0.2"; - sha256 = "5b449a8b1e31d2a281197fd1a5efb80b62f422fdcaa6d0e13e9be31b2e1d49a9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.2"; - sha256 = "fac03d29cf3d6f72c288111b68feb3c656574a1ac616b49f40426a9daf0e1d04"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.4.1.0"; - sha256 = "6defe19346145230a0f41dd873767700ee10834c1ba1dfc4bfe31811e2d6d84b"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.3.1.0"; - sha256 = "39096c06200f3ce670c89d557def5dbdd0ba3f608bdc7587b057c2344b3f20b2"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.3.0.2"; - sha256 = "979cda9b9fce257e4793c53e869076cbb41b9516f6a7cef2ea3edca84dc5e146"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.2"; - sha256 = "8132aa43307c7dcb29718b5c1ef7c2b8e0d1fb6f650c0b117b99397c34da8dc1"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.1.0"; - sha256 = "edd3f26e97ea07593c3995002a7ef7670f0306bfc31213f6b49ffe1a6fbc4264"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.2"; - sha256 = "51b24adef82f272a1060d5d0dffaa2eb1e54c0016c7dcd75631e5916df45e265"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.2"; - sha256 = "50547e85c80e42a90143b816b41389cca1e0fccacd8d620a09142cf65b36181b"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.2"; - sha256 = "95dc31e68630951d6971ad5b425e88d492c7400ccd4937a42252d464d89c564c"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.2"; - sha256 = "a7cc60182c9c5c25fa64d1073c1da61e79686fea6d2b2a9cf55690e61b83ce78"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "valor" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "valor"; - version = "0.1.0.0"; - sha256 = "04ce514f40ef954cdd4b45acb6b2bf6228a30e905fdce0b671df3bf789d6bae6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reygoch/valor#readme"; - description = "Simple general structured validation library"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.3"; - sha256 = "e70c8c1981fe49fc21a91b2aa570ecf50cca94aca24a7984ea641cbbc521b56d"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, deepseq - , distributive, fin, hashable, lens, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "vec"; - version = "0.1.1.1"; - sha256 = "5a95c5cc88252d302e3434c95cab2d0962915165f1dabab497aaec4da2bffe3f"; - revision = "1"; - editedCabalFile = "137f3zjj0fwn3dmynvjg7k4v7k9h24a1gzqfma36hd2svksg8c3d"; - libraryHaskellDepends = [ - adjunctions base base-compat deepseq distributive fin hashable lens - semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.0.3"; - sha256 = "b8a2bfbf9d22d34a28cde9b9e92bfb054e46797754154dd5883295c38936e5a8"; - revision = "2"; - editedCabalFile = "1kjs6jnbxziv1q0md2jiqic0r19ry8xlg7wdr8b52rz7yjyb08hl"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.8.0.3"; - sha256 = "1ac41f014663fd318b34a76b80e6d8f32f1629ef4996ae7304f31597a0d07387"; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/vector-algorithms/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.5.1"; - sha256 = "3945b99f8efd319c837700b7cef5163ee23e656e89227357e0b7a41d2a66c512"; - revision = "1"; - editedCabalFile = "1p7cbxdpix0rakvggnnb06kcrb787fyyqlzric6i4s3rn34547q8"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.8"; - sha256 = "a39afd7ac50c42de77660d235017be38ef50f792b6a98212accf687445a18073"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, comonad, deepseq, distributive - , finite-typelits, hashable, indexed-list-literals, primitive - , stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.2.0.1"; - sha256 = "f28e3071b0808856ead9b130f4e47cd5c1b3625f9bbbc3ae3803f6afbe4dedd0"; - libraryHaskellDepends = [ - adjunctions base comonad deepseq distributive finite-typelits - hashable indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.16"; - sha256 = "0c0b2f1209f95045865b968c7aa0a25e155410b3e08cf98a6c8544e48436c79c"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.7"; - sha256 = "d125830ff3287c2d7e24989a3887987107b9140912c326e5894fb0b097c50d61"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, dhall - , generic-lens, serialise, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.3.0.0"; - sha256 = "4ae2606d1d50729468a27142a03b42b640ef32e41059d1ea6cbf7bd3de9ff073"; - libraryHaskellDepends = [ - base binary data-default-class deepseq dhall generic-lens serialise - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.5.2"; - sha256 = "109dbe525cd68c965d41c3ac895a95474d8a65e53d7d176a6653ddca4fab5e28"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/versions"; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "viewprof" = callPackage - ({ mkDerivation, base, brick, containers, directory, ghc-prof, lens - , scientific, stdenv, text, vector, vector-algorithms, vty - }: - mkDerivation { - pname = "viewprof"; - version = "0.0.0.32"; - sha256 = "4b3c7679c07d37dfc7e4c85ef1782b4258d1b2decad407e05ee649c7340b324e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base brick containers directory ghc-prof lens scientific text - vector vector-algorithms vty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/viewprof"; - description = "Text-based interactive GHC .prof viewer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vinyl" = callPackage - ({ mkDerivation, array, base, ghc-prim, stdenv }: - mkDerivation { - pname = "vinyl"; - version = "0.11.0"; - sha256 = "08e46ff8240c189a1ff94a3c0bb3d9bb40fddeba09db4c476fd03cce50270a6b"; - revision = "1"; - editedCabalFile = "05i1sjkgn9vf488sa063fnp0p56ic39a5vyni9b2llm4vbpl4kwz"; - libraryHaskellDepends = [ array base ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Extensible Records"; - license = stdenv.lib.licenses.mit; - }) {}; - "vivid" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, hashable, MonadRandom, mtl, network, process, random - , random-shuffle, split, stdenv, stm, time, transformers - , utf8-string, vivid-osc, vivid-supercollider - }: - mkDerivation { - pname = "vivid"; - version = "0.4.2.3"; - sha256 = "11c0ae576e0cd38894c5ad052c90b7bce33e81abdc6a691c0e1dbb272d4b952b"; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath hashable - MonadRandom mtl network process random random-shuffle split stm - time transformers utf8-string vivid-osc vivid-supercollider - ]; - doHaddock = false; - doCheck = false; - description = "Sound synthesis with SuperCollider"; - license = "GPL"; - }) {}; - "vivid-osc" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, time }: - mkDerivation { - pname = "vivid-osc"; - version = "0.5.0.0"; - sha256 = "46fb67915fdfa37db0ff620b1529caf77a19d41a71007aae2b834facc2243510"; - libraryHaskellDepends = [ base bytestring cereal time ]; - doHaddock = false; - doCheck = false; - description = "Open Sound Control encode/decode"; - license = "GPL"; - }) {}; - "vivid-supercollider" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, split, stdenv - , utf8-string, vivid-osc - }: - mkDerivation { - pname = "vivid-supercollider"; - version = "0.4.1.2"; - sha256 = "d2a40e8f4fff13200e6ead4d6397fe31095d990f75616bf7f89dbf3fa81821cb"; - libraryHaskellDepends = [ - base binary bytestring cereal split utf8-string vivid-osc - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of SuperCollider server specifications"; - license = "GPL"; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.3"; - sha256 = "53af758ddc37dc63981671e503438d02c6f64a2d8744e9bec557a894431f7317"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.25.1"; - sha256 = "3cab792e32c59647c2bdb2785c9c9a94bdb84fc85499bb1ab488999e1c9525f4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2.1"; - sha256 = "fef72486e3a9e01f564abfb680f6eac9b553f8195cae8ed903d960da55380815"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.7.1"; - sha256 = "681317b26490ad3da511c1a6beb0e08e83f7902090dbfb9ac9095d50c8926682"; - revision = "1"; - editedCabalFile = "0bkmml30rzifvb7nxddj3pxczk0kniahra19mjn0qrkzy1n5752p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cli" = callPackage - ({ mkDerivation, ansi-terminal, base, http-types, iproute - , monads-tf, network, options, socket-activation, stdenv, stm - , streaming-commons, unix, wai, wai-extra, warp, warp-tls - }: - mkDerivation { - pname = "wai-cli"; - version = "0.2.1"; - sha256 = "2ef5c1b41788b1ba8426476f36920c72a8a4517dd4aa09fcb11f97f5e5ea94e4"; - revision = "1"; - editedCabalFile = "1h0ip8r0zdm0xzaprfiyfdm40286apyvn6psqnx7pif8acfhpq8m"; - libraryHaskellDepends = [ - ansi-terminal base http-types iproute monads-tf network options - socket-activation stm streaming-commons unix wai wai-extra warp - warp-tls - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/wai-cli"; - description = "Command line runner for Wai apps (using Warp) with TLS, CGI, socket activation & graceful shutdown"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.7"; - sha256 = "2597beb56ebd7148f9755ae2661c065a6c532e0a286717061861b149a51cfb81"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-enforce-https" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-types - , network, stdenv, text, wai, warp, warp-tls - }: - mkDerivation { - pname = "wai-enforce-https"; - version = "0.0.1"; - sha256 = "bb726b6dc1e3947b6b6c070d40ac2e670d24543456c321e3e56ad5a54eb1a43e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network text wai - ]; - executableHaskellDepends = [ base http-types wai warp warp-tls ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/turboMaCk/wai-enforce-https"; - description = "Enforce HTTPS in Wai server app safely"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , http2, iproute, network, old-locale, resourcet, stdenv - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.29"; - sha256 = "2ee8658211a22e61a3c2f2b0552919ff63921248977ad7c2d9e2802bfe7f16dc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types http2 iproute network old-locale - resourcet streaming-commons text time transformers unix unix-compat - vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.3.1"; - sha256 = "55009b08ad5620decad37e7f8ee2a64457bf0f8e8116f8ac2a2f3216987fd8c5"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, Cabal, cabal-doctest - , fast-logger, http-types, network, stdenv, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.5"; - sha256 = "b5b285321967c12b60afc2ab6470853de2fff6c67c306d7d8ee218c0fd8deb15"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base byteorder bytestring fast-logger http-types network wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-auth" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, binary - , blaze-builder, blaze-html, bytestring, case-insensitive, cereal - , clientsession, cookie, exceptions, hoauth2, http-client - , http-client-tls, http-conduit, http-reverse-proxy, http-types - , optparse-simple, regex-posix, safe-exceptions, shakespeare - , stdenv, text, unix-compat, unordered-containers, uri-bytestring - , vault, wai, wai-app-static, wai-extra, warp, yaml - }: - mkDerivation { - pname = "wai-middleware-auth"; - version = "0.1.2.1"; - sha256 = "4199220758290dd22136fd9f53a8e0a856c217c0b8b26eb6dbf41d2ad81e7d74"; - revision = "1"; - editedCabalFile = "06pd7qk160m17nn3v61hmcnkfwm5qy6bjr1yhx4s2vsqyqvxgbaw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base64-bytestring binary blaze-builder blaze-html - bytestring case-insensitive cereal clientsession cookie exceptions - hoauth2 http-client http-client-tls http-conduit http-reverse-proxy - http-types regex-posix safe-exceptions shakespeare text unix-compat - unordered-containers uri-bytestring vault wai wai-app-static - wai-extra yaml - ]; - executableHaskellDepends = [ - base bytestring cereal clientsession optparse-simple warp - ]; - doHaddock = false; - doCheck = false; - description = "Authentication middleware that secures WAI application"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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 - , stdenv, 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 = "1136b61a6ce7729093664b63a4ab70de73e356d34b0c7a8114b639b18626b058"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Middleware and utilities for using Atlassian Crowd authentication"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.2"; - sha256 = "0be4e9fd5252d526334e4e5885a2a75269aaaad560282b5c383c49e4d855befc"; - revision = "2"; - editedCabalFile = "17vq38dh7x1kqzfwla1s0rldd5hzm5mcrx49sjlzy8b66gd2n3ac"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-throttle" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, cache, clock - , containers, hashable, http-types, mtl, network, safe-exceptions - , stdenv, stm, text, token-bucket, transformers, wai - }: - mkDerivation { - pname = "wai-middleware-throttle"; - version = "0.3.0.1"; - sha256 = "580a83d01a135df8855552dca493bfa01ae31c61640fc5ff4c488569ca3afc56"; - libraryHaskellDepends = [ - base bytestring bytestring-builder cache clock containers hashable - http-types mtl network safe-exceptions stm text token-bucket - transformers wai - ]; - doHaddock = false; - doCheck = false; - description = "WAI Middleware for Request Throttling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-travisci" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , cryptonite, http-types, stdenv, text, transformers, vault, wai - }: - mkDerivation { - pname = "wai-middleware-travisci"; - version = "0.1.0"; - sha256 = "bbc9f2fea4c0ee3d9a73fd13dd1a2a7ef85fc294bd311ed519c1e41a1fada828"; - revision = "2"; - editedCabalFile = "0j1k2y75gwbny72zf5nrwzanh7sn2plscnrjd4hw5npccxi4dchx"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring cryptonite http-types text - transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/wai-middleware-travisci"; - description = "WAI middleware for authenticating webhook payloads from Travis CI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-predicates" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, case-insensitive, cookie, http-types - , singletons, stdenv, text, transformers, vault, vector, wai - }: - mkDerivation { - pname = "wai-predicates"; - version = "0.10.0"; - sha256 = "b7b3f6d147bbbf7a959c84235d0533763eda8fc4973b42f131fd47fe8ffbd7c2"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion case-insensitive - cookie http-types singletons text transformers vault vector wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/wai-predicates/"; - description = "WAI request predicates"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-session-postgresql" = callPackage - ({ mkDerivation, base, bytestring, cereal, cookie, data-default - , entropy, postgresql-simple, resource-pool, stdenv, text, time - , transformers, wai, wai-session - }: - mkDerivation { - pname = "wai-session-postgresql"; - version = "0.2.1.2"; - sha256 = "39d570dd99b4dc38e7803b60b4da4bc804244ed83b3fb250a6e2191a1419ac83"; - libraryHaskellDepends = [ - base bytestring cereal cookie data-default entropy - postgresql-simple resource-pool text time transformers wai - wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hce/postgresql-session#readme"; - description = "PostgreSQL backed Wai session store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-transformers" = callPackage - ({ mkDerivation, base, exceptions, extractable-singleton - , monad-control-aligned, stdenv, transformers, wai, wai-websockets - , websockets - }: - mkDerivation { - pname = "wai-transformers"; - version = "0.1.0"; - sha256 = "17a330c80bad8a95add5d6efb0a12c774c197a2d19f83e6b9dc08ab73d8c8592"; - libraryHaskellDepends = [ - base exceptions extractable-singleton monad-control-aligned - transformers wai wai-websockets websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/wai-transformers#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, time-manager, unix - , unix-compat, vault, wai, word8 - }: - mkDerivation { - pname = "warp"; - version = "3.3.5"; - sha256 = "c504a74bc6ccd5b3f7667f6badfd7774b101b26cd1f8d3ad1c91f71ecc456d26"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - time-manager unix unix-compat vault wai word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.9"; - sha256 = "41c3df29a9436820171c142140520178875ebb5c81e4e3ceff9ab90ba2338daf"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, data-default, network, stdenv - , streaming-commons, tls, unix, wai, warp, warp-tls, x509 - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.6"; - sha256 = "9c78b530e5ac00984233913696351132eb48e9ea2da1d1cdadde306bd6e6bb27"; - libraryHaskellDepends = [ - base bytestring data-default network streaming-commons tls unix wai - warp warp-tls x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, stdenv - , transformers - }: - mkDerivation { - pname = "wave"; - version = "0.2.0"; - sha256 = "71a6224835cfa372b9dbf60d27f6e5402663a4090bcfdbdf611d0ffc2c7f3391"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wcwidth" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "wcwidth"; - version = "0.0.2"; - sha256 = "ffc68736a3bbde3e8157710f29f4a99c0ca593c41194579c54a92c62f6c12ed8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/wcwidth/"; - description = "Native wcwidth"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, exceptions - , ghc-prim, http-types, mtl, parsec, split, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "web-routes"; - version = "0.27.14.3"; - sha256 = "a46f7a0454a05214324f4925de39eb188d9f07a46acbc7f9720ad3188ca8c6a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring exceptions ghc-prim http-types mtl - parsec split text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.happstack.com/docs/crashcourse/index.html#web-routes"; - description = "portable, type-safe URL routing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-hsp" = callPackage - ({ mkDerivation, base, hsp, stdenv, text, web-routes }: - mkDerivation { - pname = "web-routes-hsp"; - version = "0.24.6.1"; - sha256 = "ca7cf5bf026c52fee5b6af3ca173c7341cd991dcd38508d07589cc7ea8102cab"; - libraryHaskellDepends = [ base hsp text web-routes ]; - doHaddock = false; - doCheck = false; - description = "Adds XMLGenerator instance for RouteT monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web-routes-wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, stdenv, text, wai - , web-routes - }: - mkDerivation { - pname = "web-routes-wai"; - version = "0.24.3.1"; - sha256 = "8e1fd187686452af39929bc6b6a31319001859930744e22e2eee1fa9ad103049"; - libraryHaskellDepends = [ - base bytestring http-types text wai web-routes - ]; - doHaddock = false; - doCheck = false; - description = "Library for maintaining correctness of URLs within an application"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "web3" = callPackage - ({ mkDerivation, aeson, async, base, basement, bytestring, cereal - , cryptonite, data-default, exceptions, generics-sop, http-client - , http-client-tls, machines, memory, microlens, microlens-aeson - , microlens-mtl, microlens-th, mtl, OneTuple, parsec, relapse - , stdenv, tagged, template-haskell, text, transformers, uuid-types - , vinyl - }: - mkDerivation { - pname = "web3"; - version = "0.8.3.2"; - sha256 = "a70f9b8cfc88e7a713d92a974f6780006962cb25b37b1435ba7bab75432662fa"; - libraryHaskellDepends = [ - aeson async base basement bytestring cereal cryptonite data-default - exceptions generics-sop http-client http-client-tls machines memory - microlens microlens-aeson microlens-mtl microlens-th mtl OneTuple - parsec relapse tagged template-haskell text transformers uuid-types - vinyl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/airalab/hs-web3#readme"; - description = "Ethereum API for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, call-stack, data-default-class, directory - , directory-tree, exceptions, filepath, http-client, http-types - , lifted-base, monad-control, network, network-uri, scientific - , stdenv, temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.9.0.1"; - sha256 = "135950889784b9d323c70ebf7ecd75b8df194489a303d85995b1fccc7549dff0"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring call-stack - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webex-teams-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "webex-teams-api"; - version = "0.2.0.0"; - sha256 = "7756e38bd54d4dae1f70e7343259438f98bf58ff484ebc1c798166904178a40b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, data-default - , http-client, optparse-applicative, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-conduit"; - version = "0.2.0.0"; - sha256 = "0d7c7db689092656653d687adadeb92669b647b1d7adc2493d8ca08a87742e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base conduit webex-teams-api ]; - executableHaskellDepends = [ - base bytestring conduit data-default http-client - optparse-applicative text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Conduit wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-pipes" = callPackage - ({ mkDerivation, base, bytestring, data-default, http-client - , optparse-applicative, pipes, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-pipes"; - version = "0.2.0.0"; - sha256 = "77fad574346613e4989997852ca5972185a6321290caa718ce081be985a33100"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base pipes webex-teams-api ]; - executableHaskellDepends = [ - base bytestring data-default http-client optparse-applicative pipes - text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Pipes wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, clock - , containers, entropy, network, random, SHA, stdenv - , streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.7.0"; - sha256 = "5f11184c6f97de4ae32e00d309a0a9bcbd829c7f099dbf5b2284ae074f035f86"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive clock containers entropy - network random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "websockets-snap" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams - , mtl, snap-core, snap-server, stdenv, websockets - }: - mkDerivation { - pname = "websockets-snap"; - version = "0.10.3.1"; - sha256 = "13afb464748b796fdb9222c07e3009d1ebeeda34e599d6b77b0bf66016fefac2"; - libraryHaskellDepends = [ - base bytestring bytestring-builder io-streams mtl snap-core - snap-server websockets - ]; - doHaddock = false; - doCheck = false; - description = "Snap integration for the websockets library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.8"; - sha256 = "26204eeabb0cdce707548b3be451b1947567b0a13bcfe28bbdd7f48340c09cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, ghc, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.16"; - sha256 = "a92a19209b6e8999be21fed8c6ddad8cddf5b98352341b58d2c3e3ef4e96eb8e"; - libraryHaskellDepends = [ - base deepseq ghc mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.1.0"; - sha256 = "3c2a758048b0a29ead8170cde034bc4538e6e7e26d27f98911e9eb3773142a80"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wikicfp-scraper" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scalpel-core, stdenv - , text, time - }: - mkDerivation { - pname = "wikicfp-scraper"; - version = "0.1.0.11"; - sha256 = "2ba40e64e5a77534dd747a75f6db2ac3c4db55a5a62d2880be2eb408e5cbdfb8"; - libraryHaskellDepends = [ - attoparsec base bytestring scalpel-core text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wikicfp-scraper"; - description = "Scrape WikiCFP web site"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.5"; - sha256 = "095b93a0cd740052c8afee2b14cea2be7e3994693a1090016c73cb4e67f16192"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.9"; - sha256 = "1f0c7e8d63b4d9662ef535f8665fd18e888106d73d1d61de32b1fb5b95c578f4"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "windns" = callPackage - ({ mkDerivation, base, bytestring, deepseq, dnsapi, stdenv }: - mkDerivation { - pname = "windns"; - version = "0.1.0.1"; - sha256 = "087fa65c99021f4233102430d554aebe114af68f6b1647ff821bcb501c0bcd04"; - revision = "1"; - editedCabalFile = "17d44pzi4q5yvrygimdrwdrabz62s1ylw918w28sxgcvj64ir22g"; - configureFlags = [ "-fallow-non-windows" ]; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ dnsapi ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the /dnsapi.dll standard library"; - license = stdenv.lib.licenses.gpl2; - }) {inherit (pkgs) dnsapi;}; - "winery" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cpu - , fast-builder, hashable, HUnit, megaparsec, mtl, prettyprinter - , prettyprinter-ansi-terminal, QuickCheck, scientific, semigroups - , stdenv, text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "winery"; - version = "1.1.3"; - sha256 = "a98da9c313a2d9feb3315d1481e0708e5e021e1b90dc5742afcc3ece9d8902e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers cpu fast-builder hashable HUnit - megaparsec mtl prettyprinter prettyprinter-ansi-terminal QuickCheck - scientific semigroups text time transformers unordered-containers - vector - ]; - executableHaskellDepends = [ - aeson base bytestring megaparsec prettyprinter - prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/winery#readme"; - description = "A compact, well-typed seralisation format for Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wire-streams" = callPackage - ({ mkDerivation, base, binary, binary-parsers, bytestring - , io-streams, stdenv - }: - mkDerivation { - pname = "wire-streams"; - version = "0.1.1.0"; - sha256 = "96dffb70c08c89589881c96f199d271b55e4a5b3cc5be0f3e24e101858e2fb27"; - revision = "1"; - editedCabalFile = "1j7gpk3k82h0kxnhpv40jmnqxpnr0v0m4lj6bhpga81vlmznr088"; - libraryHaskellDepends = [ - base binary binary-parsers bytestring io-streams - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/wire-streams"; - description = "Fast binary io-streams adapter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.3"; - sha256 = "05650d7bf6dd0e6b87d0d7da6fb003601ce5d7b1f3d69571127ec3c9425b9bb2"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.1"; - sha256 = "6b662b244b2e318a2923dc7057d707369a29ea4a0e721b4710eac7239cc727af"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Pretty printer with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "cb76b445aa338cae075d149e752e53cf30e2480827eff4c157957b013f48b815"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "wl-pprint-text" = callPackage - ({ mkDerivation, base, base-compat, stdenv, text }: - mkDerivation { - pname = "wl-pprint-text"; - version = "1.2.0.0"; - sha256 = "40dd4c2d2b8a2884616f3a240f01143d0aadd85f5988e5ee55a59ba6b2487c3c"; - libraryHaskellDepends = [ base base-compat text ]; - doHaddock = false; - doCheck = false; - description = "A Wadler/Leijen Pretty Printer for Text values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word-wrap" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "word-wrap"; - version = "0.4.1"; - sha256 = "eb72f91947c0c62cb862feb33cad9efdc5e720f456fa9ca68ef8ac9d1ec42c97"; - revision = "1"; - editedCabalFile = "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/word-wrap/"; - description = "A library for word-wrapping"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wordpress-auth" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cookie - , cryptohash-md5, cryptohash-sha256, hs-php-session, http-types - , mtl, stdenv, text, time, uri-encode - }: - mkDerivation { - pname = "wordpress-auth"; - version = "1.0.0.0"; - sha256 = "ac784e5222e6aab6cfffd71685e69b2a1bf0a42283f183931bd2d04c51cc1994"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cookie cryptohash-md5 - cryptohash-sha256 hs-php-session http-types mtl text time - uri-encode - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/wordpress-auth#readme"; - description = "Validate Wordpress Cookies & Nonces; Build Wordpress Hashes & Salts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "1.0.1.0"; - sha256 = "97ff3d50b9d6e2f00b29abd9bf6336009a6bb4e273dd1a6c2f4c7a1f60f2a7bb"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.3.2"; - sha256 = "66d8070e21c86a015cfc3df10c740d92c7f0b7a396c3ec02c3d2f8a5c2d1b49b"; - revision = "1"; - editedCabalFile = "0gz674sb266hv6si9l79c3bv7n2nbssl1262c24in79sk27887gb"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-exceptions" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-exceptions"; - version = "0.1.0.1"; - sha256 = "9a1a5dc53a53e19f0d0dacdcb88bbfc3cde64379413982e8581043da6cc5ee43"; - libraryHaskellDepends = [ - base exceptions transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-exceptions"; - description = "Control.Monad.Catch instances for the stricter CPS WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-mtl" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-mtl"; - version = "0.1.1.6"; - sha256 = "06f9fb60dc41ad26f3d18089a0b7ff1e1aeb15dc862508c59b6b577c0914dd36"; - libraryHaskellDepends = [ - base mtl transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-mtl#readme"; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-transformers" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "writer-cps-transformers"; - version = "0.5.6.1"; - sha256 = "76eacf1c3df8f86b6d11507219d7e840d7fb2898f53959aa3dad40791b8f321c"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-transformers#readme"; - description = "WriteT and RWST monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ws" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-uri, base - , bytestring, exceptions, haskeline, mtl, network - , optparse-applicative, stdenv, strict, text, vector, websockets - , wuss - }: - mkDerivation { - pname = "ws"; - version = "0.0.5"; - sha256 = "a62b1f08248b401bc532fbbc6dca6e75b1605988c83bcc9e4488d6f305f644e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec-uri base bytestring exceptions haskeline mtl - network text websockets wuss - ]; - executableHaskellDepends = [ - async attoparsec attoparsec-uri base bytestring exceptions - haskeline mtl network optparse-applicative strict text vector - websockets wuss - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/ws#readme"; - description = "A simple CLI utility for interacting with a websocket"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.15"; - sha256 = "f80cc4ba0fb17d9df138a442c8f49883fff8bfc7410c5fa1ada4d1abaa4958c4"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.5"; - sha256 = "b1b0fcbb4aa0d749ed2b54710c2ebd6d900cb932108ad14f97640cf4ca60c7c8"; - revision = "1"; - editedCabalFile = "1z98llpggldy4yb7afcsn3r3q4vklvx2pqyrhy9fir5y2yd5l601"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.7"; - sha256 = "9786356c8bfdf631ea018c3244d0854c6db2cb24e583891ea553961443f61ef9"; - revision = "1"; - editedCabalFile = "04h2h8kdzhd2fp3w4a834xc1n88b1jgrxlgcsynfn0iwpbsb41x7"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.11"; - sha256 = "f94321cbcc4a534adf5889ae6950f3673e38b62b89b6970b477f502ce987d19b"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-userdirs" = callPackage - ({ mkDerivation, base, containers, directory, filepath, stdenv - , xdg-basedir - }: - mkDerivation { - pname = "xdg-userdirs"; - version = "0.1.0.2"; - sha256 = "88aabbcb80dee5b669ad533af20000d561e6fe59ab1014ccc2482055d0a8046e"; - libraryHaskellDepends = [ - base containers directory filepath xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://redmine.iportnov.ru/projects/xdg-userdirs"; - description = "Basic implementation of XDG user directories specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.5.2"; - sha256 = "14f15b8e751063b701d63b78176d18385193d042af7df6aba67978d04a6cd075"; - libraryHaskellDepends = [ - array base bytestring deepseq mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xenstore" = callPackage - ({ mkDerivation, base, bytestring, cereal, mtl, network, stdenv }: - mkDerivation { - pname = "xenstore"; - version = "0.1.1"; - sha256 = "c2b538c9ce6716f4a1b4c0cb63ed5c6e5ee3e69e80dbb7826ee7f5392f45e874"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring cereal mtl network ]; - doHaddock = false; - doCheck = false; - description = "Xenstore client access"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.2"; - sha256 = "d7f3d063d29d829f332164090a048741d03753f12d55ec064f0a9a374e62ee3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xlsx" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search - , bytestring, conduit, containers, data-default, deepseq, errors - , extra, filepath, lens, mtl, network-uri, old-locale, safe, stdenv - , text, time, transformers, vector, xeno, xml-conduit, zip-archive - , zlib - }: - mkDerivation { - pname = "xlsx"; - version = "0.7.2"; - sha256 = "b2560467ea5639d7bbd97ecf492f2e2cc9fa34e0b05fc5d55243304bbe7f1103"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary-search bytestring conduit - containers data-default deepseq errors extra filepath lens mtl - network-uri old-locale safe text time transformers vector xeno - xml-conduit zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qrilka/xlsx"; - description = "Simple and incomplete Excel file parser/writer"; - license = stdenv.lib.licenses.mit; - }) {}; - "xlsx-tabular" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , lens, stdenv, text, xlsx - }: - mkDerivation { - pname = "xlsx-tabular"; - version = "0.2.2.1"; - sha256 = "48dd897d41df81f9009e6c6c988021bc989286cee385bd2535d8e60b54d0fd2d"; - libraryHaskellDepends = [ - aeson base bytestring containers data-default lens text xlsx - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kkazuo/xlsx-tabular"; - description = "Xlsx table cell value extraction utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3.1"; - sha256 = "8d743ff8e489dc52fd256b18b75c21689945cfcb52481f5ca0aa6df50178a3e2"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, resourcet, stdenv, text - , transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.8.0.1"; - sha256 = "980b2f13ab8f54d8c2cbf92d186d5fac6c6ead42197c6687bd81e2fea2afef9c"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq resourcet text - transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-parse" = callPackage - ({ mkDerivation, base, conduit, conduit-parse, containers - , exceptions, parsers, stdenv, text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-parse"; - version = "0.3.1.2"; - sha256 = "c1aae117720128195dbbf2ce196271e4ca2973163c6a03a1b0ead3b32f936308"; - revision = "1"; - editedCabalFile = "0jnnr4z3c6rq2dz0ldiic5zwkrp36igf6gip11qrm9ss2pk9khbl"; - libraryHaskellDepends = [ - base conduit conduit-parse containers exceptions parsers text - xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/xml-conduit-parse"; - description = "Streaming XML parser based on conduits"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0.1"; - sha256 = "920ed9736117c09bcec04133beaa14dc05d7c413ee14f49c6aa9707ebc64304b"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-isogen" = callPackage - ({ mkDerivation, base, deepseq, dom-parser, lens, mtl, QuickCheck - , semigroups, stdenv, template-haskell, text, xml-conduit - , xml-conduit-writer - }: - mkDerivation { - pname = "xml-isogen"; - version = "0.3.0"; - sha256 = "9f812d7bb5dd280e62f5013fd77af27e3710fb1a76dcf7a12f0abbfae5400a17"; - libraryHaskellDepends = [ - base deepseq dom-parser lens mtl QuickCheck semigroups - template-haskell text xml-conduit xml-conduit-writer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeable/xml-isogen"; - description = "Generate XML-isomorphic types"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.1.6.3"; - sha256 = "4dd7f1a91fbb12ae52d5a14badd9f38c0f0d7556f08ee77d79a67cc546dcb1e8"; - revision = "2"; - editedCabalFile = "1phba1j6ggxfsq4ivhd5wibzw1b9hwppqmgichyj3xg9z3widmnl"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlbf" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, selective - , stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "xmlbf"; - version = "0.6"; - sha256 = "3ee5af3d108e128c23c16e241d5ec251e1373f7d3008c322324551f96e958c0b"; - libraryHaskellDepends = [ - base bytestring containers deepseq selective text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "XML back and forth! Parser, renderer, ToXml, FromXml, fixpoints"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlbf-xeno" = callPackage - ({ mkDerivation, base, bytestring, html-entities, stdenv, text - , unordered-containers, xeno, xmlbf - }: - mkDerivation { - pname = "xmlbf-xeno"; - version = "0.2"; - sha256 = "2f9ef92e85f1aef21335adfddea472a5dec7ae77aa4b71d360b535390b4263f4"; - libraryHaskellDepends = [ - base bytestring html-entities text unordered-containers xeno xmlbf - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/k0001/xmlbf"; - description = "xeno backend support for the xmlbf library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad" = callPackage - ({ mkDerivation, base, containers, data-default, directory - , extensible-exceptions, filepath, mtl, process, setlocale, stdenv - , unix, utf8-string, X11 - }: - mkDerivation { - pname = "xmonad"; - version = "0.15"; - sha256 = "4a7948e6eee5e34a27d15444589ade3b3fa1adecadbf37b943cff8348380f928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers data-default directory extensible-exceptions - filepath mtl process setlocale unix utf8-string X11 - ]; - executableHaskellDepends = [ base mtl unix X11 ]; - doHaddock = false; - doCheck = false; - postInstall = '' - install -D man/xmonad.1 $doc/share/man/man1/xmonad.1 - install -D man/xmonad.hs $doc/share/doc/$name/sample-xmonad.hs - ''; - homepage = "http://xmonad.org"; - description = "A tiling window manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-contrib" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , extensible-exceptions, filepath, mtl, old-locale, old-time - , process, random, semigroups, stdenv, unix, utf8-string, X11 - , X11-xft, xmonad - }: - mkDerivation { - pname = "xmonad-contrib"; - version = "0.15"; - sha256 = "ba7686007037fc081de09fc05914fbb84cad8123e1f4eedb8895c863fcfb3e65"; - revision = "1"; - editedCabalFile = "15r1mlqs1axh1dp4fqqb54xj3zns47nrvlf2xp5jg5jq51z03xpf"; - libraryHaskellDepends = [ - base bytestring containers directory extensible-exceptions filepath - mtl old-locale old-time process random semigroups unix utf8-string - X11 X11-xft xmonad - ]; - doHaddock = false; - doCheck = false; - homepage = "http://xmonad.org/"; - description = "Third party extensions for xmonad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-extras" = callPackage - ({ mkDerivation, alsa-mixer, base, bytestring, containers, hint - , libmpd, mtl, network, regex-posix, stdenv, X11, xmonad - , xmonad-contrib - }: - mkDerivation { - pname = "xmonad-extras"; - version = "0.15.2"; - sha256 = "9a9ea86b49ce2fe9f4204d09bc5b32c323d42be8017429058b0568300bfb40dc"; - configureFlags = [ - "-f-with_hlist" "-fwith_parsec" "-fwith_split" - ]; - libraryHaskellDepends = [ - alsa-mixer base bytestring containers hint libmpd mtl network - regex-posix X11 xmonad xmonad-contrib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/xmonad-extras"; - description = "Third party extensions for xmonad with wacky dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.6"; - sha256 = "b385eea5652c798b701c627dce8b327c3d6cbfd8c92e1e18e7118862d4d0e2b4"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/haskell-xss-sanitize#readme"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql" = callPackage - ({ mkDerivation, base, stdenv, yeshql-core, yeshql-hdbc }: - mkDerivation { - pname = "yeshql"; - version = "4.1.0.1"; - sha256 = "c4c590682d6581cf49893bdcd3c2d0e4046d81240a7f5abd7bcaa17037c29db6"; - libraryHaskellDepends = [ base yeshql-core yeshql-hdbc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (legacy compatibility wrapper)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-core" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, parsec - , stdenv, template-haskell - }: - mkDerivation { - pname = "yeshql-core"; - version = "4.1.0.2"; - sha256 = "c0db2a2f415846236e9c38a652dc38e56f2a68baa72b61bdf5c5238f1b6317fe"; - libraryHaskellDepends = [ - base containers convertible filepath parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (core)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yeshql-hdbc" = callPackage - ({ mkDerivation, base, containers, convertible, filepath, HDBC - , parsec, stdenv, template-haskell, yeshql-core - }: - mkDerivation { - pname = "yeshql-hdbc"; - version = "4.1.0.2"; - sha256 = "f4ac521c6970d9a06d321e9f2b1143e6901c9875314281505aafcda3bd0352dc"; - libraryHaskellDepends = [ - base containers convertible filepath HDBC parsec template-haskell - yeshql-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tdammers/yeshql"; - description = "YesQL-style SQL database abstraction (HDBC backend)"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , conduit, data-default-class, directory, fast-logger, monad-logger - , resourcet, semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, transformers, unix, unordered-containers - , wai, wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0"; - sha256 = "8a242ffe1df10bc2c5dffb6e255ad21b11e96a9c4794bac20504b67f973da773"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring conduit - data-default-class directory fast-logger monad-logger resourcet - semigroups shakespeare streaming-commons template-haskell text - transformers unix unordered-containers wai wai-extra wai-logger - warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-alerts" = callPackage - ({ mkDerivation, alerts, base, blaze-html, blaze-markup, safe - , stdenv, text, yesod-core - }: - mkDerivation { - pname = "yesod-alerts"; - version = "0.1.3.0"; - sha256 = "fbef9f900b51574ba910039fb1bfcff166bb6ac316972ba5330fc7df090cf4f4"; - libraryHaskellDepends = [ - alerts base blaze-html blaze-markup safe text yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/yesod-alerts#readme"; - description = "Alert messages for the Yesod framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, bytestring, conduit, conduit-extra, containers - , cryptonite, data-default, email-validate, file-embed, http-client - , http-client-tls, http-conduit, http-types, memory, network-uri - , nonce, persistent, random, safe, shakespeare, stdenv - , template-haskell, text, time, transformers, unliftio - , unliftio-core, unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.8"; - sha256 = "c5b8872dea6ef9cc1f3fb401dc14357683fccc34ec5cee60b96b558ff3cf5634"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory network-uri nonce persistent random safe shakespeare - template-haskell text time transformers unliftio unliftio-core - unordered-containers wai yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7.1.2"; - sha256 = "1bd6f50e66c9c5f01d358b67cd1db324a796627db00f12f5068f7226e5a3c681"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-oauth2" = callPackage - ({ mkDerivation, aeson, base, bytestring, errors, hoauth2 - , http-client, http-conduit, http-types, microlens, random - , safe-exceptions, stdenv, text, uri-bytestring, yesod-auth - , yesod-core - }: - mkDerivation { - pname = "yesod-auth-oauth2"; - version = "0.6.1.2"; - sha256 = "5cf8566916f62ad137c06a8a20d344e2d5a8294371e5c8ec28b32d173030551e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring errors hoauth2 http-client http-conduit - http-types microlens random safe-exceptions text uri-bytestring - yesod-auth yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/thoughtbot/yesod-auth-oauth2"; - description = "OAuth 2.0 authentication plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, base, bytestring, Cabal, conduit, conduit-extra - , containers, data-default-class, directory, file-embed, filepath - , fsnotify, http-client, http-client-tls, http-reverse-proxy - , http-types, network, optparse-applicative, process - , project-template, say, split, stdenv, stm, streaming-commons, tar - , text, time, transformers, transformers-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.4"; - sha256 = "2a640ae3e41c4f4fc4c0349327a4ef54cd3cedcc28a880b41ea118c40827e473"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal conduit conduit-extra containers - data-default-class directory file-embed filepath fsnotify - http-client http-client-tls http-reverse-proxy http-types network - optparse-applicative process project-template say split stm - streaming-commons tar text time transformers transformers-compat - unliftio unordered-containers wai wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , bytestring, case-insensitive, cereal, clientsession, conduit - , conduit-extra, containers, cookie, deepseq, fast-logger - , http-types, memory, monad-logger, mtl, parsec, path-pieces - , primitive, random, resourcet, shakespeare, stdenv - , template-haskell, text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.17"; - sha256 = "9444d7de54c304567be23798ecb4cbc760fb2e01ebe20a684c39451a53ef61c4"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq fast-logger http-types memory - monad-logger mtl parsec path-pieces primitive random resourcet - shakespeare template-haskell text time transformers unix-compat - unliftio unordered-containers vector wai wai-extra wai-logger warp - word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-csp" = callPackage - ({ mkDerivation, attoparsec, base, case-insensitive - , mono-traversable, network-uri, semigroups, stdenv, syb - , template-haskell, text, wai, yesod, yesod-core - }: - mkDerivation { - pname = "yesod-csp"; - version = "0.2.5.0"; - sha256 = "257401c4e5a12524e567c8c9727ab88cb2d6a81e74caea528df9f0ce65326599"; - libraryHaskellDepends = [ - attoparsec base case-insensitive mono-traversable network-uri - semigroups syb template-haskell text wai yesod yesod-core - ]; - doHaddock = false; - doCheck = false; - description = "Add CSP headers to Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-eventsource" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, stdenv, transformers - , wai, wai-eventsource, wai-extra, yesod-core - }: - mkDerivation { - pname = "yesod-eventsource"; - version = "1.6.0"; - sha256 = "6fceeca34d5e80c8a0d65ab95fab3c53807d1f18eb506abdef67a8f70d0e418b"; - libraryHaskellDepends = [ - base blaze-builder conduit transformers wai wai-eventsource - wai-extra yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Server-sent events support for Yesod apps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-fb" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, crypto-api, fb - , http-client-tls, http-conduit, stdenv, text, wai, yesod-core - }: - mkDerivation { - pname = "yesod-fb"; - version = "0.5.0"; - sha256 = "de375004c12e89eec47738d60465c7c63b5f0c7bfc3591c70a35522fdc0841db"; - libraryHaskellDepends = [ - aeson base bytestring conduit crypto-api fb http-client-tls - http-conduit text wai yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/yesod-fb"; - description = "Useful glue functions between the fb library and Yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, text, time, transformers, wai, xss-sanitize - , yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.7"; - sha256 = "ad645460ea52d57d231db6ad88229eb9dc5861ae9b97eba72a9799eb5b38de56"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare text time - transformers wai xss-sanitize yesod-core yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form-bootstrap4" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, shakespeare - , stdenv, text, yesod-core, yesod-form - }: - mkDerivation { - pname = "yesod-form-bootstrap4"; - version = "2.1.2"; - sha256 = "9320fb390eb8b6c9c841d599945a8ac4db49d9bbaec99ade49a6148f6644a1e7"; - libraryHaskellDepends = [ - base blaze-html blaze-markup shakespeare text yesod-core yesod-form - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-form-bootstrap4#readme"; - description = "renderBootstrap4"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrepo" = callPackage - ({ mkDerivation, base, directory, http-types, process, stdenv - , temporary, text, unliftio, wai, yesod-core - }: - mkDerivation { - pname = "yesod-gitrepo"; - version = "0.3.0"; - sha256 = "b03c67c506bc3fc402cb41759d69f2c3159af47959cbd964cb6531996084981e"; - libraryHaskellDepends = [ - base directory http-types process temporary text unliftio wai - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yesod-gitrepo#readme"; - description = "Host content provided by a Git repo"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, githash, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.1"; - sha256 = "fc34c48eee25a15a55a6052fc1d15bb63bbc63514059483cb2212895f0eea671"; - libraryHaskellDepends = [ - aeson base githash template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.6.1.0"; - sha256 = "6d0b97592d74ca45e204f1876fb113a4830c5f35612b876175169af3d2f79615"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-paginator" = callPackage - ({ mkDerivation, base, blaze-markup, path-pieces, persistent, safe - , stdenv, text, transformers, uri-encode, yesod-core - }: - mkDerivation { - pname = "yesod-paginator"; - version = "1.1.0.2"; - sha256 = "49a3d10b93a16576bf0ca2f47221e7e34231b4af3d764296f0705a9175be1864"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-markup path-pieces persistent safe text transformers - uri-encode yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pbrisbin/yesod-paginator"; - description = "A pagination approach for yesod"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0.4"; - sha256 = "8085b7a4c827e364bf581e03ebccc72dcff75c77001213d451ff7cd3bfe051bf"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-recaptcha2" = callPackage - ({ mkDerivation, aeson, base, classy-prelude, http-conduit, stdenv - , yesod-auth, yesod-core, yesod-form - }: - mkDerivation { - pname = "yesod-recaptcha2"; - version = "0.3.0"; - sha256 = "0c42aad0943a1a1518d23632b243709542690921bdf25262367357b74d906f89"; - libraryHaskellDepends = [ - aeson base classy-prelude http-conduit yesod-auth yesod-core - yesod-form - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/yesod-recaptcha2#readme"; - description = "yesod recaptcha2"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, conduit, containers, cryptonite - , cryptonite-conduit, css-text, data-default, directory, file-embed - , filepath, hashable, hjsmin, http-types, memory, mime-types - , process, stdenv, template-haskell, text, transformers - , unix-compat, unordered-containers, wai, wai-app-static - , yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0.1"; - sha256 = "abe7e802f5efd064823b827074fea3613f4ba46115afedb5e2d96f919dcfa0c9"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder bytestring - conduit containers cryptonite cryptonite-conduit css-text - data-default directory file-embed filepath hashable hjsmin - http-types memory mime-types process template-haskell text - transformers unix-compat unordered-containers wai wai-app-static - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , bytestring, case-insensitive, conduit, containers, cookie - , hspec-core, html-conduit, http-types, HUnit, memory, network - , pretty-show, semigroups, stdenv, text, time, transformers, wai - , wai-extra, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.9"; - sha256 = "5379e217b1a3081b466090eed3b21181b43fab9aa9396fdfa3a53d7830a6456c"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit memory network pretty-show semigroups text time - transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-text-markdown" = callPackage - ({ mkDerivation, aeson, base, markdown, persistent, shakespeare - , stdenv, text, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-text-markdown"; - version = "0.1.10"; - sha256 = "3cee8b3d8d84f30e8b825076d650afb05e79ebd22f34a21fc7ad7f45e1637ddc"; - libraryHaskellDepends = [ - aeson base markdown persistent shakespeare text yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - description = "Yesod support for Text.Markdown."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0.2"; - sha256 = "01c69701ddb499c198984e440b05eecdabd285890793e711adbd8847103540cc"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai-websockets websockets - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-language" = callPackage - ({ mkDerivation, alex, array, base, binary, containers - , data-default, hashable, microlens-platform, oo-prototypes - , pointedlist, regex-base, regex-tdfa, stdenv, template-haskell - , transformers-base, unordered-containers - }: - mkDerivation { - pname = "yi-language"; - version = "0.18.0"; - sha256 = "e86eaae8c0c21834d14dd9aaec50730df92c08e4ffa8846dc750d6b0033cc470"; - libraryHaskellDepends = [ - array base binary containers data-default hashable - microlens-platform oo-prototypes pointedlist regex-base regex-tdfa - template-haskell transformers-base unordered-containers - ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/yi#readme"; - description = "Collection of language-related Yi libraries"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.5"; - sha256 = "30020283ef7b241787bae810b1f563bd2c7a6ada69a582b8d7cc020365015f91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.5"; - sha256 = "9c52083fc246299bf63df0363e950e19a88c6f6fbab7891cfd9379f6180760f9"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.8.0"; - sha256 = "d3be996589e126e30cb000545c56907e44a2a1d10960e4c7698b7941d0dff66b"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.2.0"; - sha256 = "b61de150884e376923e247f8f7386966d6d5d1804238c42fd874b61fe3b27dc9"; - revision = "2"; - editedCabalFile = "09ak8h11hm1jnpkvljradbj3a741s31k8cvyvwypr927khi5y9mp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , digest, directory, filepath, mtl, pretty, stdenv, text, time - , unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.4.1"; - sha256 = "c5d5c9976241dcc25b0d8753dc526bb1bfef60f30dee38c53a7ae56e6be9b1b1"; - revision = "1"; - editedCabalFile = "1mv6jns7zf0fi7lrhzk007g12v6x7yf5ycbj67rbh83xfkf4nxsi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, text, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.2.0.1"; - sha256 = "b7c45c612f1f53546923162d73c644b9704d5293b1e767108728d3c08b46a587"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet text time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, fail, lens - , profunctors, semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.3"; - sha256 = "f5b6e0e73d151c3876f70428ff7684cdcb6d7418211d3ad120e325a8d17c3a43"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base fail lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2.1"; - sha256 = "f0f810ff173560b60392db448455c0513b3239f48e43cb494b3733aa559621d0"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.1.2"; - sha256 = "e24b5259793d5f838e45ee751a59867b8db9ddabc5bc8ffb5423f0fd4d22fa90"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ztail" = callPackage - ({ mkDerivation, array, base, bytestring, filepath, hinotify - , process, regex-posix, stdenv, time, unix, unordered-containers - }: - mkDerivation { - pname = "ztail"; - version = "1.2.0.2"; - sha256 = "a14341d51da6dbef9f0edcdefe185dbd7726880ec4e230855fb9871de7c07717"; - revision = "1"; - editedCabalFile = "0d0cpgb0v849zxl12c2gkm3x4nmyfycka1pcfix43lawx62rky8s"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base bytestring filepath hinotify process regex-posix time - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Multi-file, colored, filtered log tailer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/ghc881.nix b/generated/stable/stack2nix/ghc881.nix deleted file mode 100644 index 0e67a45..0000000 --- a/generated/stable/stack2nix/ghc881.nix +++ /dev/null @@ -1,35710 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc881 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hoopl = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - xhtml = null; - "AC-Angle" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "AC-Angle"; - version = "1.0"; - sha256 = "b545b0086832adc7d9ae15b4c3f3d1522d63a746f204570766828f1a893a4965"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Angles in degrees and radians"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.3"; - sha256 = "71891b0a1d96a6a07d1404e542dc9c86b30f757543c294de9644af98f781d912"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Allure" = callPackage - ({ mkDerivation, async, base, enummapset, filepath, ghc-compact - , LambdaHack, optparse-applicative, primitive, random, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "Allure"; - version = "0.9.5.0"; - sha256 = "8180fe070633bfa5515de8f7443421044e7ad4ee050f0a92c048cec5f2c88132"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async base enummapset filepath ghc-compact LambdaHack - optparse-applicative primitive random template-haskell text - transformers - ]; - executableHaskellDepends = [ - async base filepath LambdaHack optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://allureofthestars.com"; - description = "Near-future Sci-Fi roguelike and tactical squad combat game"; - license = stdenv.lib.licenses.agpl3Plus; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "3.0.0.0"; - sha256 = "5143ec26d740c1a508c93a8860e64407e7546c29b9817db20ff1595c1968d287"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart" = callPackage - ({ mkDerivation, array, base, colour, data-default-class, lens, mtl - , old-locale, operational, stdenv, time, vector - }: - mkDerivation { - pname = "Chart"; - version = "1.9.3"; - sha256 = "3e17f4ca0112399df627862bb50581f81ec3ebf54b618e3c690f10380b9ec95c"; - libraryHaskellDepends = [ - array base colour data-default-class lens mtl old-locale - operational time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "A library for generating 2D Charts and Plots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChasingBottoms" = callPackage - ({ mkDerivation, base, containers, mtl, QuickCheck, random, stdenv - , syb - }: - mkDerivation { - pname = "ChasingBottoms"; - version = "1.3.1.7"; - sha256 = "5631d5583a887a346274530e623107511444f5820bb469546ed787bdb5c3317e"; - libraryHaskellDepends = [ - base containers mtl QuickCheck random syb - ]; - doHaddock = false; - doCheck = false; - description = "For testing partial and infinite values"; - license = stdenv.lib.licenses.mit; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Color" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, data-default-class - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "Color"; - version = "0.1.1"; - sha256 = "1320e34644b7f180f2430b46b39505ece9b801c3a0b053f040efd603d9f6984b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base data-default-class deepseq vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/Color"; - description = "Color spaces and conversions between them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.4"; - sha256 = "5e3b825290a0bd4c9da1c814b5e67901b0f9f1d16a88effaa7e060a81c895bc7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.4.0"; - sha256 = "7290ac098ad8b4748b9c10e494cc85ba54af688226ae69a465aa7b4c73f149c7"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ENIG" = callPackage - ({ mkDerivation, base, stdenv, text, unicode-transforms, vector }: - mkDerivation { - pname = "ENIG"; - version = "0.0.1.0"; - sha256 = "03b29362c5bf0b33ded4e776d0252e71f3227da7c93cefa3d67348ab976f66ff"; - libraryHaskellDepends = [ base text unicode-transforms vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/QuietJoon/ENIG#readme"; - description = "Auto Korean conjugator/adjustor/adopter/converter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.13.0.1"; - sha256 = "1e60bcfda0d7441ce2886d7f3523e017e74c225506dd9d0e7a3c012959943899"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FloatingHex" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "FloatingHex"; - version = "0.4"; - sha256 = "b277054db48d2dec62e3831586f218cbe0a056dec44dbc032e9a73087425a24c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Read and write hexadecimal floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.5"; - sha256 = "2deb5ba03a5326c7dd364900b86e427344266c4866b863e8325bf6eade760a9a"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, array, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.3.0.0"; - sha256 = "64772fd294a168567742753588f33627836bd0de876761f2da721d46aab506f6"; - libraryHaskellDepends = [ array base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.15"; - sha256 = "e99527f965849756e99b132fd6975747ec0952476454e0b9ec90526e9cdde108"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.10.0"; - sha256 = "473355bd6ba0a97902e0edada1acbc0d76cfda77596f0188b2cc0ae34272a324"; - revision = "1"; - editedCabalFile = "0zfd4wimwgnmgqkz9g9jqj2dq2r50wdcqmcz6v7is1zrpwhszk5v"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.1.3.22"; - sha256 = "8f348ff87d7312a5a41d99a1df558df72592aa34f4520c4b03fad4376e0f326e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , Cabal, containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.14.0.3"; - sha256 = "17bb9811b15e3bfaf25cda58820509ce1d4cc556eae274e16745742b54810f8d"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.14"; - sha256 = "a602d7f30e917164c6a634f8cb1f5df4849048858db01380a0875e16e5aa687b"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaXml" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , polyparse, pretty, random, stdenv - }: - mkDerivation { - pname = "HaXml"; - version = "1.25.5"; - sha256 = "cbc51ac4b6128e130f0272a7b42ab464bc865b3c238d6cce6b76e451765c1235"; - revision = "1"; - editedCabalFile = "1xnni9hdvi87incm1pcx0b7jv410maww99acdfkx1cwhlb6k91ag"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers filepath polyparse pretty random - ]; - executableHaskellDepends = [ base directory polyparse pretty ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/HaXml/"; - description = "Utilities for manipulating XML documents"; - license = "LGPL"; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.17"; - sha256 = "51df0aeedd2b09b010d30c6a0e335191ec8cc0c05a5cdc397d6ef94a59a23b62"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsYAML" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, mtl, parsec - , stdenv, text - }: - mkDerivation { - pname = "HsYAML"; - version = "0.2.1.0"; - sha256 = "60f727d5c90e693ef71df7dcbed8f40b66d2db11375528043e0326749e861f83"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers deepseq mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/HsYAML"; - description = "Pure Haskell YAML 1.2 processor"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "HsYAML-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, HsYAML, mtl - , scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "HsYAML-aeson"; - version = "0.2.0.0"; - sha256 = "cfb9634b43fcaddb5a520838119ba4b02b18423a35471fef5a805d6004e75d8b"; - libraryHaskellDepends = [ - aeson base bytestring containers HsYAML mtl scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "JSON to YAML Adapter"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.1.3"; - sha256 = "699b8ccfdcccc570b540c19c665630783609e8948214d905835cd6f74ad26acd"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.1.1"; - sha256 = "e8955ae2accc7529b41893a540d0c6943d118554d25857c1f6721f0777dfb46d"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.3.4"; - sha256 = "dde000c8802efff8e872d38f7da916ea86d130ba621266dc90d3332cbecd4c61"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.4.1"; - sha256 = "72d1551b9b9437e275baa96541b41c8c2d25a428ba1bda01200f9760bbf84b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LambdaHack" = callPackage - ({ mkDerivation, assert-failure, async, base, base-compat, binary - , bytestring, containers, deepseq, directory, enummapset, filepath - , ghc-compact, ghc-prim, hashable, hsini, keys, miniutter - , optparse-applicative, pretty-show, primitive, random, sdl2 - , sdl2-ttf, stdenv, stm, template-haskell, text, time, transformers - , unordered-containers, vector, vector-binary-instances, zlib - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.9.5.0"; - sha256 = "d0000272d5d97ed80bda3b9a9e6a0e5b22e53ac53e7e1d33b880505e5921a3f8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-compact ghc-prim hashable - hsini keys miniutter optparse-applicative pretty-show primitive - random sdl2 sdl2-ttf stm template-haskell text time transformers - unordered-containers vector vector-binary-instances zlib - ]; - executableHaskellDepends = [ - async base filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://lambdahack.github.io"; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6.3"; - sha256 = "9d06237f7384a5dc06c8d8e8e8b41dbc30b25cfb97b3430a96ff934ef53b7683"; - revision = "1"; - editedCabalFile = "1xi5mlk6jm73fdxsjcp41ffr3ygwwykcjf20c122k7hgpkzg1lms"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ddssff/listlike"; - description = "Generalized support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListTree" = callPackage - ({ mkDerivation, base, directory, filepath, List, stdenv - , transformers - }: - mkDerivation { - pname = "ListTree"; - version = "0.2.3"; - sha256 = "0b3aa1d34193d9f7f90b4afeea681a79ab1595e8e651cae093f8fca3c50f60cc"; - libraryHaskellDepends = [ - base directory filepath List transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator/tree"; - description = "Trees and monadic trees expressed as monadic lists where the underlying monad is a list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.10"; - sha256 = "584df0e138093b2f2edc893a69883eb8cbca3402ebdc75392a7742e86156ba53"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadPrompt" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "MonadPrompt"; - version = "1.0.0.5"; - sha256 = "b012cbbe83650f741c7b7f6eafcc89dec299b0ac74a758b6f3a8cdfc5d3bbeda"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - description = "MonadPrompt, implementation & examples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.2"; - sha256 = "776f0e69ddea30c9e819f1cd75249377b7fc6f7c8181b90e72ec9c7bc7e33448"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4.1"; - sha256 = "262c29f630a761356454c2a382d149230ea2e621c95102b3d3b30427d7c0cd57"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OneTuple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "OneTuple"; - version = "0.2.2"; - sha256 = "d82e702485bcbdefbda0d12b6a250d318a269572ee58d63b60eee531e56624dc"; - revision = "3"; - editedCabalFile = "0m3a9fj2h0v529q3i1kq1jfbdj68wxsmhq65hgx2rwjpgb8cqf0z"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Singleton Tuple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.5"; - sha256 = "343a546d94f8d05008896be509149b94ad601c0b48a83dd9e26990a0e97af898"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.3.0"; - sha256 = "5a05ffc752dfc7dd16818d7b3c7c59a27639e246cdfa1963fa02e3ce247a2e19"; - revision = "1"; - editedCabalFile = "1748mrb6r9mpf5jbrx436lwbg8w6dadyy8dhxw2dwnrj5z7zf741"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/OpenGL"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.4.0"; - sha256 = "756169eaadfe16627a893c35e7952d82ff466ac77b13ec2d1ea1de8fb5afba3e"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "PyF" = callPackage - ({ mkDerivation, base, containers, haskell-src-exts - , haskell-src-meta, megaparsec, mtl, stdenv, template-haskell, text - }: - mkDerivation { - pname = "PyF"; - version = "0.9.0.0"; - sha256 = "1c5af5b527615886d94c52eb43e5cab42d429e7461f8cde645fc4a84dbb7c849"; - libraryHaskellDepends = [ - base containers haskell-src-exts haskell-src-meta megaparsec mtl - template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "Quasiquotations for a python like interpolated string formater"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, random, splitmix - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.13.2"; - sha256 = "7b560baa5853de777702dc23a6f2126ae4adbfdab163295bc56323a706914610"; - libraryHaskellDepends = [ - base containers deepseq random splitmix template-haskell - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.4.1"; - sha256 = "72c5d8c45ef1013e0e8aff763bb8894df0f022f28e698e33ae87bbdb33d69041"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ranged-sets" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "Ranged-sets"; - version = "0.4.0"; - sha256 = "4b25a843f0fbbeda9bf218e3f4be7f1ac58704e433a08ef02ead1dee8d126dea"; - revision = "2"; - editedCabalFile = "1dl69wa509yn2jvl0d4c5c036swq22i6nd73kqn0bp7vhbj4rfq4"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Ranged-sets"; - description = "Ranged sets for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.5"; - sha256 = "32ad46894c7c5f8fd15bb618b86a3dbbca23108d7033c69c83dd835e12071a95"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SafeSemaphore" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "SafeSemaphore"; - version = "0.10.1"; - sha256 = "21e5b737a378cae9e1faf85cab015316d4c84d4b37e6d9d202111cef8c4cef66"; - revision = "1"; - editedCabalFile = "1k61gqgfh6n3sj8ni8sfvpcm39nqc2msjfxk2pgmhfabvv48w5hv"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/SafeSemaphore"; - description = "Much safer replacement for QSemN, QSem, and SampleVar"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "21df2193bf1216d55a0d43691182125993eeadc6f097eaf5eb995c23f2016b13"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.2"; - sha256 = "afc036021fcd38f15fcc4af392a3e57017d5ddcc926e99391dbfc8c4e6375f8b"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TypeCompose" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "TypeCompose"; - version = "0.9.14"; - sha256 = "56034f7917c7464e3be93754c36302d91b8d750f84f6ed7af146f94c4fd05a57"; - revision = "1"; - editedCabalFile = "1pxg6az5vkl0zvs3zdvvvnhxqawd9fkkd44jmzzzyyibppgni6x4"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/TypeCompose"; - description = "Type composition classes & instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "Win32"; - version = "2.6.1.0"; - sha256 = "eba445ba0717e96f239c984890f67172e7bfe72a23f32f37fe265b6cadfd9ce3"; - revision = "1"; - editedCabalFile = "1ia6dk2fvxg3gzqdmcypdka6fcnnrza23hq1rhslj53jy3qzs3kn"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/win32"; - description = "A binding to part of the Win32 library"; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.none; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9.1"; - sha256 = "7581e7b3c1c8313d1f7d224d57b20c689e5f757404c9f0ec47f4d15c4541e63d"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.6"; - sha256 = "6580f376b4c1a55cd35baccdcfd6ddcc240bcd514743e629df610251e9d8f739"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "advent-of-code-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, finite-typelits, http-api-data, http-client - , http-client-tls, http-media, megaparsec, mtl, profunctors - , servant, servant-client, servant-client-core, stdenv, stm - , tagsoup, text, time, time-compat - }: - mkDerivation { - pname = "advent-of-code-api"; - version = "0.2.7.0"; - sha256 = "99f7eb28da234c3188d1002a413b6a8560ee1e24cc567ea40e1a5a57f9143028"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - finite-typelits http-api-data http-client http-client-tls - http-media megaparsec mtl profunctors servant servant-client - servant-client-core stm tagsoup text time time-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/advent-of-code-api#readme"; - description = "Advent of Code REST API bindings and servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, deepseq, dlist, ghc-prim, hashable, primitive - , scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers deepseq dlist - ghc-prim hashable primitive scientific tagged template-haskell text - th-abstraction time time-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.2.0.0"; - sha256 = "3723075673a3f188a05e5db0cd2851c249ca16eba532c3e76e7f1fa60cf19233"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.9"; - sha256 = "e043941ba761c13a3854fc087521b864b56b2df874154e42aedb67b2a77f23c8"; - revision = "2"; - editedCabalFile = "1y07skwfg22z37fvjmqcpcl1yz1kx2zn4zz3n1bfghk7740c4gyd"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.8"; - sha256 = "24eab662fc61c022db1a67ba94ce1385e2ad1f500c6498b5ee90725f070835de"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.3"; - sha256 = "a6b6ca511483bc9de72c2c640a9f871fe8d329811fb8b87d0a664c4394e223cf"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-lens" = callPackage - ({ mkDerivation, aeson, base, bytestring, lens, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-lens"; - version = "0.5.0.0"; - sha256 = "7ace668031da8119439e21b6ccbe329d37c533be2f5c5612389107d2676728df"; - libraryHaskellDepends = [ - aeson base bytestring lens text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Lens of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-optics" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , optics-core, optics-extra, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-optics"; - version = "1.1.0.1"; - sha256 = "c7555096900d1c9bb18b1a5c8697976e6dc8268a9ec1c6dbb9abf0431941d1dd"; - revision = "1"; - editedCabalFile = "08nyfzxcw2j9wkm0cnbw2dl8f3zj2zrv85wrjayqq9v06hqk0dkl"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bytestring optics-core - optics-extra scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/aeson-optics"; - description = "Law-abiding optics for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.5"; - sha256 = "97df83f6ef5f201e784c0a96c3bc3205c94d20b67f5ff4e3193acd8e9a339c16"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.3"; - sha256 = "8f3129cf88bf52214a9f74c0be584a3c3296d1541280ad900188e102fee7f482"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-schemas" = callPackage - ({ mkDerivation, aeson, base, bytestring, first-class-families - , megaparsec, stdenv, template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "aeson-schemas"; - version = "1.0.3"; - sha256 = "5133311983f3e2d3b5593d8db2b57c4bda6208c63193043bd48957c357c4b03a"; - revision = "2"; - editedCabalFile = "0dydrwj8d7337c0qdxc7cxg8y2hb89ksli9692rvx7zfan41cpq7"; - libraryHaskellDepends = [ - aeson base bytestring first-class-families megaparsec - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/aeson-schemas#readme"; - description = "Easily consume JSON data on-demand with type-safety"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-yaml" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-yaml"; - version = "1.0.5.0"; - sha256 = "e3c49b52b7000dcfe0a227af2e3a70aa7fd97f5c577156ad659470b17127a533"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/clovyr/aeson-yaml"; - description = "Output any Aeson value as YAML (pure Haskell library)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.2.0"; - sha256 = "8e9c684b1236c5a730f50b48aa38de2b835fbb48d5bc27be41e742cedb64de91"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.5"; - sha256 = "b77c8a1270767c64e2adb21a6e91ee7cd904ba17edae17bc20fd03da5256e0e3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, dual, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.13.1"; - sha256 = "83929d69abda54ba724c5221071b8629ed60605edb8ec9a66ed8a025ad90c41c"; - libraryHaskellDepends = [ base dual util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-mixer" = callPackage - ({ mkDerivation, alsa-core, alsaLib, base, c2hs, stdenv, unix }: - mkDerivation { - pname = "alsa-mixer"; - version = "0.3.0"; - sha256 = "cb6a197de99c6b4339a7f552e1c6b71eaefa11bb96102d5ba4519a23c615de02"; - libraryHaskellDepends = [ alsa-core base unix ]; - librarySystemDepends = [ alsaLib ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ttuegel/alsa-mixer"; - description = "Bindings to the ALSA simple mixer API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1.1"; - sha256 = "6348f63e2858df9c0b516053c7c5111139936faea6edf7cf400b8fba6cca94d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , stdenv, text, time, transformers, transformers-base - , transformers-compat, unliftio-core, void - }: - mkDerivation { - pname = "amazonka"; - version = "1.6.1"; - sha256 = "edb794b7ed0db3f5955ec08ded68b5eca753f62978312c881f3cb0c6eb769180"; - revision = "1"; - editedCabalFile = "0xn4wy5gb1h4f4wd2h5ic17nb6ilikmsp1qip6xxc3img5rmaqyq"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat unliftio-core void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-apigateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-apigateway"; - version = "1.6.1"; - sha256 = "3b843dd490d09c45aac415269bf3d7db894fad8104cdd76292058adb03adf385"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon API Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-application-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-application-autoscaling"; - version = "1.6.1"; - sha256 = "da0eaaa282cc04c6aa486dfe00cdb5f42afc77e6785493ffdaa2ff7c9a8ad286"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-appstream" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-appstream"; - version = "1.6.1"; - sha256 = "6644fac750a0a415439df14567597de57bbe75cfe259feb42265af58867c088c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon AppStream SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-athena" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-athena"; - version = "1.6.1"; - sha256 = "370ee46f0d9b7f09b911b25d97457d727510fa049b42921f5f6e4a730fe15b9d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Athena SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-autoscaling"; - version = "1.6.1"; - sha256 = "2fb4adc14d35ce6a24b1c294bbf3974317ff8b315fc10dc8f9609399a8acc914"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-budgets" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-budgets"; - version = "1.6.1"; - sha256 = "84ab20850439ba786153a6e0c27bc8a321ef1c79524a8bf2d89adb56442d6273"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Budgets SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-certificatemanager" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-certificatemanager"; - version = "1.6.1"; - sha256 = "833d7b67e7bae4c8633d34109998675edbc95478ac0eb86ec1cf866079689ef2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Certificate Manager SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudformation" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudformation"; - version = "1.6.1"; - sha256 = "e823eab5456b0b6f86f9cd391cf2572998e30ecbed9ce373cd8e3ac6f5d3afc8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFormation SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudfront" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudfront"; - version = "1.6.1"; - sha256 = "8c5900fb0d34878ecfe9470bcd897259e2575dbf7e13fc526a515a0e52dfa779"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFront SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudhsm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudhsm"; - version = "1.6.1"; - sha256 = "34dfe223cf33e207be71c6c0f092e892b549f5332eb392a0c474493be0e0a019"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudHSM SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch"; - version = "1.6.1"; - sha256 = "d04812c26d5c19b5ad00f343e2607e18a91f12743508903ee76f12999bcd7adc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch-domains"; - version = "1.6.1"; - sha256 = "041b6c655878f0ae85803cc4ef338bf1c4eab48ec327c46ffadb78b5c886b11f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch Domain SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudtrail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudtrail"; - version = "1.6.1"; - sha256 = "55cc7c15a2e26824621ddb7e8086605bac315f994ac4cefb56b6b9726e0f7da9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudTrail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch"; - version = "1.6.1"; - sha256 = "4e56b617c7b14f0074812562c52f05059c83921800cf737e231e3a8a4149326d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-events" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-events"; - version = "1.6.1"; - sha256 = "8b323d428e163bebb83bbcc3790666356c53bde5c418c84ac48898ebcc3f7646"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Events SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-logs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-logs"; - version = "1.6.1"; - sha256 = "61dfdebb7c99d7d2875cd5ddba10000923c14a0d8a22e233ed3bbe617aa4d490"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Logs SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codebuild" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codebuild"; - version = "1.6.1"; - sha256 = "1375ef0b6b261e6762a3c35837055af3f0066f1da00c62f00fb28def8d39a6b0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeBuild SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codecommit" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codecommit"; - version = "1.6.1"; - sha256 = "b639a3106095c6dc5d3885a75e20bd9ae4c270ae70b3fb342a40d191da1d0733"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeCommit SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codedeploy" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codedeploy"; - version = "1.6.1"; - sha256 = "3dff6fd082f1dc5c0f5992229499432e97b1a958a810a98330e25cf7175b54fa"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeDeploy SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codepipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codepipeline"; - version = "1.6.1"; - sha256 = "bfa0ffffdf925b5e8693c10d4d73c1fbe310cb8f51a20d155ed08761cb3965c9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodePipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-identity" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-identity"; - version = "1.6.1"; - sha256 = "b97778558ce4ba5b8703d5549cd0ffa0b899812e2dd044d7515435070f9e8204"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-idp" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-idp"; - version = "1.6.1"; - sha256 = "df62c34ef4269974d71cc8a1ed6a8160dd739a4dd7ef5e18a5c061a9f2e8f01b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity Provider SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-sync" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-sync"; - version = "1.6.1"; - sha256 = "e048f9d072b5655f8da36d47c40c45f2d77d85a0a0e4ae0adf14b0e30590db63"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Sync SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-config" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-config"; - version = "1.6.1"; - sha256 = "ff36ba897040319981edf9736115ca541e000eb37fe6fd408f07f32792f06834"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Config SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite, deepseq - , exceptions, hashable, http-client, http-conduit, http-types, lens - , memory, mtl, resourcet, scientific, semigroups, stdenv, tagged - , text, time, transformers, transformers-compat - , unordered-containers, xml-conduit, xml-types - }: - mkDerivation { - pname = "amazonka-core"; - version = "1.6.1"; - sha256 = "4198f52da9d20338bd6a3a18748d4312d3ff2c06bc84503cb18406251b28a243"; - revision = "1"; - editedCabalFile = "1656dyw6fk3gvph6v3xzvdp3p8xny3ji0gxg7qxvmvn60gj9ricv"; - libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Core data types and functionality for Amazonka libraries"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-datapipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-datapipeline"; - version = "1.6.1"; - sha256 = "6bf752844ec49c59be856bb082b600959ec187cc890f1bb7f7d9641e9b78b122"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Data Pipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-devicefarm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-devicefarm"; - version = "1.6.1"; - sha256 = "bed85bba8a891f7c626e0b1e41cb4912974c250a6534e5438a3f51e5379a83ec"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Device Farm SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-directconnect" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-directconnect"; - version = "1.6.1"; - sha256 = "dc61998ad1145118be5138df37bd97cb1a61298e8fbc506ef1a22a33bafa045b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Direct Connect SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-discovery" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-discovery"; - version = "1.6.1"; - sha256 = "02abc932bf71df3ee03f5503d08414e3c01c49f08b4720e14e1a1e8fa13f449d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Discovery Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dms"; - version = "1.6.1"; - sha256 = "8c79f617ccd7035f709ae8057a8e1a6c5a89cdab3aa9c3aabaee7c0628e3ed87"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Database Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ds"; - version = "1.6.1"; - sha256 = "fb4807974a865556eafc99b7c030244cf7da0b5b1ade9365fcb8689a48d6c8ff"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Directory Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb"; - version = "1.6.1"; - sha256 = "0420486c88f10636a4407c8732b927498c5a809b235e2da56750d012f05c1d82"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb-streams"; - version = "1.6.1"; - sha256 = "fe2dab6892599dac4ec9f4408283019d670f6ba0a24723914aabe718b14ed959"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB Streams SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecr"; - version = "1.6.1"; - sha256 = "2d0d5dd640f63e11b6009d3b486505e93afd379c5f5738df79582b5eeb6c7358"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Registry SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecs"; - version = "1.6.1"; - sha256 = "55071129ab02b9bf3feb5b5ca04feb64ea8709a125b67a35fda15b25cc1a1bba"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-efs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-efs"; - version = "1.6.1"; - sha256 = "741e047eb04c3bbd8dcbb03579bc82e4546abd0ae9a835ae128e2b3843d6b18c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic File System SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticache" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticache"; - version = "1.6.1"; - sha256 = "4d2d8ae02e7c43eb77ba3a52863a4a2be305fb7f219a568709e830d647feeb60"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon ElastiCache SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticbeanstalk" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticbeanstalk"; - version = "1.6.1"; - sha256 = "2ad4f9e80217d544f5fdd837eb2749d54f3ca3b210dcbada70fec1c920879f69"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Beanstalk SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticsearch"; - version = "1.6.1"; - sha256 = "9ef91d5db4b13a0164a83674763ce25cb104ba92afd6f8ee5c70aa379006ca13"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elasticsearch Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elastictranscoder" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elastictranscoder"; - version = "1.6.1"; - sha256 = "df80e7de3db78431eddb2d5413ac5e2271ec282c50ee1a23076aca90d697fb5b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Transcoder SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elb"; - version = "1.6.1"; - sha256 = "5b5eecb81db898daa55ac1628bf65ac124d44e616dca5b33356ced32e6ba109d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elbv2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elbv2"; - version = "1.6.1"; - sha256 = "6740907fe448cbee8512b91b570204d56018e520239fc9f1689601eb382f7b79"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-emr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-emr"; - version = "1.6.1"; - sha256 = "4b93c73647239e0bb1f779c876e933126fae48d51777b15ae4c4750dec2d87bc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic MapReduce SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-gamelift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-gamelift"; - version = "1.6.1"; - sha256 = "c9c85550858c9eac54e86b226d31270de09cc8d71099a075829cc512fbe0e3b2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon GameLift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glacier" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glacier"; - version = "1.6.1"; - sha256 = "5b55cf733d0f987c1b3b61fb3fd0e29cdcfdc2bb7c9fcc0fa3c959d4bd540887"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glacier SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glue" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glue"; - version = "1.6.1"; - sha256 = "6b2a30379b9727522512a8f259a1e6bd1d22b34ed52669d5558777a81e5be89f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glue SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-health" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-health"; - version = "1.6.1"; - sha256 = "a2b533d5ac019b7dce0a8cc07f2515b577cabbd3caa613372018a37fa8764677"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Health APIs and Notifications SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iam" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iam"; - version = "1.6.1"; - sha256 = "1d5106a4af75fae4444a3353b2568d4e1f751e81c7e9e263d26cd81466c3e7d7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Identity and Access Management SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-importexport" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-importexport"; - version = "1.6.1"; - sha256 = "ce142494cc9d5a063ee93224e488380d3730ab507b57ebc53b215dafb0d6dd8e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-inspector" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-inspector"; - version = "1.6.1"; - sha256 = "68b4b3c335ce13754d08726a203fc01a5731f8b9147948b8848a986505efb674"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Inspector SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot"; - version = "1.6.1"; - sha256 = "51763922dbb965d5c01ec60f1090eed03bec959a77e451cef70c55a42a2dc683"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot-dataplane" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot-dataplane"; - version = "1.6.1"; - sha256 = "7b43f97fe9eb1d81c7ec9ea865fb49c4cd364fa532d4c50d8676306bb8c20b48"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT Data Plane SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis"; - version = "1.6.1"; - sha256 = "5fe3dcf3fbf9aded3e27eb430be32400ebb84a01c0aec237e330a9480cbb5167"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-analytics"; - version = "1.6.1"; - sha256 = "af589c9afa3f253efefb95b356a5f2a7a280d6abbf5314f182f0beecb1066e99"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-firehose" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-firehose"; - version = "1.6.1"; - sha256 = "e4a10bfe3f334c9ec27b86096b671b363357c8b417268444b7600dfdcd68872d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Firehose SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kms"; - version = "1.6.1"; - sha256 = "6d333ec392d1f47c850449e78a1071f2265b46f699f3c58ad9e30bd99c956285"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Key Management Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lambda" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lambda"; - version = "1.6.1"; - sha256 = "972b5ff15cad609f44761d485563496ca3584884e1fa367193ddaf76260fcca3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lambda SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lightsail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lightsail"; - version = "1.6.1"; - sha256 = "7c678ea0f8aa5beee2e0473ac5055a17aeb50c148362739adc84c940beb3931e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lightsail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-analytics"; - version = "1.6.1"; - sha256 = "6ff582afb73e30d97d1f74e815ae03cdf919c4be4581b23691346a6d48a2137d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Commerce Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-metering" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-metering"; - version = "1.6.1"; - sha256 = "928bdbe8fbd3b81429ff4936590f3e04fd3632737fb39048afdc6be8ade85037"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Metering SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ml" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ml"; - version = "1.6.1"; - sha256 = "b8c7c0b8663ffe570c79a1abc3d387b02e69b61b3f0d39b9ffa39e3049a7b872"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Machine Learning SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks"; - version = "1.6.1"; - sha256 = "0a1716f0d6e5edaad37d86f2f3c0be043a0b0086d1f7a2f06cdd539f717faa96"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks-cm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks-cm"; - version = "1.6.1"; - sha256 = "51857803a2f0bee215c92119c3c5899df01e9195c2dc133e3f9774d4b93eca57"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks for Chef Automate SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-pinpoint" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-pinpoint"; - version = "1.6.1"; - sha256 = "aa38c2d154b7ad3c16f0760c5304fd7d9875b1e8c7d48bb32b87a5616717fc87"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Pinpoint SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-polly" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-polly"; - version = "1.6.1"; - sha256 = "b0887545cce2a01b16733b1d329570b4c79e6cfd6412813ec5c9c6c0a79fccef"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Polly SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rds"; - version = "1.6.1"; - sha256 = "fcd2400a359093bd075ccfc76e16c42c3f3bdc65828bf4cb24c9e5cfdc389421"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Relational Database Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-redshift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-redshift"; - version = "1.6.1"; - sha256 = "87ea855e565636cc06396172e108df6aeca1e5fac1efc194d7bd98fc56402214"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Redshift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rekognition" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rekognition"; - version = "1.6.1"; - sha256 = "3e20fbeea825447a063684e40b3a3a71342ac32df15f9c40a580279fe6a9f8f8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Rekognition SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv, text }: - mkDerivation { - pname = "amazonka-route53"; - version = "1.6.1"; - sha256 = "7c6442da5b6ded2a26b4f2b642cffe578456ffda8903f424590744f0dbc75773"; - libraryHaskellDepends = [ amazonka-core base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-route53-domains"; - version = "1.6.1"; - sha256 = "2c2bcd7445c391235d3a8af2fcd8f641d5a4996379fbbdb8645a24c77f4ba2e8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 Domains SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-s3" = callPackage - ({ mkDerivation, amazonka-core, base, lens, stdenv, text }: - mkDerivation { - pname = "amazonka-s3"; - version = "1.6.1"; - sha256 = "47a0b0124eaf34b8f14bdac4a8ed2a61f86984da4f6fc9e34b44acda07167e28"; - libraryHaskellDepends = [ amazonka-core base lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Storage Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sdb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sdb"; - version = "1.6.1"; - sha256 = "53b4585f2cc3d192ce85163e23b153e605563b3938d9f9da28244fec8db92a7a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon SimpleDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-servicecatalog" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-servicecatalog"; - version = "1.6.1"; - sha256 = "b4d6ad7c79db7f1b106aa79f7477cff6191aa77d7c1c2b614c108b627507f54b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Service Catalog SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ses" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ses"; - version = "1.6.1"; - sha256 = "054c576d30341d11ce79869ac1ac5bc0d92ecab88f0fffe9895b78f4b614ece8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Email Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-shield" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-shield"; - version = "1.6.1"; - sha256 = "1b8a71a8ef5055e8c100ba81ee0fb0a6af7af1e2b29020f546f896f712a07519"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Shield SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sms"; - version = "1.6.1"; - sha256 = "d6eb434bde9424080f68691775867e119a9f802cb4e7b7761de31e9a800b4b85"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Server Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-snowball" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-snowball"; - version = "1.6.1"; - sha256 = "48c11fb69fed73bb3e7ed7b4cbaba28eb8cd3013b987479d8fb2d35eaa477cd3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export Snowball SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sns" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sns"; - version = "1.6.1"; - sha256 = "db98a53c40addfcff33938cdfc4daf4ca35e49bbab01b804562abfb1e613e735"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Notification Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sqs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sqs"; - version = "1.6.1"; - sha256 = "ee067dd46f51af2ad33ee351d5c85a7d9599a669139fde30fcad825ff80843d4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Queue Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ssm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ssm"; - version = "1.6.1"; - sha256 = "952dff5e1fba8d79cfc5df93c9e6e782e93462554ce446d4ef4e8aaa313cb0af"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Systems Manager (SSM) SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-stepfunctions" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-stepfunctions"; - version = "1.6.1"; - sha256 = "60af76621df8ba65cd64dcba3a8b0ca54445599accd0de8c54338920577dd013"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Step Functions SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-storagegateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-storagegateway"; - version = "1.6.1"; - sha256 = "1041b53029d829dd11b30c08d21a87af8da0b4ed92e51376b3233327b1817e3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Storage Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sts" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sts"; - version = "1.6.1"; - sha256 = "ee2364bb14e931528aa3d271c1688829c0975251bc5ffc5c824710841e1c8fb9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Security Token Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-support" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-support"; - version = "1.6.1"; - sha256 = "5a2d0dd5dd00a067b915e5dfb13c1848683ed7b9bdcfd6ac40d712b417c719ba"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Support SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-swf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-swf"; - version = "1.6.1"; - sha256 = "7b9ce6704f7fe46607722daaa35d11dc2c239fa82ab26ae8a456cdc390b8744a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Workflow Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-test" = callPackage - ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, process, resourcet, stdenv, tasty, tasty-hunit - , template-haskell, temporary, text, time, unordered-containers - , yaml - }: - mkDerivation { - pname = "amazonka-test"; - version = "1.6.1"; - sha256 = "751ed583302c4d8dd1dabe8628e8eb8d97b807a899bb71fe208158fe44f222a9"; - libraryHaskellDepends = [ - aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types process - resourcet tasty tasty-hunit template-haskell temporary text time - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Common functionality for Amazonka library test-suites"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-waf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-waf"; - version = "1.6.1"; - sha256 = "45c2f517d858891fa85e70e73969721c97ee22236d6932f0df87cd139255516a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WAF SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-workspaces" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-workspaces"; - version = "1.6.1"; - sha256 = "e589385b8a86f9997d0831ca350d5591484b9e1245374d3e0e88ab45d45c37bf"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WorkSpaces SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-xray" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-xray"; - version = "1.6.1"; - sha256 = "348cf06a7529d78a1b48d84e46a9c527b590355b4133473e8091052b34a5d00d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon X-Ray SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.19.1"; - sha256 = "7229d9b083349f0bf59b6c5d289edfceab40ba718a9532f8d7d192439f7d02a0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.10.2"; - sha256 = "a894e224920b5bd475eb514126801ae3d58538c1fc2d3804b890e17754a40940"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.9"; - sha256 = "a7b2e8e7cd3f02f2954e8b17dc60a0ccd889f49e2068ebb15abfa1d42f7a4eac"; - revision = "1"; - editedCabalFile = "0bb5fzjjc00932pny1fql40dmpmikfqzbrbmpwr09bfw9aynvzgn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "antiope-core" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, base, bytestring - , exceptions, generic-lens, http-client, http-types, lens, mtl - , resourcet, stdenv, text, transformers, unliftio-core - }: - mkDerivation { - pname = "antiope-core"; - version = "7.4.5"; - sha256 = "ac90bb9d9b22849e3d7890ccd4456c54df006bc165e161a38322e49277c132c3"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core base bytestring exceptions - generic-lens http-client http-types lens mtl resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-dynamodb" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-dynamodb - , antiope-core, base, generic-lens, lens, stdenv, text - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "antiope-dynamodb"; - version = "7.4.5"; - sha256 = "2e76152cf7db548de6fbbc88cdce1765673b8b88749a42a55b3e8cb7cdc9657f"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-dynamodb antiope-core base - generic-lens lens text unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-messages" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, base, bytestring - , generic-lens, lens, lens-aeson, monad-loops, network-uri, stdenv - , text, unliftio-core - }: - mkDerivation { - pname = "antiope-messages"; - version = "7.4.5"; - sha256 = "069b1507e12c1d0e4ba8bd0d6a110f17e3aee1be26986f881958b94d00a8b11d"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core base bytestring generic-lens lens - lens-aeson monad-loops network-uri text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-s3" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 - , antiope-core, antiope-messages, attoparsec, base, bytestring - , conduit, conduit-extra, deepseq, dlist, exceptions, generic-lens - , http-types, lens, mtl, network-uri, resourcet, stdenv, text, time - , unliftio-core - }: - mkDerivation { - pname = "antiope-s3"; - version = "7.4.5"; - sha256 = "8a459edc1244f53f062506732ce7e9a1d0451ee58b3590b1c52ab631fbd12a9b"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-s3 antiope-core - antiope-messages attoparsec base bytestring conduit conduit-extra - deepseq dlist exceptions generic-lens http-types lens mtl - network-uri resourcet text time unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-sns" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sns, base - , bytestring, generic-lens, lens, stdenv, text, time, unliftio-core - }: - mkDerivation { - pname = "antiope-sns"; - version = "7.4.5"; - sha256 = "c9383693f7aabf976b0a437232b8f499c4f22cab9bef8ff284e5828832446f38"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-sns base bytestring - generic-lens lens text time unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-sqs" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sqs, base - , bytestring, conduit, generic-lens, lens, lens-aeson, monad-loops - , mtl, network-uri, split, stdenv, text, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "antiope-sqs"; - version = "7.4.5"; - sha256 = "dc0d48f446db395649ed23c7a1cc6afe5530f8f23de5823077f8b7a023c15ae0"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-sqs base bytestring conduit - generic-lens lens lens-aeson monad-loops mtl network-uri split text - unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "2bd198b97077090476f8f512a7c03f3ab4147a6df51cf8cd22b5145c37b2ccda"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.8"; - sha256 = "c4ceeddc26525b58d82c41b6d3e32141371a200a6794aae185b6266ccc81631f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appendmap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "appendmap"; - version = "0.1.5"; - sha256 = "2dbfa21a3702c30e0bdf764f5775f4ed8ac63b48a830b8931ea994f52030b90e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/koterpillar/appendmap#readme"; - description = "Map with a Semigroup and Monoid instances delegating to Semigroup of the elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.7.0.0"; - sha256 = "e03a89f23f0564b3a361af278b9237aaa9cd6d1cd9cdc00d8c3db1450b8b4cb9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.3"; - sha256 = "8f71d0b77152edb048e9f75c72a82b9d7ae1b15432fc011610fe9f1b83225b18"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.2"; - sha256 = "d3fb53dd85d95263eb2c61146b3bd872c28670f4ff9da91fb260d558d819d104"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arbor-lru-cache" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "arbor-lru-cache"; - version = "0.1.1.1"; - sha256 = "602f4969a88c630bff1a4e96acf326c455fdd79ada94c9de134bf4734b33d92b"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/arbor-lru-cache#readme"; - description = "LRU cache based on STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "arbor-postgres" = callPackage - ({ mkDerivation, base, bytestring, generic-lens, lens, network-uri - , optparse-applicative, postgresql-simple, stdenv, text - }: - mkDerivation { - pname = "arbor-postgres"; - version = "0.0.5"; - sha256 = "41449dd18622c4981d8eed1da27b7bcd2004f5a031582e619512de0bcc96c36e"; - libraryHaskellDepends = [ - base bytestring generic-lens lens network-uri optparse-applicative - postgresql-simple text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/arbor-postgres#readme"; - description = "Convenience types and functions for postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, constraints, containers, deepseq - , exact-pi, ghc-prim, integer-gmp, integer-logarithms, random - , semirings, stdenv, transformers, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.10.0.0"; - sha256 = "69e6886835f065900197bf5eeaf5725c99c74ba51115c34391852f401eaf39e3"; - configureFlags = [ "-f-llvm" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base constraints containers deepseq exact-pi ghc-prim - integer-gmp integer-logarithms random semirings transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asciidiagram" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative - , pandoc-types, rasterific-svg, stdenv, svg-tree, text, vector - }: - mkDerivation { - pname = "asciidiagram"; - version = "1.3.3.3"; - sha256 = "019f1e781143a19434baeffc49ed0ebdf46e05179b36b753772276a0549b6126"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers FontyFruity JuicyPixels lens linear mtl - pandoc-types rasterific-svg svg-tree text vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative rasterific-svg svg-tree text - ]; - doHaddock = false; - doCheck = false; - description = "Pretty rendering of Ascii diagram into svg or png"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asif" = callPackage - ({ mkDerivation, 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 - , stdenv, temporary-resourcet, text, thyme, transformers, vector - }: - mkDerivation { - pname = "asif"; - version = "6.0.4"; - sha256 = "03e8f784df914d7f311efd594d89e455b2177492a8491ff503f870a741ca2398"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/asif#readme"; - description = "Library for creating and querying segmented feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.6"; - sha256 = "d9f8deabd3b908e5cf83c0d813c08dc0143b3ec1c0d97f660d2cfa02c1c8da0a"; - revision = "1"; - editedCabalFile = "19nq8g1v323p47cqlc4m9r6li35dd3cmcd7k486jw24cijkdjm9n"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.5"; - sha256 = "8f1fe1344d30b39dc594d74df2c55209577722af1497204b4c2b6d6e8747f39e"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.3"; - sha256 = "57ebc2371bdb607294b5ca18f44ced121ab528ee304905db1524cb441b535498"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assoc" = callPackage - ({ mkDerivation, base, bifunctors, stdenv, tagged }: - mkDerivation { - pname = "assoc"; - version = "1.0.1"; - sha256 = "4000dea2fbc272ff5a15a0bf0fae1c29dea4b87b8fb4ccb8b07b8114ee2636d5"; - libraryHaskellDepends = [ base bifunctors tagged ]; - doHaddock = false; - doCheck = false; - description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.1"; - sha256 = "da5dde1bcf42e4f48f5f23dbf3a890a2904ecaf86df3d75e365e071b924afe29"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.2"; - sha256 = "4b4ab1ac82c45144d82c6daf6cb6ba45eab9957dad44787fa5e869e23d73bbff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.3"; - sha256 = "003af9f24f06355aa240d7ba11079def44d6e78f21e5869c5f0f677a7d6dc50e"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.7"; - sha256 = "b5f5c77884bc0332306fab89acf1c8a8582d76eabaa303c91b1c4072621c960d"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.3"; - sha256 = "3d1ac6713505e520ebb51f26cfb5f6e5a0825e25394a51419c7e035b60b2f2d9"; - revision = "1"; - editedCabalFile = "164n392qrgyb8mg3xxaxym0ffvqyjr4ny4lfrr81y7hk3947yw9q"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv, vector }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.5"; - sha256 = "f5864859694fb9faa64cabea17fdf8f506e325fa4704c23036ea1cc17102c76f"; - libraryHaskellDepends = [ attoparsec base ip vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.1.0"; - sha256 = "499ffbd2d39e79cc4fda5ad0129dbf94fdb72a84aa932dfe2a5f5c5c02074142"; - revision = "1"; - editedCabalFile = "1rjhscmczgs1bwyqx7lvkm8py3ylxjd2797mrzgnq60fvm292750"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , QuickCheck, quickcheck-instances, stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.7"; - sha256 = "369d49c342f90bcc5e07c53b12dc642d6e03aa991900262abc48127d4b25725c"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip QuickCheck - quickcheck-instances strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aur" = callPackage - ({ mkDerivation, aeson, base, http-client, servant, servant-client - , stdenv, text - }: - mkDerivation { - pname = "aur"; - version = "6.2.0.1"; - sha256 = "a2892492bd0cd07508b25eafd822a4196b5a04fe9215d44360b2e848d6d80502"; - libraryHaskellDepends = [ - aeson base http-client servant servant-client text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aurapm/aura"; - description = "Access metadata from the Arch Linux User Repository"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, html-conduit, http-conduit - , http-types, network-uri, resourcet, stdenv, text, transformers - , unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.5"; - sha256 = "5f13043155a53b14da9b3625e512480110a5d906b0fd8eca2d2493c63c20ae81"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers html-conduit http-conduit http-types network-uri - resourcet text transformers unordered-containers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6.0.1"; - sha256 = "e0520fb4255ac8d6ff30f06a2b91a9fdc478aa799e254e52747ebd13d70f3ec3"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.6"; - sha256 = "f4e023dc8713c387ecf20d851247597fd012cabea3872310b35e911105eb66c4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "autoexporter"; - version = "1.1.15"; - sha256 = "9d224acd9b1c7fa217d71b8e6d556891effb66874a9a26aa8b200444998d3718"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "avers" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, clock - , containers, cryptonite, filepath, inflections, memory - , MonadRandom, mtl, network, network-uri, resource-pool - , rethinkdb-client-driver, safe, scrypt, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "avers"; - version = "0.0.17.1"; - sha256 = "1b45d8aa036b3c2ec7ea180327ff3cdce28dc1e1ef319c062be79f0ffa7626f5"; - revision = "34"; - editedCabalFile = "0mj6881npk0xdkf4nkcy52sn6y4414wdpysbw03kkb5vx6cgjws9"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers cryptonite - filepath inflections memory MonadRandom mtl network network-uri - resource-pool rethinkdb-client-driver safe scrypt stm - template-haskell text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Server-side implementation of the Avers storage model"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors - , binary, bytestring, containers, data-binary-ieee754, deepseq - , fail, hashable, mtl, scientific, semigroups, stdenv, tagged - , template-haskell, text, tf-random, unordered-containers, vector - , zlib - }: - mkDerivation { - pname = "avro"; - version = "0.4.6.0"; - sha256 = "7d03f0de439d9334f1851dc6dda92405fab647d1184e42142f002ae1ed45fc88"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bifunctors binary bytestring - containers data-binary-ieee754 deepseq fail hashable mtl scientific - semigroups tagged template-haskell text tf-random - unordered-containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/avro#readme"; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aws-cloudfront-signed-cookies" = callPackage - ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types - , base, base64-bytestring, bytestring, cookie, cryptonite, lens - , lens-aeson, optparse-applicative, pem, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "aws-cloudfront-signed-cookies"; - version = "0.2.0.1"; - sha256 = "4850abc15a5614144c94e0dd4cce220c3fdb80c4904b6fa2bfe268f98c0564fa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring - bytestring cookie cryptonite lens lens-aeson optparse-applicative - pem text time unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/aws-cloudfront-signed-cookies"; - description = "Generate signed cookies for AWS CloudFront"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.11.0"; - sha256 = "46782aa5d041579600d4a068897ce2f827063a9b355111d5522cf96547e47a6b"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.11.0"; - sha256 = "5018513666d77be26c191e7476ff8470ded823894fac60245c573ba127093765"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.1"; - sha256 = "442bd63aed102e753b2fed15df8ae19f35ee07af26590da63837c523b64a99db"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.3"; - sha256 = "e3cc66e99d6c83aac548c4d8e6a166e5bd9cf557947cde49161026d0341267fe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.4.2"; - sha256 = "4364d6c403616e9ec0c240c4cb450c66af43ea8483d73c315e96f4ba3cb97062"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "base64"; - version = "0.3.1.1"; - sha256 = "37c63935750e7cb7e7e015146e5a5b5187b4b4208c6f9c6b5b4f258a1d15013d"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/base64"; - description = "RFC 4648-compliant padded and unpadded base64 and base64url encodings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.3"; - sha256 = "ef159d60ec14c0a3f3e26bab5c9fd7634d5e1b983c6a64f0b0c3261efe008fc7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, http-api-data - , QuickCheck, serialise, stdenv, text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1.0.1"; - sha256 = "f607d07c4aab227b4536c495fa7c07b35ddc9c2c013d385c16c02f236526780e"; - revision = "3"; - editedCabalFile = "0gqyij803y0shpc5knljbffss6c1pbdanfzwlws01vkl4y10sfja"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable http-api-data QuickCheck serialise text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-lens" = callPackage - ({ mkDerivation, base, base64, bytestring, Cabal, cabal-doctest - , lens, stdenv, text - }: - mkDerivation { - pname = "base64-lens"; - version = "0.1.0.3"; - sha256 = "e7dc1c6e17beb748caacf1b8b67917e1a56ad0bc28174347e0911e62268680e1"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base base64 bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/base64-lens"; - description = "Optics for the Base64 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.11"; - sha256 = "67582b3475a5547925399f719df21f8bbbd0ca4d4db27795c22a474f8ee6346b"; - revision = "2"; - editedCabalFile = "1l95bzmn23cmx386hk3d3r0ykdaibh9rp489lcnba5g56kiy4hxg"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation#readme"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bazel-runfiles" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "bazel-runfiles"; - version = "0.7.0.1"; - sha256 = "4d217f74a7eee5dced014d74ac8a3be886d9d0c5ce8e556d8ef16535bde40a00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/rules_haskell#readme"; - description = "Locate Bazel runfiles location"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.12"; - sha256 = "a6376f4741588201ab6e5195efb1e9921bc0a899f77a5d9ac84a5db32f3ec9eb"; - revision = "1"; - editedCabalFile = "0sk6vkjwk7g1diwah67ifj7s69qvwi52ngaijkfx5prn0vz24ldn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.6"; - sha256 = "ccb2afe613b76786a6ac355515bc6bbf27459952c2692e33ea730f9901b3daca"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.4.0"; - sha256 = "d1a39686abbfed5864a8fb778d2244825b6eac977e130e7c1212e6d3a68f249d"; - revision = "1"; - editedCabalFile = "111wyqh17a6pkjhyaz8n1891m69hwr2gybqcpacw4xdmarxmi7f5"; - libraryHaskellDepends = [ base containers deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bin" = callPackage - ({ mkDerivation, base, dec, deepseq, fin, hashable, QuickCheck - , stdenv - }: - mkDerivation { - pname = "bin"; - version = "0.1"; - sha256 = "057fff623abc17bc32cb7c17d5d32d22c0e78f1b587be3d72b60a7b7bb071101"; - libraryHaskellDepends = [ - base dec deepseq fin hashable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Bin: binary natural numbers"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3.1"; - sha256 = "0480c3ff498bdbba6913ee8ad70d4828cf7a766bf9336a3ed8eb73676c46d29f"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ext" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, data-binary-ieee754, errors, exceptions - , monad-control, monad-loops, mono-traversable, mtl, scientific - , stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "binary-ext"; - version = "2.0.4"; - sha256 = "6e58e19bde26d6f271916ceb43a28903136e28cf7868d86f65e68a60152ade08"; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - data-binary-ieee754 errors exceptions monad-control monad-loops - mono-traversable mtl scientific text transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/binary-ext#readme"; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = stdenv.lib.licenses.asl20; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, base, binary, stdenv, transformers }: - mkDerivation { - pname = "binary-orphans"; - version = "1.0.1"; - sha256 = "431ad40b8d812bada186c68935c0a69aa2904ca3bc57d957e1b0fb7d73b1753d"; - revision = "3"; - editedCabalFile = "1s3bk63x2rxwk611jbvpvvgrq1k7k0gd9q105cqxcbcih396ac0s"; - libraryHaskellDepends = [ base binary transformers ]; - doHaddock = false; - doCheck = false; - description = "Compatibility package for binary; provides instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.4.0"; - sha256 = "d193d3d3dca259e7299fb2c44cdd95b0a3e1bf54363ce4a9f6cda63b654bb9ca"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, cryptohash-sha1, generics-sop, hashable - , scientific, stdenv, tagged, text, time, unordered-containers - , vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.2"; - sha256 = "123021887847d88d9d8efe09ec77a2d0b604c7162c81625f9d3bc136c115ebdd"; - revision = "1"; - editedCabalFile = "0chv885zl8m7c6281sz8kfr2p7hgcl7xj0yjajjyr9whwfnylfj0"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - cryptohash-sha1 generics-sop hashable scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.3.1.0"; - sha256 = "6a106b3f8e38ca09f8b7a6f5a07a4aa799f6ac54ba471a95a7cf261c0c35d792"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bins" = callPackage - ({ mkDerivation, base, containers, finite-typelits - , ghc-typelits-knownnat, ghc-typelits-natnormalise, math-functions - , profunctors, reflection, stdenv, tagged, vector-sized - }: - mkDerivation { - pname = "bins"; - version = "0.1.2.0"; - sha256 = "8a83fe1b836f7455b060becafa19c625a3f35bc2576295d163a81dbe91bbff0e"; - libraryHaskellDepends = [ - base containers finite-typelits ghc-typelits-knownnat - ghc-typelits-natnormalise math-functions profunctors reflection - tagged vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/bins#readme"; - description = "Aggregate continuous values into discrete bins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.2"; - sha256 = "5b4d38ccdb18baa9859f36baad9600ce7648da54da6e3e258f3808a2aaccafe0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.5"; - sha256 = "c5d15734689142425c65911ebeecd41f3d86d02778fa6c79b629d6fe909549b8"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - description = "Useful bitwise operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.1"; - sha256 = "ffc0f8508049717192021dabcfe77d65f604cbe107da6b8b76d45b891dbe52de"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitvec" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, gmp, integer-gmp - , primitive, stdenv, vector - }: - mkDerivation { - pname = "bitvec"; - version = "1.0.2.0"; - sha256 = "052de3ca41f1a24e6beaf0d5dd5cd0569fd4db2ee703ad7e8834bba8be883932"; - libraryHaskellDepends = [ - base deepseq ghc-prim integer-gmp primitive vector - ]; - librarySystemDepends = [ gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bitvec"; - description = "Space-efficient bit vectors"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gmp;}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.3.0"; - sha256 = "3b5ab376b87f481f2245f62734071a0e4a80b8ba9cd0cc67a407dd36f23c2379"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blanks" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive, mtl - , stdenv - }: - mkDerivation { - pname = "blanks"; - version = "0.3.0"; - sha256 = "b8cbc87e0fb65593444f4490bab098222b77dc7f8abd0e2bcb606090abf354cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - adjunctions base containers distributive mtl - ]; - executableHaskellDepends = [ - adjunctions base containers distributive mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/blanks#readme"; - description = "Fill-in-the-blanks - A library factoring out substitution from ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-carray" = callPackage - ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi - , stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "blas-carray"; - version = "0.1.0.1"; - sha256 = "f4bd1f0d73707ea92992ad18fdea6998ebca2681d76cfde577df67f61f8717ab"; - libraryHaskellDepends = [ - base blas-ffi carray netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-carray/"; - description = "Auto-generated interface to Fortran BLAS via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-comfort-array" = callPackage - ({ mkDerivation, base, blas-ffi, comfort-array - , netlib-comfort-array, netlib-ffi, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "blas-comfort-array"; - version = "0.0.0.2"; - sha256 = "a1cd40064f00c8d5c0dccb0fccaf8a61bb946f7cbbaf8e1ae008ac7b0b483cd9"; - libraryHaskellDepends = [ - base blas-ffi comfort-array netlib-comfort-array netlib-ffi - storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-comfort-array/"; - description = "Auto-generated interface to Fortran BLAS via comfort-array"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.1"; - sha256 = "85a77bd66dc55e48a0922ca1c10c484f4a01bddb31008e24bd5a7b75460fbcfe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.1.2"; - sha256 = "60503f42546c6c1b954014d188ea137e43d74dcffd2bf6157c113fd91a0c394c"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.3"; - sha256 = "72f8b0ed5310e3c2e49abcc9273728555655ec5f13f3f0e1f7cd1da9ad3a35bd"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolean-normal-forms" = callPackage - ({ mkDerivation, base, cond, containers, deepseq, stdenv }: - mkDerivation { - pname = "boolean-normal-forms"; - version = "0.0.1.1"; - sha256 = "59a9474c0b4a0e7b0812c401f80c4e1032d1c8627c92f29dd7e51d660ea1547f"; - libraryHaskellDepends = [ base cond containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "Boolean normal form: NNF, DNF & CNF"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boots" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv }: - mkDerivation { - pname = "boots"; - version = "0.2.0.1"; - sha256 = "1c5d8bdaba7800e0c85c7d75fc7fe65f51129008aff4fae0c88adb721339b011"; - libraryHaskellDepends = [ base exceptions mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/boots#readme"; - description = "IoC Monad in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, bin, constraints - , dec, fin, generics-sop, ral, singleton-bool, stdenv, streams - , tagged, transformers, transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1.3"; - sha256 = "cd40684cdd4573d948b91705046764ceaf1a3207707a99f0ea2680c2fea492ba"; - libraryHaskellDepends = [ - adjunctions base base-compat bin constraints dec fin generics-sop - ral singleton-bool streams tagged transformers transformers-compat - vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bounded-queue" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "bounded-queue"; - version = "1.0.0"; - sha256 = "ad7056ad562c19841bf5e8d911de3ce90df6d49ff83bf45d341bf0e97e9b54a2"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/bounded-queue"; - description = "A strict, immutable, thread-safe, single-ended, bounded queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brick" = callPackage - ({ mkDerivation, base, bytestring, config-ini, containers - , contravariant, data-clist, deepseq, directory, dlist, filepath - , microlens, microlens-mtl, microlens-th, stdenv, stm - , template-haskell, text, text-zipper, transformers, unix, vector - , vty, word-wrap - }: - mkDerivation { - pname = "brick"; - version = "0.50.1"; - sha256 = "fe9c6e3fcd71fa4a97bf12411256970dc10a3174623c95386e0e77a2d74d6673"; - configureFlags = [ "-fdemos" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring config-ini containers contravariant data-clist - deepseq directory dlist filepath microlens microlens-mtl - microlens-th stm template-haskell text text-zipper transformers - unix vector vty word-wrap - ]; - executableHaskellDepends = [ - base microlens microlens-th text text-zipper vector vty word-wrap - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/brick/"; - description = "A declarative terminal user interface library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.4"; - sha256 = "148309e23eb8b261c1de374712372d62d8c8dc8ee504c392809c7ec33c0a0e7c"; - revision = "2"; - editedCabalFile = "0bz62lxdbnwkfr1d4ngm8xi4y1ndpdflbv71s6h43vp5lbd546hr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.2.0.0"; - sha256 = "22ffcc2c0168992f4fcf06bd2b3467392b889801b2d3ab45212cc4a1c8f2a6c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.7"; - sha256 = "b389fac5ce61818adb8451550762aca135c34b9007b68be5a8d9a0fa45583f58"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bugsnag-hs" = callPackage - ({ mkDerivation, aeson, auto-update, base, bytestring, http-client - , stdenv, stm, text, time, unordered-containers - }: - mkDerivation { - pname = "bugsnag-hs"; - version = "0.1.0.0"; - sha256 = "6648d103754d6c8102d665e66c6571c54e3c7131b6d4e3f5802ca73141c247dc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson auto-update base bytestring http-client stm text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwoudenberg/bugsnag-hs#readme"; - description = "A Bugsnag client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.2.3"; - sha256 = "05177cb934f3cb6acfa5b0567321efa3987cbdee09a5dfbca8a9cc84bd62f152"; - revision = "1"; - editedCabalFile = "06vy9018ia6sncgxdmv4ili2krkqn1b6r7xz4raa18kdvgnl100v"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp, keys - , mono-traversable, mono-traversable-keys, primitive, QuickCheck - , stdenv, text-show - }: - mkDerivation { - pname = "bv-little"; - version = "1.1.1"; - sha256 = "d936b6eabc60706a2a0668ce88b7f0787feddbd82315b669a19eb1f9288e990c"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp keys mono-traversable - mono-traversable-keys primitive QuickCheck text-show - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byte-order" = callPackage - ({ mkDerivation, base, primitive, primitive-unaligned, stdenv }: - mkDerivation { - pname = "byte-order"; - version = "0.1.2.0"; - sha256 = "bc103be34d25e70071a6bc1a65a7b42b9f078d2601e6ee590f66cf8a2b26d8da"; - libraryHaskellDepends = [ base primitive primitive-unaligned ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/byte-order"; - description = "Portable big-endian and little-endian conversions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, binary-orphans, bytestring, Cabal - , cabal-doctest, cereal, containers, hashable, mtl, scientific - , stdenv, text, time, transformers, transformers-compat - , unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.16"; - sha256 = "291a462c577cd69ce5bd1557d61d1f6bd7df58fcdd051e768a783282e39e16d5"; - revision = "1"; - editedCabalFile = "080sdihajl7fbcyp2j4mbq3zlh8jl6dsn51gk89h1r5nl3zzh3gz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary binary-orphans bytestring cereal containers hashable - mtl scientific text time transformers transformers-compat - unordered-containers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteslice" = callPackage - ({ mkDerivation, base, primitive, primitive-addr, run-st, stdenv }: - mkDerivation { - pname = "byteslice"; - version = "0.1.4.0"; - sha256 = "195b01b209342e9941a6e813dae78ead3efb7015358f3b14ec61b0b7aaabea4e"; - libraryHaskellDepends = [ base primitive primitive-addr run-st ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/byteslice"; - description = "Slicing managed and unmanaged memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytesmith" = callPackage - ({ mkDerivation, base, byteslice, bytestring, contiguous, primitive - , run-st, stdenv, text-short, wide-word - }: - mkDerivation { - pname = "bytesmith"; - version = "0.3.2.0"; - sha256 = "ceec0723c5270c3c2f3d833672627a55c491704b6147593d9cb920f7f8887571"; - revision = "1"; - editedCabalFile = "10r36zdpl96cv2jmkddfq92h78bx6785gjb29769c1dw0nnlvj94"; - libraryHaskellDepends = [ - base byteslice bytestring contiguous primitive run-st text-short - wide-word - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/bytesmith"; - description = "Nonresumable byte parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.2.0"; - sha256 = "27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5.3"; - sha256 = "adcc72c11187604db87d1f7f9f679f8d40102a1ab904dcbbb1524cd445849e5c"; - revision = "1"; - editedCabalFile = "0i3gnzb2dlhxyjx5zbbgycf9l285amwj98s6drvq2hih21z4d3h6"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-to-vector" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "bytestring-to-vector"; - version = "0.3.0.1"; - sha256 = "ccfb5bdccd88a5be488acb291a5863d9026e109d2178e58d87948b43b519284a"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/bytestring-to-vector"; - description = "Convert between ByteString and Vector.Storable without copying"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.3"; - sha256 = "26cca5f48754d3d9435370fc2ee946c975c760a73345907d24fcc65b3f97e86c"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.2"; - sha256 = "eb2c732b3d4ab5f7b367c51eef845e597ade19da52c03ee11954d35b6cfc4128"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.6"; - sha256 = "91dd121ac565009f2fc215c50f3365ed66705071a698a545e869041b5d7ff4da"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "ca-province-codes" = callPackage - ({ mkDerivation, aeson, base, stdenv, text }: - mkDerivation { - pname = "ca-province-codes"; - version = "1.0.0.0"; - sha256 = "03e3427723546165237d5e27d1e24803ca6b7a5fd88a4e2a752bed812cae15d2"; - libraryHaskellDepends = [ aeson base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/ca-province-codes#readme"; - description = "ISO 3166-2:CA Province Codes and Names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.8"; - sha256 = "2026a6a87d410202ce091412ca6bc33c5aca787025326b4a3d13425a23392e0e"; - revision = "1"; - editedCabalFile = "0z0r7h2y5six2zgfylcwr9g4j78qph35zqglk9lz4za1klvgdprl"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-flatpak" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cabal-plan - , containers, cryptohash-sha256, http-client, http-client-tls - , http-types, optparse-applicative, pathtype, shell-utility, stdenv - , tar, text, utility-ht, zlib - }: - mkDerivation { - pname = "cabal-flatpak"; - version = "0.1"; - sha256 = "1208df7d66e6c992d0a4698350adf21f67b75c5abb1abbf78ffe58e0b0d38238"; - revision = "1"; - editedCabalFile = "05q1bpjvkq7g6q5fx1p44h562i9m6vqffy43arc26zpfgssm59z2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring cabal-plan containers - cryptohash-sha256 http-client http-client-tls http-types - optparse-applicative pathtype shell-utility tar text utility-ht - zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/cabal-flatpak/"; - description = "Generate a FlatPak manifest from a Cabal package description"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat - , base16-bytestring, bytestring, containers, directory, filepath - , mtl, optics-core, optparse-applicative, parsec, process - , semialign, singleton-bool, stdenv, text, these, topograph - , transformers, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.6.2.0"; - sha256 = "efbbf4e00c60bc1d59343a4785527f400bf4cd4ea830f1b25a09c64ea4f78b3f"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring containers directory - filepath text - ]; - executableHaskellDepends = [ - ansi-terminal async base base-compat bytestring containers - directory mtl optics-core optparse-applicative parsec process - semialign singleton-bool text these topograph transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, optparse-applicative - , process, simple-cabal, simple-cmd, simple-cmd-args, stdenv, time - , unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "2.0.0"; - sha256 = "0f597abaa7ac92c0e3e4e5767dc311b3d1156d64df2d8b96a1ae8ab70a4526bf"; - configureFlags = [ "-f-old-locale" ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit optparse-applicative process - simple-cabal simple-cmd simple-cmd-args time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.4.1"; - sha256 = "6be20b699561948968999073ce34ddedacfe6170c9e1608b92a68d8e1e1be592"; - revision = "1"; - editedCabalFile = "0b4wqgz7pqw0nx9ql9l07w7aahxrnccm66pp5wf2wrmy05q2hiyr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.3.0"; - sha256 = "42e9d9f040fab2fd5fc1095a901d6348de73342b1d14254bdaf6ca3d4f11e534"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cacophony" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, exceptions, free - , lens, memory, monad-coroutine, mtl, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "cacophony"; - version = "0.10.1"; - sha256 = "52c5ac525767c89e103fcf50ebf8db2a9425904abea2e570b37c7fdf2a013bf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cryptonite exceptions free lens memory - monad-coroutine mtl safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/cacophony#readme"; - description = "A library implementing the Noise protocol"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0.0.1"; - sha256 = "8cd39ccf4fbe538f8e5d434d0efd0c559074420b9283d2c7c4b7ab6262b4d529"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.2.0"; - sha256 = "95c693c93958758d714dee22edc56d4ebb2dcefa4412264e941e32ccd6e4e0c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "can-i-haz" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "can-i-haz"; - version = "0.3.1.0"; - sha256 = "e857532b2d9a634cef07442b483c833696301d64f14cc49ed7a16dae6ea19c5f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/can-i-haz#readme"; - description = "Generic implementation of the Has and CoHas patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.1.0"; - sha256 = "296dc17e0c5f3dfb3d82ced83e4c9c44c338ecde749b278b6eae512f1d04e406"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.1"; - sha256 = "106271c00246b551f2ef6a2e511437c9f0e1f3bb920a283f6f9eaa0940b4f8ca"; - revision = "1"; - editedCabalFile = "1n7w4w2icfppyvlmyzzmfivbx175ckqabs4my5qvvdvwlc89xrqb"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.2.0"; - sha256 = "b30d2ad5894519e364130c0510f167a4ffaf0e08a1e24c9a64238c855bfe0106"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-conduit" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, containers, mtl, stdenv, text - }: - mkDerivation { - pname = "cassava-conduit"; - version = "0.5.1"; - sha256 = "b55b72e9d52a40473f609c0c406db41bd92178a493f191295a7d8f23d89677f8"; - libraryHaskellDepends = [ - array base bifunctors bytestring cassava conduit containers mtl - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domdere/cassava-conduit"; - description = "Conduit interface for cassava package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-megaparsec" = callPackage - ({ mkDerivation, base, bytestring, cassava, megaparsec, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava-megaparsec"; - version = "2.0.1"; - sha256 = "e38e7849da5bcf2b20aff6b85c447c0cdfc2007f1bf3fb2a8bc67f8b129f9a60"; - libraryHaskellDepends = [ - base bytestring cassava megaparsec unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/cassava-megaparsec"; - description = "Megaparsec parser of CSV files that plays nicely with Cassava"; - license = stdenv.lib.licenses.mit; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, dual, stdenv, transformers }: - mkDerivation { - pname = "category"; - version = "0.2.5.0"; - sha256 = "870b624395000ccfadb2ec5b739e6dc7d54c03ab2beaaac8ee2bfcb0063eca47"; - libraryHaskellDepends = [ alg base dual transformers ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cayley-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , exceptions, http-client, http-conduit, lens, lens-aeson, mtl - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cayley-client"; - version = "0.4.11"; - sha256 = "ee3505a719318fe07dcffc6d2c168d658f0f1019eb248210609971d5c4ca9a29"; - libraryHaskellDepends = [ - aeson attoparsec base binary bytestring exceptions http-client - http-conduit lens lens-aeson mtl text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/cayley-client"; - description = "A Haskell client for the Cayley graph database"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , ghc-prim, half, integer-gmp, primitive, stdenv, text - }: - mkDerivation { - pname = "cborg"; - version = "0.2.2.1"; - sha256 = "ba920d368892fe14e048cd6ac4270ce4ea1aea0fb6a4998c5c97fe106e6c6183"; - libraryHaskellDepends = [ - array base bytestring containers deepseq ghc-prim half integer-gmp - primitive text - ]; - doHaddock = false; - doCheck = false; - description = "Concise Binary Object Representation (CBOR)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, cborg, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "cborg-json"; - version = "0.2.2.0"; - sha256 = "ab68a2457cb71a76699d7a8df07a880ea70c51d2c1a891b12669ca9ccfa7517b"; - libraryHaskellDepends = [ - aeson aeson-pretty base cborg scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A library for encoding JSON as CBOR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.8.1"; - sha256 = "2d9e88ac934b9ebc058097c72011ff59f3f146176310e1c957a0e4cf63681bd7"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cfenv" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "cfenv"; - version = "0.1.0.0"; - sha256 = "8ce96643559ebe4504c0641f9817d8795b22631f614084af50c88e51277e747e"; - libraryHaskellDepends = [ aeson base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomphp/haskell-cfenv#readme"; - description = "A library getting the environment when running on Cloud Foundry"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.4.1"; - sha256 = "926fcb205f6d43ed3a2b85b8e88a6c99a2deb097bc7988116c493a04a52547cf"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.5.2"; - sha256 = "7886d049692925687f5373ab9abb9803fb0bcef53f65b7fa3483ed98a9f10ed7"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chimera" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "chimera"; - version = "0.3.0.0"; - sha256 = "8d8ae51ca4e7237141dcbf0103100f1fa45a28f37bdeb98d350078587782ae7d"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/chimera#readme"; - description = "Lazy infinite streams with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.4"; - sha256 = "6f550e999cb3b3bf1d4d041363c0bead0eec02f078dc51301873cc450143a244"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "DEPRECATED in favor of webex-teams-api"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.5.0"; - sha256 = "d3bae4b17fdf73d7255f550ad172b1f709a8743371aa3a40c13c2cdc9fa7a4da"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.5.0"; - sha256 = "da27783595cd6b94ea5cb93f3e81084a664e65ed4766757a5e7f81fb3df8fd00"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.5.0"; - sha256 = "9ffbc4447ec2df8131ca32c259da19f379109d6e44569a7ee16714ab67029f83"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.3"; - sha256 = "5db3c4c4a40f377b808a1569c5f8aeeea3ecdd2191f4fbbcd0f22b23fdd254a4"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "climb" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions - , linenoise, mtl, stdenv, text, unliftio-core - }: - mkDerivation { - pname = "climb"; - version = "0.3.1"; - sha256 = "f94831277b91c1e32bab249bd894f570c49e203358b5bd1219eaa5f901042e35"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers exceptions linenoise mtl text - unliftio-core - ]; - executableHaskellDepends = [ - base bytestring containers exceptions linenoise mtl text - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/climb#readme"; - description = "Building blocks for a GHCi-like REPL with colon-commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "fe2abf0386c96df6e51cbae4f45e074b54452fc01f9308b098198ade4ffc5ea4"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.2"; - sha256 = "eca2c21c6d3d9d3e6f26f7ca36db99680120c8f959fdbfef8c970aac131936c0"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark"; - version = "0.6"; - sha256 = "0dec55cd4e02ac6ff557044a9aa2523479afc88370d3838430b3e386bef981dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/cmark-hs"; - description = "Fast, accurate CommonMark (Markdown) parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.2.1"; - sha256 = "4330e20dcdf4ca2586585298093d2c514d4b59c208bb38283219a8f3726470e1"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmark-lucid" = callPackage - ({ mkDerivation, base, cmark, lucid, stdenv }: - mkDerivation { - pname = "cmark-lucid"; - version = "0.1.0.0"; - sha256 = "d2927b9fed0e32fe7afc539e7b427e0a95f8c9297bb6bc531101b476ba8a3c03"; - revision = "1"; - editedCabalFile = "1mizbv18bl8qrgz27wlz7sb6cfhblmp7p7gh7dqq8g0r4djrvqg5"; - libraryHaskellDepends = [ base cmark lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cmark-lucid"; - description = "Use cmark with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.2"; - sha256 = "bfe32a8c4be9cf0d5a088267bf3fdf4adda8ba3f109e85675c93e70d575e1844"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.2.0"; - sha256 = "61eb624e5f347ec9249f976bc8b62ae597777604d82ab0e62acb9901374ae365"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "coercible-utils" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "coercible-utils"; - version = "0.1.0"; - sha256 = "9a7a7282046eaabc9f8c3d29cc7cfe026c212009e8e4de77f87c5b9332e44d59"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/coercible-utils"; - description = "Utility functions for Coercible types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.2"; - sha256 = "0b42ff47e011f011f73e444d7121b7bc54324077cb2a1011ee01766483706578"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.5"; - sha256 = "3b8d471979617dce7c193523743c9782df63433d8e87e3ef6d97922e0da104e7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1.0.1"; - sha256 = "c4d67854fecd353f5e7e6be009ffbd16cd6e9f6f41af16f072ae89778596db70"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-array" = callPackage - ({ mkDerivation, base, containers, deepseq, guarded-allocation - , non-empty, prelude-compat, primitive, QuickCheck, semigroups - , stdenv, storable-record, tagged, transformers, utility-ht - }: - mkDerivation { - pname = "comfort-array"; - version = "0.4"; - sha256 = "35dcc0e36f684ed52a4aca08281db4fa28840106ed161b71e4e56daaf7d6734b"; - libraryHaskellDepends = [ - base containers deepseq guarded-allocation non-empty prelude-compat - primitive QuickCheck semigroups storable-record tagged transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-array/"; - description = "Arrays where the index type is a function of the shape type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3.1"; - sha256 = "c926189971d0b416b4b078a1652de65a12a9fabd013d2373204bbe96fef8b562"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv, vector }: - mkDerivation { - pname = "commutative"; - version = "0.0.2"; - sha256 = "ccbc6a445bbc5c26a504a322664b2275e9834fdc17c80a2bdcef0dc517609969"; - libraryHaskellDepends = [ base random semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/commutative#readme"; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , distributive, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.6"; - sha256 = "77cfb016acd1747b892c31b82daf0de93f508ba775d62562d376b354adb88fae"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers distributive tagged transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.8"; - sha256 = "296300ce0a6e4f53058b4fcbc36c773473ea0ef1861c676236ba69dc82d27bcb"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.8.1.0"; - sha256 = "e5e6bda4675edc9a706be72e507ea8aad5352ecdfbfe7cd9bd03c04f0b8a855b"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.11"; - sha256 = "e30a5f8164f6e172349c4f882455d4e28d6b007443f308562a9304541e562ab4"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1.1"; - sha256 = "ae0028cfaf27da2c4d0e70783e8f45e82d33f402af1dfc6778c8ab81cf542f45"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.1.2"; - sha256 = "78e2cbe92cdadb89cb1dba486bb0834d23d5c09b0db43e3c307f1819f30e8289"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, conduit-zstd, containers - , deepseq, exceptions, lzma-conduit, monad-control, mtl, pqueue - , resourcet, stdenv, stm, stm-conduit, streaming-commons - , transformers, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.11.0"; - sha256 = "31edb5d0a4a1bc03c31b0cafe27255ce4f30bd402798454faf71cf09c6e73230"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra conduit-zstd containers deepseq exceptions - lzma-conduit monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-concurrent-map" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, resourcet, stdenv - , unliftio, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-concurrent-map"; - version = "0.1.1"; - sha256 = "527c429c39eaf5181e2aa8e5a6fcafd552149cc37b0b9d21003ff6507cd6c766"; - libraryHaskellDepends = [ - base conduit containers mtl resourcet unliftio unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/conduit-concurrent-map"; - description = "Concurrent, order-preserving mapping Conduit"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.4"; - sha256 = "b17381c259305eaa1752cbaedf2319757efc1b975633d73d5ab7c89d461b05b5"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-zstd" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv, zstd }: - mkDerivation { - pname = "conduit-zstd"; - version = "0.0.1.1"; - sha256 = "8681f59d08399f92478329b0cdd555ae5a1b7d12ef8acee423fcc10192e00712"; - libraryHaskellDepends = [ base bytestring conduit zstd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-zstd#readme"; - description = "Conduit-based ZStd Compression"; - license = stdenv.lib.licenses.mit; - }) {}; - "conferer" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, stdenv - , text - }: - mkDerivation { - pname = "conferer"; - version = "0.1.0.4"; - sha256 = "5e3f1dc2ba7dc5a926e8f4fcec5b722fd015662e49dba399693a0f254a35ec7f"; - libraryHaskellDepends = [ - base bytestring containers directory text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "Configuration management library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conferer-hspec" = callPackage - ({ mkDerivation, base, conferer, hspec-core, stdenv, text }: - mkDerivation { - pname = "conferer-hspec"; - version = "0.1.0.2"; - sha256 = "fd08f5754b681f8b22c40f1f167017d8947ffc7ade73cfe0781d3616aec57bc1"; - libraryHaskellDepends = [ base conferer hspec-core text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "conferer's FromConfig instances for hspec Config"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conferer-provider-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, conferer, directory - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "conferer-provider-json"; - version = "0.1.0.5"; - sha256 = "6e7d05016668a4dcc5e130e2b550cadf900a637ae9bff0faf32e0184c8ad58bb"; - libraryHaskellDepends = [ - aeson base bytestring conferer directory text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "conferer's provider for reading json files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conferer-warp" = callPackage - ({ mkDerivation, base, conferer, http-types, stdenv, text, wai - , warp - }: - mkDerivation { - pname = "conferer-warp"; - version = "0.1.0.2"; - sha256 = "5831a33093a7f7877cc9e7085b21ca00a03dd355c3fd6150b5c37308fd24289a"; - libraryHaskellDepends = [ base conferer http-types text wai warp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "conferer's FromConfig instances for warp settings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "config-ini" = callPackage - ({ mkDerivation, base, containers, megaparsec, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "config-ini"; - version = "0.2.4.0"; - sha256 = "6e5194e8acb7d189f0904852138990d03b64f86b9fde8f591ee1341d5627d535"; - revision = "1"; - editedCabalFile = "15ryq15851m9hzljamw5spr6hzr6picgf6s3xzkn7nviidcq78mz"; - libraryHaskellDepends = [ - base containers megaparsec text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aisamanra/config-ini"; - description = "A library for simple INI-based configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, basement, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "1"; - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv, unconstrained }: - mkDerivation { - pname = "constraint"; - version = "0.1.4.0"; - sha256 = "2467002144d7fa5e107c04bd5c64088334879d71e98d20365029fb777f63b631"; - libraryHaskellDepends = [ base category unconstrained ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraint-tuples" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constraint-tuples"; - version = "0.1.2"; - sha256 = "6262fe19dbacdaf3e0e2343d6db692f921560eca57a28706abc3857330f0c999"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/constraint-tuples"; - description = "Partially applicable constraint tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - , type-equality - }: - mkDerivation { - pname = "constraints"; - version = "0.11.2"; - sha256 = "584e556465a89f98eee1625cfda6abdbc298273e8036fad78864be72cf83b682"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat type-equality - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "contiguous" = callPackage - ({ mkDerivation, base, deepseq, primitive, primitive-unlifted - , stdenv - }: - mkDerivation { - pname = "contiguous"; - version = "0.5"; - sha256 = "5847ad45df426ac45d9abfb64eab614aae4d2f62d5a1598fd119b10fa0d6e35b"; - libraryHaskellDepends = [ - base deepseq primitive primitive-unlifted - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/contiguous"; - description = "Unified interface for primitive arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers }: - mkDerivation { - pname = "contravariant"; - version = "1.5.2"; - sha256 = "c4262c24e3dcc2ba8ca221ed52a6390818a715301e4f13135d8d732e0c7dc60c"; - libraryHaskellDepends = [ base StateVar transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, contravariant, stdenv, template-haskell - , template-haskell-compat-v0208 - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.5.1"; - sha256 = "e9037c990ec8c5d92f75d99e0dde0667dac59f1235dd6be3d990979aab792b65"; - libraryHaskellDepends = [ - base contravariant template-haskell template-haskell-compat-v0208 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.2"; - sha256 = "63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.2"; - sha256 = "f62c1e4607481041b66a4c7afd1e4cb1fef72669c142fe73301c84bdfd17a9ff"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.5"; - sha256 = "707f94d1b31018b91d6a1e9e19ef5413e20d02cab00ad93a5fd7d7b3b46a3583"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "core-data" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, core-text - , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "core-data"; - version = "0.2.1.4"; - sha256 = "8341944ef49320410acf0c11b2ff2df62b4d361d817bd6efc7fcf6bf7ae139ab"; - libraryHaskellDepends = [ - aeson base bytestring containers core-text hashable prettyprinter - prettyprinter-ansi-terminal scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "Convenience wrappers around common data structures and encodings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "core-program" = callPackage - ({ mkDerivation, async, base, bytestring, chronologique, core-data - , core-text, directory, exceptions, filepath, fsnotify, hashable - , hourglass, mtl, prettyprinter, prettyprinter-ansi-terminal - , safe-exceptions, stdenv, stm, template-haskell, terminal-size - , text, text-short, transformers, unix - }: - mkDerivation { - pname = "core-program"; - version = "0.2.3.0"; - sha256 = "c2ec4209889dabd2f2f3aa9843f16bcb0a4e97df0284b19ced387c6dadf7cc07"; - libraryHaskellDepends = [ - async base bytestring chronologique core-data core-text directory - exceptions filepath fsnotify hashable hourglass mtl prettyprinter - prettyprinter-ansi-terminal safe-exceptions stm template-haskell - terminal-size text text-short transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "Opinionated Haskell Interoperability"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "core-text" = callPackage - ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable - , prettyprinter, prettyprinter-ansi-terminal, stdenv - , template-haskell, text, text-short - }: - mkDerivation { - pname = "core-text"; - version = "0.2.2.6"; - sha256 = "0731ce95cd383f9d038d33aa112978952544511172323ae748173d51d9cbdc7b"; - libraryHaskellDepends = [ - base bytestring deepseq fingertree hashable prettyprinter - prettyprinter-ansi-terminal template-haskell text text-short - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "A rope type based on a finger tree over UTF-8 fragments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "crackNum" = callPackage - ({ mkDerivation, array, base, FloatingHex, stdenv }: - mkDerivation { - pname = "crackNum"; - version = "2.3"; - sha256 = "428f25cfa0f7c4c126ee96fb9122966c2b175a194d59c200470a6f689ec038f3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base FloatingHex ]; - executableHaskellDepends = [ array base FloatingHex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/LeventErkok/CrackNum"; - description = "Crack various integer, floating-point data formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crc32c" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "crc32c"; - version = "0.0.0"; - sha256 = "0908682d921cc79249704d8b34fba918f399ad25321376b3a96b471a624500f8"; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/crc32c#readme"; - description = "Haskell bindings for crc32c"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, binary-orphans, bytestring, cassava, code-page - , containers, criterion-measurement, deepseq, directory, exceptions - , filepath, Glob, js-flot, js-jquery, microstache, mtl, mwc-random - , optparse-applicative, parsec, statistics, stdenv, text, time - , transformers, transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.5.6.1"; - sha256 = "a5fb69c78ff33c2a7bc5dca1f56d19b2ce34bc68cc3d345de903039087185354"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary - binary-orphans bytestring cassava code-page containers - criterion-measurement deepseq directory exceptions filepath Glob - js-flot js-jquery microstache mtl mwc-random optparse-applicative - parsec statistics text time transformers transformers-compat vector - vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "criterion-measurement" = callPackage - ({ mkDerivation, aeson, base, base-compat, binary, containers - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "criterion-measurement"; - version = "0.1.2.0"; - sha256 = "74a433da656c298608c514b962b915ec83915983197ae06c4b5d3a6b5d0de70e"; - libraryHaskellDepends = [ - aeson base base-compat binary containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/criterion"; - description = "Criterion measurement functionality and associated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.2"; - sha256 = "b0789bab33cd49a9a992f6cddf3975324af53301d0b465cd932fc4229bdde491"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, ansi-terminal, base, containers - , optparse-applicative, split, stdenv, text - }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.1.1.6"; - sha256 = "5fec48245fd75d91ed1ac953fb21834eff3dc0b13b5bd100155ce4f4f8cd1d1f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers split text ]; - executableHaskellDepends = [ - ansi-terminal base containers optparse-applicative split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-numbers" = callPackage - ({ mkDerivation, base, bytestring, crypto-random, ghc-prim - , integer-gmp, stdenv, vector - }: - mkDerivation { - pname = "crypto-numbers"; - version = "0.2.7"; - sha256 = "420aeb17e9cdcfdf8c950c6c6f10c54503c5524d36f611aa7238e3fd65f189a6"; - revision = "1"; - editedCabalFile = "1jjkhid8kwrz5894nad537rqxzzyx6b687bmgyk70nv0ny336j9b"; - libraryHaskellDepends = [ - base bytestring crypto-random ghc-prim integer-gmp vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-numbers"; - description = "Cryptographic numbers: functions and algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-numbers - , crypto-pubkey-types, crypto-random, cryptohash, stdenv - }: - mkDerivation { - pname = "crypto-pubkey"; - version = "0.2.8"; - sha256 = "c0ccf2f5c38517de1f1626cb0a2542f35aefad8842f8ad5c1fac0b8c9de8b56e"; - libraryHaskellDepends = [ - base byteable bytestring crypto-numbers crypto-pubkey-types - crypto-random cryptohash - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-pubkey"; - description = "Public Key cryptography"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.26"; - sha256 = "c47390df555295fdb1fb8161c190e208f43b8d334b2da3e96f0c64b7fe07aedd"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv-conduit" = callPackage - ({ mkDerivation, array, attoparsec, base, blaze-builder, bytestring - , conduit, conduit-extra, containers, data-default, exceptions - , ghc-prim, mmorph, monad-control, mtl, primitive, resourcet - , semigroups, stdenv, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "csv-conduit"; - version = "0.7.1.0"; - sha256 = "3b6df9036c4d5b3f151f86767b64832c731e7f0daeb2bada980311ffa7709507"; - libraryHaskellDepends = [ - array attoparsec base blaze-builder bytestring conduit - conduit-extra containers data-default exceptions ghc-prim mmorph - monad-control mtl primitive resourcet semigroups text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/csv-conduit"; - description = "A flexible, fast, conduit-based CSV parser library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.6"; - sha256 = "5a73fcde2b92ce138d924c323f04f48427acbfdc2c774ff0f032a10ea60afa68"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cuckoo-filter" = callPackage - ({ mkDerivation, aeson, array, base, bytestring, cereal, containers - , criterion, hashable, random, stdenv, time - }: - mkDerivation { - pname = "cuckoo-filter"; - version = "0.2.0.2"; - sha256 = "ac495fb589ba939688e7c163ec07f7c591e183278c8ddb4148baf2174746cafb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base bytestring cereal containers hashable time - ]; - executableHaskellDepends = [ - aeson array base bytestring cereal containers criterion hashable - random time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/cuckoo-filter#readme"; - description = "Pure and impure Cuckoo Filter"; - license = stdenv.lib.licenses.mit; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions - , megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "2.0.1"; - sha256 = "71e42497329b9ebf74e94920ed2bd7a2ffe15e385906a37cbd5160d607a5575d"; - revision = "1"; - editedCabalFile = "0md9051a0jp4vkss15dyyf1w7ylpqmvzfdj9xb1rgj95s1x7cx2g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers exceptions megaparsec mtl QuickCheck - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.2.0.0"; - sha256 = "fb7292d4a5b9c4389690d1386fe24ce6a93eacbcfa952936ca6d4fd3afa98499"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "currency" = callPackage - ({ mkDerivation, base, containers, hashable, iso3166-country-codes - , stdenv - }: - mkDerivation { - pname = "currency"; - version = "0.2.0.0"; - sha256 = "bcd517f3d9f47f0dd3c4e802143159239e4a90db2fc552be4a99d759ffe9417a"; - libraryHaskellDepends = [ - base containers hashable iso3166-country-codes - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/currency-haskell"; - description = "Types representing standard and non-standard currencies"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cyclotomic" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv }: - mkDerivation { - pname = "cyclotomic"; - version = "1.0.1"; - sha256 = "505219393023460ae03dc743c11f652f66351defe30a3365011221aadeb55234"; - libraryHaskellDepends = [ arithmoi base containers ]; - doHaddock = false; - doCheck = false; - description = "A subfield of the complex numbers for exact calculation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.2"; - sha256 = "41bf60844327cb9740c8f31a340ca561cdf4aabf335f26a16a875cf9e812ee9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.3"; - sha256 = "1d583fd28b16093b408a741a1e05402280bb8f0e203c314dcf0f1391ffde3e38"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-clist" = callPackage - ({ mkDerivation, base, deepseq, QuickCheck, stdenv }: - mkDerivation { - pname = "data-clist"; - version = "0.1.2.3"; - sha256 = "356910406b1615819fefd87ff50f425bc41bd935750cfaa567718fb8ab858ed7"; - libraryHaskellDepends = [ base deepseq QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sw17ch/data-clist"; - description = "Simple functional ring type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.7.0.0"; - sha256 = "c3cd9658d59b4a1a1862d0c5bc91e04146f5bf111e8469a050ea6ae1265a8b31"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.3"; - sha256 = "0b7545ea720a7a8001a22792eff2d254d434744e04bba624c5ddf4a857478fd0"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-interval" = callPackage - ({ mkDerivation, base, containers, deepseq, extended-reals - , hashable, lattices, stdenv - }: - mkDerivation { - pname = "data-interval"; - version = "2.0.1"; - sha256 = "5331e2df31eba3f5eb1d097a38fc5428dae56af0c0a7d71bd00491bcf81ee76f"; - libraryHaskellDepends = [ - base containers deepseq extended-reals hashable lattices - ]; - doHaddock = false; - doCheck = false; - description = "Interval datatype, interval arithmetic and interval-based containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-inttrie" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-inttrie"; - version = "0.1.4"; - sha256 = "6b3a7d8d49b0676c09486ac08107b0e5a6dfd66d9627443be440e9fd11e7bd54"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luqui/data-inttrie"; - description = "A simple lazy, infinite trie from integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-memocombinators" = callPackage - ({ mkDerivation, array, base, data-inttrie, stdenv }: - mkDerivation { - pname = "data-memocombinators"; - version = "0.5.1"; - sha256 = "b4341d2024b84a43f92edc39f6d6766bf4f0f00a40fd834b9f6f8e987b606ed7"; - libraryHaskellDepends = [ array base data-inttrie ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/data-memocombinators"; - description = "Combinators for building memo tables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.2"; - sha256 = "7b14399e9d8df50ed7ee3b10ea2ea4b7fdd8922896da000b171eac742ffb0f77"; - libraryHaskellDepends = [ base data-accessor stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4.1"; - sha256 = "d33e4c43079ca47871220d1f04def858f5f18a475cd26a14f3b5631ff6fca6d5"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.3"; - sha256 = "4b9ee8ccd03f24203dd9307bf9aa67180ff0f07b45c3a01e33d8185ff275ec9a"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.2"; - sha256 = "c3ef24d803946a3caf0ff0e51f0c0b9f49055d7dc790518ad518d568d5195002"; - revision = "1"; - editedCabalFile = "1r6dnvc7d50q5p9fdqqwfvi7kwn7r89319plj7v284sjai9b6ld4"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, containers, dlist, http-client, http-client-tls - , http-types, lens, lifted-base, monad-control, network, old-locale - , stdenv, text, time, transformers-base, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.4.0"; - sha256 = "c462b472ac18872fff6ffdd9cbb88195fe48c0f6873ac3590ccfec9c17df6a18"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring containers dlist - http-client http-client-tls http-types lens lifted-base - monad-control network old-locale text time transformers-base - unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, containers - , deepseq, exceptions, filepath, lens, network, parsec, random - , split, stdenv, template-haskell, text, th-lift, transformers - , unix, vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.2.11"; - sha256 = "da2e75448edc1529ae1bbe26bb90a633967841f2a359b359f799aa48227d0a94"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.2.0"; - sha256 = "5dd8af7f38780b51ad0dd13d2710f950b3d385b39b7a5b02fd5eeccd4ae61afb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "debug-trace-var" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, unicode-show }: - mkDerivation { - pname = "debug-trace-var"; - version = "0.2.0"; - sha256 = "174f79d31d905c99adc880dd79899b3f335e1a7c552a7bcff8664abbffb6b489"; - libraryHaskellDepends = [ base template-haskell unicode-show ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/debug-trace-var#readme"; - description = "You do not have to write variable names twice in Debug.Trace"; - license = stdenv.lib.licenses.mit; - }) {}; - "dec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dec"; - version = "0.0.3"; - sha256 = "d9b8701244e77354ba7800f290c05f705994e2cc3a6c09b6c02d9c212add0bf9"; - revision = "1"; - editedCabalFile = "09dkybwqmayf2a1sn94vmmma2xfvf07bw7grhcyjm7lq9jpxv8y0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Decidable propositions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "deferred-folds" = callPackage - ({ mkDerivation, base, bytestring, containers, foldl, hashable - , primitive, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "deferred-folds"; - version = "0.9.10.1"; - sha256 = "1bea510e31d1d5a8ba2068db468922df3ac0f13966aa3ae70bb1f2130f639c96"; - libraryHaskellDepends = [ - base bytestring containers foldl hashable primitive transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/deferred-folds"; - description = "Abstractions over deferred folds"; - license = stdenv.lib.licenses.mit; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "2.1.0.1"; - sha256 = "0fda620212d6d010661aa6133a166cf63aa7bf174e4d0ca236a4f13e892b3523"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dense-linear-algebra" = callPackage - ({ mkDerivation, base, deepseq, math-functions, primitive, stdenv - , vector, vector-algorithms, vector-binary-instances - , vector-th-unbox - }: - mkDerivation { - pname = "dense-linear-algebra"; - version = "0.1.0.0"; - sha256 = "f7777a7931b40332ebbc716f64abb63697cbab0128e5c1228d47760c5597f2d4"; - libraryHaskellDepends = [ - base deepseq math-functions primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - description = "Simple and incomplete pure haskell implementation of linear algebra"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, hashable, mtl, stdenv, strict-list }: - mkDerivation { - pname = "deque"; - version = "0.4.3"; - sha256 = "b76a0e7d8a5f3b12ca8cf5a583f3e8e4333c7860f56b1e921a3fdfe959e557a5"; - libraryHaskellDepends = [ base hashable mtl strict-list ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queues"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriveJsonNoPrefix" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "deriveJsonNoPrefix"; - version = "0.1.0.1"; - sha256 = "1ae39ca61cdb6df1630a3b5e532a139767b0fc1b5fb5c1cd66603bc4020a93ff"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/deriveJsonNoPrefix"; - description = "Derive ToJSON/FromJSON instances in a more prefix-friendly manner"; - license = stdenv.lib.licenses.asl20; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.5.8"; - sha256 = "39ddf88affc68dbed3b6835c270d75bee44a667237c50fc62f2371c0afe7f6b7"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.7"; - sha256 = "c5f76fc694754c9ced4e9d4c1a79f65f0602996a3f9b76d9d32a0160dfd7045e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "detour-via-sci" = callPackage - ({ mkDerivation, aeson, base, cassava, newtype, scientific - , siggy-chardust, stdenv, template-haskell - }: - mkDerivation { - pname = "detour-via-sci"; - version = "1.0.0"; - sha256 = "451e1194f7bf6a7dea02379679c790313cc20423271fd8e98f164c942e3d81e4"; - revision = "1"; - editedCabalFile = "00dj8vf9gg9ww37sir6mblf3xhcpam8qgfz5bfana23arhf2cixj"; - libraryHaskellDepends = [ - aeson base cassava newtype scientific siggy-chardust - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/detour-via-sci#readme"; - description = "JSON and CSV encoding for rationals as decimal point numbers"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "dhall" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write - , base, bytestring, case-insensitive, cborg, cborg-json, containers - , contravariant, cryptonite, data-fix, deepseq, Diff, directory - , dotgen, either, exceptions, filepath, hashable, haskeline - , http-client, http-client-tls, http-types, lens-family-core - , megaparsec, memory, mtl, network-uri, optparse-applicative - , parsers, pretty-simple, prettyprinter - , prettyprinter-ansi-terminal, profunctors, repline, scientific - , serialise, stdenv, template-haskell, text, th-lift-instances - , transformers, transformers-compat, unordered-containers - , uri-encode, vector - }: - mkDerivation { - pname = "dhall"; - version = "1.29.0"; - sha256 = "c73e59717ff15707c77f3ff582f5adf68fc7abc68dbf70aa77ce65333637e7f6"; - revision = "2"; - editedCabalFile = "1qksvk63vmypqcd9hasacmqw7gsqcggs5lk85x7w2731mh3c3sa8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal atomic-write base bytestring - case-insensitive cborg cborg-json containers contravariant - cryptonite data-fix deepseq Diff directory dotgen either exceptions - filepath hashable haskeline http-client http-client-tls http-types - lens-family-core megaparsec memory mtl network-uri - optparse-applicative parsers pretty-simple prettyprinter - prettyprinter-ansi-terminal profunctors repline scientific - serialise template-haskell text th-lift-instances transformers - transformers-compat unordered-containers uri-encode vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall - , neat-interpolation, optparse-generic, shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.27"; - sha256 = "fd22d200d032bd79fc8eaff05098bc793a460dd29a9b0790360fb987dd28ae56"; - revision = "1"; - editedCabalFile = "1w4hbk6xx04q0f1sxgwmp3h5s3cwc3w22vbvdxz052nhdcj3sigw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall neat-interpolation shell-escape - text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal - , base, bytestring, containers, dhall, exceptions, filepath - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal - , scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "dhall-json"; - version = "1.6.1"; - sha256 = "3ce9b0a9d3a946beb021bb42589426ceb4c44cf5f104e5bdf120659ccb5109c9"; - revision = "1"; - editedCabalFile = "07h7vldqd623y7jf15j87mhs3nnbwl3a0121ajqc56qc0vvpgywp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty aeson-yaml base bytestring containers dhall - exceptions filepath optparse-applicative prettyprinter scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring dhall exceptions - optparse-applicative prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - description = "Convert between Dhall and JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, safe-exceptions, stdenv, stm - , time - }: - mkDerivation { - pname = "di-core"; - version = "1.0.4"; - sha256 = "55634d9afebfa94f5573471ec846f23fbc3716ae524ebee58f27a7f99b153273"; - libraryHaskellDepends = [ - base containers safe-exceptions stm time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.3.1"; - sha256 = "f5ddeae5a199f6e83abdc989a2df8408e761a798646eb7ca5944f7a3383416a4"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dimensional" = callPackage - ({ mkDerivation, base, deepseq, exact-pi, ieee754, numtype-dk - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "dimensional"; - version = "1.3"; - sha256 = "29a32551cfc4819daefa19a3f345923ac2265b2a8c528ce467777032423d9344"; - revision = "2"; - editedCabalFile = "10xkgwjb9kqa95jck3b9wa3sz6vcb2lkygfmcqqz6hz6j65l79r8"; - libraryHaskellDepends = [ - base deepseq exact-pi ieee754 numtype-dk semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/dimensional/"; - description = "Statically checked physical dimensions, using Type Families and Data Kinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , stdenv, syb, template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.2.0"; - sha256 = "16d0b35bea1aa1d43d4935d1569b3f3894febd66a5834129b8699437d6a85750"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - executableHaskellDepends = [ async base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.3.1"; - sha256 = "0fd50ace24a34d25c136c32d428335e2d2cd60e44e2a50e3b5318c047fc42384"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-opensuse" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, Diff, extra, foldl, hashable, hsemail, mtl, parsec-class - , pretty, stdenv, text, time, turtle - }: - mkDerivation { - pname = "distribution-opensuse"; - version = "1.1.1"; - sha256 = "067f08a458aed98e4a67e80ffc42edf99393a861a0d0ecb1950d913d15a332b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq Diff extra foldl - hashable hsemail mtl parsec-class pretty text time turtle - ]; - executableHaskellDepends = [ base containers text turtle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-opensuse/"; - description = "Types, functions, and tools to manipulate the openSUSE distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers - }: - mkDerivation { - pname = "distributive"; - version = "0.6.1"; - sha256 = "7749b1d9b815e3ba558d1daebac9346610e352bb0dfe9720cc686eb2fef7caf2"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base base-orphans tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dl-fedora" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath - , http-directory, http-types, optparse-applicative, regex-posix - , simple-cmd, simple-cmd-args, stdenv, text, time, unix - , xdg-userdirs - }: - mkDerivation { - pname = "dl-fedora"; - version = "0.7.2"; - sha256 = "f78c9ace19628b8c8a1e896701a8b55fee4a9cc568decdec35d8a97beb5a4228"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring directory filepath http-directory http-types - optparse-applicative regex-posix simple-cmd simple-cmd-args text - time unix xdg-userdirs - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/dl-fedora"; - description = "Fedora image download tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.7"; - sha256 = "a3c06a200f9756329b09d415e7733b7204dda76ce07783e6457d0ab9ffbcba2c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dns" = callPackage - ({ mkDerivation, array, async, attoparsec, auto-update, base - , base16-bytestring, base64-bytestring, bytestring, containers - , cryptonite, hourglass, iproute, mtl, network, psqueues, stdenv - }: - mkDerivation { - pname = "dns"; - version = "4.0.1"; - sha256 = "20cdb4519f19becd5ba321c5acfe03fd3c16b298a78404530b65f10ddb4a68cb"; - libraryHaskellDepends = [ - array async attoparsec auto-update base base16-bytestring - base64-bytestring bytestring containers cryptonite hourglass - iproute mtl network psqueues - ]; - doHaddock = false; - doCheck = false; - testTarget = "spec"; - description = "DNS library in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-notation" = callPackage - ({ mkDerivation, base, indexed, stdenv }: - mkDerivation { - pname = "do-notation"; - version = "0.1.0.2"; - sha256 = "c9f3783d4b8ede05bf64a9dc7c594306b40fb05a68ae7f4c21dafec52fbc7bf5"; - libraryHaskellDepends = [ base indexed ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/do-notation#readme"; - description = "Generalize do-notation to work on monads and indexed monads simultaneously"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.2.0"; - sha256 = "97a1992559bf510a7b17e5678fd29e3b5c4a9059a0483e4ab36ef8ec723fb5aa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/dockerfile#readme"; - description = "A Haskell DSL for generating Dockerfiles"; - license = stdenv.lib.licenses.mit; - }) {}; - "doclayout" = callPackage - ({ mkDerivation, base, mtl, safe, stdenv, text }: - mkDerivation { - pname = "doclayout"; - version = "0.2.0.1"; - sha256 = "5361bb86ef97e4fbf351ef50089566f651dfcd6cd34e8e588ee154e2c072df38"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base mtl safe text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doclayout"; - description = "A prettyprinting library for laying out text documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, containers, doclayout, filepath - , HsYAML, mtl, parsec, safe, scientific, stdenv, text - , text-conversions, unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.8"; - sha256 = "d61a1a30c7c10a78d5d61f3a8883d2fa95116674be1493ad819e01b86e83167e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base containers doclayout filepath HsYAML mtl parsec safe - scientific text text-conversions unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.16.2"; - sha256 = "4fa5419bebf65094149f02bac9c67ffb81480d883ff0efac167d95f89d646452"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-discover" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, stdenv - }: - mkDerivation { - pname = "doctest-discover"; - version = "0.2.0.0"; - sha256 = "a953aa50837e52efc766a77e382c2be2acbc887fa6dadbc54b756f59d6c49ec8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - executableHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/karun012/doctest-discover"; - description = "Easy way to run doctests via cabal"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.3.0.2"; - sha256 = "5840c26d699339188e75ee0807778d1f011ea075f37a2a1c975ea1daae4b78f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doldol" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doldol"; - version = "0.4.1.2"; - sha256 = "6553dcb9fded77f0f0655264a4b071e503690a467b46921679556cef5da43e65"; - revision = "1"; - editedCabalFile = "0xwbdrfzd6z3nwkgnav2drisw2sn464ggkz8fid58cym9hbfpl47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/QuietJoon/doldol/"; - description = "Flag packer & handler for flaggable data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, containers, directory - , exceptions, megaparsec, optparse-applicative, process, stdenv - , text, transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.8.0.4"; - sha256 = "444a40b7a27425d50ea11803fe42712437f86797a25fd6c29f7ff6fa4352b815"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat containers directory exceptions megaparsec process - text transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotgen" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dotgen"; - version = "0.4.2"; - sha256 = "cf0de20a435d74aeb9a32b8bcb3ebfa1b6659ac3f26edefe2df9e1aaf1481891"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/dotgen"; - description = "A simple interface for building .dot graph files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drinkery" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv, transformers }: - mkDerivation { - pname = "drinkery"; - version = "0.4"; - sha256 = "3860b076f71e05179c7adfc988baf90cf85d0206cfd6a0945e5b354827d8b5b0"; - libraryHaskellDepends = [ base exceptions mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/drinkery#readme"; - description = "Boozy streaming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.5"; - sha256 = "8532af3176819369ae0863170daa7c83de931fff7aff19d362e70ed701356ad2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dual"; - version = "0.1.1.1"; - sha256 = "4504b29c4c758457cb6accc00ad4ef4a3f940125ade67301a3549091b9dfc765"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dual category"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.5.2.1"; - sha256 = "6aa99b613de0b670728a226bc518c0f92746de580c8a4de173640f90abdc8ca1"; - libraryHaskellDepends = [ - base MonadRandom transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "duration" = callPackage - ({ mkDerivation, base, parsec, stdenv, template-haskell, time }: - mkDerivation { - pname = "duration"; - version = "0.1.0.0"; - sha256 = "a0b154c270be1d9c42a92fdf8198ab1030bf09a119157df33a2a43694fb212a3"; - libraryHaskellDepends = [ base parsec template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ryota-ka/duration#readme"; - description = "A tiny compile-time time utility library inspired by zeit/ms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dynamic-state" = callPackage - ({ mkDerivation, base, binary, bytestring, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.1"; - sha256 = "c4d50bdf03e7b2af05ee2b78fdd5dd5d16e72ef5edf78cada60bf4cdc6a23537"; - libraryHaskellDepends = [ - base binary bytestring hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Optionally serializable dynamic state keyed by type"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eap" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptonite, memory, mtl - , pretty-hex, stdenv - }: - mkDerivation { - pname = "eap"; - version = "0.9.0.2"; - sha256 = "0ccf6246c1e28d43aea25d1e2e0ca22edcc3bfb21fcf7924410dee7abb3efd2d"; - revision = "1"; - editedCabalFile = "1lsy7pl39s02f45l7g9alw49xwh7m8m4bm3ydcz11rh9xdgcb9jv"; - libraryHaskellDepends = [ - base binary bytestring cryptonite memory mtl pretty-hex - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/eap#readme"; - description = "Extensible Authentication Protocol (EAP)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ecstasy" = callPackage - ({ mkDerivation, base, containers, kan-extensions, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "ecstasy"; - version = "0.2.1.0"; - sha256 = "915942d3b8c3d61b98e5b2e825387d48cf3c2d17acdb2d377cb516c26c0fcbc3"; - libraryHaskellDepends = [ - base containers kan-extensions mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/isovector/ecstasy/"; - description = "A GHC.Generics based entity component system."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "egison" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath, ghc - , ghc-paths, hashable, haskeline, megaparsec, mtl - , optparse-applicative, parsec, parser-combinators, prettyprinter - , process, random, regex-tdfa, split, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "egison"; - version = "3.10.2"; - sha256 = "11df34960faa110c1b1617e523829647b7d20ba450bee4cd2bdeec88cb307312"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers directory ghc ghc-paths hashable haskeline - megaparsec mtl optparse-applicative parsec parser-combinators - prettyprinter process random regex-tdfa split text transformers - unordered-containers vector - ]; - executableHaskellDepends = [ - array base containers directory filepath ghc ghc-paths haskeline - mtl optparse-applicative parsec prettyprinter process split text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.egison.org"; - description = "Programming language with non-linear pattern-matching against non-free data"; - license = stdenv.lib.licenses.mit; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , stdenv - }: - mkDerivation { - pname = "either"; - version = "5.0.1.1"; - sha256 = "0243d51d6a02ecb541e4854a588a9b6219a4690ebcbdb79387dd14ad519cdf27"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-both" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-both"; - version = "0.1.1.1"; - sha256 = "6ea467bbcb62d2aded238d3b078fc6fdce44a2137b6be40b209562be3978a6b2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Either or both"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elf" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "elf"; - version = "0.30"; - sha256 = "97b0a2cfeff33dcc0640fbd878643e3f87bc88e2da02982f2698728735beee99"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/elf"; - description = "An Elf parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.6"; - sha256 = "2e026872e1362a6e56b67f963a7f321d72583325d15d1c951f531cf7bcb8b2d7"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-bridge" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "elm-bridge"; - version = "0.5.2"; - sha256 = "77b3c29628d26dbfd77bb2a950fae203c661bbb5087dc566d0b52e99296144d3"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/elm-bridge"; - description = "Derive Elm types and Json code from Haskell types, using aeson's options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emacs-module" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions - , monad-control, mtl, prettyprinter, resourcet - , safe-exceptions-checked, stdenv, template-haskell, text - , transformers-base, vector, void - }: - mkDerivation { - pname = "emacs-module"; - version = "0.1.1"; - sha256 = "1ee0fd9cde2e218d604c5d1670f24194575f975510936510fe9fc2f6e066d9d4"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions monad-control mtl prettyprinter - resourcet safe-exceptions-checked template-haskell text - transformers-base vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sergv/emacs-module"; - description = "Utilities to write Emacs dynamic modules"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.12"; - sha256 = "0e7b2ab28bd4d072d06c6d20a4ab55b2950b4facc0f0b3200ba10f15a563232b"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emojis" = callPackage - ({ mkDerivation, base, containers, stdenv, text }: - mkDerivation { - pname = "emojis"; - version = "0.1"; - sha256 = "5a03c36ff41989d3309c225bf8dfab81d7733d04c5e6b61e483eccfa929cdfb0"; - libraryHaskellDepends = [ base containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/emojis#readme"; - description = "Conversion between emoji characters and their names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.3"; - sha256 = "af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.5"; - sha256 = "5502aaf0415979dcfe64d3da407db46085f98a81d5b369fb040fc51b2244ee6b"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.6.0.2"; - sha256 = "3b344af1b375cd904ab4cbe687a1a336840c6de3e66b4c2a26f73a96d5cfe610"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.5"; - sha256 = "31629409abbdcc40131b59bdb10e6cbbafc69e815f45b2a06b9eb35a0fb53435"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "2.0.0.0"; - sha256 = "1f3c9e305490202deadd8a05b7da0e2690eb2c7806511e3c45f796be677a7950"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.2"; - sha256 = "406e65338046d6c1d6994072b529272fab4ad7abbdb2c3b63576788fd8dd9618"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, fail, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.7"; - sha256 = "cdd0dc5e07f26063c58ddf1458e723aec29118d0ac9bc9543ff6662f00d4ad4d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers fail lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, rio, stdenv, template-haskell, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "61b4d5f29a1fc66df082623e5fc9269bdbb49d28ebf4cbb740c71319257a27c8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base rio template-haskell text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.9"; - sha256 = "725785ac22c252b0753aefffd8eb591f8a4184cec08a5d50bca1d57c5345c9ab"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wrengr.org/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.5.0.1"; - sha256 = "5d8156ec8b044a36c2ac789b85bf65116be24304868fff472d033977ebcc1860"; - revision = "1"; - editedCabalFile = "1l55d7x61i2d5rlh7sh2nhn0af9cyp92gzdmqqnnjzg55d347qsm"; - libraryHaskellDepends = [ base numtype-dk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-hierarchy" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "exception-hierarchy"; - version = "0.1.0.3"; - sha256 = "e93651623290adde12f2e119c37e480746cc85aa7a84610fb73545cc5d70199d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "yet"; - description = "Exception type hierarchy with TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.8"; - sha256 = "39eb6848e73a5ef97e8eae26ee84f0412dcf8dedbacb2b232bfeec4941e33b1d"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.4"; - sha256 = "4d0bfb4355cffcd67d300811df9d5fe44ea3594ed63750795bfc1f797abd84cf"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exit-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exit-codes"; - version = "1.0.0"; - sha256 = "4aa2499a18b0453a9f921bb3262aefe24c8fa98ef9633ab284d8cf6f52a49e01"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JustusAdam/exit-codes"; - description = "Exit codes as defined by BSD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exomizer" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "exomizer"; - version = "1.0.0"; - sha256 = "94c24d436d12666d16cb7171c83cedec449b992dc3aeaaa6decdc0faf8e2cfd2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/exomizer#readme"; - description = "Compression and decompression in the exomizer format"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.2.0.0"; - sha256 = "57471bfd498570247c03863ec4532ff06c20198efe7a7fe4484478d7139ac967"; - revision = "1"; - editedCabalFile = "1fkllbgsygzm1lw3g3a9l8fg8ap74bx0x7ja8yx3lbrjjsaqh8pa"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.10"; - sha256 = "00d467d6f75751db37adfbc5ab238db3d92f16ca642f872f912aed8e7f00f8bc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "express" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "express"; - version = "0.1.2"; - sha256 = "de78c2301f6ba275cfe6d9af6705f54daf1570fb7a56ab94231036756780cd44"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/express#readme"; - description = "Dynamically-typed expressions involving applications and variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extended-reals" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "extended-reals"; - version = "0.2.3.0"; - sha256 = "7c8ac733ef09cb37c0a9816e7765ab6fe46551ee58445c00fc6c52a37eef169c"; - revision = "4"; - editedCabalFile = "1gzi55w9kpfg51njyi3a28n7nc64chzgnv76m3xyrz7z0gbri93q"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/msakai/extended-reals/"; - description = "Extension of real numbers with positive/negative infinities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-effects" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "extensible-effects"; - version = "5.0.0.1"; - sha256 = "c3b3165893d3738c5ec7ffd0d8c46a7af855b7d3087e159d6da516e78880c039"; - revision = "1"; - editedCabalFile = "1ihcxj58a3ca80zfyxgbzjzgps9izy96vnj7h4sk9wwb9khbxl1f"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/suhailshergill/extensible-effects"; - description = "An Alternative to Monad Transformers"; - license = stdenv.lib.licenses.mit; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, express, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.4.1"; - sha256 = "145d1eedc9e1b6c5675891b61dce0d7bf8ad3012dbc2020385084f8dfa7a1ce6"; - libraryHaskellDepends = [ - base express leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "failable" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "failable"; - version = "1.2.2.0"; - sha256 = "b3e95d6c1cfad0027eecf48f7cbccd14e555a0860fbf0e9b62b00e816fc49633"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - description = "A 'Failable' error monad class to unify failure across monads that can fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fakedata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , exceptions, filepath, hashable, random, stdenv, template-haskell - , text, time, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "fakedata"; - version = "0.5.0"; - sha256 = "67a636c2c0d50549a25071ef3baea9334b9d0ed1e0ba581efc19de21575f6d75"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory exceptions filepath hashable - random template-haskell text time unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fakedata#readme"; - description = "Library for producing fake data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix-compat, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "3.0.0"; - sha256 = "03f5e1bf4925b7c9d88122c77b6fa264d6b15a0a15593143715dacae1fa1ff49"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix-compat unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, cryptonite, data-default, http-client - , http-conduit, http-types, memory, monad-logger, resourcet, stdenv - , text, time, transformers, transformers-base, unliftio - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "2.0.0"; - sha256 = "9c596a412d958ea1214ceca2ff85e06358f1cca992c8aab609c695db5764a67c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra cryptonite - data-default http-client http-conduit http-types memory - monad-logger resourcet text time transformers transformers-base - unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-dists" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fedora-dists"; - version = "1.1.1"; - sha256 = "518a05c0e9149785aa3763ec1d2eb6d37d54a3f6ec20ed9d6e5cf2bc2444ce83"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/fedora-dists"; - description = "Library for Fedora distribution versions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fedora-haskell-tools" = callPackage - ({ mkDerivation, base, csv, directory, fedora-dists, filepath, HTTP - , optparse-applicative, process, simple-cmd, simple-cmd-args, split - , stdenv, time, unix - }: - mkDerivation { - pname = "fedora-haskell-tools"; - version = "0.9"; - sha256 = "b6468349b91cfbc6280b6e4b1b9c7df6ec63486fe77181466f8f2b6902a30fff"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base csv directory fedora-dists filepath HTTP optparse-applicative - process simple-cmd simple-cmd-args split time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fedora-haskell/fedora-haskell-tools"; - description = "Building and maintenance tools for Fedora Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.3.0.0"; - sha256 = "e266c7febd6d299c8b22618f18dec280a6874f23a3a2a0ac921ae8ac509fb8a7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.7.0.1"; - sha256 = "ffce7af67d4e7ee2f6a7c44fbb749c4253ce9bb35b8b1ffe1c93a173a01fe910"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11.1"; - sha256 = "a113e7fe528be8204f40d3e9e00d595234e49def6caa133136e8254b659189d6"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.4.1"; - sha256 = "c502a8b43cf08694c8d2657dc282306d811cdd91f284614a6a9945267c93cb9d"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.4"; - sha256 = "d97e29095b0d8b652bc02e52d79bb415e75285c651bcaacb108db883f72536a1"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.3.0"; - sha256 = "80364ec6b28b8e5c68df44d6e7f03389bd2c19eeca7a9d79d487db1ec0fa2aee"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, dec, deepseq, hashable, QuickCheck, stdenv - }: - mkDerivation { - pname = "fin"; - version = "0.1.1"; - sha256 = "31e3174c0220ed6ca07c02982105279d01309e71791534355c612e1a45478c7f"; - libraryHaskellDepends = [ base dec deepseq hashable QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.2"; - sha256 = "95a948341570bad5a9b2468c388c0eb2c20c57e10dd8fbfc994c7b8764b36a7f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.4.2"; - sha256 = "d207a46c911b69ecc1f7c50d9d65ea1aca6c6efacec6342bc3294ed1bc4bd747"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "first-class-families" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "first-class-families"; - version = "0.6.0.0"; - sha256 = "16a577b3755eb6f761f877a9baa78a7cfb103a7dbc453bda8668d3d1123a2e28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/first-class-families#readme"; - description = "First class type families"; - license = stdenv.lib.licenses.mit; - }) {}; - "first-class-patterns" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.5"; - sha256 = "7a4bcfe2c9907d7964d2a29816ea37aac64b0506fdebd34241d0dd735cb308ae"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/first-class-patterns"; - description = "First class patterns and pattern matching, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fitspec" = callPackage - ({ mkDerivation, base, cmdargs, leancheck, stdenv, template-haskell - }: - mkDerivation { - pname = "fitspec"; - version = "0.4.7"; - sha256 = "b8dc00aad234b30d1d383075062c0756bb7d412a5bf4b766f2aad0d7ac30716a"; - libraryHaskellDepends = [ - base cmdargs leancheck template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/fitspec#readme"; - description = "refining property sets for testing Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.3"; - sha256 = "9218ebd3af3f07335db8dcd148b3ce40acf984734c244cce5959f57402d48282"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, storable-record, tfp - , utility-ht - }: - mkDerivation { - pname = "fixed-length"; - version = "0.2.1"; - sha256 = "a151b68802538e8f98d05f582bd23fad94c869e1ad1f5506579524f5d2764b49"; - libraryHaskellDepends = [ - base non-empty storable-record tfp utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.2.0.0"; - sha256 = "dc67e4f139f07018be73a5f2e44ddfb3e8dab8b884a66a93c7676b2a9f3604a5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , exceptions, filepath, FLAC, mtl, stdenv, text, transformers - , vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.2.0"; - sha256 = "6c8ca5fbe7ac4c6d9475678fc3bcc3b132a75fea870a3591d646cc79add5f50f"; - revision = "1"; - editedCabalFile = "1phwdnya8bgw24a80vbw0m4pm7r67grnc6si8683jz620snnsm48"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory exceptions filepath mtl text - transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.2"; - sha256 = "15689d14d382588697ec0da88a0025c2b156061c060979deaec0d75ecc37030a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flags-applicative" = callPackage - ({ mkDerivation, base, casing, containers, mtl, network, stdenv - , text - }: - mkDerivation { - pname = "flags-applicative"; - version = "0.1.0.2"; - sha256 = "ee69b8dad942e4528e6d4cecda1b4885ae0c9b595009414fb1d6535f1b7c5ea4"; - libraryHaskellDepends = [ - base casing containers mtl network text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/flags-applicative"; - description = "Applicative flag parsing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flow" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "flow"; - version = "1.0.19"; - sha256 = "2942c34bdb0f70bf647ab367e87ea404d8a17a9eeaf5c4357ceff2639dd7ee02"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/flow#readme"; - description = "Write more understandable Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.3"; - sha256 = "8e5fd44df2a7d9f950168d4a47c3389a719431976a52450323bd2dff458536f1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "focus"; - version = "1.0.1.3"; - sha256 = "bdb56955fdd0fe0f97e2292d121bdc7d679c37f7a87aed9195ab4c73fc7720bc"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "focuslist" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers, lens - , mono-traversable, QuickCheck, stdenv - }: - mkDerivation { - pname = "focuslist"; - version = "0.1.0.2"; - sha256 = "78527aad6212617d4c8c3183c02750693d5bd30be1a26f1caff7db434b31481b"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers lens mono-traversable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/focuslist"; - description = "Lists with a focused element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.9"; - sha256 = "98931e65001dd5d7be5a767837e74e6fc7a5ec16cbdd09408fa7e97a17995b0c"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.4"; - sha256 = "d201526442e17f2338e39eab36e423ac27e9a92c47b2b26c26ae5a8964611656"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldable1" = callPackage - ({ mkDerivation, base, stdenv, transformers, util }: - mkDerivation { - pname = "foldable1"; - version = "0.1.0.0"; - sha256 = "85d684e5caab9e0c87dd04d016432f4a9effb5c8c62354aedcf85c96c1e3e90a"; - libraryHaskellDepends = [ base transformers util ]; - doHaddock = false; - doCheck = false; - description = "Foldable types with at least 1 element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.6"; - sha256 = "2a14aae99eb30344c983b8a07e0c2e5999d097042951e9349eb32d0f388a04aa"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroupoids semigroups text - transformers unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.5"; - sha256 = "39e0c7511d7c24585e9a376cffe8ea84eb7486689d8ac6234ca59ed0dfeb489d"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "follow-file" = callPackage - ({ mkDerivation, attoparsec, attoparsec-path, base, bytestring - , conduit, conduit-combinators, directory, exceptions, hinotify - , monad-control, mtl, path, stdenv, text, unix, utf8-string - }: - mkDerivation { - pname = "follow-file"; - version = "0.0.3"; - sha256 = "232de19ab42130273aac870e5b8d13e55996af670b28c12a192fcb664fe0bb5b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/follow-file#readme"; - 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 = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forkable-monad" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "571e33effa5baaef4e2dc910010e2b02c01d8b8e06f051e96906f288f71ad462"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/ForkableMonad#readme"; - description = "An implementation of forkIO for monad stacks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.3"; - sha256 = "0c6c4f31688802ca44e477022c9d05f426109e3fc8cc4a98e07339b7e2c7a25d"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.7"; - sha256 = "0cdb4fc2c33612db08cd07926ac4fbea6b9f3c31955ed7d212ae04586f585c1a"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.25"; - sha256 = "c158550f8429be8614e832aa0b5018b29a4e5a8429118bdca5f6d7e74fe9d360"; - revision = "1"; - editedCabalFile = "1ps5sk50sf4b5hd87k3jqykqrwcw2wzyp50rcy6pghd61h83cjg2"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, comonad, containers, distributive - , exceptions, mtl, profunctors, semigroupoids, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "free"; - version = "5.1.3"; - sha256 = "2c70d66e3a1ad52ce4b22d5510ffc6d7b3db950bd7f43bc61801cfe7b24c2e2d"; - libraryHaskellDepends = [ - base comonad containers distributive exceptions mtl profunctors - semigroupoids template-haskell transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-categories" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-categories"; - version = "0.1.0.0"; - sha256 = "9ddfd7b9e75c36ad2f7095013a1f00d61849b6b6b0f2469e62f207b8b6a1ea53"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/morphismtech/free-categories"; - description = "free categories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , template-haskell, transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.2.1.1"; - sha256 = "27cc3eaebef74268421c25d87c088003f7d8f175dd8b39818e66f62e4ecc0b6f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation template-haskell transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "from-sum"; - version = "0.2.2.0"; - sha256 = "460c977b56b92d97f2aea77bb2db30dfd5a2c46dbf4d435d3fc6f609c5bcd715"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Canonical fromMaybeM and fromEitherM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, shelly, stdenv, text, time, unix, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.3.0.1"; - sha256 = "ded2165f72a2b4971f941cb83ef7f58b200e3e04159be78da55ba6c5d35f6da5"; - revision = "1"; - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify shelly - text time unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "03990f311f7d66a6996b88722602b6058fbae7ad33e74073875ef0466ef001ce"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "function-builder" = callPackage - ({ mkDerivation, base, stdenv, tagged }: - mkDerivation { - pname = "function-builder"; - version = "0.3.0.1"; - sha256 = "932d61d4622f84effcb67def19531f0baab34aa3adaff0417a6840a580f5eedf"; - libraryHaskellDepends = [ base tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/function-builder#readme"; - description = "Create poly variadic functions for monoidal results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fused-effects" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "fused-effects"; - version = "1.0.0.0"; - sha256 = "463b9c9046ed2c36936f03ac52e1a2ad857c610b0c3585c5da85f232e0db1288"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fused-effects/fused-effects"; - description = "A fast, flexible, fused effect system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, data-default, stdenv, text, text-metrics - , unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.2.0"; - sha256 = "cf5512f0897e6de3ba0899bd7e84b6dcc99b7f0d80977e52576586ec185ba873"; - libraryHaskellDepends = [ - base data-default text text-metrics unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.5"; - sha256 = "d520fd677890c1bf2b1601331d003f976d85420811c3db4a72cff4d3bdb7f5a7"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; inherit (pkgs) zlib;}; - "gdp" = callPackage - ({ mkDerivation, base, lawful, stdenv }: - mkDerivation { - pname = "gdp"; - version = "0.0.3.0"; - sha256 = "a0f70f3eb52d0c666ef2c6a68130d1e8db21c545fc9a7cd3a839dd538a347d5e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base lawful ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/gdp#readme"; - description = "Reason about invariants and preconditions with ghosts of departed proofs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-constraints" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-abstraction }: - mkDerivation { - pname = "generic-constraints"; - version = "1.1.1.1"; - sha256 = "199c1374323914cd3e335404b2a1ab83127ed01bde489610fed81c046320a3c5"; - libraryHaskellDepends = [ base template-haskell th-abstraction ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yairchu/generic-constraints"; - description = "Constraints via Generic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-data" = callPackage - ({ mkDerivation, base, base-orphans, contravariant - , show-combinators, stdenv - }: - mkDerivation { - pname = "generic-data"; - version = "0.7.0.0"; - sha256 = "48c59d9c238596d764ab0391d3fce4dbbee64207460c902e7c771541fa47cd94"; - libraryHaskellDepends = [ - base base-orphans contravariant show-combinators - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/generic-data#readme"; - description = "Deriving instances with GHC.Generics and related utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.13.1"; - sha256 = "e9b53a40eae58e18ee281858a1ba400f14128d5779858272b01c10d64aa09abe"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged, text }: - mkDerivation { - pname = "generic-lens"; - version = "1.2.0.1"; - sha256 = "8e6f5ee53df18b4c92ecef5e0443f4472989b2f931d264aaf99aad9c73ee8736"; - libraryHaskellDepends = [ base profunctors tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-monoid" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generic-monoid"; - version = "0.1.0.0"; - sha256 = "1ce033351f4674a6ffa1ff6b7b8c4f43a8f753e190c44d2d1b178db88daff04b"; - revision = "1"; - editedCabalFile = "1xsgnb87k80p3gn0jyiv3a1c6g77q8sqml6bmbpppfa24z8paa1p"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Derive monoid instances for product types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.3.0.0"; - sha256 = "f3c3025f5d9a44252a26d67446e2077331c005217233a1b52abec90fd6a6c2fc"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, ghc-prim, sop-core, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.5.0.0"; - sha256 = "ece7130d99eec28d1d34a166875458e4fde9c05e77b8334c58863c61a36ab3a1"; - revision = "1"; - editedCabalFile = "10zfjhcipm77zfx32ls7bc8vk3affa5v7cyphwpw93d6sfqc9wym"; - libraryHaskellDepends = [ - base ghc-prim sop-core template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.2"; - sha256 = "4a30bcdf195082aa2ba6d6d4cd4d4d6378f49c09b522fad686fd0658beeda332"; - revision = "1"; - editedCabalFile = "1ghgh91wd764firxc2s083jzr38w51fg0ry2b7s1wn71mnvzb893"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.9.1.0"; - sha256 = "6f420db0661f7c534f231637ad15c4e6903e7798bc0fa48568e09987b4076c5e"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.3.0.0"; - sha256 = "5090c6fc63c1a059c98bf77f09df8578ecf9c9b43a63d0538e3f8ab1d33c1651"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.5.0.0"; - sha256 = "aa828fed8bfb38bb7a621e51f3540c6a0597ac92073cc60e321338da129e8f51"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.8.0.1"; - sha256 = "575697f00d10585edfc527d957e613f5de3f5eae553377273c40e19d33de55c5"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, transformers, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.7.0.3"; - sha256 = "bc192e16dddb1435652d9442e477afb9709f23e61a54fb1fd1bef502400bb157"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - transformers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.3.1.0"; - sha256 = "2bcd3edb84fde5e6e72dd794352805e38cfa8814704ce4d95b018b2834ae362a"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.3"; - sha256 = "b99ba22694a36af01f6617463a38a35f305e55c46c52ee727302f2e1585ea9aa"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.3"; - sha256 = "947ec34b6befa40f12eb16ad1d37aba97c5daf91efcbb25c564e8ae2ac887185"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.4"; - sha256 = "36f8df481831d05752148ff7558651ff976432f2fab5b8dc9aa4485d1909cdef"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-optics" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec - , microlens, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-optics"; - version = "0.1.1.1"; - sha256 = "0a92cb7d1f98dc17634434f715473cc19596864146eee6256eaf86576c943788"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec hspec microlens QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for optics"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.3"; - sha256 = "84a4110d2d545a93ee6f1cfbcded1ef02c10791bd52ca3d3df4df672f2847483"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, pretty-show, QuickCheck - , stdenv, validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.5.0.1"; - sha256 = "ffa8322bcb9608a1a1cb5cc04099a19f3ecfb507923dc799bf3b9c433e617f33"; - libraryHaskellDepends = [ - base genvalidity hspec pretty-show QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.1.0"; - sha256 = "af11d48c53455eb250e68c6cb4f6e8159ddc16fb635879fc2973d57d8bd5903d"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.6.0.0"; - sha256 = "4a8a0f3ab2616d6ef3d319b3114ee8549e2194a6d92a4be69e646ee16a25c804"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.1.1"; - sha256 = "c555c206edddbd70355b295ccf9ff053463c137735c4aebcc340091f6d6b7874"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.3.0.0"; - sha256 = "30a7b8e14e7f0e97d7881929e2a508fa2bafd8c6f850c069437117a456259636"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.2"; - sha256 = "d1354bdfc0a75a1f228cfed22cd0edb0cc13a925e4b2514a634d56eb5b53f412"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.3.0.0"; - sha256 = "70f06305a7b90708287285c2e6cfb7d1ef27499287952d946f1918071d531b87"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geojson" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, lens, scientific - , semigroups, stdenv, text, transformers, validation, vector - }: - mkDerivation { - pname = "geojson"; - version = "4.0.1"; - sha256 = "32fb795e89d8bb5cf4baecd4dff09019961e70aa8fe2eb60ef9e847c8a341380"; - libraryHaskellDepends = [ - aeson base containers deepseq lens scientific semigroups text - transformers validation vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/indicatrix/hs-geojson"; - description = "A thin GeoJSON Layer above the aeson library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.4"; - sha256 = "f9458ffc13a8767ca8026a2c9dfc294ce2b5ca94148d5286e368bc1c2c9b5fe7"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-compact" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ghc-compact"; - version = "0.1.0.0"; - sha256 = "50bc40e5e5b3a17b267250136af0c04027a9d9eb699e9fee8a5a321bae424e0f"; - revision = "3"; - editedCabalFile = "09l51r0nk7vj6a9crz7q5sv4962mnq18xb6zkxfl6cnm28v85nsk"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "In memory storage of deeply evaluated data structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-lib-parser, ghc-prim, happy - , hpc, pretty, process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib"; - version = "8.8.2"; - sha256 = "63a03737b12ac0f79e44df27aeccdf2545081356d92b7bf8e7fea93477204b37"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-lib-parser ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc, ghc-boot-th, stdenv - , uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc ghc-boot-th uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.12"; - sha256 = "6ecbe676d073cb07989c61ce4c5709c4e67cbefdd2d55a4095f9388b6fe2c484"; - revision = "1"; - editedCabalFile = "1gb4hn87a78j1c2y1adi81y03irzkaxywscjkphfajsxc7f0ydw5"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.6"; - sha256 = "24a8929d6b3342484e7159997498136c6262454a2b225b3d57fbdd4e8899d7e7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-source-gen" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-source-gen"; - version = "0.3.0.0"; - sha256 = "13632a428d8e41c6359c61b3bad9d259722b33470517bd98fc2bb0bb38b735e5"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/ghc-source-gen#readme"; - description = "Constructs Haskell syntax trees for the GHC API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.3.2"; - sha256 = "75685cfdaabadf66f590e2d7408aafa5fc495c7fcd01b69bcc76440f97e4108f"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-prim - , ghc-tcplugins-extra, ghc-typelits-knownnat - , ghc-typelits-natnormalise, integer-gmp, stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.3.2"; - sha256 = "1be290e6fa67c0c83af1fe54e57b9f7264cd57d67923e9396dc01c42e31b8b6b"; - libraryHaskellDepends = [ - base containers ghc ghc-prim ghc-tcplugins-extra - ghc-typelits-knownnat ghc-typelits-natnormalise integer-gmp - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.7.1"; - sha256 = "0cd4bb5364a88baeea1a5652dbc932ae13b43cd69855096e753a121ecd9aee02"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-tcplugins-extra - , integer-gmp, stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.7"; - sha256 = "a4f3c783c63ed4bef7c9ac7cfa401aac6d796c544488b1917a434d08e131dce5"; - libraryHaskellDepends = [ - base containers ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghci-hexcalc" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "ghci-hexcalc"; - version = "0.1.1.0"; - sha256 = "701ee465d6f1d4b815782954fb68bd058b257b38773b07e89f2ee01c38ea53ce"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/takenobu-hs/ghci-hexcalc"; - description = "GHCi as a Hex Calculator interactive"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.8.1"; - sha256 = "8c3039278092139745ec0e09d37c3d375d1cf74feb878e35075d3ca3569abecc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.2"; - sha256 = "6cbb2c649f6d4a874eb7486a2dd33db2ed0f138f1f8289a6447460d39b4b2097"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "giphy-api" = callPackage - ({ mkDerivation, aeson, base, containers, http-api-data - , http-client, http-client-tls, microlens, microlens-th, mtl - , network-uri, servant, servant-client, stdenv, text, transformers - }: - mkDerivation { - pname = "giphy-api"; - version = "0.7.0.0"; - sha256 = "4195eb1e30b8cd623bee40da6e0b01c1f3670c0c2de8acb65fe6cbc0d21c0d90"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "githash" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "githash"; - version = "0.1.3.3"; - sha256 = "598231964e161440335b1ba4d31d4b8195e0b78d834d3bbaf4be86faadd0b0a7"; - libraryHaskellDepends = [ - base bytestring directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/githash#readme"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-rest" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, jwt, mtl, scientific, stdenv, text - , time, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "github-rest"; - version = "1.0.1"; - sha256 = "290d12017758c6b88a598cfceb39b034a1351bed4fc729ad9c8b5f577b2a6937"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types jwt - mtl scientific text time transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/github-rest#readme"; - description = "Query the GitHub REST API programmatically"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "gitlab-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, connection, http-conduit - , http-types, stdenv, text, time, transformers, unliftio - , unliftio-core - }: - mkDerivation { - pname = "gitlab-haskell"; - version = "0.1.5"; - sha256 = "9c998cfbfea97d835ade99bcb0cdc47eea23b3160126f18b5ca98f1955a09407"; - libraryHaskellDepends = [ - aeson base bytestring connection http-conduit http-types text time - transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/robstewart57/gitlab-haskell"; - description = "A Haskell library for the GitLab web API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, containers, fixed, half, libGL, stdenv - , transformers - }: - mkDerivation { - pname = "gl"; - version = "0.9"; - sha256 = "318ef0aab5239d5253c387709dd935c43a0d614f9bb1e186db4a7a96d88b61cd"; - revision = "1"; - editedCabalFile = "19qyb9m2fy9qyirmhhayg51scas42n3i2rx7jcw6v3ra8c8r9rwr"; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "2.0.1"; - sha256 = "9c738bc148407b74c94947e3fa6c739b03669b3dd0f33829617df29efd390719"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gluturtle" = callPackage - ({ mkDerivation, base, convertible, GLUT, stdenv, stm, yjsvg - , yjtools - }: - mkDerivation { - pname = "gluturtle"; - version = "0.0.58.1"; - sha256 = "178658ce4f76ac0a855ca9123cdc8bda0ecc5531356551c00ba6de98dcbd934b"; - libraryHaskellDepends = [ - base convertible GLUT stm yjsvg yjtools - ]; - doHaddock = false; - doCheck = false; - description = "turtle like LOGO with glut"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-isbn" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-conduit, stdenv, text - }: - mkDerivation { - pname = "google-isbn"; - version = "1.0.3"; - sha256 = "3a4df734785c46d381cff3cb44a553b0f9d5ffb051279367a193d64928c2322f"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-conduit text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/google-isbn#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gothic" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, connection - , exceptions, hashable, http-client, http-client-tls, http-conduit - , http-types, lens, lens-aeson, scientific, stdenv, text, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "gothic"; - version = "0.1.3"; - sha256 = "fa661e5966446020678329bf4f87ecfed2fbae24802b22fefe6e96ac58b8e642"; - libraryHaskellDepends = [ - aeson base binary bytestring connection exceptions hashable - http-client http-client-tls http-conduit http-types lens lens-aeson - scientific text unix unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/gothic"; - description = "A Haskell Vault KVv2 secret engine client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.6.0"; - sha256 = "b89ed6f47a6d44b9466d090eabddc9d9ec4b2d7e4b52a61b26d0cf19dac95ba6"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "greskell" = callPackage - ({ mkDerivation, aeson, base, exceptions, greskell-core, hashable - , semigroups, stdenv, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "greskell"; - version = "1.0.0.1"; - sha256 = "1c27f0f365065af3d431671a7d2d630f62ab32bbb185eccdb3ffdc46eec6181c"; - configureFlags = [ "-f-hint-test" ]; - libraryHaskellDepends = [ - aeson base exceptions greskell-core hashable semigroups text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-core" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, scientific - , semigroups, stdenv, text, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "greskell-core"; - version = "0.1.3.1"; - sha256 = "bcd22f9587b708e8d09a043784bcb9afcb94b6f840e5f5ecb3c60760f2efe64a"; - libraryHaskellDepends = [ - aeson base containers hashable scientific semigroups text - unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language - core data types and tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-websocket" = callPackage - ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , greskell-core, hashtables, safe-exceptions, stdenv, stm, text - , unordered-containers, uuid, vector, websockets - }: - mkDerivation { - pname = "greskell-websocket"; - version = "0.1.2.1"; - sha256 = "fd92319d970ddf4c58772bb555659fe31ea5ccd9c9c7efab968d3362ece9e473"; - libraryHaskellDepends = [ - aeson async base base64-bytestring bytestring greskell-core - hashtables safe-exceptions stm text unordered-containers uuid - vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell client for Gremlin Server using WebSocket serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "group-by-date" = callPackage - ({ mkDerivation, base, explicit-exception, filemanip, hsshellscript - , pathtype, stdenv, time, transformers, unix-compat, utility-ht - }: - mkDerivation { - pname = "group-by-date"; - version = "0.1.0.3"; - sha256 = "501a34dffc20c0f8e4086d66e61219ac1c885d889de1fba165d9aafeebf3e253"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base explicit-exception filemanip hsshellscript pathtype time - transformers unix-compat utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/group-by-date/"; - description = "Shell command for grouping files by dates into folders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "guarded-allocation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "guarded-allocation"; - version = "0.0.1"; - sha256 = "0cac10d1790817bdbc44ffe4ee8fcb649e350bb831987ee80739393917784695"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/guarded-allocation/"; - description = "Memory allocation with added stress tests and integrity checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, exceptions, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.1.0"; - sha256 = "7458bdecb426344ced430851c95ef5901b827e610063e6b32ba2acbc32054cef"; - revision = "1"; - editedCabalFile = "1h3x5a8xmqkkcd3h1m7z0il1vbsh2c77685y68zmyp21zb1y88hy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory exceptions - filepath tar time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access cabal-install's Hackage database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, ghc, ghc-boot, ghc-paths, haddock-library - , stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.23.0"; - sha256 = "522e9ce46dce68377cf06fd4c09bbb80a580842d8518b8910c3c9e8c51217339"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath ghc - ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, parsec, stdenv, text - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.8.0"; - sha256 = "7093a70308a548c1fa46c01fe236bc27125311159ad797304e6b0ee893d8b797"; - revision = "1"; - editedCabalFile = "09v6lq3ncf3ax7b6n36vhsflm488x0qc8sgc3w17m09x1jl48d99"; - libraryHaskellDepends = [ - base bytestring containers parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "happy"; - version = "1.19.12"; - sha256 = "fb9a23e41401711a3b288f93cf0a66db9f97da1ce32ec4fffea4b78a0daeb40f"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.3.0.0"; - sha256 = "822e5413fbccca6ae884d3aba4066422c8b5d58d23d18b9ecb5c03273bb19ab4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable-time" = callPackage - ({ mkDerivation, base, hashable, stdenv, time }: - mkDerivation { - pname = "hashable-time"; - version = "0.2.0.2"; - sha256 = "fa61f7fbd493b5a54f2aeb10e0c1c4144111ecf34e74080d12c5738ce925fee0"; - revision = "2"; - editedCabalFile = "006phc5y9rrvsshdcmjmhxzxh8dpgs685mpqbkjm9c40xb1ydjbz"; - libraryHaskellDepends = [ base hashable time ]; - doHaddock = false; - doCheck = false; - description = "Hashable instances for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.4"; - sha256 = "125ce62701fba3f666609f5c75f452005aa5d32dff4eeee3f3903c30b2ed55e6"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.5.0"; - sha256 = "d26508444914efcd6a0369f89c3ade57feae7732c73f5329b610c0c8f1c1dec6"; - revision = "1"; - editedCabalFile = "0i8fyhk7fvz2bxnh5xsmdw5rr7yywzc2wv115034q1g4sb018zrd"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.23.0"; - sha256 = "8ad81ef082c71f41c6c6e0afbd8779497da6ffb1e9e7c2b207efe0b56aa7a211"; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.23.0"; - sha256 = "c07ebe7dea2a3c2b0a980f7b958529920caeaf5966280c1317c5fbba2f6942b8"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, ormolu, parsec, process, safe, sorted-list - , stdenv, stm, syb, tagsoup, text, transformers, unix-time - , unliftio, unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple ormolu parsec process safe sorted-list stm syb - tagsoup text transformers unix-time unliftio unordered-containers - vector versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.0.2"; - sha256 = "d8cdf3122ee384ec440269108fd85ccf207a413015ceeffb2e9bf4313a6addf3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yav/haskell-lexer"; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-names" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , data-lens-light, filepath, haskell-src-exts, mtl, stdenv - , transformers, traverse-with-class, uniplate - }: - mkDerivation { - pname = "haskell-names"; - version = "0.9.7"; - sha256 = "b2b03fb559fed5904750e5678b05be51b9158195b552971e08f825456e9ba0a9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers data-lens-light filepath - haskell-src-exts mtl transformers traverse-with-class uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/haskell-suite/haskell-names"; - description = "Name resolution library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.1"; - sha256 = "869cc710004c2161470d8a788dab96d2cff054fa106c301be6689109f57e5132"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.5"; - sha256 = "331271554ba42e4938da1417df1e3192737c3e19dceb9a5484198c71ecb858b3"; - revision = "1"; - editedCabalFile = "00znr8mrlbyn0n1bw4c82rv82pq5ngkk7kw9cgk13pghf93hwwv7"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.1"; - sha256 = "35f54cf51b0cd66361b29e21ebcd0603ab2396028e58ab667ac709591491f387"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskoin-core" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring - , cereal, conduit, containers, cryptonite, deepseq, entropy - , hashable, hspec, HUnit, memory, mtl, murmur3, network, QuickCheck - , safe, scientific, secp256k1-haskell, split, stdenv - , string-conversions, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "haskoin-core"; - version = "0.10.0"; - sha256 = "db0252076e56e9636ff3e790ca769977aa3122906bfb40e648ce1dcf2cf8693d"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bytestring cereal conduit - containers cryptonite deepseq entropy hashable hspec HUnit memory - mtl murmur3 network QuickCheck safe scientific secp256k1-haskell - split string-conversions text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/haskoin#readme"; - description = "Bitcoin & Bitcoin Cash library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "haskoin-node" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, conduit-extra - , containers, data-default, hashable, haskoin-core, monad-logger - , mtl, network, nqe, random, resourcet, rocksdb-haskell - , rocksdb-query, stdenv, string-conversions, text, time - , transformers, unliftio, unordered-containers - }: - mkDerivation { - pname = "haskoin-node"; - version = "0.9.15"; - sha256 = "fdde5a8c46a9580c691bafa0906ebabb0312134f8f1d5c24a6e32fd921c6be2d"; - libraryHaskellDepends = [ - base bytestring cereal conduit conduit-extra containers - data-default hashable haskoin-core monad-logger mtl network nqe - random resourcet rocksdb-haskell rocksdb-query string-conversions - text time transformers unliftio unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/haskoin#readme"; - description = "Haskoin Node P2P library for Bitcoin and Bitcoin Cash"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , dlist, hashable, hashtables, loch-th, mtl, placeholders - , postgresql-binary, postgresql-libpq, profunctors, stdenv, text - , text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.4.0.1"; - sha256 = "4dcce757e633f9ba8b24d583e0edbfc3fb6104c89ae88fd781b0a07182102110"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras dlist hashable hashtables - loch-th mtl placeholders postgresql-binary postgresql-libpq - profunctors text text-builder transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver with a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.5"; - sha256 = "b8f7061c488f9b84cdcbc506c7429aa403a77f628a9b683605f8d33efa7aaf60"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5.1"; - sha256 = "739860f61589261b120368c113fbe88360e5db8eafc2166fbaba2a70692cf429"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, bytestring, bytestring-tree-builder - , contravariant, contravariant-extras, hasql, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "1.0.0.1"; - sha256 = "149739aba03a0a2c40e965cc3b7b995ae60be95a1f06e26dbca6c82bf552db49"; - libraryHaskellDepends = [ - base bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "Composable abstraction over retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.6"; - sha256 = "ad6f302492a9c41e99ce62ca955a959b0cdca0ff328e66f31bfec5a99f7cee24"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/unprolix/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6.1"; - sha256 = "91d552f3c8992f745607de39239b950db78295b533eda43d083699872a4ee36d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heart-core" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, containers, exceptions - , filepath, hashable, lens, list-t, mtl, newtype-generics, stdenv - , text, unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "heart-core"; - version = "0.1.1"; - sha256 = "c0ac5ba079c55cdecaf7830851de94a4a2a09fd8dd00b55798b891a3f91981e4"; - libraryHaskellDepends = [ - aeson aeson-casing base containers exceptions filepath hashable - lens list-t mtl newtype-generics text unliftio unliftio-core - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/heart-core#readme"; - description = "An opinionated library prelude in the UnliftIO style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.2"; - sha256 = "4316e2ab829a7344900fe15966460bc553e3a60989a14c08ecadf00d2674462b"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time#readme"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, erf, exceptions, fail - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, time, transformers, transformers-base, wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "1.0.2"; - sha256 = "8e0cef556c2a9386d45b8d29e8051de99693d19b1d29323add108ecd5c69a880"; - revision = "2"; - editedCabalFile = "1qh7yaijp04li1i10cd5j6bc58fcagynxxmvs32wc8m1fvgzi05w"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory erf exceptions fail lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text time transformers transformers-base - wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Release with confidence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.1.0"; - sha256 = "c3569cd8316770115871acf334587350e887b046e35abc0d52a90dd0e6d719f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-fn" = callPackage - ({ mkDerivation, base, contravariant, hedgehog, stdenv - , transformers - }: - mkDerivation { - pname = "hedgehog-fn"; - version = "1.0"; - sha256 = "170bc58d2e5a5bc15bc3e8a0a3ea71b11b8aab8b3bfd923b7f9394afe569b915"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base contravariant hedgehog transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/hedgehog-fn"; - description = "Function generation for `hedgehog`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-quickcheck" = callPackage - ({ mkDerivation, base, hedgehog, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "hedgehog-quickcheck"; - version = "0.1.1"; - sha256 = "97b65db815fdfaacc7c4d06a7b9b74680b50264afa03f839c4037dcc875152fc"; - libraryHaskellDepends = [ base hedgehog QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Use QuickCheck generators in Hedgehog and vice versa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.3"; - sha256 = "4723e03896cc91d524da36fe1b8c5b174b81120c323a3fad692f9ada4bd8794f"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.4"; - sha256 = "937401802ed6593aad8c5acf0ea963d0f1f4473bf72185702b12eb30e52bbe2a"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hformat" = callPackage - ({ mkDerivation, ansi-terminal, base, base-unicode-symbols, stdenv - , text - }: - mkDerivation { - pname = "hformat"; - version = "0.3.3.1"; - sha256 = "302eda1d9ca71b73c5a5d31561d4ef3e7d4ff9ef1b86329aa019b5df20c5a773"; - libraryHaskellDepends = [ - ansi-terminal base base-unicode-symbols text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/hformat"; - description = "Simple Haskell formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hi-file-parser" = callPackage - ({ mkDerivation, base, binary, bytestring, rio, stdenv, vector }: - mkDerivation { - pname = "hi-file-parser"; - version = "0.1.0.0"; - sha256 = "54ac6750d5e4ef93c64b255f672261ae4c80ef11f20d92c382736e09be11fa25"; - revision = "2"; - editedCabalFile = "1bm98h0v4wf9vmdng15c2r48yz06118jxlprsnk0z3jw0d95ij9z"; - libraryHaskellDepends = [ base binary bytestring rio vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/stack#readme"; - description = "Parser for GHC's hi files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.5"; - sha256 = "3726e0bcbdbda309b919241d86629625e732fd07d78cc90ad39cb39b51cd595e"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.2"; - sha256 = "2afc228104a29aed6b208b1aeba93631e96fdf11efbe68ad036f838f95f8aff2"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinfo" = callPackage - ({ mkDerivation, aeson, base, optparse-applicative, stdenv, text - , yaml - }: - mkDerivation { - pname = "hinfo"; - version = "0.0.3.0"; - sha256 = "9bcee53af6ff558efe131ff22ab678b1fc6423a7f176026fc50fbabbab620413"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - executableHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/hinfo#readme"; - description = "Command Line App With Info on your Haskell App"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.4"; - sha256 = "7d182c524384aaa15eec666803643d067671e8e806f315c10758685e90a934f4"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hint" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, ghc - , ghc-boot, ghc-paths, mtl, random, stdenv, temporary, unix - }: - mkDerivation { - pname = "hint"; - version = "0.9.0.2"; - sha256 = "0ed2c5bddcb84cba0101e38403e98207a2501953c9dc51b723f1c0e4aea3b61b"; - libraryHaskellDepends = [ - base directory exceptions filepath ghc ghc-boot ghc-paths mtl - random temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-hint/hint"; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, bytestring, language-javascript - , optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.4"; - sha256 = "81b9947714d8d2b73d0aba9e2e02af7e30c13b2cf8144df8904564d9642e57e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring language-javascript text - ]; - executableHaskellDepends = [ - base bytestring language-javascript optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hkgr" = callPackage - ({ mkDerivation, base, directory, filepath, simple-cabal - , simple-cmd, simple-cmd-args, stdenv - }: - mkDerivation { - pname = "hkgr"; - version = "0.2.4"; - sha256 = "b8390f41de99be4dd8a3450160d18459437cc42c095507bae8ae77ee6fbebb26"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base directory filepath simple-cabal simple-cmd simple-cmd-args - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/hkgr"; - description = "Simple Hackage release workflow for package maintainers"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat-batteries - , bytestring, cmdargs, containers, data-default, Decimal, Diff - , directory, extra, filepath, hashable, haskeline, hledger-lib - , lucid, math-functions, megaparsec, mtl, old-time, parsec - , pretty-show, process, regex-tdfa, safe, shakespeare, split - , stdenv, tabular, tasty, temporary, terminfo, text, time, timeit - , transformers, unordered-containers, utf8-string, utility-ht - , wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.16.2"; - sha256 = "b4b78b3f08d00ca75c6f6d47b37c0a67aec4adc0aefff2ca29bb0f3b82ac7bcb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal Diff directory extra filepath - hashable haskeline hledger-lib lucid math-functions megaparsec mtl - old-time parsec pretty-show process regex-tdfa safe shakespeare - split tabular tasty temporary terminfo text time timeit - transformers unordered-containers utf8-string utility-ht wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal directory extra filepath haskeline - hledger-lib math-functions megaparsec mtl old-time parsec - pretty-show process regex-tdfa safe shakespeare split tabular tasty - temporary terminfo text time timeit transformers - unordered-containers utf8-string utility-ht wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-iadd" = callPackage - ({ mkDerivation, base, brick, containers, directory, free - , hledger-lib, megaparsec, microlens, microlens-th - , optparse-applicative, semigroups, stdenv, text, text-zipper, time - , transformers, unordered-containers, vector, vty, xdg-basedir - }: - mkDerivation { - pname = "hledger-iadd"; - version = "1.3.10"; - sha256 = "438be466885798f9cdf2ba78aa4a7f30a1b2732f44b403108328e2a2f76ab94d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base brick containers directory free hledger-lib megaparsec - microlens microlens-th optparse-applicative semigroups text - text-zipper time transformers unordered-containers vector vty - xdg-basedir - ]; - executableHaskellDepends = [ - base brick directory free hledger-lib megaparsec microlens - optparse-applicative text text-zipper time transformers - unordered-containers vector vty xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hpdeifel/hledger-iadd#readme"; - description = "A terminal UI as drop-in replacement for hledger add"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "7a7f5d437c98e42ba1f1529f2645e5df88d18962ae28b71b8c07e428fe08c1b9"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat-batteries - , blaze-markup, bytestring, call-stack, cassava, cassava-megaparsec - , cmdargs, containers, data-default, Decimal, deepseq, directory - , extra, fgl, file-embed, filepath, Glob, hashtables, megaparsec - , mtl, old-time, parsec, parser-combinators, pretty-show - , regex-tdfa, safe, split, stdenv, tabular, tasty, tasty-hunit - , template-haskell, text, time, timeit, transformers, uglymemo - , utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.16.2"; - sha256 = "6f700e901e72a8e1d90bda8ac2921d83d9a0fb4a18ed9a1dea5f4b600a326b2c"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat-batteries blaze-markup - bytestring call-stack cassava cassava-megaparsec cmdargs containers - data-default Decimal deepseq directory extra fgl file-embed - filepath Glob hashtables megaparsec mtl old-time parsec - parser-combinators pretty-show regex-tdfa safe split tabular tasty - tasty-hunit template-haskell text time timeit transformers uglymemo - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-ui" = callPackage - ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries - , brick, cmdargs, containers, data-default, directory, filepath - , fsnotify, hledger, hledger-lib, megaparsec, microlens - , microlens-platform, pretty-show, process, safe, split, stdenv - , text, text-zipper, time, transformers, unix, vector, vty - }: - mkDerivation { - pname = "hledger-ui"; - version = "1.16.2"; - sha256 = "90f69e1e2f9fa66c535b7f61144b3fb681f1629f313c89d423b4569722224faf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal async base base-compat-batteries brick cmdargs - containers data-default directory filepath fsnotify hledger - hledger-lib megaparsec microlens microlens-platform pretty-show - process safe split text text-zipper time transformers unix vector - vty - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Terminal user interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , case-insensitive, clientsession, cmdargs, conduit, conduit-extra - , containers, data-default, Decimal, directory, filepath, hjsmin - , hledger, hledger-lib, http-client, http-conduit, http-types - , megaparsec, mtl, semigroups, shakespeare, stdenv - , template-haskell, text, time, transformers, utf8-string, wai - , wai-cors, wai-extra, wai-handler-launch, warp, yaml, yesod - , yesod-core, yesod-form, yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.16.2"; - sha256 = "daa4b68d8491d0a5716ee2ac39520a31bef6a1ae6b36ddc0f531b81616c237ce"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring case-insensitive - clientsession cmdargs conduit conduit-extra containers data-default - Decimal directory filepath hjsmin hledger hledger-lib http-client - http-conduit http-types megaparsec mtl semigroups shakespeare - template-haskell text time transformers utf8-string wai wai-cors - wai-extra wai-handler-launch warp yaml yesod yesod-core yesod-form - yesod-static - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc, ghc-boot-th, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern ghc - ghc-boot-th ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.20.0.0"; - sha256 = "ef421aba2e6c93a22043a233b2c83789b24363ebe35732d67ccafd12990a1eeb"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.8"; - sha256 = "b844420ce1e76e11ab04fba7e826b98449e166c6b08c78ba01b9e021752200b3"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.2"; - sha256 = "f2f3ee02607096a56c7c5c7f1ddff2f7f91ee05211ec2bd659add8208b1505a7"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.2.0"; - sha256 = "6c09c84fc1812acc2836ddb399948fb74bb7541711e7a0206df382df33f53759"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hnock" = callPackage - ({ mkDerivation, base, parsec, stdenv, text }: - mkDerivation { - pname = "hnock"; - version = "0.4.0"; - sha256 = "ad5c377fa5c0e089953ca31a4ea65131854d157444903cb4e4df2abd2b357cb4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec text ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/hnock"; - description = "A Nock interpreter"; - license = stdenv.lib.licenses.mit; - }) {}; - "hoauth2" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, exceptions - , http-conduit, http-types, microlens, stdenv, text - , unordered-containers, uri-bytestring, uri-bytestring-aeson - }: - mkDerivation { - pname = "hoauth2"; - version = "1.10.2"; - sha256 = "548a0d9d87e0e2deae5becec84b17fcb4026e69ad3e29c220b578c7703f86d12"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring exceptions http-conduit http-types - microlens text unordered-containers uri-bytestring - uri-bytestring-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/freizl/hoauth2"; - description = "Haskell OAuth2 authentication client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, openssl, stdenv }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.4"; - sha256 = "9df46c328fc4c1d1566e2d1539770c9fe9d0422e09ee254721b35ee7d48a7671"; - revision = "1"; - editedCabalFile = "14bs0wjrqnnn1v8c4yznfzggvmgypm2lssgl0cr498kmp54if0lf"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hosc" = callPackage - ({ mkDerivation, base, binary, blaze-builder, bytestring - , data-binary-ieee754, network, stdenv, time, transformers - }: - mkDerivation { - pname = "hosc"; - version = "0.17"; - sha256 = "66439c416246cb56c15a0f3fb0cf07b178202c7755034b648f02d4f81ba5800c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-builder bytestring data-binary-ieee754 network - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://rohandrape.net/t/hosc"; - description = "Haskell Open Sound Control"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.12"; - sha256 = "44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.9"; - sha256 = "56fc8ba0ad862668179f5bab032c3738fa42d10abce6b59f8dd01b3a11e52b52"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://mathr.co.uk/blog/hp2pretty.html"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , process, ruby, scientific, stdenv, stm, text - , unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.8"; - sha256 = "68163072f25563ac458539ee34708700978fbd389e5e7a380839f34f017ce274"; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.8.0.0"; - sha256 = "4cab7f3866df0fe58c6eefa3ce5207ce2c2fd6b8e763f54cd952553c0281d06b"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, tagged, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.6.0"; - sha256 = "14e0977ae52fd9aa4da8a2335c7452016ed9b4214d72de5b296cb78612f5fba4"; - libraryHaskellDepends = [ base tagged transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hs-php-session" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hs-php-session"; - version = "0.0.9.3"; - sha256 = "0e717e90933f9e861d9cf374baa0dedac51d8ae7a1746ef2f7bd098fe38c8df7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/hs-php-session"; - description = "PHP session and values serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsc2hs" = callPackage - ({ mkDerivation, base, containers, directory, filepath, process - , stdenv - }: - mkDerivation { - pname = "hsc2hs"; - version = "0.68.6"; - sha256 = "e0cc7549c22fafe6e159aadb1048c9bfcce8fda602dd2febd8b1eea4df3292b2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base containers directory filepath process - ]; - doHaddock = false; - doCheck = false; - description = "A preprocessor that helps with writing Haskell bindings to C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.8"; - sha256 = "60e2c1467d381ab183c95e29de58f9b0514309f21d728fec700a42adff73b64b"; - revision = "1"; - editedCabalFile = "09ixj0xywmbigfhqmq58dwqns8l3w6wprykafg52fx69bvhg9yph"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, parsec, stdenv, time, time-compat }: - mkDerivation { - pname = "hsemail"; - version = "2.2.0"; - sha256 = "04fdf2c678c6cee3ed7109e41f26d1543bffea95869daf0cb5fa656bb5b0e800"; - libraryHaskellDepends = [ base parsec time time-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the Internet Message format (e-mail)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - }: - mkDerivation { - pname = "hsini"; - version = "0.5.1.2"; - sha256 = "eaa6ae68c6271d5c3187054e702719b3ee7916524ffda27bb328cc9aad9ed8e4"; - revision = "1"; - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - doHaddock = false; - doCheck = false; - description = "ini configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, Cabal, directory, filepath - , heredoc, optparse-applicative, process, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "hsinstall"; - version = "2.6"; - sha256 = "85aa6d67f88e12f5a3590889c682a6252213478c86510546b44a7b44fd97c31c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ - ansi-wl-pprint base Cabal directory filepath heredoc - optparse-applicative process safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dino-/hsinstall#readme"; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, network - , network-bsd, old-locale, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.3.1.0"; - sha256 = "7f2364f6c0b9c5b85a257267a335816126ef2471c817a42797a5d3c57acaca5b"; - libraryHaskellDepends = [ - base bytestring containers deepseq network network-bsd old-locale - time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/hslogger/wiki"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "1.0.3.2"; - sha256 = "d2d40b0c143ef58d26203f34d96d4220f1a20077386e4a5216be74260b7d6ba0"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://hslua.github.io/"; - description = "Bindings to Lua, an embeddable scripting language"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "1.0.0"; - sha256 = "ffa7c2f6cb90a914f796334c8f07b1eb7bfd9b3717c55d8f756589dd14706c73"; - revision = "1"; - editedCabalFile = "1ysgh5s99zv0khkwqw1kcli2r2vi77r7wz3yc0y0i7qr35shzklh"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-system" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, hslua - , stdenv, temporary - }: - mkDerivation { - pname = "hslua-module-system"; - version = "0.2.1"; - sha256 = "108e4dee68d09eb61b77122e0a5b8b7f0bafe1a7b4168e7ff4970c56def8fcd4"; - libraryHaskellDepends = [ - base containers directory exceptions hslua temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-system"; - description = "Lua module wrapper around Haskell's System module"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, bytestring, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.2.1"; - sha256 = "1302d9022e9beea0cf4f09f977d7ca0956c598d0bf15945de5a52dd8f7e66dc6"; - libraryHaskellDepends = [ base bytestring hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-text"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, hspec-core, hspec-discover - , hspec-expectations, QuickCheck, stdenv - }: - mkDerivation { - pname = "hspec"; - version = "2.7.1"; - sha256 = "818cebbcbde8761289902a816f865691e40724babf87e70057ecab204f6619f5"; - libraryHaskellDepends = [ - base hspec-core hspec-discover hspec-expectations QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.1"; - sha256 = "2c1bf064a815af9a3ac8af79d1bf1e761d855276366b86cbace5773794ea1f42"; - revision = "1"; - editedCabalFile = "0vjmyrsb878914b4khwdy3fcn9n217q8k5xnszlrp7dl1jnbqyi4"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.7.1"; - sha256 = "2ccc20f27970f753ed2e902c323f4562adaf1a31f4234b3504e02a8a50417323"; - revision = "1"; - editedCabalFile = "0aw68sgz2p63y0vg07c1jx2pr8lmhp5c1ck60dlipyxsa00455i6"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.7.1"; - sha256 = "0b31c29b37d7d446d44b3559f794cd62b09ee5fc3f30862eccd8284e52758764"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.5"; - sha256 = "9479251e851c07af1b88ebe91d9a20d074f505209f253ebd6f379f3914ab6210"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden" = callPackage - ({ mkDerivation, base, directory, hspec-core, optparse-applicative - , stdenv - }: - mkDerivation { - pname = "hspec-golden"; - version = "0.1.0.1"; - sha256 = "42f8bc639c1ee134992d37b7ea3dea1b9f3e80ba1e94689973258f819d9349c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory hspec-core ]; - executableHaskellDepends = [ base directory optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hspec-golden#readme"; - description = "Golden tests for hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-leancheck" = callPackage - ({ mkDerivation, base, hspec, hspec-core, HUnit, leancheck, stdenv - }: - mkDerivation { - pname = "hspec-leancheck"; - version = "0.0.3"; - sha256 = "38de8e98ca16e54370f2387c2ceb22fadab53ada5e9c0505ce9fe23f1b99d852"; - libraryHaskellDepends = [ base hspec hspec-core HUnit leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/hspec-leancheck#readme"; - description = "LeanCheck support for the Hspec test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "2.0.1"; - sha256 = "cf4d8db8a43ed2da489253e54204f0d5413ae37e03621f358f930600b3b01671"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.6.0"; - sha256 = "e6d701c9f366f6762eb2a86022d1c7a7d7631c100945491ff53b3a3e86212ad8"; - revision = "1"; - editedCabalFile = "1qh3j6mhlz2bvdk8qc5fa4nqh93q4vqnvxmqqisg4agacnvyp4b2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-need-env" = callPackage - ({ mkDerivation, base, hspec-core, hspec-expectations, stdenv }: - mkDerivation { - pname = "hspec-need-env"; - version = "0.1.0.4"; - sha256 = "8f5ecda15d079cfc5ef7658478c3848827fde8451a0d3f1ba65e415c41966631"; - libraryHaskellDepends = [ base hspec-core hspec-expectations ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/hspec-need-env"; - description = "Read environment variables for hspec tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-parsec" = callPackage - ({ mkDerivation, base, hspec-expectations, parsec, stdenv }: - mkDerivation { - pname = "hspec-parsec"; - version = "0"; - sha256 = "decc5a32ba44968fbe69f213cb97a6c7d3a4601fa8df75365f7727f61b41a4e0"; - revision = "1"; - editedCabalFile = "03nsxwc5p6whq21dqwba0289g8fqqqws453kyanwgb6vvg1f0s9l"; - libraryHaskellDepends = [ base hspec-expectations parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/hspec-parsec#readme"; - description = "Hspec expectations for testing Parsec parsers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.10.1"; - sha256 = "7fb252802da2309c929e3559a2a97d7c27399f58d2afa2ea306ea18c3e035b16"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsshellscript" = callPackage - ({ mkDerivation, base, c2hs, directory, parsec, random, stdenv - , unix - }: - mkDerivation { - pname = "hsshellscript"; - version = "3.4.5"; - sha256 = "7dbfd595832e4ecd7d12d8b36ce8a82192d79a764631c98071440a7daa7ec634"; - libraryHaskellDepends = [ base directory parsec random unix ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.volker-wysk.de/hsshellscript/"; - description = "Haskell for Unix shell scripting tasks"; - license = "LGPL"; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.2"; - sha256 = "3eec43c8fb42c23d03f1db7b0b594d39cd94275c2284dcd0c64aa4d680bd7ece"; - revision = "1"; - editedCabalFile = "0k1j46nk3z64zw4bqmvw5lgy16ih200m66rv4b6ygjqv7nglqq0b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit - , conduit-extra, containers, resourcet, stdenv, text, transformers - , xml-conduit, xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.2.1"; - sha256 = "3681534cb7fc132a78ac35bd9d415280cf3e7a56a875bc7161375c69d947cca4"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit conduit-extra containers - resourcet text transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.3"; - sha256 = "ceeab562184a5921381e41eddd7a91dc98e85431ab445e286320ba3aa0ad5556"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, base-compat - , bytestring, containers, cookie, hashable, http-types, stdenv - , tagged, text, time-compat, unordered-containers, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.4.1.1"; - sha256 = "d0aa13e2878e4b92edf71391e775476e7d36a4b5736bd5c701373002b7a823e9"; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base base-compat bytestring - containers cookie hashable http-types tagged text time-compat - unordered-containers uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.6.4"; - sha256 = "369278ec3d0d89bfdd8bee5bd367b22b7812b98fd62a1121276d728aeeb239d9"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, http-client, network - , stdenv - }: - mkDerivation { - pname = "http-client-openssl"; - version = "0.3.0.0"; - sha256 = "74836285c3dbc27230f30bb61db92aafecb8c90e8a9cb62c0db21602ee0aed78"; - revision = "2"; - editedCabalFile = "0p8vgakciq8ar9pfahh1bmriann3h0xn4z3xb328lgbcxxxpwqfd"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL http-client network - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the OpenSSL library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-overrides" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, network-uri, stdenv, text, yaml - }: - mkDerivation { - pname = "http-client-overrides"; - version = "0.1.1.0"; - sha256 = "944dc0c10c8e223ae93fbdc5b65129a7ebd1031cbe125397acf8643dbba15a95"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types network-uri text yaml - ]; - executableHaskellDepends = [ base http-client http-client-tls ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbiemcmichael/http-client-overrides"; - description = "HTTP client overrides"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-client, http-client-tls, http-types, mtl - , resourcet, stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.7.3"; - sha256 = "7aeddc51bcc8f356fb0c9c9ea901b9fbbe7eef024d59ab77261e41e043843a03"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.8"; - sha256 = "0f4c6348487abe4f9d58e43d3c23bdefc7fd1fd5672effd3c7d84aaff05f5427"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-directory" = callPackage - ({ mkDerivation, base, bytestring, html-conduit, http-client - , http-client-tls, http-date, http-types, stdenv, text, time - , xml-conduit - }: - mkDerivation { - pname = "http-directory"; - version = "0.1.5"; - sha256 = "d6f39ba7afd08be50b4b028f9b38b64be011109a944f4df7496eabe3b5cfac1c"; - revision = "1"; - editedCabalFile = "0ynm88f9v3h5dlyf2kzydqwr2l90gwjysffr6gbnlyqw9x46pb04"; - libraryHaskellDepends = [ - base bytestring html-conduit http-client http-client-tls http-date - http-types text time xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/http-directory"; - description = "http directory listing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-download" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, cryptonite, cryptonite-conduit, directory - , exceptions, filepath, http-client, http-conduit, http-types - , memory, path, path-io, retry, rio, rio-prettyprint, stdenv - }: - mkDerivation { - pname = "http-download"; - version = "0.1.0.1"; - sha256 = "83244872d6f62c1e10c69ce0e87159649eefaf895e77cbdfa8f95287975730b8"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra cryptonite - cryptonite-conduit directory exceptions filepath http-client - http-conduit http-types memory path path-io retry rio - rio-prettyprint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/http-download#readme"; - description = "Verified downloads with retries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3.1"; - sha256 = "da26db73df1eaebb20df2837b0352cc62a6c151d467bea9442767fd3d51c2a2d"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.8.0.0"; - sha256 = "398279d1dff5b60cd8b8c650caceca248ea1184d694bedf5df5426963b2b9c53"; - revision = "2"; - editedCabalFile = "0qvkhbxdz33lis5vca3jm1b44fkm7aalf4iz1gblr8xivnpmq885"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.3"; - sha256 = "4e8a4a66477459fa436a331c75e46857ec8026283df984d54f90576cd3024016"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive - , containers, http-types, network, network-byte-order, psqueues - , stdenv, stm, time-manager - }: - mkDerivation { - pname = "http2"; - version = "2.0.3"; - sha256 = "ba5105f31d0e83d5bd7f6f6c5deef6b277cd6a82f9701e19920f54e0c00b1093"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring case-insensitive containers http-types - network network-byte-order psqueues stm time-manager - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "httpd-shed" = callPackage - ({ mkDerivation, base, network, network-bsd, network-uri, stdenv }: - mkDerivation { - pname = "httpd-shed"; - version = "0.4.1.1"; - sha256 = "590fcfcb401923652bfcaf8c9a81b3bbbe83a4b1d16f7ccfecf7e47f6b6cafa5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base network network-bsd network-uri ]; - doHaddock = false; - doCheck = false; - description = "A simple web-server with an interact style API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.1.4"; - sha256 = "cc688783dd3b761bba580cc01ddd41f75d436a21af7dd10e1268c2b0d43adc1b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.esy.fun/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "2.0.0.1"; - sha256 = "dfe9126018e4518f4babddb6a759c696665058ddca1eb2a270245c3dd1bcf658"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvega" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "hvega"; - version = "0.4.1.2"; - sha256 = "e6885056cf1ba4133c8eb95680535d65f6454a7d003df5e41f1c69842187c76d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "Create Vega-Lite visualizations (version 3) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, deepseq, hedgehog, hspec, hw-bits, hw-excess - , hw-fingertree, hw-prim, hw-rankselect-base, stdenv, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.3.0.3"; - sha256 = "51af53b8f522a97104e3f3a9cddf835ff9e24f27cde1af26583f5e45af79561e"; - libraryHaskellDepends = [ - base deepseq hedgehog hspec hw-bits hw-excess hw-fingertree hw-prim - hw-rankselect-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bitvec, bytestring, deepseq, hw-int, hw-prim - , hw-string-parse, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.1.0"; - sha256 = "34ae831f26ec6d8c36575c3a32e4f80a7683dd93191b67ae92f31728be8d9264"; - libraryHaskellDepends = [ - base bitvec bytestring deepseq hw-int hw-prim hw-string-parse - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, transformers, unliftio-core - , word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.6"; - sha256 = "2c871841513859688f6dab906528b1fcbebbe6b094ce1de79fb4b4bda9b6207d"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time transformers - unliftio-core word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-conduit-merges" = callPackage - ({ mkDerivation, base, conduit, conduit-extra, mtl, stdenv }: - mkDerivation { - pname = "hw-conduit-merges"; - version = "0.2.0.0"; - sha256 = "9bcea270cc01a117c892315fff0dd46de3e58466e9ef82f7571eedad9b58028c"; - revision = "1"; - editedCabalFile = "1azji7zc0ygqjgd2shbqw7p8a2ll2qp3b1yq5i3665448brlwpvc"; - libraryHaskellDepends = [ base conduit conduit-extra mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-conduit-merges#readme"; - description = "Additional merges and joins for Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.7"; - sha256 = "f197f234f416e4f2b0d00bbca7e71105d3179a857c43d60b0157cc3d6fcbd5f1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-dsv" = callPackage - ({ mkDerivation, appar, base, bits-extra, bytestring, deepseq - , generic-lens, ghc-prim, hedgehog, hw-bits, hw-ip, hw-prim - , hw-rankselect, hw-rankselect-base, hw-simd, lens - , optparse-applicative, resourcet, stdenv, text, vector - }: - mkDerivation { - pname = "hw-dsv"; - version = "0.4.0"; - sha256 = "6e7bbe4429a94a7bf63e91bec39a5507ace53dec3f4fada8adbc60f20776f2b2"; - revision = "2"; - editedCabalFile = "167zvbxwjmb25xmhcdhrshk03b98kh5ldrf2b6a4v8xlkj4p33qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bits-extra bytestring deepseq ghc-prim hw-bits hw-prim - hw-rankselect hw-rankselect-base hw-simd vector - ]; - executableHaskellDepends = [ - appar base bits-extra bytestring deepseq generic-lens ghc-prim - hedgehog hw-bits hw-ip hw-prim hw-rankselect hw-rankselect-base - hw-simd lens optparse-applicative resourcet text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-dsv#readme"; - description = "Unbelievably fast streaming DSV file parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-eliasfano" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, generic-lens - , hw-bits, hw-int, hw-packed-vector, hw-prim, hw-rankselect - , hw-rankselect-base, lens, optparse-applicative, resourcet, stdenv - , temporary-resourcet, vector - }: - mkDerivation { - pname = "hw-eliasfano"; - version = "0.1.1.1"; - sha256 = "6763cffd6e3bc4654a9a246538609a8457430494d73ec4774fa48ec05b63ab3a"; - revision = "1"; - editedCabalFile = "1i5in5h9jnx4p873qv80jmdd1ak6yyyf70002j3lhxyaxx9byy7k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-bits hw-int hw-packed-vector hw-prim hw-rankselect - hw-rankselect-base temporary-resourcet vector - ]; - executableHaskellDepends = [ - base binary bytestring generic-lens hw-bits hw-packed-vector - hw-prim hw-rankselect hw-rankselect-base lens optparse-applicative - resourcet temporary-resourcet vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-eliasfano#readme"; - description = "Elias-Fano"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.2.1"; - sha256 = "2bf9685211a0d4087065b064925c31d1c24f099b580f13a2e2ed05e3b87d98d8"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree" = callPackage - ({ mkDerivation, base, deepseq, hw-prim, stdenv }: - mkDerivation { - pname = "hw-fingertree"; - version = "0.1.1.1"; - sha256 = "4edf530abfbd95d601fc99d5f6b82a3cd3edc73e83b34c904ebee5b5acb5f005"; - libraryHaskellDepends = [ base deepseq hw-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree#readme"; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.3"; - sha256 = "00d5e9565e24a056abd0158f2772e428abe883c459820554ba478140ad48c4bb"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, vector }: - mkDerivation { - pname = "hw-hedgehog"; - version = "0.1.0.5"; - sha256 = "71cda358bcc60392895b9a97107c7a16775e0f7a33671345cdf633b67c7dcef2"; - libraryHaskellDepends = [ base hedgehog vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hedgehog#readme"; - description = "Extra hedgehog functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - , transformers - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.9"; - sha256 = "7eae165a196163993c8c3168f840813a4184b2db81a2ae68efe8be83ddf9cce5"; - libraryHaskellDepends = [ - base call-stack hedgehog hspec HUnit transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.4"; - sha256 = "3f22951262e824a6801e4ceb9c01bf735b57a2e2ba8cec3834f0993dc474a046"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Additional facilities for Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, appar, base, binary, bytestring, containers - , generic-lens, hedgehog, hw-bits, iproute, lens - , optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hw-ip"; - version = "2.4.1.0"; - sha256 = "f01b8d9f8ea875685ff9e09d78df53e5a315cd98ec72ee8e48cfc6dfd10154fe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - appar base containers generic-lens hedgehog hw-bits iproute text - ]; - executableHaskellDepends = [ - appar base binary bytestring generic-lens lens optparse-applicative - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , bits-extra, bytestring, dlist, generic-lens, hw-balancedparens - , hw-bits, hw-json-simd, hw-json-simple-cursor - , hw-json-standard-cursor, hw-mquery, hw-parser, hw-prim - , hw-rankselect, hw-rankselect-base, hw-simd, lens, mmap - , optparse-applicative, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "1.3.1.1"; - sha256 = "b4ac50b6a494c483d9d880d29640911c2914a6425b8d68c7e56a5faee7471370"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base bits-extra bytestring dlist - hw-balancedparens hw-bits hw-json-simple-cursor - hw-json-standard-cursor hw-mquery hw-parser hw-prim hw-rankselect - hw-rankselect-base hw-simd mmap text vector word8 - ]; - executableHaskellDepends = [ - base bytestring dlist generic-lens hw-balancedparens hw-json-simd - hw-json-simple-cursor hw-json-standard-cursor hw-mquery hw-prim - hw-rankselect hw-rankselect-base lens mmap optparse-applicative - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-simd" = callPackage - ({ mkDerivation, base, bytestring, c2hs, hw-prim, lens - , optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-json-simd"; - version = "0.1.0.4"; - sha256 = "4a23de88454d5c076c1623c186bee8c9a6c1e2e8d58945b1291e09e5ff3ef3e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring hw-prim lens vector ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ - base bytestring hw-prim lens optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-json-simd#readme"; - description = "SIMD-based JSON semi-indexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-simple-cursor" = callPackage - ({ mkDerivation, base, bytestring, generic-lens, hw-balancedparens - , hw-bits, hw-json-simd, hw-prim, hw-rankselect, hw-rankselect-base - , lens, mmap, optparse-applicative, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json-simple-cursor"; - version = "0.1.0.2"; - sha256 = "f6d2e4e98c9fe3396aeadbd42d2918259b65f6ac5db9e8e62ad152876cf576fa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring hw-balancedparens hw-bits hw-prim hw-rankselect - hw-rankselect-base vector word8 - ]; - executableHaskellDepends = [ - base bytestring generic-lens hw-balancedparens hw-json-simd hw-prim - hw-rankselect hw-rankselect-base lens mmap optparse-applicative - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json-simple-cursor#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-standard-cursor" = callPackage - ({ mkDerivation, array, base, bits-extra, bytestring, generic-lens - , hw-balancedparens, hw-bits, hw-json-simd, hw-prim, hw-rankselect - , hw-rankselect-base, lens, mmap, optparse-applicative, stdenv - , text, vector, word8 - }: - mkDerivation { - pname = "hw-json-standard-cursor"; - version = "0.2.1.2"; - sha256 = "ced9b4e6f53c1e850e9ed19fc8b0e38c1d4b025b1ae832b67f06d87f97fbcbd1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bits-extra bytestring hw-balancedparens hw-bits - hw-json-simd hw-prim hw-rankselect hw-rankselect-base mmap vector - word8 - ]; - executableHaskellDepends = [ - base bytestring generic-lens hw-balancedparens hw-json-simd hw-prim - hw-rankselect hw-rankselect-base lens mmap optparse-applicative - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json-standard-cursor#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, lens, semigroups - , stdenv - }: - mkDerivation { - pname = "hw-mquery"; - version = "0.2.0.2"; - sha256 = "327a50c2ddf1d106cd7350166fdf09b37b4232a9d24bb7e0bc8079366cf49ded"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base dlist lens semigroups - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Monadic query DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-packed-vector" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, generic-lens - , hw-bits, hw-prim, lens, optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-packed-vector"; - version = "0.2.0.1"; - sha256 = "cc55c7edebfda8d2c1f95ab33f9eca488a0092a2f2d96edc6b2c84ebd20a2888"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq hw-bits hw-prim vector - ]; - executableHaskellDepends = [ - base binary bytestring generic-lens hw-bits hw-prim lens - optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-packed-vector#readme"; - description = "Packed Vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim, stdenv - , text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.1.0.2"; - sha256 = "317c0ad35361835c8779593f284609d32d3784ecd2f5fe1ec64b0a3d489a0d9c"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, mmap - , semigroups, stdenv, transformers, unliftio-core, vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.39"; - sha256 = "4f0841600aab06250602189f94e33d11ec246db44c9cc4ffaa6a2c57f9f3c419"; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim mmap semigroups transformers - unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, generic-lens, hedgehog - , hspec, hw-balancedparens, hw-bits, hw-fingertree, hw-prim - , hw-rankselect-base, lens, mmap, mtl, optparse-applicative, stdenv - , vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.13.3.1"; - sha256 = "7a16c79dc51e413ab98dad20d808bb2da5be89df86019041da3f956922627015"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hedgehog hspec hw-balancedparens hw-bits hw-fingertree - hw-prim hw-rankselect-base vector - ]; - executableHaskellDepends = [ - base directory generic-lens hw-bits hw-prim hw-rankselect-base lens - mmap mtl optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, bitvec, hw-bits, hw-int, hw-prim - , hw-string-parse, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.3.0"; - sha256 = "ab44305ead0ba9c460cd86395ad206fcfce77f3610d7759b26f5b19f629d049e"; - libraryHaskellDepends = [ - base bits-extra bitvec hw-bits hw-int hw-prim hw-string-parse - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-simd" = callPackage - ({ mkDerivation, base, bits-extra, bytestring, c2hs, deepseq - , hw-bits, hw-prim, hw-rankselect, hw-rankselect-base, stdenv - , vector - }: - mkDerivation { - pname = "hw-simd"; - version = "0.1.1.5"; - sha256 = "cbe3475591e38ffe64db5fbc26999091d6f56d2a84c86c20976bf577221c1e5a"; - libraryHaskellDepends = [ - base bits-extra bytestring deepseq hw-bits hw-prim hw-rankselect - hw-rankselect-base vector - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-simd#readme"; - description = "SIMD library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-streams" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, hw-bits, hw-prim, mmap - , primitive, semigroups, stdenv, transformers, vector - }: - mkDerivation { - pname = "hw-streams"; - version = "0.0.0.12"; - sha256 = "a40673d42271b69ee630b9a85699f9cc043c06761af5e6d3db4938d81fb1fa20"; - libraryHaskellDepends = [ - base bytestring ghc-prim hw-bits hw-prim mmap primitive semigroups - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-streams#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-xml" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, cereal, containers, deepseq, generic-lens, ghc-prim - , hw-balancedparens, hw-bits, hw-parser, hw-prim, hw-rankselect - , hw-rankselect-base, lens, mmap, mtl, optparse-applicative - , resourcet, stdenv, text, transformers, vector, word8 - }: - mkDerivation { - pname = "hw-xml"; - version = "0.5.0.0"; - sha256 = "d6fb7e4381ad73bc116acbcfd8cd169dc1569c0f0bc2cffc31d0a7b652d01933"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring cereal containers - deepseq ghc-prim hw-balancedparens hw-bits hw-parser hw-prim - hw-rankselect hw-rankselect-base lens mmap mtl resourcet text - transformers vector word8 - ]; - executableHaskellDepends = [ - attoparsec base bytestring deepseq generic-lens hw-balancedparens - hw-bits hw-prim hw-rankselect lens mmap mtl optparse-applicative - resourcet text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-xml#readme"; - description = "XML parser based on succinct data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.18"; - sha256 = "721809d89bbcaf29b2bbe3b9cdbb54e6d6a30afe7509186061898f7e8b996620"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.4.0.0"; - sha256 = "f50ea1d5528025400507f9b181596f7b277e645a1e33ebbc659be22b244468ae"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.3"; - sha256 = "8dbb30a58799b1bf145e82b71be0f782b60e9ef55d0c5fd3d2a0c28028cc3f64"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection semigroupoids - semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, text, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.8"; - sha256 = "31fa47011c27cdad034fb691f232209b857774489a2eaf189e075bf9fced8925"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers text unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.3"; - sha256 = "13bf923ad64d5dd1c517a64c0fd017fe94951a18ebbfe7e587b11e3ad6ebd5fd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, Cabal, random, stdenv - , template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.4"; - sha256 = "5b1f93482bc5ed85bbe04a1c63fa8bee6d4156b79cee43f812db92765fa1666e"; - setupHaskellDepends = [ base bytestring Cabal random ]; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, stdenv }: - mkDerivation { - pname = "incremental-parser"; - version = "0.3.3"; - sha256 = "d15c43000e923d79593c2b39e196e7f780c2f22d955aa34742fb0813ecfab8f8"; - libraryHaskellDepends = [ base monoid-subclasses ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.5.0.1"; - sha256 = "a1582cc6b705170bab6ea5cbe360530641ae94a31714a61b56c5f2067ee4ec36"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed"; - version = "0.1.3"; - sha256 = "ef84090ec6bf79e7dc6e9d570fc370c9eea6cd251d3c023979f6e1f8d3fbf5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reinerp/indexed"; - description = "Haskell98 indexed functors, monads, comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.1.2"; - sha256 = "d896ae5b3919a7a9fecdd9336e8f330d055fbdae4821be04b7c1266ccaa07d10"; - revision = "1"; - editedCabalFile = "198hmw2m3539vmh3s58d33h6vl5d0fqpdms8rp8cwj196diipjlc"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-profunctors" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed-profunctors"; - version = "0.1"; - sha256 = "31dfb4319dff84199344000b1efad75158eeac17ddcbb27f91735e958591bb65"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities for indexed profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "infer-license" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, text - , text-metrics - }: - mkDerivation { - pname = "infer-license"; - version = "0.2.0"; - sha256 = "12e6fe616575159c03cf6fd4a4f30021ecf264a529ab4e4edd6e96e296a98e72"; - libraryHaskellDepends = [ - base directory filepath text text-metrics - ]; - doHaddock = false; - doCheck = false; - description = "Infer software license from a given license file"; - license = stdenv.lib.licenses.mit; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.5"; - sha256 = "6b5bc532f559df769f1a97747e6770ba0777e0efd24c96c22ceb6da1781cb839"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.7.1.1"; - sha256 = "a8236bd703503a88e8421a74ba9e23afd3eb8d7b918c50e828acd36bdfa21f97"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.4.1"; - sha256 = "14293c2a209f938cc3e779132f3411c330636a91b1a58549a154c025518c7c57"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inj" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "inj"; - version = "1.0"; - sha256 = "4012310e5e80d4f4eb11ec73aeda311f7cb94a5c68e7393bfb3b99513cd61ab6"; - doHaddock = false; - doCheck = false; - description = "A class for injective (one-to-one) functions"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.9.0.0"; - sha256 = "061b089a087d7ce9c38b3f13c9c7046526c8651ebbd5dff889b0b31d14c3d320"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , optics-core, optics-extra, semigroupoids, semigroups, stdenv - , text, transformers, unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.3"; - sha256 = "33022337aed2f5c7beb320af3e8af846bbba450b7cb712eb0dac7f8a78d9078c"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens optics-core optics-extra - semigroupoids semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.4.2.2"; - sha256 = "d78fcf2129ee1bccd184069e98deacaf7f41afaa292f8aa082a6477353faf7ae"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "int-cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "int-cast"; - version = "0.2.0.0"; - sha256 = "e006956a08b751a996a92828ccb728b7237c9c435c4b35b5169eb8d44ac51969"; - revision = "2"; - editedCabalFile = "1fhc91170q9q9k628wc3dqzdvxfjs97jzg5x7g0ndaqnh60l8cy5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/int-cast"; - description = "Checked conversions between integral types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.3"; - sha256 = "5ae262018698af35bb74916fad170d96d3eb44669c72ed36db9a19a3392cec16"; - revision = "2"; - editedCabalFile = "0a6j3313vz7n7dn8abddyib4jggblaq89f87ib4imdwjxjajbm33"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.1.1"; - sha256 = "c5735cf6cde9439188890290e2d01dd40fabca670ecf17b70e12dc9e8aa33d20"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolator" = callPackage - ({ mkDerivation, aeson, base, containers, either, mono-traversable - , mtl, product-profunctors, profunctors, QuickCheck, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "interpolator"; - version = "1.0.0"; - sha256 = "675195c365ef1bddcbc4f21d5873f3b2db1c27e2c20cf2542da2a8f598d76a4e"; - libraryHaskellDepends = [ - aeson base containers either mono-traversable mtl - product-profunctors profunctors QuickCheck template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvision-insights/interpolator"; - description = "Runtime interpolation of environment variables in records using profunctors"; - license = stdenv.lib.licenses.mit; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.9"; - sha256 = "444345c3c3f7dfb5e2875646700b2d2cf6e7f90dcb1c54cb8fdd6946012cbf6c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intro" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, dlist - , extra, hashable, mtl, safe, stdenv, text, transformers - , unordered-containers, writer-cps-mtl - }: - mkDerivation { - pname = "intro"; - version = "0.6.0.1"; - sha256 = "c75c1675adc940831f144a1b2589632853ed5d8f7fcce95397f7624f6d336ace"; - libraryHaskellDepends = [ - base bytestring containers deepseq dlist extra hashable mtl safe - text transformers unordered-containers writer-cps-mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/intro#readme"; - description = "Safe and minimal prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "intset-imperative" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "intset-imperative"; - version = "0.1.0.0"; - sha256 = "ae549187370f562724f453965519abf65abd3159f70b4715aa6079da48099042"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-intset-imperative#readme"; - description = "An imperative integer set written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.3"; - sha256 = "d73e5def38da9fdd85def073857aa5f4b1d3b0c2df05c43d58a677cca02d440c"; - revision = "1"; - editedCabalFile = "0sjy375npw6lqcckhyicizzv91v8jh3ca5yjkygiaj22bw5k8c74"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.1.0"; - sha256 = "8aa2f0afb83ee2e43c472509ecd45475b9ed4409dfaec16eb781f44152f6ebb0"; - revision = "1"; - editedCabalFile = "0n0qs5lgryh3zxy73j3qbpnxand43yd2bj6pclvyii8apqqp901a"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, byteslice, bytesmith - , bytestring, deepseq, hashable, natural-arithmetic, primitive - , small-bytearray-builder, stdenv, text, text-short, vector - , wide-word - }: - mkDerivation { - pname = "ip"; - version = "1.7.0"; - sha256 = "62423240370663c349eb339ff6000c715e95329cd4718ee696711a6d0d2aa8a2"; - revision = "1"; - editedCabalFile = "1yjz4822vq22zh8mb96ccplqmm6rxrvy334n34gwyq0cfddsilr0"; - libraryHaskellDepends = [ - aeson attoparsec base byteslice bytesmith bytestring deepseq - hashable natural-arithmetic primitive small-bytearray-builder text - text-short vector wide-word - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "1.0.1"; - sha256 = "dfb563510d7db46aeb69897d3e550317e3a95c79cb55032c816e9dbdeb94b25f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.8"; - sha256 = "4dad14f83bc770554609ac68c3b7bc7cccea4bb2ba2f2085c6e9623378fb584c"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipynb" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , containers, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "ipynb"; - version = "0.1"; - sha256 = "45f27b613690ee8b0122bc4686fffbf36e50bfdc378385eb3805131a3f6c4a35"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring containers text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Data structure for working with Jupyter notebooks (ipynb)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, cereal-text - , containers, cryptonite, directory, filepath, memory, mtl, process - , stdenv, temporary, text, transformers, unordered-containers, uuid - , zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.10.1.0"; - sha256 = "bc11976e4850ef2c1e1c92a3fe04e481297303f13c111ac793eec52d0b7c5e0f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal cereal-text containers cryptonite - directory filepath memory mtl process temporary text transformers - unordered-containers uuid zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.1.1"; - sha256 = "b8396ef8f7afbde0ae8c888e81e42ec89c803ae3ba5cd75dfa2c1ad6d2c24123"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.4"; - sha256 = "8149ee5e5e075662971c4cbd7059a0825b124ac1ea6fb816b8cbb2b6586b4a2b"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.5"; - sha256 = "f2cd444b2be68402c773a4b451912817f06d33093aea691b42ebeed3630ff0c8"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.4"; - sha256 = "42aeb281fb62a08bbaca4b20801d55879b0688e25a92962158fbd0578bd21405"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.5"; - sha256 = "8d1fce7dd9b755367f8236d91c94c5bb212a5fea9d8bc32696774cff5e7f4188"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jira-wiki-markup" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv, text }: - mkDerivation { - pname = "jira-wiki-markup"; - version = "1.0.0"; - sha256 = "c8554ef6c2a2bbf8d6c71873f6d69aa6d8f691bb5cf63a46d4c13cac999482ea"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl parsec text ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/jira-wiki-markup"; - description = "Handle Jira wiki markup"; - license = stdenv.lib.licenses.mit; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.8.0"; - sha256 = "4fb098e8ec18ebec7ab93f229dbaca992c704d006bc0f1ca98e8f00a579db6c2"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-dgtable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-dgtable"; - version = "0.5.2"; - sha256 = "e28dd65bee8083b17210134e22e01c6349dc33c3b7bd17705973cd014e9f20ac"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-dgtable#readme"; - description = "Obtain minified jquery.dgtable code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-alt" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "json-alt"; - version = "1.0.0"; - sha256 = "b850533adf93fbda01d4aee1f0116cfd67bfce17baf0a035ddc20cfe4a5d75c7"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Union 'alternative' or Either that has untagged JSON encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.7"; - sha256 = "87e9103e5e8b63a26b22641b142e9e8bd0ad0cb63cca2776094b034a74fc5a66"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, deepseq, hashable, monad-logger, mtl, QuickCheck - , stdenv, stm-conduit, text, time, unliftio, unordered-containers - , vector - }: - mkDerivation { - pname = "json-rpc"; - version = "1.0.1"; - sha256 = "101d24d637ddd874edc0c530ee53ff73b67f1db010e4f96459315cf1d5bff0bd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra deepseq - hashable monad-logger mtl QuickCheck stm-conduit text time unliftio - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring conduit conduit-extra monad-logger mtl - QuickCheck stm-conduit text time unliftio unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/json-rpc.git#readme"; - description = "Fully-featured JSON-RPC 2.0 library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.5"; - sha256 = "9f917ba4b01e1a439482cda9be9fff865043915067cc26571e3df682a3bf3ac0"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jsonpath" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "jsonpath"; - version = "0.1.0.2"; - sha256 = "8c0493694379edf0d4e51d042674247eeb2612cae09a94ec48588b8fd24d08ad"; - libraryHaskellDepends = [ - aeson attoparsec base text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/akshaymankar/jsonpath-hs#readme"; - description = "Library to parse and execute JSONPath"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "jwt" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cryptonite - , http-types, memory, network-uri, scientific, semigroups, stdenv - , text, time, unordered-containers, vector, x509, x509-store - }: - mkDerivation { - pname = "jwt"; - version = "0.10.0"; - sha256 = "bc1c7b18ba3366dd537f0ccd46e887e5892591a2a60b5ccbc15289ea70c52ea8"; - revision = "2"; - editedCabalFile = "1ld5dh4x3sb28416bk3k39k46vmx1s7agk17v7cb5cxam4hj3c1c"; - libraryHaskellDepends = [ - aeson base bytestring containers cryptonite http-types memory - network-uri scientific semigroups text time unordered-containers - vector x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/puffnfresh/haskell-jwt"; - description = "JSON Web Token (JWT) decoding and encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, free, invariant, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.2"; - sha256 = "6b727e586f744b96529415eeabc745dfe05feea61f6b6bad90c224c879f4dbd3"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive free invariant mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.0.2"; - sha256 = "bef2860c257cb5380d61faeb33cb337ba253b42ce73ad995ef73395eb945f204"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "katip" = callPackage - ({ mkDerivation, aeson, async, auto-update, base, bytestring - , containers, either, hostname, microlens, microlens-th - , monad-control, mtl, old-locale, resourcet, safe-exceptions - , scientific, semigroups, stdenv, stm, string-conv - , template-haskell, text, time, transformers, transformers-base - , transformers-compat, unix, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "katip"; - version = "0.8.3.0"; - sha256 = "a085b3d83f841bde5f479c71db7cc6d6a287cc012f47785ce6eadcfc2e64f872"; - libraryHaskellDepends = [ - aeson async auto-update base bytestring containers either hostname - microlens microlens-th monad-control mtl old-locale resourcet - safe-exceptions scientific semigroups stm string-conv - template-haskell text time transformers transformers-base - transformers-compat unix unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/katip"; - description = "A structured logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kazura-queue" = callPackage - ({ mkDerivation, atomic-primops, base, primitive, stdenv }: - mkDerivation { - pname = "kazura-queue"; - version = "0.1.0.4"; - sha256 = "5e5441f0eee97a4752f485ad2a3e7c0add7a2928190d416b8f83e2939a59237e"; - libraryHaskellDepends = [ atomic-primops base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/asakamirai/kazura-queue#readme"; - description = "Fast concurrent queues much inspired by unagi-chan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12.2"; - sha256 = "b2510a635fbbcc53475611fd286801f3d898bb339720d722fc1506d11a6084d7"; - revision = "1"; - editedCabalFile = "1cx5bwd32mpqdgllrkld254a8ydks196m3j9dvm3razg8mxnz2x6"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-apply" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kind-apply"; - version = "0.3.2.0"; - sha256 = "98dd45968f777f08aa4e6a8fe20dfa0b345ab474b92ac37835503589a2930073"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities to work with lists of types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics" = callPackage - ({ mkDerivation, base, kind-apply, stdenv }: - mkDerivation { - pname = "kind-generics"; - version = "0.4.0.0"; - sha256 = "17ba4715d198fde1ca499d5441c8ae1be5a4535e18006f10d39fb9b7dbbe79f0"; - libraryHaskellDepends = [ base kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming in GHC style for arbitrary kinds and GADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics-th" = callPackage - ({ mkDerivation, base, ghc-prim, kind-generics, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "kind-generics-th"; - version = "0.2.1.0"; - sha256 = "6b52311122db58462ba13bb739902757587b415a0222e6a0e8ddaf50f9e7ba22"; - libraryHaskellDepends = [ - base ghc-prim kind-generics template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - description = "Template Haskell support for generating `GenericK` instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lackey" = callPackage - ({ mkDerivation, base, servant, servant-foreign, stdenv, text }: - mkDerivation { - pname = "lackey"; - version = "1.0.10"; - sha256 = "b219d2cf93824de15eab7ef359c1e5dcf24c4b5b203660a9f645d024b8cedb8e"; - libraryHaskellDepends = [ base servant servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby clients from Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.2.0"; - sha256 = "578b5b8bff09bcf3cde8f26026cef02633aa5d93a72ab007d5cd3967951a18af"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath text transformers - wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.8.3"; - sha256 = "f3d66c18abececb468f2b069f0c3274709456fde6938eace46dacf1c9b14202e"; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath pretty - process syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2.1"; - sha256 = "65c485ede8219236f58faba305123b2652e64994c8e297861b25490ec8229b43"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.7.0.0"; - sha256 = "d39e80675c40529574ee93c2bdec1a86497da7a53f39c7d174c30b27e7c57795"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, deepseq, lens, parsec-class, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.2.0"; - sha256 = "fd67425268707de245e4b1f5dfee61e091c417106c95dbbe188abc16c23800d3"; - libraryHaskellDepends = [ - base deepseq lens parsec-class pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and functions to represent the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-protobuf" = callPackage - ({ mkDerivation, base, megaparsec, stdenv, text }: - mkDerivation { - pname = "language-protobuf"; - version = "1.0"; - sha256 = "880948b876f6df9a0d7f5886857e37dd59ea45527a14ab189dc7652d0c62e9e1"; - libraryHaskellDepends = [ base megaparsec text ]; - doHaddock = false; - doCheck = false; - description = "Language definition and parser for Protocol Buffers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "language-puppet" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, async, attoparsec, base - , base16-bytestring, bytestring, case-insensitive, containers - , cryptonite, directory, filecache, filepath, formatting, Glob - , hashable, hruby, hslogger, http-api-data, http-client, lens - , lens-aeson, megaparsec, memory, mtl, operational - , optparse-applicative, parsec, parser-combinators, pcre-utils - , protolude, random, regex-pcre-builtin, scientific, servant - , servant-client, split, stdenv, stm, strict-base-types, text, time - , transformers, unix, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "language-puppet"; - version = "1.4.6.1"; - sha256 = "add32ccaee7b3e6cd4151f787e8c8fb65d055ba63f58f809739cd16fa9732e70"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring - case-insensitive containers cryptonite directory filecache filepath - formatting hashable hruby hslogger http-api-data http-client lens - lens-aeson megaparsec memory mtl operational parsec - parser-combinators pcre-utils protolude random regex-pcre-builtin - scientific servant servant-client split stm strict-base-types text - time transformers unix unordered-containers vector yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint async base bytestring containers Glob hslogger - http-client lens mtl optparse-applicative regex-pcre-builtin - strict-base-types text transformers unordered-containers vector - yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "Tools to parse and evaluate the Puppet DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-carray" = callPackage - ({ mkDerivation, base, carray, lapack-ffi, netlib-carray - , netlib-ffi, stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "lapack-carray"; - version = "0.0.3"; - sha256 = "510ffbbe349add60dd147181a7517f57071b71f7691e299255b95433dbe48dd0"; - libraryHaskellDepends = [ - base carray lapack-ffi netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-carray/"; - description = "Auto-generated interface to Fortran LAPACK via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-comfort-array" = callPackage - ({ mkDerivation, base, comfort-array, lapack-ffi - , netlib-comfort-array, netlib-ffi, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "lapack-comfort-array"; - version = "0.0.0.1"; - sha256 = "01d2c8c33ab89193e2531db0fdc46433885b335eb86552ea5f5a9c83c75ac94e"; - libraryHaskellDepends = [ - base comfort-array lapack-ffi netlib-comfort-array netlib-ffi - storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-comfort-array/"; - description = "Auto-generated interface to Fortran LAPACK via comfort-array"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.2.1"; - sha256 = "b03d22ca5d322ec50418e5e8e937b640910fd76a855722ec63ca1850f5256542"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.4"; - sha256 = "1c2a8b9cefebc3ce5493071670d9c71e4fc30d6527d6a6c92174ce4c39a0a082"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , integer-logarithms, QuickCheck, semigroupoids, stdenv, tagged - , transformers, universe-base, universe-reverse-instances - , unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "2.0.1"; - sha256 = "dee5ab7c2bd16465132cf03e86d93e07bc8c67248171ea65448fd284a03bf630"; - revision = "1"; - editedCabalFile = "1zfxq1gpfv0vb7arw0hw2nf61hyjwl8c72jng4v61xywvqh9i36q"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable integer-logarithms - QuickCheck semigroupoids tagged transformers universe-base - universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lawful" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "lawful"; - version = "0.1.0.0"; - sha256 = "0056794106bbf7fa4d8d4d943fdc75a39b8a5ac1e18ceac2909183a1a7cc8d04"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/lawful#readme"; - description = "Assert the lawfulness of your typeclass instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazy-csv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "lazy-csv"; - version = "0.5.1"; - sha256 = "888bcbdd43886099f197c1c246cea324c97c076d4839e97eea0b8d6d7b49649f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/lazy-csv"; - description = "Efficient lazy parsers for CSV (comma-separated values)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.9.1"; - sha256 = "abcd854763a828ec1f3008c41612a86deb2fc0bb4eaaa041951b6937f155c90e"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Enumerative property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck-instances" = callPackage - ({ mkDerivation, array, base, bytestring, containers, leancheck - , nats, stdenv, text, time - }: - mkDerivation { - pname = "leancheck-instances"; - version = "0.0.3"; - sha256 = "a671ee53d343208ef3dccc93f3f64b1ed8e9ed4f6c509072fa4ab2b69de0cac0"; - libraryHaskellDepends = [ - array base bytestring containers leancheck nats text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck-instances#readme"; - description = "Common LeanCheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat, type-equality - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.18.1"; - sha256 = "3107a3d5165a9762269d7c9e39205d2c4c2aaebc1900ff44a0066c31a492bdd2"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat type-equality - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.4"; - sha256 = "a3c5d82a392939a4dcb37da50e31bf8697580c420cba40ffd08e91067423cf1b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.1"; - sha256 = "f7bc9c6f95735b523afac6316195d06b31f9b85c84918960096e4eecdb6cc90e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "2.0.0"; - sha256 = "6793f2a5c5030f02258532043d57eac42318cd7f9cef47f6720a7b99276f03db"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "2.0.0"; - sha256 = "19b4fcd3bd37dd0056c112a9b16cf405644fabd6652013c61a5078380ed2265a"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 2022 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.2"; - sha256 = "9c275afad37a5064b9a13c6207ee2307f6ccccc3a5517c0fae84524bad65b0e6"; - revision = "1"; - editedCabalFile = "06sbynlrbqb51rn392w1q82qww1f6k8mmw1npgla2wc6s39k4977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-misc" = callPackage - ({ mkDerivation, base, lens, stdenv, tagged, template-haskell }: - mkDerivation { - pname = "lens-misc"; - version = "0.0.2.0"; - sha256 = "59925fe9125e297df0f1afcc8ac0f25de14fd017f7848ac2687ed63850ecd8cb"; - libraryHaskellDepends = [ base lens tagged template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/lens-misc#readme"; - description = "Miscellaneous lens utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.1"; - sha256 = "0d946baa2be86452fe0a2185575e1d00752a075c92c48acdb3ed7833cd1ec730"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.4.2.0"; - sha256 = "8e9a0d55f51eda0683a7b2b4d466bf21a46d57eb6d3fd9ed442251da3b4ddf8f"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale - , safe-exceptions, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.0.10"; - sha256 = "6b2e35a206a23c43e7d1ad15ac2f330851012e6070c422e39e68ee60eb41c26f"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale safe-exceptions text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.1"; - sha256 = "ab05fa889e52ae0cbefcde33a56602e69bd6e656e9d5511c1def7ffc10075862"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.3"; - sha256 = "671b2e2ece639e9a8e45af49cfda8fcb074f43fb74b1e2f545bd405a665c5964"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.4"; - sha256 = "c9c988c2078f9d83034b26f487182869aaaa67c4b1e340c306b35dc9410b9433"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.9"; - sha256 = "c5a9b209d31fc00b62d43c1de34fb59f9f115c51e6db43353f76a4825fc4fe40"; - revision = "1"; - editedCabalFile = "13ff7xvw25fpsikcvf0nly2ca614wzv10qyg4sh378p5r8rvfgka"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linenoise" = callPackage - ({ mkDerivation, base, bytestring, exceptions, mtl, stdenv, text - , unliftio-core - }: - mkDerivation { - pname = "linenoise"; - version = "0.3.1"; - sha256 = "60e3f9b7e066c582b017155d0f26ade5131228f02c8e75afff5c24b1743d9ffb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring exceptions mtl text unliftio-core - ]; - executableHaskellDepends = [ - base bytestring exceptions mtl text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/haskell-linenoise#readme"; - description = "A lightweight readline-replacement library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.0"; - sha256 = "1412db341c574b6a18e2fa23ee5e3ca6f32719409ea602a6215f1fd0aafb73e7"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Work with linux namespaces: create new or enter existing ones"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-singleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "list-singleton"; - version = "1.0.0.2"; - sha256 = "58417647c883e15dbc006d4d00c7ff73cf22db3589e2b9a9143a9493dd30835a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Easily and clearly create lists with only one element in them"; - license = stdenv.lib.licenses.isc; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, foldl, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.4"; - sha256 = "3863844bf18a47997dce5972df30b6a38d257cbc168216be2233a40b33c15577"; - libraryHaskellDepends = [ - base foldl mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , containers, exceptions, llvm-config, llvm-hs-pure, mtl, stdenv - , template-haskell, transformers, utf8-string - }: - mkDerivation { - pname = "llvm-hs"; - version = "9.0.1"; - sha256 = "00e0cf4d4b520f8cf751073e4cbca4c1de85aeb67d6b596bf72cc142e0eb431c"; - setupHaskellDepends = [ base Cabal containers ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers exceptions llvm-hs-pure - mtl template-haskell transformers utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "General purpose LLVM bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "9.0.0"; - sha256 = "6e8ea5c8b192d58932cfeeaf7b3e592fea185e7a83e315c5bfff968ca02aab5f"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.1.0"; - sha256 = "e3ec6dfafeb9be454d010e1a4330b5a66beb8fb9496a9b70a42e9b18ea0494a0"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.8.0.0"; - sha256 = "a68aee51f113fbaebc1153aac65bb438b013601e415b83d69b8668e3cd4ea394"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.13"; - sha256 = "7babb1b4c2fb8da82a459fbf89433e900ee7742803baabba4608940974465447"; - revision = "1"; - editedCabalFile = "0wcy54axpnym55f1skagnbmdpw6y2ys6zvn99x8i6qcfzw00i6l9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base, unliftio-core - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.8"; - sha256 = "0397c88afa2df317eb0867b8ac4718f04ffd49d5d3a7199b728981cfb6df4a4f"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.7.0.2"; - sha256 = "ccc198a05563a4d8fc145ecde8b43a83599b3bcb032d2614a8e852f0ba6ecff5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/logict#readme"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "loopbreaker" = callPackage - ({ mkDerivation, base, containers, ghc, stdenv, syb }: - mkDerivation { - pname = "loopbreaker"; - version = "0.1.1.1"; - sha256 = "18d81ab891e9d5aa23d26a73d977284bb9a69161b5008bfd2e5613be011dbe47"; - libraryHaskellDepends = [ base containers ghc syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/polysemy-research/loopbreaker#readme"; - description = "inline self-recursive definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucache" = callPackage - ({ mkDerivation, base, containers, contravariant, stdenv }: - mkDerivation { - pname = "lrucache"; - version = "1.2.0.1"; - sha256 = "fc1ab2375eeaae181d838095354d3ef77d4072815006a285dd39a165a5855b85"; - libraryHaskellDepends = [ base containers contravariant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chowells79/lrucache"; - description = "a simple, pure LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.12"; - sha256 = "304bc31b4b5d65b0e7bc4ad88ca2a2c84f64e92fa9aee7f3591486d67cb4dc94"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.2.2"; - sha256 = "83399f85c9461c44c8dd6d34a076fdefa7f9cb1f92dba5f3d03989233c45247e"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid - Bootstrap, Rdash, Vega-Lite, Leaflet JS, Email"; - license = stdenv.lib.licenses.mit; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.7"; - sha256 = "0bc0fa74ba656131881a7e2ebb3d7649ab9835d8cc437f8d2e7284e4938c37fe"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.2.0.1"; - sha256 = "cf06f5934e374e1972f2cc76701c03d67c5536034d9ad32cace4e03819a57842"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7.0.1"; - sha256 = "88856f0ff7c523db03f70939a3ca55f3a827e8ee8ae3f795dc2c2c866fdb2e32"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.6"; - sha256 = "f1a70a23c0866b75d609b2c818b426712d7a2b4256f43a3d5da517e853e279cd"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.4"; - sha256 = "c2e3e742be2b4af6ed62be262cab59d2366556e120b1f8856cff6e7ef270fdd4"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest - , data-default-class, deepseq, exceptions, primitive, scheduler - , stdenv, unliftio-core, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.4.4.0"; - sha256 = "5634e8da99f47233f9d8d46582bab1d1ce81317df30561b5cccbe3987e701c8e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq exceptions primitive - scheduler unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , directory, filepath, JuicyPixels, massiv, netpbm, process, stdenv - , vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.9.0"; - sha256 = "79fca7336f0c72da798e4f0457da3f5c31cb61aa1efa1b2e786343b5d5e2f46a"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq directory filepath - JuicyPixels massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-test" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , exceptions, hspec, massiv, primitive, QuickCheck, scheduler - , stdenv, unliftio, vector - }: - mkDerivation { - pname = "massiv-test"; - version = "0.1.1"; - sha256 = "71877af5499dd6b6e69eb809526ec9bf0debc9e4906977795f1ff24a815be33b"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq exceptions hspec massiv - primitive QuickCheck scheduler unliftio vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Library that contains generators, properties and tests for Massiv Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, data-default-class, deepseq, primitive - , stdenv, vector, vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.3.3.0"; - sha256 = "63c599ea76a4cd7fc41d564a37c09d1f7806085f48028bc02779300d885eb6e8"; - libraryHaskellDepends = [ - base data-default-class deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Collection of tools for numeric computations"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matplotlib" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , filepath, process, split, stdenv, temporary - }: - mkDerivation { - pname = "matplotlib"; - version = "0.7.5"; - sha256 = "9a05e177ce4a0d39f117e89af2390c42a09ec7ef1be39c66c6f45c59a4c9d247"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq filepath process split - temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abarbu/matplotlib-haskell"; - description = "Bindings to Matplotlib; a Python plotting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.5.0"; - sha256 = "fd013f0b061f7fd006242340fb6bc936114c8fc7d255ba58bd54cd1d66391d4d"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.1.3"; - sha256 = "32b79a75c8cf5b21a40ea51bc091ee5fd4809483d933b0dbc578528ccf8e924d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "matrix-static" = callPackage - ({ mkDerivation, base, deepseq, ghc-typelits-natnormalise, matrix - , stdenv, vector - }: - mkDerivation { - pname = "matrix-static"; - version = "0.2.1"; - sha256 = "36f4106836350932425e985472b54d913d679496c3758b7efa00a3a0d57006cb"; - libraryHaskellDepends = [ - base deepseq ghc-typelits-natnormalise matrix vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wchresta/matrix-static#readme"; - description = "Type-safe matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox-utility" = callPackage - ({ mkDerivation, base, bytestring, hsemail, non-empty, parsec - , spreadsheet, stdenv, time, utility-ht - }: - mkDerivation { - pname = "mbox-utility"; - version = "0.0.3.1"; - sha256 = "22a938ab138641477017bfd2237219934c6d8a52357f2713d6da8d47e08a096e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring hsemail non-empty parsec spreadsheet time - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "List contents of an mbox file containing e-mails"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "7.0.5"; - sha256 = "f2dc2ea9da25f726c0650051f4fe3cec0003a97dfa37b62a3f1acdba580c1d2f"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "megaparsec-tests" = callPackage - ({ mkDerivation, base, bytestring, containers, hspec - , hspec-expectations, hspec-megaparsec, megaparsec, mtl, QuickCheck - , stdenv, text, transformers - }: - mkDerivation { - pname = "megaparsec-tests"; - version = "7.0.5"; - sha256 = "d847a88de94968ba7d7a95ce13799afeecf5f1bc61c17de7c668e02544707c86"; - revision = "1"; - editedCabalFile = "1mayv955ipg94hbsix3dvpp1c2aay860h9zpg38qjmfiaks4zpjj"; - libraryHaskellDepends = [ - base bytestring containers hspec hspec-expectations - hspec-megaparsec megaparsec mtl QuickCheck text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Test utilities and the test suite of Megaparsec"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.15.0"; - sha256 = "e3ff892c1a94708954d0bb2c4f4ab81bc0f505352d95095319c462db1aeb3529"; - revision = "1"; - editedCabalFile = "136qfj1cbg9571mlwywaqml75ijx3pcgvbpbgwxrqsl71ssj8w5y"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.2"; - sha256 = "0f4ed76a96029413aef856a00defaa5d75be196a12a0dc1e75b9a0a866607779"; - revision = "4"; - editedCabalFile = "1bx3xrafmf82b9wlvhggv87fwqgpgqxjdgkk9r5b323m9ci2gign"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "messagepack" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , stdenv - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.4"; - sha256 = "939590c05d5b0831b3b4796f2e1a070e290982c92b2009f2aa1ef5f4b05b5d7c"; - revision = "2"; - editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rodrigosetti/messagepack"; - description = "Serialize instance for Message Pack Object"; - license = stdenv.lib.licenses.mit; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.11.2"; - sha256 = "4e484d4a73c7c5176ccfdacc29aec7399352cac1c7e8924d5123857cf36ddffc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "A tiny lens library with no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0.4"; - sha256 = "dcdf98e5c86259fe524241345560a6baf2f5f00b08040271f034da55e604c370"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.2"; - sha256 = "b57848cf35305f972f450fb6fb743605a9e82a818f3549f06cdfe5d336c4c9db"; - libraryHaskellDepends = [ base microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.11.1"; - sha256 = "3999ce53ba263d0a06d4a0cf5f634d4617a0188c17e20bedfbe7c23ee0cb03a6"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.2.0.1"; - sha256 = "d79de8b228631525da3c17999d3b936eb8f919f2303348151b6cd1d27c3f5e46"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.4.0"; - sha256 = "bdba20fa04a3dd7275b912d44e320dc2e53efd38c590f9b705ea9accb2c62061"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens + all batteries included (best for apps)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-process" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, filepath, microlens - , process, stdenv - }: - mkDerivation { - pname = "microlens-process"; - version = "0.2.0.1"; - sha256 = "b9f03fee93e2c9cf84c65de88159068bbde9b095b92a4331228a9ab380c6363f"; - revision = "2"; - editedCabalFile = "0jy50p09axr5gwkhc2qnlragpzvy3s6b947s7r3354ya2byli4dz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base filepath microlens process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/lens-process/tree/master/microlens"; - description = "Micro-optics for the process library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.3.2"; - sha256 = "9d900d03e7f704208031b310584ec3e4796fe1133e46205418826847723ce273"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, time }: - mkDerivation { - pname = "microspec"; - version = "0.2.1.3"; - sha256 = "8bf530a4bce642431014d5395e4c8ab412bed44fe6caa6c2e1239ea9577b2518"; - libraryHaskellDepends = [ base QuickCheck time ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midair" = callPackage - ({ mkDerivation, base, containers, safe, stdenv, stm }: - mkDerivation { - pname = "midair"; - version = "0.2.0.1"; - sha256 = "421f941bc6b4a4d27c3de2d618557188e59e929b56860dade281e89b555172b6"; - libraryHaskellDepends = [ base containers safe stm ]; - doHaddock = false; - doCheck = false; - description = "Hot-swappable FRP"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.5.0"; - sha256 = "10b038e6c11fd1beacd3c9a429a9a244e3c50e1715f8d92d2a1eb9b6b600436f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.9"; - sha256 = "0a32435169ef4ba59f4a4b8addfd0c04479410854d1b8d69a1e38fb389ba71d2"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mini-egison" = callPackage - ({ mkDerivation, base, containers, haskell-src-meta, regex-compat - , sort, split, stdenv, template-haskell - }: - mkDerivation { - pname = "mini-egison"; - version = "0.1.6"; - sha256 = "92a642537211290967bd7f3c83c4c71e82084b1f042ac66340d1da7eb8456420"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers haskell-src-meta regex-compat split - template-haskell - ]; - executableHaskellDepends = [ base sort ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egison/egison-haskell#readme"; - description = "Template Haskell Implementation of Egison Pattern Matching"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimal-configuration" = callPackage - ({ mkDerivation, base, containers, directory, filepath, stdenv }: - mkDerivation { - pname = "minimal-configuration"; - version = "0.1.4"; - sha256 = "7c0ed6b0d3737ad1d3738b545aa4dc582d1831cf7d2018c8ead2ace2eb1ebf2f"; - libraryHaskellDepends = [ base containers directory filepath ]; - doHaddock = false; - doCheck = false; - description = "Minimal ini like configuration library with a few extras"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.2.1.0"; - sha256 = "127eb21b889ca9411bee0612ac8aebac7992b9f790dc94b83e28312441d317de"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, minimorph, stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.5.0.0"; - sha256 = "ee30db437e6f7012b8862061c842dfaae7e52ea46832fd743e891ca04999fa41"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base binary containers minimorph text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - configureFlags = [ "-fwin32-2-5-3" ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, hspec, hspec-smallcheck, mtl, QuickCheck - , smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.4.0.1"; - sha256 = "af304e7ef49d57a42a10af6312e7968eaaf156de75f9867dc9968cd2c8c2d381"; - libraryHaskellDepends = [ - base hspec hspec-smallcheck mtl QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "716ec75fc8eb573c9c6ab327a9658685f5131eacff69fbbc72289cdd0133e0ff"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers, deepseq - , dlist, email-validate, foldl, hashable, html-entity-map, lucid - , megaparsec, microlens, microlens-th, modern-uri, mtl - , parser-combinators, stdenv, text, text-metrics - , unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.7.1"; - sha256 = "d60458bd46649a5fa43da3ca25ccb38618adb7d392b29b018ce581c9042aec2a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers deepseq dlist email-validate - foldl hashable html-entity-map lucid megaparsec microlens - microlens-th modern-uri mtl parser-combinators text text-metrics - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.3"; - sha256 = "7923f7ad6260a05aaa8175b9f2a250f5bb63187427681171bd36d29a6cf2da65"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "mod" = callPackage - ({ mkDerivation, base, deepseq, integer-gmp, semirings, stdenv }: - mkDerivation { - pname = "mod"; - version = "0.1.0.0"; - sha256 = "ed85a18c8b2f571856e61f000bc15c5314b7d78ef608e10244edcb7204699b81"; - libraryHaskellDepends = [ base deepseq integer-gmp semirings ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/mod"; - description = "Fast type-safe modular arithmetic"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.3.1.0"; - sha256 = "05220a231996dc75fbfe126639499d0ac6765a23f59fff354ecadd9c85a227de"; - revision = "2"; - editedCabalFile = "0slfswzl4khpn0z8g7frn63gx7hw9n7nc3yff659q18nq7c6vjxd"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "modular" = callPackage - ({ mkDerivation, base, ghc-typelits-knownnat, stdenv }: - mkDerivation { - pname = "modular"; - version = "0.1.0.8"; - sha256 = "430b462330bd795c554f1fe87073022216abb0cea3a872fddd6e864faa3aefc5"; - libraryHaskellDepends = [ base ghc-typelits-knownnat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pgujjula/modular#readme"; - description = "Type-safe modular arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.31"; - sha256 = "adde9c21da5ca159c0240a91daccd228c18dc990ba0b2e229ba1b4029701992b"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.11"; - sha256 = "dba2d125ecebdee0600fd5f1b750f7ccec5345f3be6e20f7191efb876d48857f"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.5.1"; - sha256 = "c65a4a3c3e05757c251557b392f2cc7edcc09c2c46cbb0e72f4efe291eb85bff"; - libraryHaskellDepends = [ - array base containers primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.5"; - sha256 = "823ad5666cbcaefe2c6e0ff131daa0713dff9b3b534fb809643b869e5e4a15a9"; - revision = "1"; - editedCabalFile = "17l7zjykf5iqjmw1pq4iwls7v9x9d3in94iikxabx43q5l2iccsm"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-resumption" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv, transformers }: - mkDerivation { - pname = "monad-resumption"; - version = "0.1.4.0"; - sha256 = "b442bd7a36bb6b9fd35326dce8531446945221ff45b074eca7099806f16a8941"; - libraryHaskellDepends = [ base mmorph mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igraves/monad-resumption#readme"; - description = "Resumption and reactive resumption monads for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.15.1"; - sha256 = "c2df5b79ed2f88f2ee313e57c1d591d4463788e20d39e439297eec5ba5835ddf"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-keys" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, keys - , mono-traversable, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "mono-traversable-keys"; - version = "0.1.0"; - sha256 = "bc85929322e287a8d6c4ab2f8beede6d99417fc8c23c519b9719bbe68125d477"; - libraryHaskellDepends = [ - base bytestring containers hashable keys mono-traversable - semigroups text transformers unordered-containers vector - vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/mono-traversable-keys#readme"; - description = "Type-classes for interacting with monomorphic containers with a key"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "1.0"; - sha256 = "39b4df021cfa92cfe2294e10989c87baca5509add905ddd4d58f6407b969f0d8"; - revision = "1"; - editedCabalFile = "1d0mxmix206k4qxcprqvm0fk28p9x23dyr227fv94p8gyrf04zak"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "more-containers" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "more-containers"; - version = "0.2.2.0"; - sha256 = "07295037809930acccd73c8b15e73b28ac0342db18d780bc46c0f0c7dda693c4"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/more-containers"; - description = "A few more collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "morpheus-graphql" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, megaparsec - , mtl, scientific, stdenv, template-haskell, text - , th-lift-instances, transformers, unordered-containers, uuid - , vector, websockets - }: - mkDerivation { - pname = "morpheus-graphql"; - version = "0.10.0"; - sha256 = "e1714d5b7a5d64fb818734e38fe3b80c2065617978c88f6a1ba849aa9d4a56a9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers megaparsec mtl scientific - template-haskell text th-lift-instances transformers - unordered-containers uuid vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://morpheusgraphql.com"; - description = "Morpheus GraphQL"; - license = stdenv.lib.licenses.mit; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.2"; - sha256 = "1955398fe2115674f47f553b2caaf928c6aa3424271a5cd13bc191e54bfe3a9e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multiset" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "multiset"; - version = "0.3.4.3"; - sha256 = "79fcae15a5d3ce28f0b973ad90290f7451396e81cc92007456ce2bb49b9415c4"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "The Data.MultiSet container type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.2"; - sha256 = "c5422b078a17b6057c83d18c984d84e7b7974b73e658b9dfbc4f5ea6a49ed743"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur3" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "murmur3"; - version = "1.0.3"; - sha256 = "102c81e0e6ae604f51bccced6d2d493f4de0b65e856cd0492a17f9f8e4d51f2a"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plaprade/murmur3"; - description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.1"; - sha256 = "ac8bf93d36fc766f54a54b72ddf71d1ab90864ca86bdce3415d2e69823fdb348"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.1.0"; - sha256 = "a3ae5a66ae4be6d098f9194e7c83b3c21e885821a47a692c50885c4045be8429"; - libraryHaskellDepends = [ base mwc-random primitive transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.14.0.0"; - sha256 = "00370edaa60a51c86663868ecc2b1995824970001875cec458e9acc13511efa2"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mx-state-codes" = callPackage - ({ mkDerivation, aeson, base, stdenv, text }: - mkDerivation { - pname = "mx-state-codes"; - version = "1.0.0.0"; - sha256 = "06abe94b48c2c24f13ee31039bb37e0373b629adeb2ce20b0b1a6722203cbccb"; - libraryHaskellDepends = [ aeson base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/mx-state-codes#readme"; - description = "ISO 3166-2:MX State Codes and Names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.7"; - sha256 = "ef2d7bc6791171f0c5efa8a6b40c2be386867e8b0c72580343a6646d514972d9"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "n2o" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv, text - }: - mkDerivation { - pname = "n2o"; - version = "0.11.1"; - sha256 = "674d30b2971f7aaf9fee85b82767895fdcb012ab1df90b8ab7ed49b1858e6f7b"; - libraryHaskellDepends = [ base binary bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xafizoff/n2o#readme"; - description = "Abstract Protocol Loop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.3.0.0"; - sha256 = "0be38f6a22afb69ddda5a3cae095b51835bdae853256403e97078679a9fba526"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-arithmetic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-arithmetic"; - version = "0.1.2.0"; - sha256 = "a0517653bf309def7835f952870b6133fde5655ed39f8269bcec1835ba6a817f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/natural-arithmetic"; - description = "Arithmetic of natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, megaparsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.5"; - sha256 = "0c3d5204ca80713461b5b5411bdaceade0ec7a174c04104e65dd5d79fd02cb26"; - libraryHaskellDepends = [ - base base-prelude megaparsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-carray" = callPackage - ({ mkDerivation, array, base, carray, netlib-ffi, stdenv - , transformers - }: - mkDerivation { - pname = "netlib-carray"; - version = "0.1"; - sha256 = "a577d19a79f7360d7916185e92feabdc42723a130ac3794e011655de3ba90466"; - libraryHaskellDepends = [ - array base carray netlib-ffi transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-carray/"; - description = "Helper modules for CArray wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-comfort-array" = callPackage - ({ mkDerivation, base, comfort-array, netlib-ffi, stdenv - , transformers - }: - mkDerivation { - pname = "netlib-comfort-array"; - version = "0.0.0.1"; - sha256 = "e32e5eabca4549cdd8dbd71c58acf14377d389317b999b25b37d62f9100d976c"; - libraryHaskellDepends = [ - base comfort-array netlib-ffi transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-comfort-array/"; - description = "Helper modules for comfort-array wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, guarded-allocation, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1.1"; - sha256 = "211016f9dc28f0519b1151ce5b1f74e8371a32f53fdb34c69277f099d82b2e47"; - libraryHaskellDepends = [ - base guarded-allocation storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.3"; - sha256 = "68fcb39e7097ccfd0327d36588d18faea438c389a5310d9ea4a91ec74b809d9d"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "netrc" = callPackage - ({ mkDerivation, base, bytestring, deepseq, parsec, stdenv }: - mkDerivation { - pname = "netrc"; - version = "0.2.0.0"; - sha256 = "9a5e07efa44f4b715b110aa4f9687e2b75458fb7537a2f4f1a3582c9e2e82a86"; - revision = "6"; - editedCabalFile = "0mn0ar2xhjdsm50kmpw5ndvbyfmc30b3x0bx291d2ml7hqspnnsw"; - libraryHaskellDepends = [ base bytestring deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/netrc"; - description = "Parser for .netrc files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.3.0"; - sha256 = "cf3f08980e8e52190301d33db3b1fe7f02bcf5d276a74a8b8283b79e72bf7d5d"; - revision = "1"; - editedCabalFile = "1j8h6m4cj1ykxrsxmjiyb1c4mv6cawssgb8phl0aijrjn3b79f2b"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "network"; - version = "3.1.1.1"; - sha256 = "d7ef590173fff2ab522fbc167f3fafb867e4ecfca279eb3ef0d137b51f142c9a"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-bsd" = callPackage - ({ mkDerivation, base, deepseq, network, stdenv }: - mkDerivation { - pname = "network-bsd"; - version = "2.8.1.0"; - sha256 = "d94961ca15c42c798d19cde540ec12b25cc43435fb95e682399d6c1a02022d4e"; - revision = "3"; - editedCabalFile = "1hc3jdbmpq2wxh82xfx452v2m2l97jbdaqqbmj5nz4lljxa2696r"; - libraryHaskellDepends = [ base deepseq network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-bsd"; - description = "POSIX network database () API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-byte-order" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "network-byte-order"; - version = "0.1.2.0"; - sha256 = "9eb1837c59077d9cddcd4b5ba9109ef74d52d5f1b543b048dcbff9f58bfb4af8"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Network byte order utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.2"; - sha256 = "ecfd60e162de3993a71906293dcf2ec8bd4c794471eb8dca13746c1d8fd3ad7f"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.3"; - sha256 = "e01dcc4389f3800536066ca150b6b5130d9d4b7fe7ed8e98ae7d92f3f7b1955c"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.4"; - sha256 = "5b870bffb4a61b29616bf9520733c7f16fd455ac2e678cc156d61ffa47c4ec47"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2.2.0"; - sha256 = "3a00ffd1bb48a81e09f8be6510fa4c642ba1482b2f8d4777af1b5dd06c55ebac"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.4"; - sha256 = "007f3dd80d759b09534dd215b040d1a435b7d2612be3d0a365c27c60c973f932"; - revision = "1"; - editedCabalFile = "1id9a6prj2bzdsyfsfr0pnfy9p8v9wlw59x12fny6y2szfcxcrv7"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "no-value" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "no-value"; - version = "1.0.0.0"; - sha256 = "8ed237efdab93eb273596e03cc391803640acb189b35a863e4e440451aea9fc9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/no-value#readme"; - description = "A type class for choosing sentinel-like values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3.2"; - sha256 = "1b10fc14386a9152e2bf9d1cc5383326ffcd96bc6a323e94b65ec4ae7a688748"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.4"; - sha256 = "8071a8680bd44f81e7660c74c495302a34344a42d8ccdc3e869f0e29a398dd28"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "nonempty-containers" = callPackage - ({ mkDerivation, base, comonad, containers, deepseq - , nonempty-vector, semigroupoids, stdenv, these, vector - }: - mkDerivation { - pname = "nonempty-containers"; - version = "0.3.3.0"; - sha256 = "e291106c5e64ec4f7c11592f56142b4dfc03bbe3f48f64fbe8b2e3f6b7d8b986"; - libraryHaskellDepends = [ - base comonad containers deepseq nonempty-vector semigroupoids these - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/nonempty-containers#readme"; - description = "Non-empty variants of containers data types, with full API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nonempty-vector" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, primitive - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "nonempty-vector"; - version = "0.2.0.1"; - sha256 = "e16840e4f0a4cc580fc3120e350c0fa44c4ed7c41cca36c6646aafd250a13c62"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/nonempty-vector"; - description = "Non-empty vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nonemptymap" = callPackage - ({ mkDerivation, base, containers, semigroupoids, stdenv }: - mkDerivation { - pname = "nonemptymap"; - version = "0.0.6.0"; - sha256 = "24bd4c4c3569ca103352493fc61739574eda0587532f8c85d959795d6728fadf"; - libraryHaskellDepends = [ base containers semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/nonemptymap#readme"; - description = "A NonEmptyMap Implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "not-gloss" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, GLUT, OpenGL - , OpenGLRaw, spatial-math, stdenv, time, vector - , vector-binary-instances - }: - mkDerivation { - pname = "not-gloss"; - version = "0.7.7.0"; - sha256 = "4740d1ee04015bca98092f72c11414326d1bd08473aead61f6678773fb8b835f"; - libraryHaskellDepends = [ - base binary bmp bytestring GLUT OpenGL OpenGLRaw spatial-math time - vector vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - description = "Painless 3D graphics, no affiliation with gloss"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nowdoc" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell }: - mkDerivation { - pname = "nowdoc"; - version = "0.1.1.0"; - sha256 = "4ffe490b2c161a53f0d636d54269df357d41c7b212c70dcb1c7e2cffd33f5268"; - revision = "1"; - editedCabalFile = "074xgrxs8ynq29bsx66an03q0457f80ga9jf4sqi0q34jgfpmbcv"; - libraryHaskellDepends = [ base bytestring template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/nowdoc#readme"; - description = "Here document without variable expansion like PHP Nowdoc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nqe" = callPackage - ({ mkDerivation, base, conduit, containers, hashable, mtl, stdenv - , stm, unique, unliftio - }: - mkDerivation { - pname = "nqe"; - version = "0.6.1"; - sha256 = "adf772bca05f8445e585537e3807df394a8d7c7e3a095fd532ee55cc60f30dd0"; - libraryHaskellDepends = [ - base conduit containers hashable mtl stm unique unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/nqe#readme"; - description = "Concurrency library in the style of Erlang/OTP"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.3"; - sha256 = "bda68ef2893202432be55a7749269ec7660781cba5e2049f9ad474531e21778b"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3.1"; - sha256 = "c9e4b6f20c47ab38faea9a6a230a722f3b50462989d1b0ad1e7bfd1cb8f46114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numhask"; - version = "0.3.1"; - sha256 = "e7bc2f55f642ee9ef06c19a23545f58dbce9ae9387ceb17ab96626ae8f52f964"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "numeric classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.2"; - sha256 = "98787dc0dd1757e6ed9c37e7d735b448fb9a9281988d97625292c9d8e16a732b"; - revision = "1"; - editedCabalFile = "0892xm8vyyvl1glg4vniz8r5ydg1nz3zmbpgk5mxdih6wi6nmpy4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nuxeo" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-conduit, http-types, optparse-applicative - , stdenv, text, time, url - }: - mkDerivation { - pname = "nuxeo"; - version = "0.3.2"; - sha256 = "e230a92a3f4b2f56128bfce8b478cdedcbb68b5a8b99d60e895b24af58b61954"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-conduit - http-types text time url - ]; - executableHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/nuxeo#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "o-clock" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "o-clock"; - version = "1.1.0"; - sha256 = "8c2cd42b3992683eb11e2923e1532991e09123688cfde26d58a02a2bb3688a96"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/o-clock"; - description = "Type-safe time library"; - license = stdenv.lib.licenses.mit; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, parsec, semigroups, stdenv - , template-haskell, text, time, transformers, unixODBC - , unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.2.2"; - sha256 = "659a124883696168daf3cd20403394616a56837c904810073183ce41769e7336"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting parsec - semigroups template-haskell text time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis2" = callPackage - ({ mkDerivation, aeson, base, containers, http-conduit, lens - , lens-aeson, stdenv, text, vector - }: - mkDerivation { - pname = "oeis2"; - version = "1.0.3"; - sha256 = "97ef0e95f3b78efd696eb0d4f0cab27e37a3f45aa9831057f0b5a9f78ca7ab11"; - libraryHaskellDepends = [ - aeson base containers http-conduit lens lens-aeson text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23prime/oeis2#readme"; - description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.4.0"; - sha256 = "798ceb6b799c22811ad40289f0eaa54037028cc637cbd0df35a770bcf2efecf2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.4"; - sha256 = "30bd9195db5c55bc6f9252d10ac03855c792c6dd2ff401f757c155f2d838e92b"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/kaction/haskell-once"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "opaleye" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, contravariant, postgresql-simple, pretty - , product-profunctors, profunctors, scientific, semigroups, stdenv - , text, time, time-locale-compat, transformers, uuid, void - }: - mkDerivation { - pname = "opaleye"; - version = "0.6.7004.1"; - sha256 = "e12d1fdf762524997713db4538fe4b9477ff0c48e939d0c712e842c4276e4f26"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive - contravariant postgresql-simple pretty product-profunctors - profunctors scientific semigroups text time time-locale-compat - transformers uuid void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; - description = "An SQL-generating DSL targeting PostgreSQL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.2"; - sha256 = "2b0655a64ee36d529030df04f09b6fdf63749f64ec3d29b4f1861cf9c69a05e2"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "git://klacansky.com/openexr-write.git"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.2"; - sha256 = "5342621eaed3cacada7304aae0e3537e8c18b34d35e1457b00f95c7c27a529bd"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.mit; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.1.0"; - sha256 = "1ef36be24b2a1d2aee892891e6c7bd975830c38900dbb96a80e5df95c37c5482"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "optics" = callPackage - ({ mkDerivation, array, base, containers, mtl, optics-core - , optics-extra, optics-th, stdenv, transformers - }: - mkDerivation { - pname = "optics"; - version = "0.2"; - sha256 = "945d1367373a0ac6b1a02e3c9dbcdc28eeccefe75edb21703b68f0baaaca0061"; - libraryHaskellDepends = [ - array base containers mtl optics-core optics-extra optics-th - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics as an abstract interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-core" = callPackage - ({ mkDerivation, array, base, containers, indexed-profunctors - , stdenv, transformers - }: - mkDerivation { - pname = "optics-core"; - version = "0.2"; - sha256 = "287ff8c28cba855aa9d247f3ed6d476338039653e99a2f3312f9f5ce51571aa6"; - libraryHaskellDepends = [ - array base containers indexed-profunctors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics as an abstract interface: core definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-extra" = callPackage - ({ mkDerivation, array, base, bytestring, containers, hashable - , indexed-profunctors, mtl, optics-core, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "optics-extra"; - version = "0.2"; - sha256 = "a195bf9ae05486883a5995f6d026ebf1db08a5e3781c966fe069a1187d23c69a"; - libraryHaskellDepends = [ - array base bytestring containers hashable indexed-profunctors mtl - optics-core text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities and instances for optics-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-th" = callPackage - ({ mkDerivation, base, containers, mtl, optics-core, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "optics-th"; - version = "0.2"; - sha256 = "683b64191056a730dcb2927be1f8c937b985754b60af7f607b01e3575692118a"; - libraryHaskellDepends = [ - base containers mtl optics-core template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics construction using TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-vl" = callPackage - ({ mkDerivation, base, indexed-profunctors, optics-core - , profunctors, stdenv - }: - mkDerivation { - pname = "optics-vl"; - version = "0.2"; - sha256 = "dda8f7a4104cc4881e1194990d227d12bda4d8320c3e09993b9aaf91140ca63d"; - libraryHaskellDepends = [ - base indexed-profunctors optics-core profunctors - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for compatibility with van Laarhoven optics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.15.1.0"; - sha256 = "4db3675fd1e0594afdf079db46f4cd412d483835d703e7c07e1a1a37d6f046f3"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.1"; - sha256 = "009bf703d13e1e5833c74ac5bbfa324b85d5180eb80e89cb3f10d94a8a874e30"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, githash, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.1.2"; - sha256 = "02716473cc57ff1212c5174cc213f5b1bb744e680c222a4ae97e0b12f38400e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base githash optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ordered-containers" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "ordered-containers"; - version = "0.2.2"; - sha256 = "c75ac7330e70cd5d6ac0062b68033779cf15cd986d4ca20f838e016d466d22c9"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Set- and Map-like types that remember the order elements were inserted"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ormolu" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, exceptions - , ghc-lib-parser, gitrev, mtl, optparse-applicative, stdenv, syb - , text - }: - mkDerivation { - pname = "ormolu"; - version = "0.0.3.1"; - sha256 = "8fb635d49812aac4b50a5dc04fbf07a3d6e586825a04606d6b2e81d817d7765f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers dlist exceptions ghc-lib-parser mtl syb - text - ]; - executableHaskellDepends = [ - base ghc-lib-parser gitrev optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/ormolu"; - description = "A formatter for Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.4.2"; - sha256 = "da47a26a684b3541542e4f4e7095d2a6bc69e9c47d6953db4baf9084b7ca467d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base - , base64-bytestring, binary, blaze-html, blaze-markup, bytestring - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doclayout, doctemplates, emojis, exceptions, filepath - , Glob, haddock-library, hslua, hslua-module-system - , hslua-module-text, HsYAML, HTTP, http-client, http-client-tls - , http-types, ipynb, jira-wiki-markup, JuicyPixels, mtl, network - , network-uri, pandoc-types, parsec, process, random, safe - , scientific, SHA, skylighting, skylighting-core, split, stdenv - , syb, tagsoup, temporary, texmath, text, text-conversions, time - , unicode-transforms, unix, unordered-containers, vector, xml - , zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.9.1.1"; - sha256 = "9d21c5efe2074f9b3097a20e0798de9d8b89a86a1ce04a307f476c7b4aa3816d"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base base64-bytestring binary - blaze-html blaze-markup bytestring case-insensitive cmark-gfm - containers data-default deepseq directory doclayout doctemplates - emojis exceptions filepath Glob haddock-library hslua - hslua-module-system hslua-module-text HsYAML HTTP http-client - http-client-tls http-types ipynb jira-wiki-markup JuicyPixels mtl - network network-uri pandoc-types parsec process random safe - scientific SHA skylighting skylighting-core split syb tagsoup - temporary texmath text text-conversions time unicode-transforms - unix unordered-containers vector xml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share/man/man1 - mv "man/"*.1 $out/share/man/man1/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "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, rfc5051, safe, setenv, split, stdenv, syb - , tagsoup, text, time, unordered-containers, vector, xml-conduit - , yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.16.4.1"; - sha256 = "bd726878595ca66376c9536addc81a19bbab8f3517d41aa72165582dd0336dc9"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-pyplot" = callPackage - ({ mkDerivation, base, containers, data-default-class, deepseq - , directory, filepath, hashable, mtl, open-browser - , optparse-applicative, pandoc, pandoc-types, shakespeare, stdenv - , template-haskell, temporary, text, typed-process, yaml - }: - mkDerivation { - pname = "pandoc-pyplot"; - version = "2.3.0.1"; - sha256 = "0ad47fc098156469e8aa8a99ccf0b2479d2dc24c476992c0e10ae361b70bee4a"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LaurentRDC/pandoc-pyplot#readme"; - description = "A Pandoc filter to include figures generated from Python code blocks"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, text, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.20"; - sha256 = "aac716bcf493e0cd53428fa8cd892fdd7af3a6184145c25543bf6fe8b94fe873"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://pandoc.org/"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "papillon" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, monads-tf - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "papillon"; - version = "0.1.1.1"; - sha256 = "86283454bd4c7b4ee424a83097b23db6f8b1d896277c44b1a4f94388b61901fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring monads-tf template-haskell transformers - ]; - executableHaskellDepends = [ - base directory filepath monads-tf template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; - description = "packrat parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, ghc-prim, stdenv - }: - mkDerivation { - pname = "parallel"; - version = "3.2.2.0"; - sha256 = "170453a71a2a8b31cca63125533f7771d7debeb639700bdabdd779c34d8a6ef6"; - revision = "1"; - editedCabalFile = "0a3kn7arck8f2gwm8cwfkplsw4q9v9j6ifbhj1l3bmclmkwcckcj"; - libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "paripari" = callPackage - ({ mkDerivation, base, bytestring, parser-combinators, stdenv, text - }: - mkDerivation { - pname = "paripari"; - version = "0.6.0.1"; - sha256 = "26cc3ba2a3826e455805f6cf04dfd2f2a1971bd4362b8bbfc2f46a2f1acf02c5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring parser-combinators text - ]; - executableHaskellDepends = [ - base bytestring parser-combinators text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/paripari#readme"; - description = "Parser combinators with fast-path and slower fallback for error reporting"; - license = stdenv.lib.licenses.mit; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.9"; - sha256 = "3c469ddcee3a63ef790d88f676dcf99b9d90b8815112f18c17febafc9e8025a9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Parse command-line arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.14.0"; - sha256 = "c72c92e07ee1d2ec0a423b89fdc11e0863725675f3c2d5621509d9cb84545c8c"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-class" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-class"; - version = "1.0.0.0"; - sha256 = "029c4ec5e6b0efd0505f1051c29c02060ddab3018b9aef4c4ae96a99f58e1773"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/parsec-class"; - description = "Class of types that can be constructed from their text representation"; - license = stdenv.lib.licenses.mit; - }) {}; - "parsec-numbers" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numbers"; - version = "0.1.0"; - sha256 = "77019a4817712f6bfc61c9d148b680579955eb40d286f7766f7b0a90c726febf"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Utilities for parsing numbers from strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.0"; - sha256 = "ea5e158548fc06602483fdec3b4cbb076a6118ec2835454cfb18bed835796ea2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parser-combinators-tests" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "parser-combinators-tests"; - version = "1.2.0"; - sha256 = "5414e5069ad88002c2ab6602a03e1d3fb05cccc5531ef18dcd6b80dab3bf362a"; - isLibrary = false; - isExecutable = false; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Test suite of parser-combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, binary, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.10"; - sha256 = "17b91f1318ca54679395b382a056df633fdb44fbb962eca66b1787f957af1a6c"; - libraryHaskellDepends = [ - attoparsec base base-orphans binary charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "password" = callPackage - ({ mkDerivation, base, scrypt, stdenv, text }: - mkDerivation { - pname = "password"; - version = "0.1.0.1"; - sha256 = "79eaf0d698e09c3ad114d6344f2cc9097ec1d2d841f8838abb46c61867b22659"; - libraryHaskellDepends = [ base scrypt text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/password/password#readme"; - description = "plain-text password and hashed password datatypes and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "password-instances" = callPackage - ({ mkDerivation, aeson, base, http-api-data, password, persistent - , stdenv - }: - mkDerivation { - pname = "password-instances"; - version = "0.3.0.1"; - sha256 = "23d123275a5aa23319968fe4dfc6dc01a2870e672e30a90885316414809fa90f"; - libraryHaskellDepends = [ - aeson base http-api-data password persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/password/password-instances#readme"; - description = "typeclass instances for password package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell, text - }: - mkDerivation { - pname = "path"; - version = "0.7.0"; - sha256 = "b328d285381ce00607444c96cf6d1bf4aa30e8dcb8e82017e5a33636abf487b6"; - revision = "1"; - editedCabalFile = "0ph5qs50lm8ac58v8df0mmivqfilb1wz14568q06aws6gwj9qqpi"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - text - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.6.0"; - sha256 = "73e420ad029626182ad56c200640500e67fdb40b939c6e6e2a15363879ef8d41"; - revision = "1"; - editedCabalFile = "1kwrkpmwmar8nwaar02m3kfy24vl3kzm0m3iq0d4ryd84a6a0dax"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, entropy - , primitive, random, stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.6"; - sha256 = "085012ff6a319ac9d4f69b1c62ea6fe1d69e723f30200cfe5d521d2058b41dd5"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.1.0"; - sha256 = "16f6bfaa320bba91cd0c1a502d871c1c7a3a2de2d58dfaa2d90dba6558d51b53"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "percent-format" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "percent-format"; - version = "0.0.1"; - sha256 = "7530a64ba6f1ac2b59bdc325f3a8a6f0006b4a24dc2cd86eb2b41ab46d460c09"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/percent-format#readme"; - description = "simple printf-style string formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "perfect-vector-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, primitive, random, stdenv - , vector - }: - mkDerivation { - pname = "perfect-vector-shuffle"; - version = "0.1.1.1"; - sha256 = "c017bfd1794cc6c2c28dea260327a329f6a557a1d410e5da7ea0d1b435d991fc"; - revision = "1"; - editedCabalFile = "1pnxrzncwi5qmmyjimjdjhgh65n9kxs663b356rnpdf7brc5bxa0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base MonadRandom primitive random vector - ]; - executableHaskellDepends = [ - base MonadRandom primitive random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Boarders/perfect-vector-shuffle"; - description = "Library for performing vector shuffles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "persist"; - version = "0.1.1.4"; - sha256 = "a4f507229a2831a87813f11d1bdf720bf1b5cb7f15a2c2b28660f08f5da1253c"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/persist"; - description = "Minimal serialization library with focus on performance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.4"; - sha256 = "6d3abe73d61cf691bb1b5a412fa8a6d8fcc5cb3070176041ad8953b63ca5f8f9"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, bytestring, conduit, containers, fast-logger - , http-api-data, monad-logger, mtl, path-pieces, resource-pool - , resourcet, scientific, silently, stdenv, template-haskell, text - , time, transformers, unliftio, unliftio-core, unordered-containers - , vector - }: - mkDerivation { - pname = "persistent"; - version = "2.10.4"; - sha256 = "d139cf14ccfa5ec7cfb7c82d8ce6932d908ccb0cf7dd65c317af612dcee7bab3"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html bytestring - conduit containers fast-logger http-api-data monad-logger mtl - path-pieces resource-pool resourcet scientific silently - template-haskell text time transformers unliftio unliftio-core - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.10.2.2"; - sha256 = "cb2de55c2dc7f12f95ecc145b70d6b89a8e427b98e589e451cbbe16fc7313dac"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.10.1.2"; - sha256 = "8beef5071271c6bdfcb66929435c349808bfebef15b9e105bffb65650204f6e0"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-qq" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, persistent, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "persistent-qq"; - version = "2.9.1.1"; - sha256 = "1a7f25adb21bc95bcd9e2f12928afb3169d28dfa9ef3323d2439cb5470a6ef99"; - libraryHaskellDepends = [ - base haskell-src-meta mtl persistent template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/persistent#readme"; - description = "Provides a quasi-quoter for raw SQL for persistent"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, persistent, resource-pool, resourcet - , sqlite, stdenv, text, time, transformers, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.10.5.2"; - sha256 = "b6f7b88e868650544c899bb7b7c44dfa765a3806f9e38bc6ac86eef8d878ea29"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - persistent resource-pool resourcet text time transformers - unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , monad-control, monad-logger, path-pieces, persistent, stdenv - , template-haskell, text, th-lift-instances, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.8.0.1"; - sha256 = "7630e4c29f94f5ccab540511ca7a1f7269dca688df6c80274c0b690d0efe0f32"; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data monad-control - monad-logger path-pieces persistent template-haskell text - th-lift-instances transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-test" = callPackage - ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit - , containers, exceptions, hspec, hspec-expectations, HUnit - , monad-control, monad-logger, path-pieces, persistent - , persistent-template, QuickCheck, quickcheck-instances, random - , resourcet, stdenv, text, time, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-test"; - version = "2.0.3.1"; - sha256 = "bb691981fe90ac2979ff9fe92e57fb822d0006c99abc6a5c5572100b3c2b5885"; - libraryHaskellDepends = [ - aeson base blaze-html bytestring conduit containers exceptions - hspec hspec-expectations HUnit monad-control monad-logger - path-pieces persistent persistent-template QuickCheck - quickcheck-instances random resourcet text time transformers - transformers-base unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Tests for Persistent"; - license = stdenv.lib.licenses.mit; - }) {}; - "pg-harness-client" = callPackage - ({ mkDerivation, base, bytestring, HTTP, stdenv }: - mkDerivation { - pname = "pg-harness-client"; - version = "0.6.0"; - sha256 = "d0624036ffa888edd9b5073a3c485400ef1057497f1748f5084c03818bcaf819"; - libraryHaskellDepends = [ base bytestring HTTP ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BardurArantsson/pg-harness"; - description = "Client library for pg-harness-server"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.3.1.1"; - sha256 = "8d5d61ebafdcb8e94d563e74bc9646519e45a2fddf327a708b0a59e5160c20fc"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "A postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.3"; - sha256 = "ef3b560276981def53abc01cbe3cb4d0bece8eaa8a210ee890729ee500c4e695"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.13"; - sha256 = "76ba4f2832dae70b5f8d97e16fadd766c097f9bcd96b3a9abec0c5e24aee03b2"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.12"; - sha256 = "4343c67710e2fcd8987c537389773358150559bf06e86d96b1097c15ae81589d"; - revision = "2"; - editedCabalFile = "1c06nypirrd76jg5y508517smxh3izy98y6kj89k79kbpi5rncbj"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.15"; - sha256 = "02a9633ac912fd48e9a5ca0e6b48a6e9541ce59d11243096ca6af6b25701cbb3"; - revision = "1"; - editedCabalFile = "0xrd5zwkr1c7lswzi91gxl3ndra8y9g2b4j00sszyy3w187a2zwi"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.12"; - sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7"; - revision = "1"; - editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.6"; - sha256 = "a231fb08dfac54c1fac7a0c805f1b6c6e60a380021bb5722b508d6b36e4ba700"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-ordered-zip" = callPackage - ({ mkDerivation, base, pipes, pipes-safe, stdenv }: - mkDerivation { - pname = "pipes-ordered-zip"; - version = "1.1.0"; - sha256 = "4ab36773676178bbe31903b27d0dad52255d8269611ddae9b3fd28c2a0c740bb"; - libraryHaskellDepends = [ base pipes pipes-safe ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/githubuser/pipes-ordered-zip#readme"; - description = "merge two ordered Producers into a new Producer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-random" = callPackage - ({ mkDerivation, base, mwc-random, pipes, stdenv, vector }: - mkDerivation { - pname = "pipes-random"; - version = "1.0.0.5"; - sha256 = "b3ec59bde4d004db2130097c7d981e3fdaf3c63a0ba7e903da33673d3b034bf7"; - libraryHaskellDepends = [ base mwc-random pipes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/pipes-random"; - description = "Producers for handling randomness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.3.2"; - sha256 = "0c7b58bff49902319d9183f606e2a5a36d46298dcbbefd05b5bc43654571a682"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "planb-token-introspection" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, containers - , http-client, http-client-tls, http-types, mtl, safe-exceptions - , stdenv, text, transformers - }: - mkDerivation { - pname = "planb-token-introspection"; - version = "0.1.4.0"; - sha256 = "e7fa0eccf6449c53bc0d682df9dd2cc0beda28230b79f104f8d8ac1574dff265"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring containers http-client - http-client-tls http-types mtl safe-exceptions text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/planb-token-introspection#readme"; - description = "Token Introspection for PlanB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text, time - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2.1"; - sha256 = "c95ed42c789d26165183c2cbb4e8a44065478cad0a80053ac8e6fa2a84c7ecb4"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly" = callPackage - ({ mkDerivation, base, deepseq, primitive, semirings, stdenv - , vector, vector-algorithms - }: - mkDerivation { - pname = "poly"; - version = "0.3.3.0"; - sha256 = "565d079e1958c10ee36448822d253dc4fb48ba660cc1733cf3fa46e7bf3d47c2"; - revision = "1"; - editedCabalFile = "0iv4363iq22hkwrkgsijgv8ykvj26q895rsbzrrzkydblf4psra9"; - libraryHaskellDepends = [ - base deepseq primitive semirings vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/poly#readme"; - description = "Polynomials"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.13"; - sha256 = "1c4c72980e1e5a4f07fea65ca08b2399581d2a6aa21eb1078f7ad286c279707b"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "polysemy" = callPackage - ({ mkDerivation, async, base, Cabal, cabal-doctest, containers - , first-class-families, loopbreaker, mtl, stdenv, stm, syb - , template-haskell, th-abstraction, transformers, type-errors - , type-errors-pretty, unagi-chan - }: - mkDerivation { - pname = "polysemy"; - version = "1.2.3.0"; - sha256 = "c34f5934729332fce736409ab2ebc9a12bca013adc02216e215cea5fe798606d"; - revision = "2"; - editedCabalFile = "0dzmkna6jb2im9kdslp90z6ynk2qzzg2j495i3y933ywdavvci93"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - async base containers first-class-families loopbreaker mtl stm syb - template-haskell th-abstraction transformers type-errors - type-errors-pretty unagi-chan - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/polysemy#readme"; - description = "Higher-order, low-boilerplate, zero-cost free monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.2"; - sha256 = "3a5b51356c2c0844ac085d9ad073851d46426a09ffb59bcbfb8e072de4bd1fbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "port-utils" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "port-utils"; - version = "0.2.1.0"; - sha256 = "b6f830946a9daa829bb14dc7f105f28ae2cfa2ee8540af8550e3c975ac7117de"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/port-utils#readme"; - description = "Utilities for creating and waiting on ports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "posix-paths" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "posix-paths"; - version = "0.2.1.6"; - sha256 = "7239746716761bfc268b60348c5da3c2cf098fe2583f365096a6bef10f637e45"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - description = "POSIX filepath/directory functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "possibly" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "possibly"; - version = "1.0.0.0"; - sha256 = "52cd989873c966faffe60d0fe41a0222cb4dccc50313f9c9ed61a0d09db5ea22"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text#readme"; - description = "type Possibly a = Either String a"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgres-options" = callPackage - ({ mkDerivation, base, bytestring, generic-monoid, split, stdenv - , uri-bytestring - }: - mkDerivation { - pname = "postgres-options"; - version = "0.2.0.0"; - sha256 = "c45f459abcc797d0707c1931301434037acdfada33e47c843f219cf35609d9b5"; - libraryHaskellDepends = [ - base bytestring generic-monoid split uri-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgres-options#readme"; - description = "An Options type representing options for postgres connections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.2"; - sha256 = "68af247669bdb9303e40d4efd5f8a57f3f6e328050f665df0f3790f010e570fe"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.2"; - sha256 = "cea053c79ef1505c30518db7b9fb2ee68c9e2915d48b22f01f8eb9a9b49f06f9"; - revision = "1"; - editedCabalFile = "0hilyfb2gjh471ia2g8mwjs56ykrgl0qd06vpigwhc493ia7a9mv"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-orm" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , bytestring-builder, directory, filepath, ghc-prim - , haskell-src-exts, mtl, old-locale, postgresql-simple, process - , stdenv, temporary, text, time, transformers, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "postgresql-orm"; - version = "0.5.1"; - sha256 = "a3507e5ccdb8712dbd8c228b706ce6303f4c0794d4d48fd8a683f4ce7cd10a3b"; - 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 ]; - doHaddock = false; - doCheck = false; - description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; - license = "GPL"; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable, Only - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.6.2"; - sha256 = "fbfaf2b326d5d43798f60b25862a9ac5006c0074fe295ba523fb55443a75f396"; - revision = "2"; - editedCabalFile = "1rlawj79mfff915bz5fr62g5ig4pfh77m30xrq8q71s6ql0ly4bj"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable Only postgresql-libpq - scientific template-haskell text time transformers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.2"; - sha256 = "d2aaacbe069a5dac61cee677c68eb34d74afa09c59d90d43e2fa07a6c5869fec"; - revision = "1"; - editedCabalFile = "1la186z2np3nv06p0485xwg342gyjp7a2ikg73qs7mbg086352zs"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.2"; - sha256 = "c1250f8e9a9f134f89292a31067958dc7eec2871abc1e7631a0bf3324b0360d7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.1"; - sha256 = "27c78f299151a9a844f4a2c0f629fb99160901e78f78a688cb088bd532501731"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.9.5"; - sha256 = "b095bebb79951d2e25a543a591844fb638165672d7b95d325844611297ba423f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, Cabal, cabal-doctest - , containers, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "3.2.1.0"; - sha256 = "c653e82be7934ae47d1816a9be500d8e18fd2a7d49e5c46eba0f1f2facdb9605"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal base containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-sop" = callPackage - ({ mkDerivation, base, generics-sop, pretty-show, stdenv }: - mkDerivation { - pname = "pretty-sop"; - version = "0.2.0.3"; - sha256 = "bedb878698d798f4d4367fd2fd8f6c3a69cb33e41c17364274233f3c175f7e83"; - libraryHaskellDepends = [ base generics-sop pretty-show ]; - doHaddock = false; - doCheck = false; - description = "A generic pretty-printer using generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.3.0.1"; - sha256 = "fb6580d80155c78ba7734b36e8bff2f0a39d287f1ba8efcfd93cc5f6c7f4b319"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.5.1"; - sha256 = "fb66b498cdd46aa7f36abdaf0b49e88444a3e6ed9d04bec8924ed6355f393794"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible pretty-printer"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-convert-ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-convert-ansi-wl-pprint"; - version = "1.1"; - sha256 = "b8982d38776249d3d29a4ede426a27a02f7cbb6843722b5ec8ede18d032fa60c"; - revision = "1"; - editedCabalFile = "1c4zcscmvq0vbdgnp7n0avv8si5jshl4kw2qd1lqmhr28kj8x45f"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base prettyprinter - prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.7.0.0"; - sha256 = "786a44fea328caf704b762ebc887e9e8476c4378fdf3a06c94e86ef1878d1576"; - revision = "1"; - editedCabalFile = "1g10dsdadv8sy9mhhwx4jknzshvxc4qx6z9lmgqy7060prlbqnn4"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-addr" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-addr"; - version = "0.1.0.2"; - sha256 = "4281c3a429bc03ab2940d072a6cbd63948bdf2607561456d972ba3ca4db9211b"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/primitive-addr"; - description = "Addresses to unmanaged memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-extras" = callPackage - ({ mkDerivation, base, bytestring, cereal, deferred-folds, focus - , foldl, list-t, primitive, primitive-unlifted, profunctors, stdenv - , vector - }: - mkDerivation { - pname = "primitive-extras"; - version = "0.8"; - sha256 = "9988b7eb6d9e90f31258bee0966c1c364cde98df339a8ce1816d7141d03a6b3c"; - libraryHaskellDepends = [ - base bytestring cereal deferred-folds focus foldl list-t primitive - primitive-unlifted profunctors vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/primitive-extras"; - description = "Extras for the \"primitive\" library"; - license = stdenv.lib.licenses.mit; - }) {}; - "primitive-offset" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-offset"; - version = "0.2.0.0"; - sha256 = "b15e7de9ebf36ec12b4e2fac2a2c3cefd2b99afa76231fbd0b5cf5d03f6d572b"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/primitive-offset"; - description = "Types for offsets into unboxed arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-unaligned" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-unaligned"; - version = "0.1.1.1"; - sha256 = "14322b85b3cd12221cc15de323dee8f7cefe65bab647b3d00cfde4969a216ab8"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-primitive/primitive-unaligned"; - description = "Unaligned access to primitive arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-unlifted" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-unlifted"; - version = "0.1.2.0"; - sha256 = "031932b9958adabcb27ef1017a42266f3589b44cd25338c4d41d6a31407705ff"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-primitive/primitive-unlifted"; - description = "Primitive GHC types with unlifted types inside"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "print-console-colors" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "print-console-colors"; - version = "0.1.0.0"; - sha256 = "0849e3de1139d5438a5ecfff82e42fe85d59cd430ddb1baf4909ab86eca2a18b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/print-console-colors#readme"; - description = "Print all ANSI console colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.3"; - sha256 = "1ef93a2cacbaf1fb2ae713f2d0d869593d4a5b8605eff38108877cbbfb51c1bb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, stdenv, tagged, transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.5.1"; - sha256 = "1d3741957d3187c033342e0b9ca3ba302e936c69bb402b89e4b1c60ae1d9b15a"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "prometheus-client" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, clock - , containers, deepseq, exceptions, mtl, stdenv, stm, text - , transformers, transformers-compat, utf8-string - }: - mkDerivation { - pname = "prometheus-client"; - version = "1.0.0"; - sha256 = "279e415720adb45a0ca67af18029c7b9e2ea0a34ec79b7278ed8e20e135b3344"; - libraryHaskellDepends = [ - atomic-primops base bytestring clock containers deepseq exceptions - mtl stm text transformers transformers-compat utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/prometheus-haskell"; - description = "Haskell client library for http://prometheus.io."; - license = stdenv.lib.licenses.asl20; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "prospect" = callPackage - ({ mkDerivation, base, deepseq, free, kan-extensions, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "prospect"; - version = "0.1.0.0"; - sha256 = "6ffae759fb5d81786342686c5544601a6bbaa74a7ca7f7c1a3ab4ebbc7846de7"; - libraryHaskellDepends = [ - base deepseq free kan-extensions mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/prospect#readme"; - description = "Explore continuations with trepidation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , lens-family, parsec, pretty, primitive, profunctors, stdenv - , tagged, text, transformers, vector - }: - mkDerivation { - pname = "proto-lens"; - version = "0.6.0.0"; - sha256 = "a6b33f04b192e20a011e5ec8a204833162900fbb27172efb135deeded02a524c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim lens-family parsec - pretty primitive profunctors tagged text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.8"; - sha256 = "8300c8281395b0a60f77073c0477822d5a008a18c2d5c15e29645bd92817ba4a"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.6"; - sha256 = "980c8bcd9b19a7cd4824be422bf3054e69caa91acd1d1adef08b2d5cfacfbb80"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-protoc, proto-lens-runtime, proto-lens-setup, protobuf - , stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.6.0.0"; - sha256 = "8755e75a30a24c0bcf0c8b9e85d4952537bbe2ec2513c2324e65fbccd346cdd6"; - setupHaskellDepends = [ base Cabal proto-lens-setup ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-runtime text - ]; - libraryToolDepends = [ proto-lens-protoc protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, ghc - , ghc-paths, ghc-source-gen, lens-family, pretty, proto-lens - , proto-lens-runtime, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.6.0.0"; - sha256 = "b946740b94c8d300cd8e278ded9045905ef1985824cef6b81af0d79b119927be"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base filepath ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers filepath ghc ghc-paths ghc-source-gen - lens-family pretty proto-lens proto-lens-runtime text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-runtime" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, filepath - , lens-family, proto-lens, stdenv, text, vector - }: - mkDerivation { - pname = "proto-lens-runtime"; - version = "0.6.0.0"; - sha256 = "96f17141f5927f28388ec5ff5937419c1698a1e1cbdbb4f1272d44843051ae73"; - libraryHaskellDepends = [ - base bytestring containers deepseq filepath lens-family proto-lens - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-setup" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, deepseq - , directory, filepath, process, proto-lens-protoc, stdenv - , temporary, text - }: - mkDerivation { - pname = "proto-lens-setup"; - version = "0.4.0.3"; - sha256 = "6de1bc3fe35db61445ae80700583b99874e4fe03ccb14ad9cd0134927ab726b6"; - libraryHaskellDepends = [ - base bytestring Cabal containers deepseq directory filepath process - proto-lens-protoc temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Cabal support for codegen with proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.1.0"; - sha256 = "9029d395f099aa7ce510a9e0eb0b2c21e5b4ecaa2b242d5a1753de6b93abcdc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.1"; - sha256 = "49982332f18246c9f46dc8f9500dcbd92a445d17124b4acd084568c14ac6a131"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.1.0.1"; - sha256 = "f51eb0bc2921036cc924b1e0ae42f8fb2488907c80b7bcff35461db913b1d792"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.4"; - sha256 = "1192210b90b409f0541cfd5b2a57e30f1156309900b5a4a4aeb3d9d55d90796e"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3.1"; - sha256 = "996894e00af70c715a208a09824a38c001963762f3715cecec8ac4f2fef6ac51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.2"; - sha256 = "26263b555d943f9b18bbebda6a090848fdba3c1b403a9b7c848f6bac99e893f9"; - revision = "1"; - editedCabalFile = "0d0mm3c8x31dasfzp1884r2irkm3c9irvvbahjzfr1bzzxfb7vyv"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "publicsuffix" = callPackage - ({ mkDerivation, base, filepath, stdenv, template-haskell }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20191003"; - sha256 = "a7c3f8903051bf6ba6790ab65cf5d8373a8fab10c5665613e223ed21a69039ae"; - libraryHaskellDepends = [ base filepath template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; - description = "The publicsuffix list exposed as proper Haskell types"; - license = stdenv.lib.licenses.mit; - }) {}; - "pulse-simple" = callPackage - ({ mkDerivation, base, bytestring, libpulseaudio, stdenv }: - mkDerivation { - pname = "pulse-simple"; - version = "0.1.14"; - sha256 = "84429d8b05f34be7f34cca59f361ededbc8c82e0c27f4acb8a155750ba6541ab"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ libpulseaudio ]; - doHaddock = false; - doCheck = false; - description = "binding to Simple API of pulseaudio"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libpulseaudio;}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pusher-http-haskell" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, hashable, http-client, http-types, memory, stdenv - , text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pusher-http-haskell"; - version = "1.5.1.11"; - sha256 = "588f74023b0e4cbbaa23284ad133e055debfa8c2deecfd7e50f31d4a89e1260b"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite hashable - http-client http-types memory text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/WillSewell/pusher-http-haskell"; - description = "Haskell client library for the Pusher HTTP API"; - license = stdenv.lib.licenses.mit; - }) {}; - "qchas" = callPackage - ({ mkDerivation, base, hmatrix, linear, random, stdenv }: - mkDerivation { - pname = "qchas"; - version = "1.1.0.1"; - sha256 = "a9f340d1a6d4f5f24f713b1105e4ec8bba0c24609dcef3fd95f104594232263d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hmatrix linear random ]; - executableHaskellDepends = [ base hmatrix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ardeleanasm/qchas#readme"; - description = "A library for implementing Quantum Algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qrcode-core" = callPackage - ({ mkDerivation, base, binary, bytestring, case-insensitive - , containers, dlist, primitive, stdenv, text, vector - }: - mkDerivation { - pname = "qrcode-core"; - version = "0.9.2"; - sha256 = "fe56ac16900741260e3074b6957c89e3e3cd49bbfbcd83d338150e5b8c0a429d"; - libraryHaskellDepends = [ - base binary bytestring case-insensitive containers dlist primitive - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qrcode#readme"; - description = "QR code library in pure Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "qrcode-juicypixels" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, JuicyPixels - , qrcode-core, stdenv, text, vector - }: - mkDerivation { - pname = "qrcode-juicypixels"; - version = "0.8.0"; - sha256 = "930f73206ef1e6c43caebd31f2df0c086b52458d056a148bbe42c0e91f729291"; - libraryHaskellDepends = [ - base base64-bytestring bytestring JuicyPixels qrcode-core text - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qrcode#readme"; - description = "Converts a qrcode-core image to JuicyPixels"; - license = stdenv.lib.licenses.mit; - }) {}; - "quadratic-irrational" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv, transformers - }: - mkDerivation { - pname = "quadratic-irrational"; - version = "0.1.0"; - sha256 = "fe7517151e86d16107c33a261cc0543443d34016ef83bd09878e2bb67bdccf4d"; - libraryHaskellDepends = [ arithmoi base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ion1/quadratic-irrational"; - description = "An implementation of quadratic irrationals"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-classes" = callPackage - ({ mkDerivation, aeson, base, base-orphans, bifunctors, containers - , contravariant, fail, primitive, primitive-addr, QuickCheck - , quickcheck-classes-base, semigroupoids, semigroups, semirings - , stdenv, tagged, transformers, vector - }: - mkDerivation { - pname = "quickcheck-classes"; - version = "0.6.4.0"; - sha256 = "8f5b65ea3055f1ef0149c245ba1ff67b57fe6b149dead2aeb3d2bc98dcac9d61"; - libraryHaskellDepends = [ - aeson base base-orphans bifunctors containers contravariant fail - primitive primitive-addr QuickCheck quickcheck-classes-base - semigroupoids semigroups semirings tagged transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/quickcheck-classes#readme"; - description = "QuickCheck common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-classes-base" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, containers - , contravariant, fail, QuickCheck, semigroups, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "quickcheck-classes-base"; - version = "0.6.0.0"; - sha256 = "dd8ff2296c4385bf9657de6816cbefd5dcfe7317887f08fa0b8508ef465e72a4"; - libraryHaskellDepends = [ - base base-orphans bifunctors containers contravariant fail - QuickCheck semigroups tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/quickcheck-classes#readme"; - description = "QuickCheck common typeclasses from `base`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, splitmix, stdenv, tagged, text, time, time-compat - , transformers, transformers-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.22"; - sha256 = "5d65bf81895b7af2d36f105d0b3afa5600b0bce0a14809c93d7ca87672ca5a91"; - revision = "2"; - editedCabalFile = "1ia5fjhpg7rz793552v88gv2iqx7hl9mi2g09m0llasy1cpzc9jr"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific splitmix tagged text time - time-compat transformers transformers-compat unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.1.1"; - sha256 = "51358328e5d3ea20dcb668e971e07bc7c8451cade47e930c68e3a6718317032a"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-transformer" = callPackage - ({ mkDerivation, base, QuickCheck, random, stdenv, transformers }: - mkDerivation { - pname = "quickcheck-transformer"; - version = "0.3.1"; - sha256 = "d4818954d0538cf2b1c94f3a5c489d63cfc5dc684fe83d50bdb73871df0976c9"; - libraryHaskellDepends = [ base QuickCheck random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/quickcheck-transformer/"; - description = "A GenT monad transformer for QuickCheck library"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "radius" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptonite, iproute - , memory, stdenv - }: - mkDerivation { - pname = "radius"; - version = "0.6.1.0"; - sha256 = "bebd5ec73e85f11427a4e1040bbac695ef9bc947db2c23e2c85ddbcb31dd2260"; - libraryHaskellDepends = [ - base binary bytestring cryptonite iproute memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/RADIUS"; - description = "Remote Authentication Dial In User Service (RADIUS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, terminfo, text }: - mkDerivation { - pname = "rainbow"; - version = "0.34.2.2"; - sha256 = "8e56c1a03a0b2b3e30d67fd7607aa4f93a841e17aa8c4e526ceed464229ba5e7"; - libraryHaskellDepends = [ base bytestring lens terminfo text ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.24.4.0"; - sha256 = "9fdb48707a562cdc4931fcac21e320e891053ff6aead44803909d37d3f16a38c"; - libraryHaskellDepends = [ - base bytestring containers lens rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ral" = callPackage - ({ mkDerivation, adjunctions, base, bin, deepseq, distributive, fin - , hashable, QuickCheck, semigroupoids, stdenv - }: - mkDerivation { - pname = "ral"; - version = "0.1"; - sha256 = "048cf2b5b394229503bdd748c93cc19650b4223d01e11e954b373f7595c21241"; - libraryHaskellDepends = [ - adjunctions base bin deepseq distributive fin hashable QuickCheck - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Random access lists"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rando" = callPackage - ({ mkDerivation, base, stdenv, tf-random, vector }: - mkDerivation { - pname = "rando"; - version = "0.0.0.4"; - sha256 = "8eb8f4a5498ede50c468b74b04f9931cbcd6b4e6b03cf8dd56ad0b84c8ad7cb3"; - libraryHaskellDepends = [ base tf-random vector ]; - doHaddock = false; - doCheck = false; - description = "Easy-to-use randomness for livecoding"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.2"; - sha256 = "dcab3f6f32a83abd19ce1bddd8f7a7b31a4fb3bf126a58e472f71eafc36ab29a"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range" = callPackage - ({ mkDerivation, base, free, parsec, stdenv }: - mkDerivation { - pname = "range"; - version = "0.3.0.2"; - sha256 = "13c8f168b584637a5a1a389ef34e986ff10a0fe4f486d320a8fc8949e82a6b4f"; - libraryHaskellDepends = [ base free parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/range"; - description = "An efficient and versatile range library"; - license = stdenv.lib.licenses.mit; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3.1"; - sha256 = "12e8d9cb99a2847da32934ed7f44a5acedaa59d8fa19eff0f46aa77921460c55"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.2"; - sha256 = "02db61c98e6e550824e8d9813efe5e97293843e39e1c00e88837061b61a017c4"; - revision = "1"; - editedCabalFile = "19i9wlk951d85dqnmbgrnz0fg4xcw7cbv9cs2h8b440lycj3p4cv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, stdenv - , text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "1.0.9"; - sha256 = "abcc51c2fa35622e7e3deb04e444c3dc7f0d601d848f03ef401cdd25a13a96cf"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, stdenv, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "1.1.1"; - sha256 = "c93fbdf724f1c6291ec7263f2864f93a7ec360db08025d825db8c8f34284ebe2"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "rattle" = callPackage - ({ mkDerivation, base, bytestring, cryptohash-sha256, deepseq - , directory, extra, filepath, hashable, shake, stdenv, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "rattle"; - version = "0.1"; - sha256 = "19620782a25e354c032f9e9afc125ed30c70fea466fb9745b2374588292a2a83"; - revision = "1"; - editedCabalFile = "1ppli9l28b4pg6h57kx7vvy0wqacn4vx86bvrgjcwwlvlir49scw"; - libraryHaskellDepends = [ - base bytestring cryptohash-sha256 deepseq directory extra filepath - hashable shake time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/rattle#readme"; - description = "Forward build system, with caching and speculation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest, fail - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.4"; - sha256 = "79bde4bee706392004070bebceef0cf11d67823065ac9d7fbf57f4b40c7d86fe"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base fail ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rdf" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, dlist, fgl - , stdenv, text, transformers - }: - mkDerivation { - pname = "rdf"; - version = "0.1.0.3"; - sha256 = "5a7443a97abb283e1b1cd83c4fc6fd447f6a289390ea3410de76c84ef2dfd72f"; - revision = "1"; - editedCabalFile = "0x5zdjbyrpap5qs40yl0m96fcgy11f6s5r3v0n8n5904cxa5sqy3"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq dlist fgl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/traviswhitaker/rdf"; - description = "Representation and Incremental Processing of RDF Data"; - license = stdenv.lib.licenses.mit; - }) {}; - "rdtsc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "rdtsc"; - version = "1.3.0.1"; - sha256 = "54c9a925f68d6c60b405e92f9d3bd9ebfc25cce0c72d2313a6c7e1b7cc2ed950"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgrabmueller/rdtsc"; - description = "Binding for the rdtsc machine instruction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.3"; - sha256 = "cb223e3717838dcd501d4758e0348e6eff6978318f62053cf7dd3286ef5b996a"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reanimate-svg" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "reanimate-svg"; - version = "0.9.4.0"; - sha256 = "8409092eaef40e4bb6a9cecc0206d7b5bf561b25ea6d08bb4b2114e86c67b44a"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rebase" = callPackage - ({ mkDerivation, base, base-prelude, bifunctors, bytestring - , comonad, containers, contravariant, contravariant-extras, deepseq - , dlist, either, fail, hashable, mtl, profunctors, scientific - , selective, semigroupoids, semigroups, stdenv, stm, text, time - , transformers, unordered-containers, uuid, vector, void - }: - mkDerivation { - pname = "rebase"; - version = "1.4.1"; - sha256 = "2c2329f794f8c7f303a340acb69eb377aee9a6ec5aea289aa1f0e53fbb86db8d"; - libraryHaskellDepends = [ - base base-prelude bifunctors bytestring comonad containers - contravariant contravariant-extras deepseq dlist either fail - hashable mtl profunctors scientific selective semigroupoids - semigroups stm text time transformers unordered-containers uuid - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rebase"; - description = "A more progressive alternative to the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, ghc, stdenv, uniplate }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.2.2"; - sha256 = "9cdfab5b9fb4e8c1b2053e7a56274d14c79a2a2deef3cc69ee493d007f43aae7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base extra ghc uniplate ]; - executableHaskellDepends = [ base extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "record-hasfield" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "record-hasfield"; - version = "1.0"; - sha256 = "523d2f5ffcbc54881fb3318411a095ae4ac6ec48e36cd6aecf90486a89849eca"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-hasfield#readme"; - description = "A version of GHC.Records as available in future GHCs."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "records-sop" = callPackage - ({ mkDerivation, base, deepseq, generics-sop, ghc-prim, stdenv }: - mkDerivation { - pname = "records-sop"; - version = "0.1.0.3"; - sha256 = "4581dc60889928f4ab1f493cbe6362b7a3854785b8e305d5c4bc444dbe591388"; - libraryHaskellDepends = [ base deepseq generics-sop ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Record subtyping and record utilities with generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, comonad, free, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.1.3"; - sha256 = "b21736e54b1d5fb0149624e95f2d8d8fd3413bb0972eda6a70e5753d3c9f1528"; - revision = "2"; - editedCabalFile = "01q18gplv5k328qf74innnx2z2p15pg5nc6sikxq6fkkw4v3rkyb"; - libraryHaskellDepends = [ - base base-orphans comonad free template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Representing common recursion patterns as higher-order functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.3"; - sha256 = "7186733767405984c1eda96b18908f458b379f116a1589cd66f4319fe8458e27"; - revision = "1"; - editedCabalFile = "1v0r75wkaahxdv4y0sqgcikvgwymiz12fa8nkk59n1g4x9nng9wb"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ref-fd" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "ref-fd"; - version = "0.4.0.2"; - sha256 = "881779f2910dc77778dd8e3ed6bf19b2451f363e7b47713d8bf4b9b0d9c955b1"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - description = "A type class for monads with references using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.5"; - sha256 = "272ee9bffb722047067296a34f68d7450e3f6abfbe62eed02a9cef20ed212977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3.1"; - sha256 = "8f064fc23b58fcdd0ef3ce9e2597d877a86bec1770f2b877cb3057b54bb70a5c"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - , text - }: - mkDerivation { - pname = "regex-base"; - version = "0.94.0.0"; - sha256 = "c41f82f5fc1157c961a4cbdc0cd5561e5aa44f339ce6e706d978d97e0ca6b914"; - libraryHaskellDepends = [ - array base bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Regular_expressions"; - description = "Common \"Text.Regex.*\" API for Regex matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.2.0"; - sha256 = "1fc90e476fc30ced2404fac04433ec422463210a32b49f739864e1ebf2278406"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - description = "Replaces/Enhances \"Text.Regex\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.95.0.0"; - sha256 = "16ad6f10de3b14a4020075b3db64d2ca0c585d94013420418ddd4abd0836c75a"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - libraryPkgconfigDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - description = "PCRE Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv, text - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.95.1.1.8.43"; - sha256 = "4d3b108482982c6f188b740bcb4959d39c47bf05955fcb17068a5c9916d171aa"; - libraryHaskellDepends = [ - array base bytestring containers regex-base text - ]; - doHaddock = false; - doCheck = false; - description = "PCRE Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.96.0.0"; - sha256 = "251300f1a6bb2e91abb8bf513a21981f8fab79c98a65acea2bb6d6a524414521"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - description = "POSIX Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , regex-base, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.3.1.0"; - sha256 = "15c376783d397b3b9933cf35980808feddde273bd6f2445babbccb2f76a42ec0"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec regex-base text - ]; - doHaddock = false; - doCheck = false; - description = "Pure Haskell Tagged DFA Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relapse" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "relapse"; - version = "1.0.0.0"; - sha256 = "65c68af5e3d18e67bd6f81ab62ea9cc271d8283d876f7baf1c4ee64515a9aa19"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iostat/relapse#readme"; - description = "Sensible RLP encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.12.2.2"; - sha256 = "5bfe69ee23fe71602d6696c3fd8ff4a19519b58f564aa8396b1fb2c20c67c81c"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.7.0"; - sha256 = "0b8dcab7fcde1b87aa06566f7e07a01cdb5d74edca7b178606a31c2cb5b00ffa"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relude" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, mtl, stdenv, stm, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "relude"; - version = "0.6.0.0"; - sha256 = "2c3a24a8e7b8143386bfec276046387300f66d5de523a0e3d653a50d4d0eae45"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable mtl stm text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/relude"; - description = "Custom prelude from Kowainik"; - license = stdenv.lib.licenses.mit; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "replace-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text }: - mkDerivation { - pname = "replace-attoparsec"; - version = "1.2.0.0"; - sha256 = "5e4d2711207d1467956d4621cb45991608c5aece4d4abdc269c45ab8491c6e2c"; - libraryHaskellDepends = [ attoparsec base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jamesdbrock/replace-attoparsec"; - description = "Find, replace, and edit text patterns with Attoparsec parsers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "replace-megaparsec" = callPackage - ({ mkDerivation, base, bytestring, megaparsec, stdenv, text }: - mkDerivation { - pname = "replace-megaparsec"; - version = "1.2.0.0"; - sha256 = "f430ac256fba8c08ab2cc9a8798f494f443840422f2c23827c8deca949c73169"; - libraryHaskellDepends = [ base bytestring megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jamesdbrock/replace-megaparsec"; - description = "Find, replace, and edit text patterns with Megaparsec parsers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, exceptions, haskeline, mtl - , process, stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.2.2.0"; - sha256 = "a191edc3fd5ade0035e17792bf98cdf54eeedc4293b02209da250959806bc519"; - revision = "1"; - editedCabalFile = "1x4f1cbn9ylg82h853mqhm0sda6lz76ssk45d0x842pjbn3y46xx"; - libraryHaskellDepends = [ - base containers exceptions haskeline mtl process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, http-api-data - , http-client, http-client-tls, http-types, modern-uri - , monad-control, mtl, retry, stdenv, text, time, transformers - , transformers-base - }: - mkDerivation { - pname = "req"; - version = "3.0.0"; - sha256 = "284c3d15b94d8d65e39cec60bbf70b2a6a472c32a2004233c982538e52a48a7d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection http-api-data http-client - http-client-tls http-types modern-uri monad-control mtl retry text - time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rerebase" = callPackage - ({ mkDerivation, rebase, stdenv }: - mkDerivation { - pname = "rerebase"; - version = "1.4.1"; - sha256 = "35f63d24f6b02bb310ce264f7ff175925dd5ff3f363d65a9536e068022bf43a5"; - libraryHaskellDepends = [ rebase ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rerebase"; - description = "Reexports from \"base\" with a bunch of other standard libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.2"; - sha256 = "1323425aba3827479eb3588efaf7608b12a083327d64ec814f02863c3673cbe5"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, random, stdenv - , transformers - }: - mkDerivation { - pname = "retry"; - version = "0.8.1.0"; - sha256 = "b29521112dafdd91a64e71fec9656a23542fc820c4acadf3dae15565501e600a"; - libraryHaskellDepends = [ - base exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc1751" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "rfc1751"; - version = "0.1.2"; - sha256 = "a345e81625ffbdf3d3dc1723d322133108a5fd9ba17fbfae6e954046cd2b9aca"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/rfc1751.git#readme"; - description = "RFC-1751 library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.4"; - sha256 = "615daa230eabc781eff1d3ce94c42fc5ba6188dbeb115a233328454b02c1b3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rigel-viz" = callPackage - ({ mkDerivation, aeson, base, bytestring, colour, containers - , stdenv, text - }: - mkDerivation { - pname = "rigel-viz"; - version = "0.2.0.0"; - sha256 = "ba972f5ed4fde34b3d6185f311666cec93ec5618f047c28a09c5e9683d34cc7c"; - libraryHaskellDepends = [ - aeson base bytestring colour containers text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/rigel-viz"; - description = "A mid-level wrapper for vega-lite"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unliftio-core, unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.13.0"; - sha256 = "95750d0df4bc3c609df74e59854126ee8e0359edcfd25b75715e8542265d59cb"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unliftio-core unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-orphans" = callPackage - ({ mkDerivation, base, exceptions, fast-logger, monad-control - , monad-logger, resourcet, rio, stdenv, transformers-base - }: - mkDerivation { - pname = "rio-orphans"; - version = "0.1.1.0"; - sha256 = "7e8d2c6df6e7afdbca5b344c6e57c754e2d6b9c0cfb4f00e1df88dad1bd48b4e"; - libraryHaskellDepends = [ - base exceptions fast-logger monad-control monad-logger resourcet - rio transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "Orphan instances for the RIO type in the rio package"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-prettyprint" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array - , base, Cabal, colour, mtl, path, rio, stdenv, text - }: - mkDerivation { - pname = "rio-prettyprint"; - version = "0.1.0.0"; - sha256 = "15e4ddc5268f033cfad89ddd023d4157c7dc5784004aa40d232581380e6b1459"; - revision = "2"; - editedCabalFile = "1hvhjqy7kfk7fglx1rw8axscy0dfzqwd1564awnwdhvmf8silkkn"; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal array base Cabal colour mtl - path rio text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/stack#readme"; - description = "Pretty-printing for RIO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roc-id" = callPackage - ({ mkDerivation, base, MonadRandom, Only, stdenv, text - , vector-sized - }: - mkDerivation { - pname = "roc-id"; - version = "0.1.0.0"; - sha256 = "3144d7edc22fc5816b38fa356811417125572d062e07d23d8319466c68868429"; - libraryHaskellDepends = [ - base MonadRandom Only text vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonathanknowles/roc-id#readme"; - description = "Implementation of the ROC National ID standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rocksdb-haskell" = callPackage - ({ mkDerivation, base, binary, bytestring, data-default, directory - , filepath, resourcet, rocksdb, stdenv, transformers - }: - mkDerivation { - pname = "rocksdb-haskell"; - version = "1.0.1"; - sha256 = "b8407c933f503c2e21578a558b829288917f0f6f5ff7c32229cf5b11abed4dff"; - libraryHaskellDepends = [ - base binary bytestring data-default directory filepath resourcet - transformers - ]; - librarySystemDepends = [ rocksdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/serokell/rocksdb-haskell"; - description = "Haskell bindings to RocksDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) rocksdb;}; - "rocksdb-query" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , rocksdb-haskell, stdenv, unliftio - }: - mkDerivation { - pname = "rocksdb-query"; - version = "0.3.1"; - sha256 = "0e6c0d7e1df6e0da1378871b87adce3403df7915419e76f4d2f996d58b23541c"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet rocksdb-haskell unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jprupp/rocksdb-query#readme"; - description = "RocksDB database querying library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rosezipper" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "rosezipper"; - version = "0.2"; - sha256 = "6cab4f1c192cc3b8b0a9eb11a32780d235020a539a0e91125eed5ec590bad7bc"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Generic zipper implementation for Data.Tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rpmbuild-order" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , fgl, filepath, optparse-applicative, process, simple-cmd-args - , stdenv - }: - mkDerivation { - pname = "rpmbuild-order"; - version = "0.3"; - sha256 = "9982a02c70a921a5356fefb7b4ef8fb9583e095c9f7975d398ab1c1e9a0dacf0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal containers directory fgl filepath - optparse-applicative process simple-cmd-args - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/rpmbuild-order"; - description = "Order RPM packages by dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "run-st" = callPackage - ({ mkDerivation, base, primitive, primitive-unlifted, stdenv }: - mkDerivation { - pname = "run-st"; - version = "0.1.1.0"; - sha256 = "6eb78090904ca63ce54e753853b0951475363abbe3d1977b053e0bb179472e86"; - libraryHaskellDepends = [ base primitive primitive-unlifted ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/run-st"; - description = "runST without boxing penalty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "runmemo" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "runmemo"; - version = "1.0.0.1"; - sha256 = "ba5ef3177f8fe5f443808e44f62d03b23ac19bbef7f708e40532031a3505d689"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/runmemo"; - description = "A simple memoization helper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.18"; - sha256 = "d7775be28af83beeee2fa8921201c6b93358ba6a23a2967d53e5f382a9ec0fed"; - revision = "1"; - editedCabalFile = "0zr1di94nbvs6848g1ng6azl7nwm7454kjig2c7gcf9sp4q7z8ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-foldable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe-foldable"; - version = "0.1.0.0"; - sha256 = "ca7f2ecc0e799c239df8ce56e8592fb8b8264c229ab4e1c66e0f821d299007d1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/safe-foldable#readme"; - description = "Safe wrappers for null-partial Foldable operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist - , hashable, scientific, stdenv, tasty, tasty-hunit - , tasty-quickcheck, text, time, unordered-containers, uuid-types - , vector - }: - mkDerivation { - pname = "safe-json"; - version = "1.1.0"; - sha256 = "1c1e240ff52aff236e7246e19df5adaad278d81f5991875429c73dc69a70faa3"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist hashable scientific tasty - tasty-hunit tasty-quickcheck text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Vlix/safe-json#readme"; - description = "Automatic JSON format versioning"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-money" = callPackage - ({ mkDerivation, base, binary, constraints, deepseq, hashable - , QuickCheck, stdenv, text, vector-space - }: - mkDerivation { - pname = "safe-money"; - version = "0.9"; - sha256 = "ee6810cc3f67da59d9300b3baa1c90f9a9d6876d0f563a070a9f3ddcbcbe7d30"; - libraryHaskellDepends = [ - base binary constraints deepseq hashable QuickCheck text - vector-space - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/safe-money"; - description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , generic-data, old-time, stdenv, template-haskell, text, time - , transformers, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.10.2"; - sha256 = "f329c5a4f57f7be4c15d962f73eedb3da0d8b251414329700260e25df1111275"; - libraryHaskellDepends = [ - array base bytestring cereal containers generic-data old-time - template-haskell text time transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default - , directory, dlist, exceptions, filepath, hashable, heaps - , megaparsec, mtl, scientific, stdenv, text, time, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "salak"; - version = "0.3.5.3"; - sha256 = "4b805722457e5ffeacd8eaef0c97b636aa335993af870e5d36ea9bd7e516df4c"; - revision = "1"; - editedCabalFile = "138c763crbfipcb9ss1lk3wx3482nm2v4zbm3k88h6jszxhmxvav"; - libraryHaskellDepends = [ - base bytestring containers data-default directory dlist exceptions - filepath hashable heaps megaparsec mtl scientific text time - unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration (re)Loader and Parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak-yaml" = callPackage - ({ mkDerivation, base, conduit, libyaml, salak, stdenv, text }: - mkDerivation { - pname = "salak-yaml"; - version = "0.3.5.3"; - sha256 = "0000a908b36da9e393233e85d47346b9f5c04c4709bbe68a45b92d541ae58c1f"; - libraryHaskellDepends = [ base conduit libyaml salak text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration Loader for yaml"; - license = stdenv.lib.licenses.mit; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.2"; - sha256 = "fd989db905f3e1d742b9fcb9501d6483ffa82620e287cf51b62e0d6d2caaa308"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.8"; - sha256 = "5593d10dfe3ce177cf9037338a2ca80923f796c7a8cd70cc062b32c66cf4ecc1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.1"; - sha256 = "f639656fc21925c45f3f55769b9fb7a90699e943376a725e215a5deea473b3e4"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Send textual messages to a Handle in a thread-friendly way"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, aeson-pretty, array, base - , base64-bytestring, basic-prelude, binary, binary-conduit - , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 - , lens, lens-aeson, monad-loops, resourcet, stdenv - , template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.6.3"; - sha256 = "316e4c2301fece2db29ffc5cbca45c00f4d20539b1a5c14e20b43c3a8ee2a20d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base basic-prelude binary-conduit bytestring - cmdargs conduit conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "scanf" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "scanf"; - version = "0.1.0.0"; - sha256 = "5675132f172ab4ed460f440df21e203c09457c2fff34fb6a389129a9da78c375"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/scanf#readme"; - description = "Easy and type-safe format strings for parsing and printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, fail, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.3.1"; - sha256 = "53205f5a7dcb7a0547c9394ddb28a6eeb181627f006b875bfc08a88c498218d6"; - libraryHaskellDepends = [ base bytestring fail ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scheduler" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest - , deepseq, exceptions, primitive, stdenv, unliftio-core - }: - mkDerivation { - pname = "scheduler"; - version = "1.4.2.1"; - sha256 = "2cf09ecf8350a74a0a66c603b26b358e30d894aab151f7ee9b874a3dcf00951c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base deepseq exceptions primitive unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/haskell-scheduler"; - description = "Work stealing scheduler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.5"; - sha256 = "6f3be75e2fed8b7c7d655a96788fe385629ded5196316158d814a0f9873cd2df"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.5.0.0"; - sha256 = "883bcc6967194ca2a5d69067b85efccf7f6ba40e7237d4371bab94d6a04766f4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.6+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "search-algorithms" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "search-algorithms"; - version = "0.3.1"; - sha256 = "9be6f03ff407e115d4d6101dd7da529a560a9b85c723031fb549507466bd03a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/devonhollowood/search-algorithms#readme"; - description = "Common graph search algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "secp256k1-haskell" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cereal - , deepseq, entropy, hashable, libsecp256k1, QuickCheck, stdenv - , string-conversions - }: - mkDerivation { - pname = "secp256k1-haskell"; - version = "0.1.8"; - sha256 = "530e371bce0b615b77779cfb78afba30ca06e6add59a0cacad99134e377bb57a"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cereal deepseq entropy hashable - QuickCheck string-conversions - ]; - libraryPkgconfigDepends = [ libsecp256k1 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; - description = "Bindings for secp256k1 library from Bitcoin Core"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) libsecp256k1;}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, mtl - , random, stdenv, text, time, uuid-types - }: - mkDerivation { - pname = "selda"; - version = "0.5.1.0"; - sha256 = "f465dab0199994d77cd060c7d37631709ec593a537c063f901051b8e5f73a7bd"; - libraryHaskellDepends = [ - base bytestring containers exceptions mtl random text time - uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, selda, stdenv, text }: - mkDerivation { - pname = "selda-json"; - version = "0.1.1.0"; - sha256 = "88061090d899eb831c72d39de21d6311ab1219e89188f641c777daf22b2622aa"; - libraryHaskellDepends = [ aeson base bytestring selda text ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "JSON support for the Selda database library"; - license = stdenv.lib.licenses.mit; - }) {}; - "selective" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "selective"; - version = "0.3"; - sha256 = "5a09a2a2f15f3d55eab33d177bbd71c83137d6e507ced208b951c50053c2b48c"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/selective"; - description = "Selective applicative functors"; - license = stdenv.lib.licenses.mit; - }) {}; - "semialign" = callPackage - ({ mkDerivation, base, base-compat, containers, hashable - , semigroupoids, stdenv, tagged, these, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "semialign"; - version = "1.1"; - sha256 = "f3e218bf7fb3ea8145dbf1051e3460e99a0d4064f0e76238595f996858e287d8"; - libraryHaskellDepends = [ - base base-compat containers hashable semigroupoids tagged these - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Align and Zip type-classes from the common Semialign ancestor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semialign-indexed" = callPackage - ({ mkDerivation, base, containers, hashable, lens, semialign - , stdenv, these, unordered-containers, vector - }: - mkDerivation { - pname = "semialign-indexed"; - version = "1.1"; - sha256 = "60f1dd3df6b1b1bf6d835209f55d4deedf0587a26a236e0a54c8a4c9a1abcaac"; - libraryHaskellDepends = [ - base containers hashable lens semialign these unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "SemialignWithIndex, i.e. izipWith and ialignWith"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semialign-optics" = callPackage - ({ mkDerivation, base, containers, hashable, optics-extra - , semialign, stdenv, these, unordered-containers, vector - }: - mkDerivation { - pname = "semialign-optics"; - version = "1.1"; - sha256 = "3e95b5f241c65a1124955492a8febf01cd02dc01b2a02a8bb7b66918a65dd1b9"; - libraryHaskellDepends = [ - base containers hashable optics-extra semialign these - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "SemialignWithIndex, i.e. izipWith and ialignWith"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.3.4"; - sha256 = "00d2e48973c3ab0a5d52616728ed63d0509454c8328148f698720014d7c58964"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable tagged template-haskell transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.5"; - sha256 = "ab2a96af6e81e31b909c37ba65f436f1493dbf387cfe0de10b6586270c4ce29d"; - revision = "1"; - editedCabalFile = "1inqcxrzzs8xz60pvbmznyi6g6xwzpxv7p6dqlcwariz31grzvs1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semirings" = callPackage - ({ mkDerivation, base, containers, hashable, integer-gmp, stdenv - , unordered-containers - }: - mkDerivation { - pname = "semirings"; - version = "0.5.2"; - sha256 = "5fb7a7e81a8d0268d30dad06f9bb6d734a9fe9c8a6603e9387391117df80ffe4"; - libraryHaskellDepends = [ - base containers hashable integer-gmp unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chessai/semirings"; - description = "two monoids as one, in holy haskimony"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "semver"; - version = "0.3.4"; - sha256 = "42dbdacb08f30ac8bf2f014981cb080737f793b89d57626cb7e2ab8c3d768e6b"; - libraryHaskellDepends = [ attoparsec base deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.11.1"; - sha256 = "e0e6c45e73578d2d7139e23a965937ac4514e5d310613607bfd4afd1abd50825"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sequence-formats" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, errors - , exceptions, foldl, lens-family, pipes, pipes-attoparsec - , pipes-bytestring, pipes-safe, stdenv, transformers, vector - }: - mkDerivation { - pname = "sequence-formats"; - version = "1.4.1"; - sha256 = "c30e71ea46cca8b073bd96c35532c8a178dbaed909cf0b4209fa23a9eec6c284"; - libraryHaskellDepends = [ - attoparsec base bytestring containers errors exceptions foldl - lens-family pipes pipes-attoparsec pipes-bytestring pipes-safe - transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "A package with basic parsing utilities for several Bioinformatic data formats"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "sequenceTools" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, foldl - , lens-family, optparse-applicative, pipes, pipes-group - , pipes-ordered-zip, pipes-safe, random, rio, sequence-formats - , split, stdenv, vector - }: - mkDerivation { - pname = "sequenceTools"; - version = "1.4.0.5"; - sha256 = "38991171b75af5dd5a86ec70e53d61dc7da2e6bea8dfeae3404a2e10db20911b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring optparse-applicative pipes random sequence-formats - vector - ]; - executableHaskellDepends = [ - ansi-wl-pprint base bytestring foldl lens-family - optparse-applicative pipes pipes-group pipes-ordered-zip pipes-safe - random rio sequence-formats split vector - ]; - doHaddock = false; - doCheck = false; - description = "A package with tools for processing DNA sequencing data"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "serialise" = callPackage - ({ mkDerivation, array, base, bytestring, cborg, containers - , ghc-prim, half, hashable, primitive, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "serialise"; - version = "0.2.2.0"; - sha256 = "33bcbb7b3796cf8a4615eadc29f7e382c2dc50d94c62b4825a73ed0687eea19e"; - libraryHaskellDepends = [ - array base bytestring cborg containers ghc-prim half hashable - primitive text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A binary serialisation library for Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors - , bytestring, Cabal, cabal-doctest, case-insensitive, deepseq - , http-api-data, http-media, http-types, mmorph, mtl, network-uri - , QuickCheck, singleton-bool, stdenv, string-conversions, tagged - , text, transformers, vault - }: - mkDerivation { - pname = "servant"; - version = "0.16.2"; - sha256 = "d6fcd5a7ebb9776edad295ec44c6179daad95b6696b02611a4d5af45a70ff47b"; - revision = "1"; - editedCabalFile = "0v913vjklgwyfbn7k2v70943gy4i8ja3y6crpyrg5llxkb81jpbc"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bifunctors bytestring - case-insensitive deepseq http-api-data http-media http-types mmorph - mtl network-uri QuickCheck singleton-bool string-conversions tagged - text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-JuicyPixels" = callPackage - ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant - , servant-server, stdenv, wai, warp - }: - mkDerivation { - pname = "servant-JuicyPixels"; - version = "0.3.0.5"; - sha256 = "9d563ad9ec2cbb46667c2fa87157e788732cd2bdf873882622fdfa8ebe591dd2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-media JuicyPixels servant - ]; - executableHaskellDepends = [ - base JuicyPixels servant servant-server wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/servant-JuicyPixels"; - description = "Servant support for JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.9"; - sha256 = "79981f35382b8dc0bd0492a1362f6bbb3e77ff72649cc09ab513c5530dbbd6dd"; - revision = "3"; - editedCabalFile = "0pn9ca2jmx71clz0j9nlz1lwmr2xv39zqfda10al11am9mc4j8n4"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions" = callPackage - ({ mkDerivation, base, bytestring, http-types, servant - , servant-checked-exceptions-core, servant-client - , servant-client-core, servant-server, stdenv, wai, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions"; - version = "2.2.0.0"; - sha256 = "70156713a8a612469efc074dd26d3a4d91fcdc9425d1a96dc214343165b60bea"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-types servant servant-checked-exceptions-core - servant-client servant-client-core servant-server wai world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, contravariant, http-media - , http-types, mtl, profunctors, servant, servant-docs, stdenv - , tagged, text, transformers, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions-core"; - version = "2.2.0.0"; - sha256 = "ccf46e9b9e91f7b3eee0c1f32c1a4e09fb00ba89ea5d06aef4c019d9349f2ac7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring contravariant http-media http-types mtl - profunctors servant servant-docs tagged text transformers - world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, deepseq - , exceptions, http-client, http-media, http-types, kan-extensions - , monad-control, mtl, semigroupoids, servant, servant-client-core - , stdenv, stm, text, time, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.16.0.1"; - sha256 = "0c517cff5b672fdc1d7dd7d4fa282f6827fc0cb2e0f89622d7a897da56e0d9f0"; - libraryHaskellDepends = [ - base base-compat bytestring containers deepseq exceptions - http-client http-media http-types kan-extensions monad-control mtl - semigroupoids servant servant-client-core stm text time - transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Automatic derivation of querying functions for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, containers, deepseq, exceptions, free, http-media - , http-types, network-uri, safe, servant, stdenv, template-haskell - , text, transformers - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.16"; - sha256 = "bf8d750ba21fef9772387d0d03e35acac51093ea9ab031c8951c2af38f4a7b33"; - revision = "2"; - editedCabalFile = "172diqnz0ddvlfznfjk0k1l02f1mb11i1dkzr6rizdmhb66qpqil"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring bytestring containers - deepseq exceptions free http-media http-types network-uri safe - servant template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, mtl, resourcet, servant - , stdenv, unliftio-core - }: - mkDerivation { - pname = "servant-conduit"; - version = "0.15"; - sha256 = "dfd115301f29fd517cab6805211b8d10d4bdcf1cc5eb399aebb9124d199ef656"; - revision = "3"; - editedCabalFile = "0adximf4hg3bf7d9mkcjdsp5klg787ryb1hy3j49fg39l1rszac4"; - libraryHaskellDepends = [ - base bytestring conduit mtl resourcet servant unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, hashable, http-media, http-types, lens, servant - , stdenv, string-conversions, text, universe-base - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.4"; - sha256 = "0de0ea23739e41b411941a4ceb0721bad217a939c1e37a833991f75a4ace65fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - hashable http-media http-types lens servant string-conversions text - universe-base unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.15"; - sha256 = "f1197f1319a735b37c5fdd991556bf34b780a9b87d0e57d936a42ae6734bbd73"; - revision = "2"; - editedCabalFile = "0axz78g0vhasq5cvqg1lq0b2qanmb768f1bvzbfx58rn6arwflnj"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-js" = callPackage - ({ mkDerivation, base, base-compat, charset, lens, servant - , servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-js"; - version = "0.9.4"; - sha256 = "f86ba73d38644a74ccec50c378df66ab4863664e83359b8866cf17fbf08b3c10"; - revision = "2"; - editedCabalFile = "1x7f0dbqgzlwzmr20l6hln4s86kblak4j9h0p9igcqibmplc70zn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat charset lens servant servant-foreign text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatically derive javascript functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv, text }: - mkDerivation { - pname = "servant-lucid"; - version = "0.9"; - sha256 = "6e3d6528a624a9b07c8f20359cfdf2392a7c4ec950b042abf56c802623e355f5"; - revision = "3"; - editedCabalFile = "10j29y9zjflh88csvn7zi4pm8jr9dxsglin94wypjrhcwy7yj1ic"; - libraryHaskellDepends = [ base http-media lucid servant text ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-machines" = callPackage - ({ mkDerivation, base, bytestring, machines, mtl, servant, stdenv - }: - mkDerivation { - pname = "servant-machines"; - version = "0.15"; - sha256 = "b18cc998c70adb9fc084942f184a2a6c44f6fc2eb830869a1a706ebeb706ec8c"; - revision = "4"; - editedCabalFile = "1p8ld4cxwsirlwz5ihrz6fyxbary4llxsnby42vjnhl19gylhdmk"; - libraryHaskellDepends = [ base bytestring machines mtl servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for machines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.5"; - sha256 = "ae547026ddc5d15bec0af9ea9324954f88dd605cae0775c81c45b1723dc77b81"; - revision = "3"; - editedCabalFile = "1137vz9xm8iwj6x8h1q1yify6c1lahy0dxj6hpbhgi4s3mqkhm2g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pipes" = callPackage - ({ mkDerivation, base, bytestring, monad-control, mtl, pipes - , pipes-safe, servant, stdenv - }: - mkDerivation { - pname = "servant-pipes"; - version = "0.15.1"; - sha256 = "7e65ff5733a86d3a395cfc400ed0162b765fa2248e6bfa4f08b4a9d3913b56e4"; - revision = "1"; - editedCabalFile = "0xm07qxw0szffm8krbvj2kdflwlx2ixlhp5scaj3fhwivycyayvg"; - libraryHaskellDepends = [ - base bytestring monad-control mtl pipes pipes-safe servant - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-purescript" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, http-types, lens, mainland-pretty, purescript-bridge - , servant, servant-foreign, servant-server, servant-subscriber - , stdenv, text - }: - mkDerivation { - pname = "servant-purescript"; - version = "0.9.0.4"; - sha256 = "d167d58e005900303751877bf0f104b2f68ba5a810294735841b92ff1504001e"; - libraryHaskellDepends = [ - aeson base bytestring containers directory filepath http-types lens - mainland-pretty purescript-bridge servant servant-foreign - servant-server servant-subscriber text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/eskimor/servant-purescript#readme"; - description = "Generate PureScript accessor functions for you servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-rawm" = callPackage - ({ mkDerivation, base, bytestring, filepath, http-client - , http-media, http-types, lens, resourcet, servant-client - , servant-client-core, servant-docs, servant-server, stdenv, wai - , wai-app-static - }: - mkDerivation { - pname = "servant-rawm"; - version = "0.3.2.0"; - sha256 = "2d90c1f6a284673ed28fc617170f191f5ed2f45ffd14e61fe49c575a7f426d04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring filepath http-client http-media http-types lens - resourcet servant-client servant-client-core servant-docs - servant-server wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-rawm"; - description = "Embed a raw 'Application' in a Servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, Cabal, cabal-doctest, containers, exceptions - , filepath, http-api-data, http-media, http-types, monad-control - , mtl, network, network-uri, resourcet, servant, stdenv - , string-conversions, tagged, text, transformers, transformers-base - , wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.16.2"; - sha256 = "002d8cdcd64fea4623b86fe29e4954b36e8ec159ec78684e5ce59c5f9e7c93d0"; - revision = "1"; - editedCabalFile = "017aw6wyhi5g7zkk59yj44r1n02zzin2w9wdskwqys7iqkvnvczn"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - filepath http-api-data http-media http-types monad-control mtl - network network-uri resourcet servant string-conversions tagged - text transformers transformers-base wai wai-app-static word8 - ]; - executableHaskellDepends = [ - aeson base base-compat servant text wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.2.1"; - sha256 = "35d3c1d24fece75c43d6063b3beba6ef37aa34241304761543be5430e2d32596"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, stm, text, time, transformers, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-subscriber"; - version = "0.6.0.3"; - sha256 = "11c7b5daa07dbf525c83f866f3f702108ea97e346cb734458e49046babc436c0"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/eskimor/servant-subscriber#readme"; - description = "When REST is not enough ..."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , Cabal, cabal-doctest, hspec, http-media - , insert-ordered-containers, lens, QuickCheck, servant - , singleton-bool, stdenv, swagger2, text, unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.7.1"; - sha256 = "8d46b4bb8cc1fa178aa8ffcb54d194a959d7f6b1bce1d039c24634bd8addb26d"; - revision = "2"; - editedCabalFile = "0ij93pd7lsq39grglhfrdjrg21bxigmhavy51xilg6rrpnfcj2wv"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring hspec http-media - insert-ordered-containers lens QuickCheck servant singleton-bool - swagger2 text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate a Swagger/OpenAPI/OAS 2.0 specification for your servant API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.4.3.23.11"; - sha256 = "0a4a0aea76b303b6594a07d4514bb23b60c8e7593daac40036d8fc4d0e34d967"; - revision = "2"; - editedCabalFile = "1wmxiihiwjkzwqqj2996fqmixz6jblj5gh43p7dxbww3g9fdz8qi"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3.3"; - sha256 = "03724a312f08d9f59893cf8a55be719219c0490bdd3fc0f83359ca459995ed3e"; - revision = "3"; - editedCabalFile = "0yx3q7y533v61ca4bm4wi8h7chbghj2rz92b330a544w7ac8il0p"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-redoc" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui-redoc"; - version = "0.3.3.1.22.3"; - sha256 = "fbdf5282db9851d2d752842a3748348f7d21d372f1e99083723b090703ccf32f"; - revision = "2"; - editedCabalFile = "195vfc3871l1clk85kzxjvz1zr986lbvgy26fazfkfsn032s74c6"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui: ReDoc theme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-websockets" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, conduit - , exceptions, monad-control, resourcet, servant-server, stdenv - , text, wai, wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-websockets"; - version = "2.0.0"; - sha256 = "c4262b5d5a01a692d8d9ca4abd735abe1ce7288ac456f5e819b5c358adbe43f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring conduit exceptions monad-control - resourcet servant-server text wai wai-websockets warp websockets - ]; - executableHaskellDepends = [ - aeson base conduit servant-server text wai warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/moesenle/servant-websockets#readme"; - description = "Small library providing WebSocket endpoints for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.1"; - sha256 = "01547419509cd0424885146734c08acede329a660022f534ac9b19cc685bf601"; - revision = "4"; - editedCabalFile = "0k9jg3vf0p1332243mji4lzm3lk3frsmxxlz6lgg68rwh3baz6f0"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "set-cover" = callPackage - ({ mkDerivation, array, base, containers, enummapset, non-empty - , prelude-compat, psqueues, semigroups, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "set-cover"; - version = "0.1"; - sha256 = "6b86f8fd0f55f04e96d03eb57d1f6fb0a4399ffbdba406d9ed73c165037b2dfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers enummapset non-empty prelude-compat psqueues - semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/set-cover/"; - description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.9"; - sha256 = "3bb386f705fc918615b288f55422ce6c14f087ff36e554cbafb9ffab9dea66a1"; - revision = "1"; - editedCabalFile = "01i087l8v129q90jf09khaw5p4iqix5s17gzgfz2pbi030zhb82h"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/Kritzefitz/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, file-embed, filepath, filepattern, hashable, heaps - , js-dgtable, js-flot, js-jquery, primitive, process, random - , stdenv, template-haskell, time, transformers, unix - , unordered-containers, utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.18.4"; - sha256 = "2026a70828333d1527098f757f47ec1978e2b151e2810113d0e116339cd1ef6e"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath filepattern - hashable heaps js-dgtable js-flot js-jquery primitive process - random time transformers unix unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra file-embed filepath - filepattern hashable heaps js-dgtable js-flot js-jquery primitive - process random template-haskell time transformers unix - unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.23"; - sha256 = "e3cf451ac288ff1576f75e99fb55eea83e0b8e03ba334f0bf885b07da1323344"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shared-memory" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "shared-memory"; - version = "0.2.0.0"; - sha256 = "266739418194429f0e3a316decd28bf15ae8cc4ce2e1e19c523dc92b3f023abc"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/shared-memory"; - description = "POSIX shared memory"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-utility" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "shell-utility"; - version = "0.0"; - sha256 = "7a41108e667337a3a59b63e2b5f079f61b3513c559f385d992b552dab74064e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/shell-utility/"; - description = "Utility functions for writing command-line programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shellmet" = callPackage - ({ mkDerivation, base, markdown-unlit, process, stdenv, text }: - mkDerivation { - pname = "shellmet"; - version = "0.0.3.0"; - sha256 = "897c1c7c9b57a7d626b5a3976fab348e232f38b01989796253316b3811fd69c4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process text ]; - executableHaskellDepends = [ base text ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/shellmet"; - description = "Out of the shell solution for scripting in Haskell"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, filepath, lifted-async - , lifted-base, monad-control, mtl, process, stdenv, text, time - , transformers, transformers-base, unix, unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.9.0"; - sha256 = "5eb5fd4fc105e218cef6cfa10971d299ad660324e6a6006b8cccc31edf39aace"; - revision = "1"; - editedCabalFile = "0827p6wq8j92svrvmx02gdk961xx42g1ng4j6g7nflrfks9hw0zf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions filepath lifted-async lifted-base monad-control mtl - process text time transformers transformers-base unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.1.0"; - sha256 = "d53abf2b289a3075555f1ede76f5beba0fadce352cd94efbad610bc1eb76020a"; - revision = "1"; - editedCabalFile = "1zr6xw4fvgx187yiqy7n0r9mnasyv1hxg2q9xzw3lmsf4z3xz6y7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "siggy-chardust" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "siggy-chardust"; - version = "1.0.0"; - sha256 = "9f730c3cc04ea629e0b655bfff66f83e146eb3b9f0908d5dc00b4c558d5f5a43"; - revision = "1"; - editedCabalFile = "1lknm1jr6h5qpixc727aj3zbmj4ia21r9lb8gzj50iildgmfk33b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/siggy-chardust#readme"; - description = "Rounding rationals to significant digits and decimal places"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5.1"; - sha256 = "7fc9baf6f47ffc082e7e05c9dade1451bdee06a0c4e2d882e8e0b692f50bfad1"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cabal" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "simple-cabal"; - version = "0.1.1"; - sha256 = "7b1e7c36da8910a439b3e80efd1c25834b415b1ad8a35169fa109776f44cd684"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cabal"; - description = "Cabal file wrapper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, unix - }: - mkDerivation { - pname = "simple-cmd"; - version = "0.2.1"; - sha256 = "5ac384f6c8608f4276efa8336dd134d3935b358deab826efb2c30e93bb8665ac"; - libraryHaskellDepends = [ base directory filepath process unix ]; - doHaddock = false; - doCheck = false; - description = "Simple String-based process commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd-args" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv }: - mkDerivation { - pname = "simple-cmd-args"; - version = "0.1.4"; - sha256 = "913f7f1ac48f38de8f2b898ded00c53319adbec4fcbe9275b63061a0a86a6b0b"; - libraryHaskellDepends = [ base optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cmd-args"; - description = "Simple command args parsing and execution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-log" = callPackage - ({ mkDerivation, async, base, base-unicode-symbols, containers - , data-default, deepseq, directory, exceptions, filepath, hformat - , microlens, microlens-platform, mmorph, mtl, SafeSemaphore, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "simple-log"; - version = "0.9.12"; - sha256 = "5c1074229a41ee2c2b1d6eb7036a82927e6585e9ef81d8c6e721fac497566880"; - libraryHaskellDepends = [ - async base base-unicode-symbols containers data-default deepseq - directory exceptions filepath hformat microlens microlens-platform - mmorph mtl SafeSemaphore text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/simple-log"; - description = "Simple log for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.30"; - sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-templates" = callPackage - ({ mkDerivation, aeson, attoparsec, base, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "simple-templates"; - version = "0.9.0.0"; - sha256 = "aac13b08fa89ecec8e329678cfff580fed6abd49ff913835cebb1592bd0e4827"; - libraryHaskellDepends = [ - aeson attoparsec base scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://simple.cx"; - description = "A basic template language for the Simple web framework"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.6"; - sha256 = "1062808e3c440999d4d8ed13703191782fc6f57874ddc76836122267691f80ef"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simplest-sqlite" = callPackage - ({ mkDerivation, base, bytestring, exception-hierarchy, sqlite - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "simplest-sqlite"; - version = "0.1.0.2"; - sha256 = "b7c21964200da4550f8ee1d038357fd4453c0b559bdcdfd45cad26c788039a0b"; - libraryHaskellDepends = [ - base bytestring exception-hierarchy template-haskell text - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "comming soon"; - description = "Simplest SQLite3 binding"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sqlite;}; - "simplistic-generics" = callPackage - ({ mkDerivation, base, comonad, kind-apply, stdenv }: - mkDerivation { - pname = "simplistic-generics"; - version = "0.1.0.0"; - sha256 = "3278c2e18573a70514b89c21464cb8567c26e850c643de93f0e2a6dc4815e087"; - libraryHaskellDepends = [ base comonad kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming without too many type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, dec, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.5"; - sha256 = "405dd57dea92857c04f539c3394894c40c8103ea0c4f3f0fdbfbd8acccde899f"; - revision = "1"; - editedCabalFile = "1g2dchvp5clg3hfdrp7hf5pbl9kcyhqhnqxqxd7n861nfd661wqd"; - libraryHaskellDepends = [ base dec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.3"; - sha256 = "f16b3a490bf8e4de566392a51430185b5d1ebdc5bc760c921703d5af9be14576"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , ghc-boot-th, mtl, pretty, stdenv, syb, template-haskell, text - , th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.6"; - sha256 = "bea771f7017ad35413215cbbd275a19c3d2a338c92e37b0bb64402385cb886d1"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl pretty syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skip-var" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "skip-var"; - version = "0.1.1.0"; - sha256 = "bfbce57abd47c9c892f734b5c7d2bccad90fa5f8f8a6d4747cca15d2a493d41e"; - revision = "1"; - editedCabalFile = "0vl2y19l7xhlq08f91ggycj4imfdxvkj2fsaz8ifc0waxk3q7ja8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dtaskoff/skip-var#readme"; - description = "Skip variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , skylighting-core, stdenv - }: - mkDerivation { - pname = "skylighting"; - version = "0.8.3"; - sha256 = "269a4d5cd3a1b83d8d37442f7f76b17bf2b2294da2ad3aa6dd4ef3eede5f55bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers skylighting-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, stdenv, text, transformers - , utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.8.3"; - sha256 = "e39c32b44694527a9dd5e2a94a70a6c21db252b26d06782e1ea3540e92b0881e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe text transformers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "slist"; - version = "0.1.0.0"; - sha256 = "8e2361302053f29b207e88d313a3f5f74992f12e590f2fed09e55d9c36f26c7b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vrom911/slist"; - description = "Sized list"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "small-bytearray-builder" = callPackage - ({ mkDerivation, base, byteslice, bytestring, natural-arithmetic - , primitive, primitive-offset, run-st, stdenv, text-short, vector - }: - mkDerivation { - pname = "small-bytearray-builder"; - version = "0.2.1.0"; - sha256 = "7c5931f382b3064242608242ee38dc87c564b4308ce07e0c2a079af0d1b72087"; - libraryHaskellDepends = [ - base byteslice bytestring natural-arithmetic primitive - primitive-offset run-st text-short vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/small-bytearray-builder"; - description = "Serialize to a small byte arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.5"; - sha256 = "9020e67895a57bde02d7df2c0af06a4c769eff56d48b6a830f6d803df891aea4"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.9"; - sha256 = "d3cafbc34a5d03363ddd41e59bd681168cd2d0aa8be4678db9ae1904ad202a4f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, basement, bytestring, cereal, network - , stdenv - }: - mkDerivation { - pname = "socks"; - version = "0.6.1"; - sha256 = "734447558bb061ce768f53a0df1f2401902c6bee396cc96ce627edd986ef6a73"; - libraryHaskellDepends = [ - base basement bytestring cereal network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "some" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "some"; - version = "1.0.1"; - sha256 = "31ce29bf7d4849d6852d2f8947de0302d18fcfb95e6d01118b5533c975dfb78d"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/some"; - description = "Existential type: Some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sop-core" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sop-core"; - version = "0.5.0.0"; - sha256 = "ff8f3d787a444a4628fb3111c444608b1a901d80f759108ec96e68f2406ef88b"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3.1"; - sha256 = "70a6ab47d1e16271332574667dd30f77eefb331a6e7dda4e959f48ac3359aa45"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3.1"; - sha256 = "cde9c76515588257fddece108376537bcda7698d0107bf0386b968ea5189ec38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "sparse-tensor" = callPackage - ({ mkDerivation, ad, base, bytestring, Cabal, cereal, containers - , deepseq, ghc-typelits-knownnat, ghc-typelits-natnormalise - , hmatrix, parallel, stdenv, tf-random, zlib - }: - mkDerivation { - pname = "sparse-tensor"; - version = "0.2.1.2"; - sha256 = "24617970865220d09e0649758d7e91cc05f4a98d486593264b5d047a14057866"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - ad base bytestring cereal containers deepseq ghc-typelits-knownnat - ghc-typelits-natnormalise hmatrix parallel tf-random zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TobiReinhart/sparse-tensor#readme"; - description = "typesafe tensor algebra library"; - license = stdenv.lib.licenses.mit; - }) {}; - "spatial-math" = callPackage - ({ mkDerivation, base, binary, cereal, ghc-prim, lens, linear - , stdenv, TypeCompose - }: - mkDerivation { - pname = "spatial-math"; - version = "0.5.0.1"; - sha256 = "c91cf29157c2a3425f40afdd6fb763f2fc4299eb4c32725ac64d2ba568c2a410"; - libraryHaskellDepends = [ - base binary cereal ghc-prim lens linear TypeCompose - ]; - doHaddock = false; - doCheck = false; - description = "3d math including quaternions/euler angles/dcms and utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, express, leancheck - , stdenv - }: - mkDerivation { - pname = "speculate"; - version = "0.4.1"; - sha256 = "16266f8882f3e7d5a8eab51a5779fcfa57ae497f479f60f7dd6271fee334d2bb"; - libraryHaskellDepends = [ - base cmdargs containers express leancheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.3"; - sha256 = "fce462557f490c6c3d264ca70ef98a2c644ba341a71e6ee9f87ee7f3e7ab0acc"; - revision = "1"; - editedCabalFile = "178d81ksnmgppbd09ci53r88iyacn3phy55v5i4ybfz5d8rfjpa5"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spoon" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "spoon"; - version = "0.3.1"; - sha256 = "b9b350b6730e34c246bbf7e228a86b3d4925b52c95542f7676d719ef2a9881d4"; - revision = "1"; - editedCabalFile = "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Catch errors thrown from pure computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.8"; - sha256 = "646716e795f3cd82f0277ffb672eca26a03f6897d85da3c267ee04cf4dc4a765"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.3"; - sha256 = "2575bd23b81d8cfb792ef78ab8bef70c6b2d74d9309b07be8573e7df0a7ae687"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "2.1.0"; - sha256 = "734f94a3732ec018056e57c60ad9ace04455d091eafbd0a7f0b19e7e0d8164e0"; - revision = "2"; - editedCabalFile = "0vzby2q8qp6z74ighqalw05b94821cl9w6dbwy4hkgd67pc38nph"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "fd569cd27cfd62fb9d3e544e222450ec2734c44a3293994f35a26af982ce3d93"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, async, base, base-orphans, binary - , data-default-class, deepseq, dense-linear-algebra, math-functions - , monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.15.2.0"; - sha256 = "c496dbb8767a65ea3c352fd08ce1918200a0cc9d8f8b5f262aebbb43dee22a49"; - libraryHaskellDepends = [ - aeson async base base-orphans binary data-default-class deepseq - dense-linear-algebra math-functions monad-par mwc-random primitive - vector vector-algorithms vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.3"; - sha256 = "24da421150f269ebb6679d7ea2c18dcea5cd253b3e27bf4bded656e7e90eb507"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.1"; - sha256 = "e80e5be72a4564fa45e1e27f91c0984e12d2a736d0ceb9594350d573efee1442"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-containers" = callPackage - ({ mkDerivation, base, deferred-folds, focus, hashable, list-t - , stdenv, stm-hamt, transformers - }: - mkDerivation { - pname = "stm-containers"; - version = "1.1.0.4"; - sha256 = "d43346bfadbe5ccc33c0903a7dfbce8f48657184176fcefa11174ff9d2269655"; - libraryHaskellDepends = [ - base deferred-folds focus hashable list-t stm-hamt transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-containers"; - description = "Containers for STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-hamt" = callPackage - ({ mkDerivation, base, deferred-folds, focus, hashable, list-t - , primitive, primitive-extras, stdenv, transformers - }: - mkDerivation { - pname = "stm-hamt"; - version = "1.2.0.4"; - sha256 = "b28e0e19577249c9a078c1d9a29d31ba1954b59e50a074ceb2afa2f27e889f42"; - libraryHaskellDepends = [ - base deferred-folds focus hashable list-t primitive - primitive-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-hamt"; - description = "STM-specialised Hash Array Mapped Trie"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2.1"; - sha256 = "e8e687268c86a6b635e7ee08415f31921d4a46eed267fe573a57981ec00d8419"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.6"; - sha256 = "5018769e91e551086bc96457da44faa3a03b4470a55212505102bc09518174bf"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.3.0"; - sha256 = "9af499b2b19b2f173f97db37f843938efd2c59c30285e436564aefd2aa5bdc3a"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.47.0"; - sha256 = "189117fb169a39779e569571bf6acbd9c72afe90553414fb084643c16c3f2111"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.3.0"; - sha256 = "b4008eee1fcee6a9f63d0d31eebefd6cf72731fab65d943831338c3961fafd62"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.1.2"; - sha256 = "ea2a6d4b2dfabe8cdf3b4e0a29db9b14170f59d3554b70e0377779867efcfc16"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, containers, deepseq - , directory, exceptions, ghc-prim, heaps, lockfree-queue - , monad-control, mtl, network, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.7.0"; - sha256 = "70dd89ff13a05dd493697065c061e2a195088224f8caf4788b0dae007db32eed"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base containers deepseq directory exceptions - ghc-prim heaps lockfree-queue monad-control mtl network - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.3"; - sha256 = "02d934ec5053d3d42031798e5a3cd25547ccde5973d562f9fc943d635d9956c0"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-list" = callPackage - ({ mkDerivation, base, hashable, semigroupoids, stdenv }: - mkDerivation { - pname = "strict-list"; - version = "0.1.5"; - sha256 = "ba7338766ba5fbb4069b748e5bdce12866379c32f1ab1c6015d45dbd1010bb1a"; - libraryHaskellDepends = [ base hashable semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/strict-list"; - description = "Strict linked list"; - license = stdenv.lib.licenses.mit; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.4"; - sha256 = "c85b9c1e27596ea8e765e4b630b7be53c331c51b680ad46cc2d248d3099fdd71"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.1"; - sha256 = "1caeff34b02cd860ae1740629ae97f7df8458bb7ab6a83e3b15c124b513e5e21"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stripe-concepts" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "stripe-concepts"; - version = "1.0.2.0"; - sha256 = "533c36aa753911836705b4d52cac94ed868008bdf5ca51fb6373a08dea251729"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Types for the Stripe API"; - license = stdenv.lib.licenses.mit; - }) {}; - "stripe-signature" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cryptonite - , memory, stdenv, stripe-concepts, text - }: - mkDerivation { - pname = "stripe-signature"; - version = "1.0.0.1"; - sha256 = "362b681d6ef90bc6ab90affd2fa29634015416d91c9c2f1c8ab70eb369e0afd0"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cryptonite memory stripe-concepts - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Verification of Stripe webhook signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , http-client, http-client-tls, http-types, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "strive"; - version = "5.0.9"; - sha256 = "e2a961ed1f282d9fcb660ddc3a9a9bae06d3ac8f35ac964f38836450498e4280"; - libraryHaskellDepends = [ - aeson base bytestring data-default gpolyline http-client - http-client-tls http-types template-haskell text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/strive#readme"; - description = "A client for the Strava V3 API"; - license = stdenv.lib.licenses.mit; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.2"; - sha256 = "842f7cd48c6f3b696dd900e9972ce1d50992162de46d7ad2b01b7944de08db57"; - revision = "2"; - editedCabalFile = "0ma2s0by622kaq7p57g859pxha02bqrd7n86cczfb2gzcm7kqma7"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "structured-cli" = callPackage - ({ mkDerivation, base, data-default, haskeline, mtl, split, stdenv - , transformers - }: - mkDerivation { - pname = "structured-cli"; - version = "2.5.2.0"; - sha256 = "40157b7a14b2564d9e4cdc55b703a7838231bdf50bede9ba1d6d9c87fd13076b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base data-default haskeline mtl split transformers - ]; - executableHaskellDepends = [ base data-default mtl split ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/structured-cli#readme"; - description = "Application library for building interactive console CLIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stylish-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, file-embed, filepath, haskell-src-exts, mtl - , optparse-applicative, semigroups, stdenv, strict, syb, yaml - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.9.4.4"; - sha256 = "e23da49af9a249d9ec38a8542ecc51791481381b975717b770de420999c1298d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory file-embed - filepath haskell-src-exts mtl semigroups syb yaml - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory file-embed - filepath haskell-src-exts mtl optparse-applicative strict syb yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jaspervdj/stylish-haskell"; - description = "Haskell code prettifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.4"; - sha256 = "4ce471e3c3378587360c2e3de055267991b88d846e858bcc3135b4ea0c171ac2"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries - , bytestring, Cabal, cabal-doctest, containers, cookie - , generics-sop, hashable, http-media, insert-ordered-containers - , lens, mtl, network, optics-core, optics-th, QuickCheck - , scientific, stdenv, template-haskell, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.5"; - sha256 = "0e3bd29c2c611c52eae20c8fced5fccb24fcc21116afd8f31ee4ab664621927b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat-batteries bytestring containers - cookie generics-sop hashable http-media insert-ordered-containers - lens mtl network optics-core optics-th QuickCheck scientific - template-haskell text time transformers transformers-compat - unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7.1"; - sha256 = "e04a9c7ae48d9fe25e9b7a064f7122d39c710753544511e15df7a6e87fdfe700"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.4"; - sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1.1"; - sha256 = "e5b4ee185f30a64d854fb02291f7bdf60f8846f1fcc3d67ebc6ab1f61e74ee88"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "tagged"; - version = "0.8.6"; - sha256 = "ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd"; - revision = "2"; - editedCabalFile = "1y8z8hmm846z7h3wqncpi0d4zhsnkwf08q0wchivkjw8di7ahz0z"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.3"; - sha256 = "2cec62a7aac67cae90003e811eda26bfcf3c297b9987e548c0d54cc6b653b2d8"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagshare" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "d2314bae2e6820700f2a61db9c9f7976e1b53547a49cdd3352bdf29ac3856ce0"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "TagShare - explicit sharing with tags"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.8"; - sha256 = "ba7e5500d853d29f0675b90655b7fdd032a4a7eee82a56e7ee3ef9949fe93ad5"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.1"; - sha256 = "b384449f62b2b0aa3e6d2cb1004b8060b01f21ec93e7b63e7af6d8fad8a9f1de"; - revision = "1"; - editedCabalFile = "1ni8zym7k6f1hg6wfvnnf3xcs2ar3z8xaabkgjg8q329arjcm8wp"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.3.2"; - sha256 = "004578db7088e7ad53e23f8a293d739314698f0ec421ffad7be101e13c1cf62d"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - , wcwidth - }: - mkDerivation { - pname = "tasty"; - version = "1.2.3"; - sha256 = "8ca107abc12a476cfbc84f516f30a614c81be315903f910bc681137eb702f662"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix wcwidth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-ant-xml" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, ghc-prim, mtl, stdenv, stm, tagged, tasty - , transformers, xml - }: - mkDerivation { - pname = "tasty-ant-xml"; - version = "1.1.6"; - sha256 = "1c17899e3870922113bbfbf50e33b24478b53cae85dc76906a2de57c03bd188f"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving ghc-prim mtl - stm tagged tasty transformers xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-ant-xml"; - description = "Render tasty output to XML for Jenkins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "2.0.0.1"; - sha256 = "3face0f15baf33e55d1ecef336bf262cd70f84696e1925f8863378f642fe8fa5"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.1"; - sha256 = "be6c5b384614a592fb056e2e4f7806416aa37f114db77d0f8986938ba7cc1d3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "http://git.coop/lwm/tasty-discover"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.2"; - sha256 = "1689d91bf02994858bdaa7fdad0944eebfa8ea27744da9bae48cea59c36caf9c"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.2"; - sha256 = "04103d2a2fd6acc8f66b67d943060e88a2ea36b799502bf3e76c2726a15c714c"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-hedgehog"; - version = "1.0.0.2"; - sha256 = "65538f7371f5ccf52c232a4723d931dd0278ea49bf478c2abe50c3bc4c1d5bef"; - libraryHaskellDepends = [ base hedgehog tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/tasty-hedgehog"; - description = "Integration for tasty and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.5.1"; - sha256 = "fe889ec0f7b3991c46a07d9ff9cf09608a73a18f434a7480d2a09c79e56f3345"; - revision = "4"; - editedCabalFile = "1yppwhs2r2rlwrzli9ccv5ldgl95h5p7pqhsr898r3das6daf6sk"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.2"; - sha256 = "4823c85efe15f36e1d71867aaa6cdcdff3ef39f97492321e9bb8a30c742f6ef7"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, tasty }: - mkDerivation { - pname = "tasty-leancheck"; - version = "0.0.1"; - sha256 = "2791628bf9698aee88c9e1b07ff2f910510664cdc44e2a30c805c2026888d31a"; - libraryHaskellDepends = [ base leancheck tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/tasty-leancheck#readme"; - description = "LeanCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-lua" = callPackage - ({ mkDerivation, base, bytestring, file-embed, hslua, stdenv, tasty - , text - }: - mkDerivation { - pname = "tasty-lua"; - version = "0.2.0.1"; - sha256 = "1d976b6cabfb86fd6d9b4ca82af8ee90c20c8457a6577da008a34f98b3199276"; - libraryHaskellDepends = [ - base bytestring file-embed hslua tasty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/tasty-lua"; - description = "Write tests in Lua, integrate into tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10.1"; - sha256 = "50d77092005ffd605177322d8d049994cbd8091dc0b56774d8cce6ba4bdb9b4c"; - revision = "1"; - editedCabalFile = "1ms8ph2vp8x1icqiw468zlpsj4pii7xjm6g3k6ikkcy7cx3vnv4s"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-rerun" = callPackage - ({ mkDerivation, base, containers, mtl, optparse-applicative, split - , stdenv, stm, tagged, tasty, transformers - }: - mkDerivation { - pname = "tasty-rerun"; - version = "1.1.17"; - sha256 = "4de14995fdc3bbd0a9e5cf57ca239a4b198cfe54e5989a517c009c6967762a42"; - libraryHaskellDepends = [ - base containers mtl optparse-applicative split stm tagged tasty - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-rerun"; - description = "Rerun only tests which failed in a previous test run"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.13"; - sha256 = "da5d755276652b75aa2f8876f2b62f81bfa368f12c17dbd018dcd2cde4eba9e9"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2.1"; - sha256 = "d46e38067c4d064f3c9c77219f570ba4e9dbbd7273a5edc4860610cde4afb84e"; - revision = "4"; - editedCabalFile = "0830zzgbf5xffa1yqwcvy4xm1wzzydvy5wmy3sqk3a5n85v295by"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "template-haskell-compat-v0208" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "template-haskell-compat-v0208"; - version = "0.1.2.1"; - sha256 = "06b0928ad61902236e1115c9f1b8ebcbe07756362767685adf5f1969c80f15b1"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/template-haskell-compat-v0208"; - description = "A backwards compatibility layer for Template Haskell newer than 2.8"; - license = stdenv.lib.licenses.mit; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-resourcet" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, resourcet - , stdenv, transformers, unix - }: - mkDerivation { - pname = "temporary-resourcet"; - version = "0.1.0.1"; - sha256 = "e0406f6834690ffa3a0b9727302a5ae928cbdc1eb42431a15daaac498fcaee71"; - libraryHaskellDepends = [ - base directory exceptions filepath resourcet transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/ttuegel/temporary-resourcet"; - description = "Portable temporary files and directories with automatic deletion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tensors" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "tensors"; - version = "0.1.4"; - sha256 = "d65d2c0dc7c6c90357c892b42dc13f853c95b96270e4b5afb3d717d42f1a38f2"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/tensors#readme"; - description = "Tensor in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-progress-bar" = callPackage - ({ mkDerivation, base, deepseq, stdenv, terminal-size, text, time - }: - mkDerivation { - pname = "terminal-progress-bar"; - version = "0.4.1"; - sha256 = "a61ca10c92cacc712dbbe28881dc23f41cc139760b7b2eef66bd0faa60ea5e24"; - libraryHaskellDepends = [ base deepseq terminal-size text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roelvandijk/terminal-progress-bar"; - description = "A progress bar in the terminal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, test-framework }: - mkDerivation { - pname = "test-framework-leancheck"; - version = "0.0.1"; - sha256 = "236c4c2e6b647c5eb84aeda94a949d50341999825d1a9372f195218137609f2f"; - libraryHaskellDepends = [ base leancheck test-framework ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/test-framework-leancheck#readme"; - description = "LeanCheck support for test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.5"; - sha256 = "c9f678d4ec30599172eb887031f0bce2012b532daeb713836bd912bff64eee59"; - revision = "1"; - editedCabalFile = "1vmpk70h1594h9s216d3ngkb399fpny1d3sh4gg0vrc75p4as68d"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, text, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.12"; - sha256 = "5e1915a87774428733575cd47ce1f4050a70ab30c8518238e320036e877a8125"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb text xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, bytestring, deferred-folds, stdenv, text - , transformers - }: - mkDerivation { - pname = "text-builder"; - version = "0.6.6.1"; - sha256 = "b5fa52a4a33bc6ba727996607ccdff0c35b951d1d522e786c96e59f16dafd20d"; - libraryHaskellDepends = [ - base bytestring deferred-folds text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.13"; - sha256 = "ec174c30333548e21b045554329e6332d54bc355d96e0951ea3ea524463a2a34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.1"; - sha256 = "c6e26888d2751b78e3102747d0bccedeee4002a1eb6c76dd1fe6c3836b5082e8"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5.0.1"; - sha256 = "58a7680fc75a058ef8a03a6d519d5266f204bae2eb30021663de135a1c31b518"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-region" = callPackage - ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring - , groups, lens, stdenv, text - }: - mkDerivation { - pname = "text-region"; - version = "0.3.1.0"; - sha256 = "a74cac02ae5b3c37d09d415f2440a2ea1977145b962b3e291c6484d7cffac5ff"; - revision = "1"; - editedCabalFile = "1z5l1hv8sc4ida5s4r03ihak612lrq0rf7sdfkw7gf05f67c622p"; - libraryHaskellDepends = [ - aeson base base-unicode-symbols bytestring groups lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvoidex/text-region"; - description = "Marking text regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.3"; - sha256 = "bf5b9fedb7d0301e8fdf33e3223d10ca940e9e72c18bac135be80b6016edd977"; - revision = "1"; - editedCabalFile = "0lb4papn54fbgjdqj4ladaf5q12dhlwkg5z2vc5qxlh35x82sw4a"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, generic-deriving - , ghc-boot-th, ghc-prim, integer-gmp, stdenv, template-haskell - , text, th-abstraction, th-lift, transformers, transformers-compat - }: - mkDerivation { - pname = "text-show"; - version = "3.8.3"; - sha256 = "57acdea41ec2082dc2cae4c1401a9bba016e0feec979ccacbeb0c7f6367995d0"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers generic-deriving ghc-boot-th ghc-prim - integer-gmp template-haskell text th-abstraction th-lift - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show-instances" = callPackage - ({ mkDerivation, base, base-compat-batteries, bifunctors, binary - , containers, directory, ghc-boot-th, haskeline, hpc, old-locale - , old-time, pretty, random, semigroups, stdenv, tagged - , template-haskell, terminfo, text, text-short, text-show, time - , transformers, transformers-compat, unix, unordered-containers - , vector, xhtml - }: - mkDerivation { - pname = "text-show-instances"; - version = "3.8.3"; - sha256 = "ad549ae8614843558f7cc44ee6d054ae9950c9ac45d349b18cc97d3e6e196387"; - revision = "1"; - editedCabalFile = "104r5k4h4sdf69frpc0pr8jijk4v9dalw9c18yib653bwjw0ypl4"; - libraryHaskellDepends = [ - base base-compat-batteries bifunctors binary containers directory - ghc-boot-th haskeline hpc old-locale old-time pretty random - semigroups tagged template-haskell terminfo text text-short - text-show time transformers transformers-compat unix - unordered-containers vector xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show-instances"; - description = "Additional instances for text-show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-zipper" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text, vector }: - mkDerivation { - pname = "text-zipper"; - version = "0.10.1"; - sha256 = "9afaeb93d55b0bb6d0d6f495e3ff0789a60d0dee57fb6103f52e4c05ae64b14b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base deepseq text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/text-zipper/"; - description = "A text editor zipper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.1.1"; - sha256 = "71b494920377cfd1c58f220e5d8862c1f2c0d2b1ce529352f2fde20428a96ce2"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.3.1.0"; - sha256 = "4b9e1bcc6ec3d897fb09c3d7fa2f37f0672d5370e0e3e49809886da81fe001b9"; - revision = "1"; - editedCabalFile = "1c0sy614vfcdvshn0z09nzfiq89v5if31yvvpxzrivrdy9gf912s"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.1.0.0"; - sha256 = "5d5213f9950e035b49541f6e4d37449ad2f6dfc127d8deb507c6badf576ba50d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, fail, ghc-prim, mtl - , ordered-containers, semigroups, stdenv, syb, template-haskell - , th-abstraction, th-lift, th-orphans, transformers-compat - }: - mkDerivation { - pname = "th-desugar"; - version = "1.10"; - sha256 = "1bf5b113be50afbb416fb7c8540091ba68d5c5fb78693a490db45f8a8f207bbc"; - libraryHaskellDepends = [ - base containers fail ghc-prim mtl ordered-containers semigroups syb - template-haskell th-abstraction th-lift th-orphans - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.5.0"; - sha256 = "5e909e674bc6311d4a8c2376df1e5bda2d8ecde8d79ec8d3d51f59c5bc779cdc"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.8.1"; - sha256 = "3fa1f4193794d8d6dc7864e20a2f89ab268c321a4b3d254fd38282619f8e5ed7"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/RyanGlScott/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, th-lift, transformers, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.14"; - sha256 = "e87c194c9aa85576ba32dd7f7c70b8c182a3089d9c3107c9e5c448b6ad242b64"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text th-lift - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.9"; - sha256 = "3f3c6bead037cb11faf633b3938d1af2c6b11399e8353b72e80d9eb3b57e41f6"; - revision = "1"; - editedCabalFile = "100gpi0np50vxlapyl6d05w8ss9l2gqacn28i228hsvhvrxxwjdy"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-printf" = callPackage - ({ mkDerivation, base, charset, containers, dlist - , integer-logarithms, microlens-platform, mtl, parsec, semigroups - , stdenv, template-haskell, text, th-lift, transformers - }: - mkDerivation { - pname = "th-printf"; - version = "0.7"; - sha256 = "ea2bc2ab17961188fcf69221cbfab0b420dbe1fddcef072bb47789ca34e034b9"; - libraryHaskellDepends = [ - base charset containers dlist integer-logarithms microlens-platform - mtl parsec semigroups template-haskell text th-lift transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pikajude/th-printf#readme"; - description = "Quasiquoters for printf"; - license = stdenv.lib.licenses.mit; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.5"; - sha256 = "af1b2e7e39e029d8c9a20efdd7b49d4d15616ac360adddc7a09560b9a223359c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.9"; - sha256 = "f889dd029d5ab191ace99fe595f363c60314d536e61c8c58f6167f1a9d29ae43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-test-utils" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "th-test-utils"; - version = "1.0.1"; - sha256 = "9d75fd38252cceac121e38c18645ef14d799332739432d18a836f0ac3e917de1"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/th-test-utils#readme"; - description = "Utility functions for testing Template Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, assoc, base, base-compat, binary, deepseq - , hashable, QuickCheck, semigroupoids, stdenv, unordered-containers - }: - mkDerivation { - pname = "these"; - version = "1.0.1"; - sha256 = "79cc1ee35d268c5871f585681c649daded2ffe5fc657c3db87a9b2f38a8917cc"; - revision = "1"; - editedCabalFile = "0923r86fnmgpx0msm68aszirh2n19nn5bccgjxfh2146jw4z7w3z"; - libraryHaskellDepends = [ - aeson assoc base base-compat binary deepseq hashable QuickCheck - semigroupoids unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "these-lens" = callPackage - ({ mkDerivation, base, base-compat, lens, stdenv, these }: - mkDerivation { - pname = "these-lens"; - version = "1"; - sha256 = "feb020128788dfc515164190bb051f7f1034eca90de9e82caf253d8b47f09490"; - revision = "1"; - editedCabalFile = "1lrpq5a8ldddmsi7ckaqinamn2f7kkijq5jq05yzdx818b2563wn"; - libraryHaskellDepends = [ base base-compat lens these ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Lenses for These"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "these-optics" = callPackage - ({ mkDerivation, base, optics-core, stdenv, these }: - mkDerivation { - pname = "these-optics"; - version = "1"; - sha256 = "273ec7881aef36ce5571cfde6c389b7e8c9ae5e08d78eb5633b074c9fef4ba3e"; - revision = "2"; - editedCabalFile = "04iahn4y52qj3q99r20zp0cgj764m7k073jmkf66qf819133afl8"; - libraryHaskellDepends = [ base optics-core these ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Optics for These"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.1"; - sha256 = "8181448452c759b660f6d7c8775fd99479ccc382cd291460903b15574e5d5c34"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.2"; - sha256 = "d648e01631189036a386d91de22f2b862e830ad0625b1f6096b347974f465294"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "thyme" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , cpphs, deepseq, mtl, old-locale, profunctors, QuickCheck, random - , stdenv, text, time, vector, vector-space, vector-th-unbox - }: - mkDerivation { - pname = "thyme"; - version = "0.3.5.5"; - sha256 = "84c6701fb7b40841d22582202382c362fd9e0d6e5f1c959b7e0f2f91a85c796c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers deepseq mtl old-locale - profunctors QuickCheck random text time vector vector-space - vector-th-unbox - ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liyang/thyme"; - description = "A faster time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tidal" = callPackage - ({ mkDerivation, base, bifunctors, bytestring, clock, colour - , containers, deepseq, hosc, mwc-random, network, parsec, primitive - , random, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "tidal"; - version = "1.4.7"; - sha256 = "53f1da6f272231ab3b926a8eacefc9139e760f559084ed3b4f9669e117b96607"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bifunctors bytestring clock colour containers deepseq hosc - mwc-random network parsec primitive random text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://tidalcycles.org/"; - description = "Pattern language for improvised music"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.5"; - sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-manager" = callPackage - ({ mkDerivation, auto-update, base, stdenv }: - mkDerivation { - pname = "time-manager"; - version = "0.0.0"; - sha256 = "90a616ed20b2119bb64f78f84230b6798cde22a35e87bc8d9ee08cdf1d90fcdb"; - libraryHaskellDepends = [ auto-update base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Scalable timer"; - license = stdenv.lib.licenses.mit; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.1"; - sha256 = "bbf133bd986e79664560f42f2a36b7ad2e89c1095316029e7d6b228412355380"; - revision = "1"; - editedCabalFile = "00063s6a75sy9fjg5507yix0wizdfx5vangn3yfmfvh3wgw8yj8c"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.15.0"; - sha256 = "cb71164ce47af991babc9837e3e86c4f9d4e0cac1440f56faa71f4497af58d5f"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tldr" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers - , directory, filepath, optparse-applicative, semigroups, stdenv - , text, typed-process - }: - mkDerivation { - pname = "tldr"; - version = "0.6.1"; - sha256 = "90529ea9ee2bfbf916e6fce1ce84b8936751145feb342605f5d9e60c2175f55b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring cmark text - ]; - executableHaskellDepends = [ - base containers directory filepath optparse-applicative semigroups - typed-process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/tldr-hs#readme"; - description = "Haskell tldr client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, hourglass, memory, mtl - , network, stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.5.3"; - sha256 = "0c9c4af3ec46fe6633aa22155d44a79d521fa8cfe14ec6ee40af053a53e34a9c"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class hourglass memory mtl network transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, tls, tls-session-manager, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.8"; - sha256 = "74633188747b117762b9c6e7b6df9ac0e536a1adf93de3836733cb50c194def4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem tls - tls-session-manager x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, basement, bytestring, clock - , memory, psqueues, stdenv, tls - }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.4"; - sha256 = "ba207f79b4536a65625063106c621e8bafc0dc7928bd9273270e19f36d59938c"; - libraryHaskellDepends = [ - auto-update base basement bytestring clock memory psqueues tls - ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, base64-bytestring - , bytestring, containers, cryptohash-sha1, deepseq, directory - , generic-monoid, port-utils, postgres-options, postgresql-simple - , process, stdenv, stm, temporary, transformers, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "1.34.1.0"; - sha256 = "98514428edaf527cc464cb9a30df89c6168c858e039ab1baf8293471196c3ba2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint async base base64-bytestring bytestring containers - cryptohash-sha1 deepseq directory generic-monoid port-utils - postgres-options postgresql-simple process stm temporary - transformers unix - ]; - executableHaskellDepends = [ - async base directory postgres-options postgresql-simple process - temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , markdown-unlit, megaparsec, mtl, parser-combinators, stdenv, text - , time, transformers, unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "1.2.1.0"; - sha256 = "1e1fa9b59d064f757731e6a91f6c87e06312c72e6b9cfcee859f0afec7acfc2f"; - revision = "1"; - editedCabalFile = "00lb4ivrqrj5yqnfz5ji3vjaa284img9xhkjvrzc291bs83vl4kr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable megaparsec mtl - parser-combinators text time transformers unordered-containers - ]; - executableHaskellDepends = [ - base containers hashable text time unordered-containers - ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "Bidirectional TOML serialization"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "tonalude" = callPackage - ({ mkDerivation, base, bytestring, rio, stdenv, unliftio }: - mkDerivation { - pname = "tonalude"; - version = "0.1.1.0"; - sha256 = "5aa0ce5f89d5e7568e303f1ba41ca998ba05fbf94c17eb42fb01d3e65b601018"; - libraryHaskellDepends = [ base bytestring rio unliftio ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "A standard library for Tonatona framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "topograph" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, containers - , stdenv, vector - }: - mkDerivation { - pname = "topograph"; - version = "1"; - sha256 = "a7a95e00518d1c52dcf5261b0be4776012122032fdbdeae0bdf41ce38a92a76e"; - revision = "2"; - editedCabalFile = "0sci2p1spsh7as4n7mp1hb4pwiq4wd69p60c71kwx56wpwiglp9i"; - libraryHaskellDepends = [ - base base-compat base-orphans containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/topograph"; - description = "Directed acyclic graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "torsor" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "torsor"; - version = "0.1"; - sha256 = "75a3f53a08b9333613a16c5e98f12a069a1c1a360dc3c2abf7b47522acb06d9c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/torsor#readme"; - description = "Torsor Typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tracing" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, containers, http-client, ip, mtl, network - , random, stdenv, stm, text, time, transformers, unliftio - }: - mkDerivation { - pname = "tracing"; - version = "0.0.4.0"; - sha256 = "4be2c266499f6dc494e548ebe75c84aa19d43f14202513a0f652fb5573821ad0"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive containers - http-client ip mtl network random stm text time transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/tracing"; - description = "Distributed tracing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.5"; - sha256 = "da67cf11515da751b32a8ce6e96549f7268f7c435769ad19dc9766b69774620b"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.1.0"; - sha256 = "d69b371265f20ecd6c72e3643036f835dc8b654516d2a5e496fabaae4f0ad1fa"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, bytestring-builder, containers, hashable - , parsec, parsers, pretty, QuickCheck, scientific, stdenv, tagged - , text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.1"; - sha256 = "e3d901ad6f3e2732f07e0dafcafb27bef2f2cadec46bf9c9a5c95e60f1b2a684"; - revision = "2"; - editedCabalFile = "081fcdkps3sc1pcfbcxs5f1ifnpx8hsk9ms2gafd793lia6whfsk"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - bytestring-builder containers hashable parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, array, base, blaze-builder - , blaze-html, blaze-markup, bytestring, Cabal, cabal-doctest - , charset, comonad, containers, deepseq, fingertree, ghc-prim - , hashable, lens, mtl, parsers, prettyprinter - , prettyprinter-ansi-terminal, profunctors, reducers, semigroups - , stdenv, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "2.1"; - sha256 = "7a25c6b07b6ca4c6465b9f888444183cd1eab54d2890272010150df7a911233b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal array base blaze-builder blaze-html blaze-markup - bytestring charset comonad containers deepseq fingertree ghc-prim - hashable lens mtl parsers prettyprinter prettyprinter-ansi-terminal - profunctors reducers semigroups transformers unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.2.2.1"; - sha256 = "3ab7ff8bc630fbdd3d479e993d67853dacfc2967a2ca46b8bb7ee9387158d971"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "trivial-constraint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "trivial-constraint"; - version = "0.6.0.0"; - sha256 = "e527a3f98b2d32ea8453bc2b29510b7c48c1076b4061168ef8b8d07a28f51178"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leftaroundabout/trivial-constraint"; - description = "Constraints that any type, resp. no type fulfills"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttc" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "ttc"; - version = "0.2.0.0"; - sha256 = "477713e7a13358a9eb39b2dc4b25ebf89fb4f276aaae6fde23c7ecd4c07583ee"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ExtremaIS/ttc-haskell#readme"; - description = "Textual Type Classes"; - license = stdenv.lib.licenses.mit; - }) {}; - "ttl-hashtables" = callPackage - ({ mkDerivation, base, clock, containers, data-default, failable - , hashable, hashtables, mtl, stdenv, transformers - }: - mkDerivation { - pname = "ttl-hashtables"; - version = "1.4.1.0"; - sha256 = "d20d7aefb98a617fefaf9178c0a3d23620625800598054f2d7be36e8cafa7cf8"; - revision = "1"; - editedCabalFile = "0ghzp5kqk5a6831kxfizsnjjcaflinqb26l4d5vjwk7763jad195"; - libraryHaskellDepends = [ - base clock containers data-default failable hashable hashtables mtl - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Extends hashtables so that entries added can be expired after a TTL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple" = callPackage - ({ mkDerivation, base, OneTuple, stdenv }: - mkDerivation { - pname = "tuple"; - version = "0.3.0.2"; - sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624"; - libraryHaskellDepends = [ base OneTuple ]; - doHaddock = false; - doCheck = false; - description = "Various functions on tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.1.0"; - sha256 = "f6e18d0f444993c959eaa7d1aca87993c779b929260b1c6dd823715d3e736043"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, streaming-commons, system-fileio, system-filepath, temporary - , text, time, transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.16"; - sha256 = "5616e6d6c184fbe77e695f99f6f22c52072b80dce4a6e68974f51aaa5fd18c98"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm streaming-commons - system-fileio system-filepath temporary text time transformers unix - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-equality" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-equality"; - version = "1"; - sha256 = "4728b502a211454ef682a10d7a3e817c22d06ba509df114bb267ef9d43a08ce8"; - revision = "1"; - editedCabalFile = "13lsff17dxz852f5bhjz8d1by704rzvwr67qqfc5dz5s7xc28qyk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hesselink/type-equality"; - description = "Data.Type.Equality compat package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-errors" = callPackage - ({ mkDerivation, base, first-class-families, stdenv, syb - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "type-errors"; - version = "0.2.0.0"; - sha256 = "174d509c30ec806117a244add923fee578ba5f3505b0156f4e03a32023892eb4"; - libraryHaskellDepends = [ - base first-class-families syb template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/type-errors#readme"; - description = "Tools for writing better type errors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-errors-pretty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-errors-pretty"; - version = "0.0.1.0"; - sha256 = "b466d66ec26441a05052ed9f57ab1ac7b6818daff11e8e667aaf2a5cf516e7f6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chshersh/type-errors-pretty"; - description = "Combinators for writing pretty type errors easily"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-map" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "type-map"; - version = "0.1.6.0"; - sha256 = "25d7ff6ceda7eb4f9aa95a1a4d8463fc71f88d019ca0d1410ecff2df56a1537d"; - libraryHaskellDepends = [ base containers ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/type-map"; - description = "Type-indexed maps"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , ghc-prim, stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.5.1.0"; - sha256 = "4cc45bb6258ffe5c932d9ed7f25883adc6f6fdde345de774ccd665e3e4037f91"; - libraryHaskellDepends = [ - base bytestring containers double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.2.0.0"; - sha256 = "9250be034d38b1412f530b92814b5de9ad189e97b5f0120b42955f9995dba3b2"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.4.0.0"; - sha256 = "b8eb5e12f4979dd3e2ea7c0edca60e31a7f4fbaab35d7dd44e9b5d5bf783247d"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers, unliftio-core - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.6.0"; - sha256 = "31a2a81f33463fedc33cc519ad5b9679787e648fe2ec7efcdebd7d54bdbbc2b1"; - libraryHaskellDepends = [ - async base bytestring process stm transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typenums" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "typenums"; - version = "0.1.2.1"; - sha256 = "c6b4e083e664ecea40be2555f24c2e8b322b4f32a4a434e6514fecd6d6d6991b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adituv/typenums#readme"; - description = "Type level numbers using existing Nat functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typerep-map" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, primitive - , stdenv, vector - }: - mkDerivation { - pname = "typerep-map"; - version = "0.3.2"; - sha256 = "60bdbc337e34b446a7c126bc99dfe9ae0089500fd435c6967f38ca548184e768"; - revision = "3"; - editedCabalFile = "032y3parcz7ffmsqichmshczk7zxkg66dciwvr5d7fznqvy3sg1s"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/typerep-map"; - description = "Efficient implementation of a dependent map with types as keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20190911.0"; - sha256 = "699108b493b13f50b7e299da00e2f2251f6885da851cb68a183daf1e00c1d594"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ua-parser" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, file-embed - , pcre-light, stdenv, text, yaml - }: - mkDerivation { - pname = "ua-parser"; - version = "0.7.5.1"; - sha256 = "1fcc39a99b9ad7eb2ddb2194ea84def35860078c0344531e2715dc2b819e3424"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring data-default file-embed pcre-light text yaml - ]; - doHaddock = false; - doCheck = false; - description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unagi-chan" = callPackage - ({ mkDerivation, atomic-primops, base, ghc-prim, primitive, stdenv - }: - mkDerivation { - pname = "unagi-chan"; - version = "0.4.1.3"; - sha256 = "e232e525881eb05f0c20b5a4e53150a3063351e5d94917c6f55934477a9ad695"; - libraryHaskellDepends = [ atomic-primops base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - description = "Fast concurrent queues with a Chan-like API, and more"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxing-vector" = callPackage - ({ mkDerivation, base, deepseq, mono-traversable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "unboxing-vector"; - version = "0.1.1.0"; - sha256 = "48425b2780d84b0489a8bc95778768730248bf04dc4624155525b6bcff2b4d44"; - libraryHaskellDepends = [ - base deepseq mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minoki/unboxing-vector#readme"; - description = "A newtype-friendly variant of unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1.1"; - sha256 = "6fdbaa2f45e191c4226b305b4f56a1c43149eb4e253b0a3ebf80ab77e9b5f8c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.4"; - sha256 = "31d138f4c5634ce7357d3aa7e02ed28dad828ab64897ec46852ae8d3ccb61b95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-jp/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.6"; - sha256 = "8326d001c463893a81fcfb431e3cc50c652fab041e9a37e284c445adfd667aaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unordered-containers }: - mkDerivation { - pname = "uniq-deep"; - version = "1.2.0"; - sha256 = "dd123a011a49573a92825a1f69d8bf241bcbed1eb85db0876d3c514b2bc00fe4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep#readme"; - description = "uniq-deep"; - license = stdenv.lib.licenses.mit; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unique-logic" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "unique-logic"; - version = "0.4"; - sha256 = "1209ab415264c97030f5ddae5f6bc5171abf0f7dd93b7b807446c65dcf03ea53"; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unique-logic/"; - description = "Solve simple simultaneous equations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unique-logic-tf" = callPackage - ({ mkDerivation, base, containers, data-ref, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "unique-logic-tf"; - version = "0.5.1"; - sha256 = "8b818cb19dea8ed6fbdd21795b76f3fa0dcc4416bcf5ceb4c7d6f179ea945028"; - libraryHaskellDepends = [ - base containers data-ref semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unique-logic-tf/"; - description = "Solve simple simultaneous equations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe" = callPackage - ({ mkDerivation, stdenv, universe-base, universe-instances-extended - , universe-reverse-instances, universe-some - }: - mkDerivation { - pname = "universe"; - version = "1.2"; - sha256 = "1a1364e9b48a726c67d4a9308764e509a8e0605b614977f6eb74ae77072a0f51"; - libraryHaskellDepends = [ - universe-base universe-instances-extended - universe-reverse-instances universe-some - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, containers, stdenv, tagged, transformers }: - mkDerivation { - pname = "universe-base"; - version = "1.1.1"; - sha256 = "1ded30b31b1abbc7621bdb0086ba0d91c1920157e87a4abeb4f2fcf9f3f6dea8"; - revision = "1"; - editedCabalFile = "1l6vxapfjhm5mb6w25ah8sl78hdw1ia5s18cf40lm0vzb6ip4bkk"; - libraryHaskellDepends = [ base containers tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.1"; - sha256 = "8bb1190ef89af0ba09c354b0512fefd61f44c10a805c509550a975f68febe49d"; - revision = "1"; - editedCabalFile = "0hjrjjl6v5q9f7cmxhrdxfdk1l86im0b8anxkpgrry7s8q998979"; - libraryHaskellDepends = [ base universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-extended" = callPackage - ({ mkDerivation, adjunctions, base, comonad, containers - , contravariant, stdenv, universe-base - }: - mkDerivation { - pname = "universe-instances-extended"; - version = "1.1.1"; - sha256 = "102a1f8af4706719da85736ffd7abf8e52b74bf9bfcdd452a33e339905a6f3de"; - libraryHaskellDepends = [ - adjunctions base comonad containers contravariant universe-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from selected extra packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.1"; - sha256 = "c6aef59a7c5387c7b19efaa4f0af4d3543c9fa37f14d3789c4b5bc60563ee336"; - revision = "1"; - editedCabalFile = "0pyqcg8mfw6gg7gxxd46xq3hnhcpd39g7jb9q1awcdipzq7xjrh2"; - libraryHaskellDepends = [ base universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.1"; - sha256 = "0dbb197676975bbdc6ea1fb07a6a4c79b9d165084ec25ed1800d5c6548d8b55d"; - revision = "2"; - editedCabalFile = "1ls6hss9mrdk535k9ssy4lv01gbw11pbqiikpv2m8sjmh65fjilx"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-some" = callPackage - ({ mkDerivation, base, some, stdenv, template-haskell - , th-abstraction, transformers, universe-base - }: - mkDerivation { - pname = "universe-some"; - version = "1.2"; - sha256 = "907e34010c8258543d987d28f9ee8f323151403700b07330d3bf7581cc6c37b1"; - libraryHaskellDepends = [ - base some template-haskell th-abstraction transformers - universe-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for Some from some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, unordered-containers, utf8-string - , vector - }: - mkDerivation { - pname = "universum"; - version = "1.6.1"; - sha256 = "a7b6e7aa01e4b436859c4c373e9139cb26e39a6c6c73b9023255a8c22782f600"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, bytestring, deepseq, directory - , filepath, process, stdenv, stm, time, transformers, unix - , unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.12"; - sha256 = "8fa9f4d4cc078fd7c76914652070d06a646f83d34e51547fede4fdd7f30ffe09"; - libraryHaskellDepends = [ - async base bytestring deepseq directory filepath process stm time - transformers unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.2.0"; - sha256 = "24c38b3d610ca2642ed496d1de3d7b6b398ce0410aa0a15f3c7ce636ba8f7a78"; - revision = "2"; - editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-pool" = callPackage - ({ mkDerivation, base, resource-pool, stdenv, time, transformers - , unliftio-core - }: - mkDerivation { - pname = "unliftio-pool"; - version = "0.2.1.0"; - sha256 = "bb54478ddf736783309296ffeeed694543c745d13f127f91b1e3537daa8f0f62"; - libraryHaskellDepends = [ - base resource-pool time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - description = "Data.Pool generalized to MonadUnliftIO."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "d8faaf0c23ed143942ba7948616c73134c78e02aa4cf252605c73fb2412876ef"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "urbit-hob" = callPackage - ({ mkDerivation, base, bytestring, murmur3, stdenv, text, vector }: - mkDerivation { - pname = "urbit-hob"; - version = "0.3.1"; - sha256 = "4b4644d556b5bb4584532b87c1db2c1ed71fef094d93253baef0e40a92f15d99"; - libraryHaskellDepends = [ base bytestring murmur3 text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/urbit/urbit-hob"; - description = "Hoon-style atom manipulation and printing functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.2"; - sha256 = "c7d47c25c1dbeae8c80ef7f83095093177e119effa90715a55b15fcaebd8ff6a"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text - , uri-bytestring - }: - mkDerivation { - pname = "uri-bytestring-aeson"; - version = "0.1.0.7"; - sha256 = "7e90b5eb1c65a83461e127a27ce635f2f8279eb0d0cb14823831b6dfb503ef9b"; - libraryHaskellDepends = [ - aeson base bytestring text uri-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reactormonk/uri-bytestring-aeson"; - description = "Aeson instances for URI Bytestring"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "url" = callPackage - ({ mkDerivation, base, stdenv, utf8-string }: - mkDerivation { - pname = "url"; - version = "2.1.3"; - sha256 = "5af27e3f8c0a27e52d0dcb98ef06a0fdd01efe8bb21242c29432e1bc380a4f61"; - libraryHaskellDepends = [ base utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Url"; - description = "A library for working with URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.1"; - sha256 = "2fe703a9c65fcfb12ba86bcffed22dca4c4a76fc78e1271816ae46b0f6a58e29"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "util"; - version = "0.1.17.0"; - sha256 = "0c9844c0814401d5f4596d66d2a1315e4f2ad28a1b9fa9ab71d1aaf86deed2f3"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1.1"; - sha256 = "85a628430a0c3273b7344f47aa810ffefc638ce19deb5e00d133a032603d92a9"; - revision = "1"; - editedCabalFile = "1rrjg9z399k6pb55nv85mlr5bkmdqbjwkvl1cy7ydccdx6ks4syp"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.9.0.2"; - sha256 = "5b449a8b1e31d2a281197fd1a5efb80b62f422fdcaa6d0e13e9be31b2e1d49a9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.2"; - sha256 = "fac03d29cf3d6f72c288111b68feb3c656574a1ac616b49f40426a9daf0e1d04"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.4.1.0"; - sha256 = "6defe19346145230a0f41dd873767700ee10834c1ba1dfc4bfe31811e2d6d84b"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.5.0.0"; - sha256 = "21f59b021cae573fec8aba69ea4b4546f82a4d753ef1614aaf0060ebdfe7332c"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.4.0.0"; - sha256 = "c47ae379f817a5ecfbaabb381798ed2277e4fe07512f10998aab5840a95195b2"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.2"; - sha256 = "8132aa43307c7dcb29718b5c1ef7c2b8e0d1fb6f650c0b117b99397c34da8dc1"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.1.0"; - sha256 = "edd3f26e97ea07593c3995002a7ef7670f0306bfc31213f6b49ffe1a6fbc4264"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.2"; - sha256 = "51b24adef82f272a1060d5d0dffaa2eb1e54c0016c7dcd75631e5916df45e265"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.2"; - sha256 = "50547e85c80e42a90143b816b41389cca1e0fccacd8d620a09142cf65b36181b"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.2"; - sha256 = "95dc31e68630951d6971ad5b425e88d492c7400ccd4937a42252d464d89c564c"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.2"; - sha256 = "a7cc60182c9c5c25fa64d1073c1da61e79686fea6d2b2a9cf55690e61b83ce78"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "valor" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "valor"; - version = "0.1.0.0"; - sha256 = "04ce514f40ef954cdd4b45acb6b2bf6228a30e905fdce0b671df3bf789d6bae6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reygoch/valor#readme"; - description = "Simple general structured validation library"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.3"; - sha256 = "e70c8c1981fe49fc21a91b2aa570ecf50cca94aca24a7984ea641cbbc521b56d"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, deepseq, distributive, fin - , hashable, QuickCheck, semigroupoids, stdenv, transformers - }: - mkDerivation { - pname = "vec"; - version = "0.3"; - sha256 = "59172984048113abbdf6daf9d98cce793c624c4413b1772d2719588ee5985264"; - libraryHaskellDepends = [ - adjunctions base deepseq distributive fin hashable QuickCheck - semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.0.3"; - sha256 = "b8a2bfbf9d22d34a28cde9b9e92bfb054e46797754154dd5883295c38936e5a8"; - revision = "2"; - editedCabalFile = "1kjs6jnbxziv1q0md2jiqic0r19ry8xlg7wdr8b52rz7yjyb08hl"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.8.0.3"; - sha256 = "1ac41f014663fd318b34a76b80e6d8f32f1629ef4996ae7304f31597a0d07387"; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/vector-algorithms/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.5.1"; - sha256 = "3945b99f8efd319c837700b7cef5163ee23e656e89227357e0b7a41d2a66c512"; - revision = "1"; - editedCabalFile = "1p7cbxdpix0rakvggnnb06kcrb787fyyqlzric6i4s3rn34547q8"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.8"; - sha256 = "a39afd7ac50c42de77660d235017be38ef50f792b6a98212accf687445a18073"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-rotcev" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-rotcev"; - version = "0.1.0.0"; - sha256 = "d278a6db3481d84cc4ba9697e33a7e9461e887bf2be347959dfbff7a2b9785ea"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/rotcev"; - description = "Vectors with O(1) reverse"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, binary, comonad, deepseq - , distributive, finite-typelits, hashable, indexed-list-literals - , primitive, stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.4.0.0"; - sha256 = "c6b3f013572aa46aa1d2394b351a9da5b219ece9a87dccf3ad86217e979408e6"; - libraryHaskellDepends = [ - adjunctions base binary comonad deepseq distributive - finite-typelits hashable indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.16"; - sha256 = "0c0b2f1209f95045865b968c7aa0a25e155410b3e08cf98a6c8544e48436c79c"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.7"; - sha256 = "d125830ff3287c2d7e24989a3887987107b9140912c326e5894fb0b097c50d61"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, dhall - , generic-lens, serialise, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.3.0.0"; - sha256 = "4ae2606d1d50729468a27142a03b42b640ef32e41059d1ea6cbf7bd3de9ff073"; - libraryHaskellDepends = [ - base binary data-default-class deepseq dhall generic-lens serialise - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.5.2"; - sha256 = "109dbe525cd68c965d41c3ac895a95474d8a65e53d7d176a6653ddca4fab5e28"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/versions"; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.3"; - sha256 = "53af758ddc37dc63981671e503438d02c6f64a2d8744e9bec557a894431f7317"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.26"; - sha256 = "9dc8fedf9431e78728cceae3116b25ec5d2c8c3089c604faa72b84dae6b63f0e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2.1"; - sha256 = "fef72486e3a9e01f564abfb680f6eac9b553f8195cae8ed903d960da55380815"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.7.1"; - sha256 = "681317b26490ad3da511c1a6beb0e08e83f7902090dbfb9ac9095d50c8926682"; - revision = "1"; - editedCabalFile = "0bkmml30rzifvb7nxddj3pxczk0kniahra19mjn0qrkzy1n5752p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.7"; - sha256 = "2597beb56ebd7148f9755ae2661c065a6c532e0a286717061861b149a51cfb81"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-enforce-https" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-types - , network, stdenv, text, wai, warp, warp-tls - }: - mkDerivation { - pname = "wai-enforce-https"; - version = "0.0.1"; - sha256 = "bb726b6dc1e3947b6b6c070d40ac2e670d24543456c321e3e56ad5a54eb1a43e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network text wai - ]; - executableHaskellDepends = [ base http-types wai warp warp-tls ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/turboMaCk/wai-enforce-https"; - description = "Enforce HTTPS in Wai server app safely"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , http2, iproute, network, old-locale, resourcet, stdenv - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.29"; - sha256 = "2ee8658211a22e61a3c2f2b0552919ff63921248977ad7c2d9e2802bfe7f16dc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types http2 iproute network old-locale - resourcet streaming-commons text time transformers unix unix-compat - vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.3.1"; - sha256 = "55009b08ad5620decad37e7f8ee2a64457bf0f8e8116f8ac2a2f3216987fd8c5"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, Cabal, cabal-doctest - , fast-logger, http-types, network, stdenv, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.6"; - sha256 = "e2fbd8c74fa0a31f9ea0faa53f4ad4e588644a34d8dfc7cc50d85c245c3c7541"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base byteorder bytestring fast-logger http-types network wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.3"; - sha256 = "d42e00db4eda497d1ea7a5024561e94849d4cf73e78fcee5d8e0a46c40f8ca50"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, time-manager, unix - , unix-compat, vault, wai, word8, x509 - }: - mkDerivation { - pname = "warp"; - version = "3.3.7"; - sha256 = "7bf87f3d9e269fa397149925187e6a5d080ddb2eeeedd32006f93fd3f2b28584"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - time-manager unix unix-compat vault wai word8 x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.10"; - sha256 = "226f4aa7ff334ddd05f4e4998319204f8ffc534b1bbc1198e26f60cf56d3daa9"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, data-default, network, stdenv - , streaming-commons, tls, unix, wai, warp, warp-tls, x509 - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.6"; - sha256 = "9c78b530e5ac00984233913696351132eb48e9ea2da1d1cdadde306bd6e6bb27"; - libraryHaskellDepends = [ - base bytestring data-default network streaming-commons tls unix wai - warp warp-tls x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, stdenv - , transformers - }: - mkDerivation { - pname = "wave"; - version = "0.2.0"; - sha256 = "71a6224835cfa372b9dbf60d27f6e5402663a4090bcfdbdf611d0ffc2c7f3391"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wcwidth" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "wcwidth"; - version = "0.0.2"; - sha256 = "ffc68736a3bbde3e8157710f29f4a99c0ca593c41194579c54a92c62f6c12ed8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/wcwidth/"; - description = "Native wcwidth"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, call-stack, data-default-class, directory - , directory-tree, exceptions, filepath, http-client, http-types - , lifted-base, monad-control, network, network-uri, scientific - , stdenv, temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.9.0.1"; - sha256 = "135950889784b9d323c70ebf7ecd75b8df194489a303d85995b1fccc7549dff0"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring call-stack - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webex-teams-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "webex-teams-api"; - version = "0.2.0.0"; - sha256 = "7756e38bd54d4dae1f70e7343259438f98bf58ff484ebc1c798166904178a40b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, data-default - , http-client, optparse-applicative, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-conduit"; - version = "0.2.0.0"; - sha256 = "0d7c7db689092656653d687adadeb92669b647b1d7adc2493d8ca08a87742e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base conduit webex-teams-api ]; - executableHaskellDepends = [ - base bytestring conduit data-default http-client - optparse-applicative text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Conduit wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-pipes" = callPackage - ({ mkDerivation, base, bytestring, data-default, http-client - , optparse-applicative, pipes, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-pipes"; - version = "0.2.0.0"; - sha256 = "77fad574346613e4989997852ca5972185a6321290caa718ce081be985a33100"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base pipes webex-teams-api ]; - executableHaskellDepends = [ - base bytestring data-default http-client optparse-applicative pipes - text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Pipes wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, clock - , containers, entropy, network, random, SHA, stdenv - , streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.7.0"; - sha256 = "5f11184c6f97de4ae32e00d309a0a9bcbd829c7f099dbf5b2284ae074f035f86"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive clock containers entropy - network random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.8"; - sha256 = "26204eeabb0cdce707548b3be451b1947567b0a13bcfe28bbdd7f48340c09cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, ghc, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.16"; - sha256 = "a92a19209b6e8999be21fed8c6ddad8cddf5b98352341b58d2c3e3ef4e96eb8e"; - libraryHaskellDepends = [ - base deepseq ghc mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.0.9"; - sha256 = "035ea7947eae316f6d092d3a8df9760666959e8fff932510ae7565fd5e341b4d"; - revision = "1"; - editedCabalFile = "1d9ahyjh7wjpr7llmvj2r7y6c0gl91yq501aj9c5qfpyhbc59jzl"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.5"; - sha256 = "095b93a0cd740052c8afee2b14cea2be7e3994693a1090016c73cb4e67f16192"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.9"; - sha256 = "1f0c7e8d63b4d9662ef535f8665fd18e888106d73d1d61de32b1fb5b95c578f4"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "windns" = callPackage - ({ mkDerivation, base, bytestring, deepseq, dnsapi, stdenv }: - mkDerivation { - pname = "windns"; - version = "0.1.0.1"; - sha256 = "087fa65c99021f4233102430d554aebe114af68f6b1647ff821bcb501c0bcd04"; - revision = "1"; - editedCabalFile = "17d44pzi4q5yvrygimdrwdrabz62s1ylw918w28sxgcvj64ir22g"; - configureFlags = [ "-fallow-non-windows" ]; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ dnsapi ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the /dnsapi.dll standard library"; - license = stdenv.lib.licenses.gpl2; - }) {inherit (pkgs) dnsapi;}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.3"; - sha256 = "05650d7bf6dd0e6b87d0d7da6fb003601ce5d7b1f3d69571127ec3c9425b9bb2"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.1"; - sha256 = "6b662b244b2e318a2923dc7057d707369a29ea4a0e721b4710eac7239cc727af"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Pretty printer with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "cb76b445aa338cae075d149e752e53cf30e2480827eff4c157957b013f48b815"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word-wrap" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "word-wrap"; - version = "0.4.1"; - sha256 = "eb72f91947c0c62cb862feb33cad9efdc5e720f456fa9ca68ef8ac9d1ec42c97"; - revision = "1"; - editedCabalFile = "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/word-wrap/"; - description = "A library for word-wrapping"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "1.0.1.0"; - sha256 = "97ff3d50b9d6e2f00b29abd9bf6336009a6bb4e273dd1a6c2f4c7a1f60f2a7bb"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.3.2"; - sha256 = "66d8070e21c86a015cfc3df10c740d92c7f0b7a396c3ec02c3d2f8a5c2d1b49b"; - revision = "1"; - editedCabalFile = "0gz674sb266hv6si9l79c3bv7n2nbssl1262c24in79sk27887gb"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-exceptions" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-exceptions"; - version = "0.1.0.1"; - sha256 = "9a1a5dc53a53e19f0d0dacdcb88bbfc3cde64379413982e8581043da6cc5ee43"; - libraryHaskellDepends = [ - base exceptions transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-exceptions"; - description = "Control.Monad.Catch instances for the stricter CPS WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-mtl" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-mtl"; - version = "0.1.1.6"; - sha256 = "06f9fb60dc41ad26f3d18089a0b7ff1e1aeb15dc862508c59b6b577c0914dd36"; - libraryHaskellDepends = [ - base mtl transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-mtl#readme"; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-transformers" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "writer-cps-transformers"; - version = "0.5.6.1"; - sha256 = "76eacf1c3df8f86b6d11507219d7e840d7fb2898f53959aa3dad40791b8f321c"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-transformers#readme"; - description = "WriteT and RWST monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.15"; - sha256 = "f80cc4ba0fb17d9df138a442c8f49883fff8bfc7410c5fa1ada4d1abaa4958c4"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.5"; - sha256 = "b1b0fcbb4aa0d749ed2b54710c2ebd6d900cb932108ad14f97640cf4ca60c7c8"; - revision = "1"; - editedCabalFile = "1z98llpggldy4yb7afcsn3r3q4vklvx2pqyrhy9fir5y2yd5l601"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.7"; - sha256 = "9786356c8bfdf631ea018c3244d0854c6db2cb24e583891ea553961443f61ef9"; - revision = "1"; - editedCabalFile = "04h2h8kdzhd2fp3w4a834xc1n88b1jgrxlgcsynfn0iwpbsb41x7"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.11"; - sha256 = "f94321cbcc4a534adf5889ae6950f3673e38b62b89b6970b477f502ce987d19b"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-userdirs" = callPackage - ({ mkDerivation, base, containers, directory, filepath, stdenv - , xdg-basedir - }: - mkDerivation { - pname = "xdg-userdirs"; - version = "0.1.0.2"; - sha256 = "88aabbcb80dee5b669ad533af20000d561e6fe59ab1014ccc2482055d0a8046e"; - libraryHaskellDepends = [ - base containers directory filepath xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://redmine.iportnov.ru/projects/xdg-userdirs"; - description = "Basic implementation of XDG user directories specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.5.2"; - sha256 = "14f15b8e751063b701d63b78176d18385193d042af7df6aba67978d04a6cd075"; - libraryHaskellDepends = [ - array base bytestring deepseq mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.2"; - sha256 = "d7f3d063d29d829f332164090a048741d03753f12d55ec064f0a9a374e62ee3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3.1"; - sha256 = "8d743ff8e489dc52fd256b18b75c21689945cfcb52481f5ca0aa6df50178a3e2"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, resourcet, stdenv, text - , transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.9.0.0"; - sha256 = "1cb4b8c3571dc044d0001e35f2c3e3a28f591bb6bb4a5ef7ee59207444d8a7dc"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq resourcet text - transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0.1"; - sha256 = "920ed9736117c09bcec04133beaa14dc05d7c413ee14f49c6aa9707ebc64304b"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.2"; - sha256 = "a33a54a1a4273af298e73fc25d742ad62d9357bada66350981fbf3ad594771cb"; - revision = "1"; - editedCabalFile = "0agp2gpzzgrpy831cj47r8fi91r0s68a7bl8fqvbb1ya7jfadfll"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad" = callPackage - ({ mkDerivation, base, containers, data-default, directory - , extensible-exceptions, filepath, mtl, process, setlocale, stdenv - , unix, utf8-string, X11 - }: - mkDerivation { - pname = "xmonad"; - version = "0.15"; - sha256 = "4a7948e6eee5e34a27d15444589ade3b3fa1adecadbf37b943cff8348380f928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers data-default directory extensible-exceptions - filepath mtl process setlocale unix utf8-string X11 - ]; - executableHaskellDepends = [ base mtl unix X11 ]; - doHaddock = false; - doCheck = false; - postInstall = '' - install -D man/xmonad.1 $doc/share/man/man1/xmonad.1 - install -D man/xmonad.hs $doc/share/doc/$name/sample-xmonad.hs - ''; - homepage = "http://xmonad.org"; - description = "A tiling window manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-contrib" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , extensible-exceptions, filepath, mtl, old-locale, old-time - , process, random, semigroups, stdenv, unix, utf8-string, X11 - , X11-xft, xmonad - }: - mkDerivation { - pname = "xmonad-contrib"; - version = "0.16"; - sha256 = "ad72c38de1bf4f9e176bd0da7ee62a6153b03c9087313b3d4782f365f77caddd"; - libraryHaskellDepends = [ - base bytestring containers directory extensible-exceptions filepath - mtl old-locale old-time process random semigroups unix utf8-string - X11 X11-xft xmonad - ]; - doHaddock = false; - doCheck = false; - homepage = "http://xmonad.org/"; - description = "Third party extensions for xmonad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-extras" = callPackage - ({ mkDerivation, alsa-mixer, base, bytestring, containers, hint - , libmpd, mtl, network, regex-posix, stdenv, X11, xmonad - , xmonad-contrib - }: - mkDerivation { - pname = "xmonad-extras"; - version = "0.15.2"; - sha256 = "9a9ea86b49ce2fe9f4204d09bc5b32c323d42be8017429058b0568300bfb40dc"; - configureFlags = [ - "-f-with_hlist" "-fwith_parsec" "-fwith_split" - ]; - libraryHaskellDepends = [ - alsa-mixer base bytestring containers hint libmpd mtl network - regex-posix X11 xmonad xmonad-contrib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/xmonad-extras"; - description = "Third party extensions for xmonad with wacky dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.6"; - sha256 = "b385eea5652c798b701c627dce8b327c3d6cbfd8c92e1e18e7118862d4d0e2b4"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/haskell-xss-sanitize#readme"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xturtle" = callPackage - ({ mkDerivation, base, convertible, Imlib, setlocale, stdenv, X11 - , X11-xft, x11-xim, yjsvg, yjtools - }: - mkDerivation { - pname = "xturtle"; - version = "0.2.0.0"; - sha256 = "43180537377db24e446f83bddd6f0c7ceadeb871c793e046bddeab433e24ce22"; - libraryHaskellDepends = [ - base convertible Imlib setlocale X11 X11-xft x11-xim yjsvg yjtools - ]; - doHaddock = false; - doCheck = false; - description = "turtle like LOGO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , conduit, data-default-class, directory, fast-logger, monad-logger - , resourcet, semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, transformers, unix, unordered-containers - , wai, wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0"; - sha256 = "8a242ffe1df10bc2c5dffb6e255ad21b11e96a9c4794bac20504b67f973da773"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring conduit - data-default-class directory fast-logger monad-logger resourcet - semigroups shakespeare streaming-commons template-haskell text - transformers unix unordered-containers wai wai-extra wai-logger - warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, bytestring, conduit, conduit-extra, containers - , cryptonite, data-default, email-validate, file-embed, http-client - , http-client-tls, http-conduit, http-types, memory, network-uri - , nonce, persistent, random, safe, shakespeare, stdenv - , template-haskell, text, time, transformers, unliftio - , unliftio-core, unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.8"; - sha256 = "c5b8872dea6ef9cc1f3fb401dc14357683fccc34ec5cee60b96b558ff3cf5634"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory network-uri nonce persistent random safe shakespeare - template-haskell text time transformers unliftio unliftio-core - unordered-containers wai yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7.1.2"; - sha256 = "1bd6f50e66c9c5f01d358b67cd1db324a796627db00f12f5068f7226e5a3c681"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, base, bytestring, Cabal, conduit, conduit-extra - , containers, data-default-class, directory, file-embed, filepath - , fsnotify, http-client, http-client-tls, http-reverse-proxy - , http-types, network, optparse-applicative, process - , project-template, say, split, stdenv, stm, streaming-commons, tar - , text, time, transformers, transformers-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.4"; - sha256 = "2a640ae3e41c4f4fc4c0349327a4ef54cd3cedcc28a880b41ea118c40827e473"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal conduit conduit-extra containers - data-default-class directory file-embed filepath fsnotify - http-client http-client-tls http-reverse-proxy http-types network - optparse-applicative process project-template say split stm - streaming-commons tar text time transformers transformers-compat - unliftio unordered-containers wai wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , bytestring, case-insensitive, cereal, clientsession, conduit - , conduit-extra, containers, cookie, deepseq, fast-logger - , http-types, memory, monad-logger, mtl, parsec, path-pieces - , primitive, random, resourcet, shakespeare, stdenv - , template-haskell, text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.17"; - sha256 = "9444d7de54c304567be23798ecb4cbc760fb2e01ebe20a684c39451a53ef61c4"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq fast-logger http-types memory - monad-logger mtl parsec path-pieces primitive random resourcet - shakespeare template-haskell text time transformers unix-compat - unliftio unordered-containers vector wai wai-extra wai-logger warp - word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, text, time, transformers, wai, xss-sanitize - , yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.7"; - sha256 = "ad645460ea52d57d231db6ad88229eb9dc5861ae9b97eba72a9799eb5b38de56"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare text time - transformers wai xss-sanitize yesod-core yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, githash, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.1"; - sha256 = "fc34c48eee25a15a55a6052fc1d15bb63bbc63514059483cb2212895f0eea671"; - libraryHaskellDepends = [ - aeson base githash template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.7.0.0"; - sha256 = "8f2ce7022fedf719d8f87ea4af401a2d77f686f42e5736055536baac7f4af63c"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0.4"; - sha256 = "8085b7a4c827e364bf581e03ebccc72dcff75c77001213d451ff7cd3bfe051bf"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, conduit, containers, cryptonite - , cryptonite-conduit, css-text, data-default, directory, file-embed - , filepath, hashable, hjsmin, http-types, memory, mime-types - , process, stdenv, template-haskell, text, transformers - , unix-compat, unordered-containers, wai, wai-app-static - , yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0.1"; - sha256 = "abe7e802f5efd064823b827074fea3613f4ba46115afedb5e2d96f919dcfa0c9"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder bytestring - conduit containers cryptonite cryptonite-conduit css-text - data-default directory file-embed filepath hashable hjsmin - http-types memory mime-types process template-haskell text - transformers unix-compat unordered-containers wai wai-app-static - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , bytestring, case-insensitive, conduit, containers, cookie - , hspec-core, html-conduit, http-types, HUnit, memory, network - , pretty-show, semigroups, stdenv, text, time, transformers, wai - , wai-extra, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.9"; - sha256 = "5379e217b1a3081b466090eed3b21181b43fab9aa9396fdfa3a53d7830a6456c"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit memory network pretty-show semigroups text time - transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0.2"; - sha256 = "01c69701ddb499c198984e440b05eecdabd285890793e711adbd8847103540cc"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai-websockets websockets - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjsvg" = callPackage - ({ mkDerivation, base, HaXml, stdenv }: - mkDerivation { - pname = "yjsvg"; - version = "0.2.0.1"; - sha256 = "f737b7d43b7b3fd3237d07761c672569a2b5d0c1e1b26d48097b9e96b1262e7e"; - libraryHaskellDepends = [ base HaXml ]; - doHaddock = false; - doCheck = false; - description = "make SVG string from Haskell data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.5"; - sha256 = "30020283ef7b241787bae810b1f563bd2c7a6ada69a582b8d7cc020365015f91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zasni-gerna" = callPackage - ({ mkDerivation, base, papillon, stdenv }: - mkDerivation { - pname = "zasni-gerna"; - version = "0.0.7.1"; - sha256 = "47149b36c1d600f91fdfb7966c4e175e765bf65a51b86e713d79be026674348c"; - libraryHaskellDepends = [ base papillon ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; - description = "lojban parser (zasni gerna)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.5"; - sha256 = "9c52083fc246299bf63df0363e950e19a88c6f6fbab7891cfd9379f6180760f9"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.8.0"; - sha256 = "d3be996589e126e30cb000545c56907e44a2a1d10960e4c7698b7941d0dff66b"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.3.0"; - sha256 = "d132ab412a704c8e1a547e8b3bd968944291cccec1e487f51048c28d1d229df1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , digest, directory, filepath, mtl, pretty, stdenv, text, time - , unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.4.1"; - sha256 = "c5d5c9976241dcc25b0d8753dc526bb1bfef60f30dee38c53a7ae56e6be9b1b1"; - revision = "1"; - editedCabalFile = "1mv6jns7zf0fi7lrhzk007g12v6x7yf5ycbj67rbh83xfkf4nxsi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, text, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.2.0.1"; - sha256 = "b7c45c612f1f53546923162d73c644b9704d5293b1e767108728d3c08b46a587"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet text time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, fail, lens - , profunctors, semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.3"; - sha256 = "f5b6e0e73d151c3876f70428ff7684cdcb6d7418211d3ad120e325a8d17c3a43"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base fail lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2.1"; - sha256 = "f0f810ff173560b60392db448455c0513b3239f48e43cb494b3733aa559621d0"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.1.2"; - sha256 = "e24b5259793d5f838e45ee751a59867b8db9ddabc5bc8ffb5423f0fd4d22fa90"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/ghc882.nix b/generated/stable/stack2nix/ghc882.nix deleted file mode 100644 index 3f5f1d9..0000000 --- a/generated/stable/stack2nix/ghc882.nix +++ /dev/null @@ -1,36869 +0,0 @@ -# Generated using stack2nix 0.2.2. - -{ pkgs ? (import {}) -, compiler ? pkgs.haskell.packages.ghc882 -}: - -with pkgs.haskell.lib; - -let - stackPackages = { pkgs, stdenv, callPackage }: - self: { - array = null; - base = null; - bin-package-db = null; - binary = null; - bytestring = null; - containers = null; - deepseq = null; - directory = null; - filepath = null; - ghc-boot = null; - ghc-boot-th = null; - ghc-prim = null; - ghci = null; - hoopl = null; - hpc = null; - integer-gmp = null; - pretty = null; - process = null; - rts = null; - template-haskell = null; - terminfo = null; - time = null; - transformers = null; - unix = null; - xhtml = null; - "AC-Angle" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "AC-Angle"; - version = "1.0"; - sha256 = "b545b0086832adc7d9ae15b4c3f3d1522d63a746f204570766828f1a893a4965"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Angles in degrees and radians"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ALUT" = callPackage - ({ mkDerivation, base, freealut, OpenAL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "ALUT"; - version = "2.4.0.3"; - sha256 = "71891b0a1d96a6a07d1404e542dc9c86b30f757543c294de9644af98f781d912"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base OpenAL StateVar transformers ]; - librarySystemDepends = [ freealut ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding for the OpenAL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freealut;}; - "ANum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ANum"; - version = "0.2.0.2"; - sha256 = "f6ae0d1b663100a2aa3dfdab12f4af0851408659eb5c2f78b8b443b0d29dbb1a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/ANum#readme"; - description = "Num instance for Applicatives provided via the ANum newtype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Allure" = callPackage - ({ mkDerivation, async, base, enummapset, filepath, ghc-compact - , LambdaHack, optparse-applicative, primitive, random, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "Allure"; - version = "0.9.5.0"; - sha256 = "8180fe070633bfa5515de8f7443421044e7ad4ee050f0a92c048cec5f2c88132"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - async base enummapset filepath ghc-compact LambdaHack - optparse-applicative primitive random template-haskell text - transformers - ]; - executableHaskellDepends = [ - async base filepath LambdaHack optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://allureofthestars.com"; - description = "Near-future Sci-Fi roguelike and tactical squad combat game"; - license = stdenv.lib.licenses.agpl3Plus; - }) {}; - "Boolean" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "Boolean"; - version = "0.2.4"; - sha256 = "67216013b02b8ac5b534a1ef25f409f930eea1a85eae801933a01ad43145eef8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generalized booleans and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "BoundedChan" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "BoundedChan"; - version = "1.0.3.0"; - sha256 = "531ceaed7f62844c2a63a7cbfdcab332ea5eaa218e9922ca3305580438adc46d"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Implementation of bounded channels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Cabal" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , deepseq, directory, filepath, mtl, parsec, pretty, process - , stdenv, text, time, transformers, unix - }: - mkDerivation { - pname = "Cabal"; - version = "3.0.0.0"; - sha256 = "5143ec26d740c1a508c93a8860e64407e7546c29b9817db20ff1595c1968d287"; - setupHaskellDepends = [ mtl parsec ]; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - mtl parsec pretty process text time transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/cabal/"; - description = "A framework for packaging Haskell software"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChannelT" = callPackage - ({ mkDerivation, base, free, mmorph, mtl, stdenv, transformers-base - }: - mkDerivation { - pname = "ChannelT"; - version = "0.0.0.7"; - sha256 = "3e215d425e3cfccf2e4d84b1402fb39a2081cb33b6556059db616e722a7c77a0"; - libraryHaskellDepends = [ base free mmorph mtl transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pthariensflame/ChannelT"; - description = "Generalized stream processors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart" = callPackage - ({ mkDerivation, array, base, colour, data-default-class, lens, mtl - , old-locale, operational, stdenv, time, vector - }: - mkDerivation { - pname = "Chart"; - version = "1.9.3"; - sha256 = "3e17f4ca0112399df627862bb50581f81ec3ebf54b618e3c690f10380b9ec95c"; - libraryHaskellDepends = [ - array base colour data-default-class lens mtl old-locale - operational time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "A library for generating 2D Charts and Plots"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Chart-diagrams" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, Chart, colour - , containers, data-default-class, diagrams-core, diagrams-lib - , diagrams-postscript, diagrams-svg, lens, mtl, old-locale - , operational, stdenv, svg-builder, SVGFonts, text, time - }: - mkDerivation { - pname = "Chart-diagrams"; - version = "1.9.3"; - sha256 = "966f8570f56d31d5581c2336e03332b579098cc9568d450d7e535d090afebe1c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base blaze-markup bytestring Chart colour containers - data-default-class diagrams-core diagrams-lib diagrams-postscript - diagrams-svg lens mtl old-locale operational svg-builder SVGFonts - text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/timbod7/haskell-chart/wiki"; - description = "Diagrams backend for Charts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ChasingBottoms" = callPackage - ({ mkDerivation, base, containers, mtl, QuickCheck, random, stdenv - , syb - }: - mkDerivation { - pname = "ChasingBottoms"; - version = "1.3.1.7"; - sha256 = "5631d5583a887a346274530e623107511444f5820bb469546ed787bdb5c3317e"; - libraryHaskellDepends = [ - base containers mtl QuickCheck random syb - ]; - doHaddock = false; - doCheck = false; - description = "For testing partial and infinite values"; - license = stdenv.lib.licenses.mit; - }) {}; - "Clipboard" = callPackage - ({ mkDerivation, base, directory, stdenv, unix, utf8-string, X11 }: - mkDerivation { - pname = "Clipboard"; - version = "2.3.2.0"; - sha256 = "3f82c8183a599025c5199ba50d0661512683e9cf29e6054858f1abe2ab8b25b7"; - libraryHaskellDepends = [ base directory unix utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Clipboard"; - description = "System clipboard interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Color" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, data-default-class - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "Color"; - version = "0.1.1"; - sha256 = "1320e34644b7f180f2430b46b39505ece9b801c3a0b053f040efd603d9f6984b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base data-default-class deepseq vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/Color"; - description = "Color spaces and conversions between them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "DAV" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , data-default, exceptions, haskeline, http-client, http-client-tls - , http-types, lens, mtl, network, network-uri, optparse-applicative - , stdenv, transformers, transformers-base, transformers-compat - , utf8-string, xml-conduit, xml-hamlet - }: - mkDerivation { - pname = "DAV"; - version = "1.3.4"; - sha256 = "5e3b825290a0bd4c9da1c814b5e67901b0f9f1d16a88effaa7e060a81c895bc7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - http-client http-client-tls http-types lens mtl transformers - transformers-base transformers-compat utf8-string xml-conduit - xml-hamlet - ]; - executableHaskellDepends = [ - base bytestring case-insensitive containers data-default exceptions - haskeline http-client http-client-tls http-types lens mtl network - network-uri optparse-applicative transformers transformers-base - transformers-compat utf8-string xml-conduit xml-hamlet - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hDAV"; - description = "RFC 4918 WebDAV support"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Decimal" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Decimal"; - version = "0.5.1"; - sha256 = "575ca5c65a8ea5a5bf2cd7b794a0d16622082cb501bf4b0327c5895c0b80f34c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Haskell-Decimal"; - description = "Decimal numbers with variable precision"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Diff" = callPackage - ({ mkDerivation, array, base, pretty, stdenv }: - mkDerivation { - pname = "Diff"; - version = "0.4.0"; - sha256 = "7290ac098ad8b4748b9c10e494cc85ba54af688226ae69a465aa7b4c73f149c7"; - libraryHaskellDepends = [ array base pretty ]; - doHaddock = false; - doCheck = false; - description = "O(ND) diff algorithm in haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ENIG" = callPackage - ({ mkDerivation, base, stdenv, text, unicode-transforms, vector }: - mkDerivation { - pname = "ENIG"; - version = "0.0.1.0"; - sha256 = "03b29362c5bf0b33ded4e776d0252e71f3227da7c93cefa3d67348ab976f66ff"; - libraryHaskellDepends = [ base text unicode-transforms vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/QuietJoon/ENIG#readme"; - description = "Auto Korean conjugator/adjustor/adopter/converter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Earley" = callPackage - ({ mkDerivation, base, ListLike, stdenv }: - mkDerivation { - pname = "Earley"; - version = "0.13.0.1"; - sha256 = "1e60bcfda0d7441ce2886d7f3523e017e74c225506dd9d0e7a3c012959943899"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ListLike ]; - doHaddock = false; - doCheck = false; - description = "Parsing all context-free grammars using Earley's algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ebnf2ps" = callPackage - ({ mkDerivation, array, base, containers, directory, happy - , old-time, stdenv, unix - }: - mkDerivation { - pname = "Ebnf2ps"; - version = "1.0.15"; - sha256 = "0ecce7d721d6c8993fa6ba6cfb16f1101d85e00bbaf0b6941d36a00badea2b4b"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array base containers directory old-time unix - ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/FranklinChen/Ebnf2ps"; - description = "Peter's Syntax Diagram Drawing Tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FenwickTree" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, template-haskell }: - mkDerivation { - pname = "FenwickTree"; - version = "0.1.2.1"; - sha256 = "9c172d62b24365e663a0355e8eaa34362a1a769c18a64391939a9b50e384f03c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base QuickCheck template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/FenwickTree"; - description = "Data structure for fast query and update of cumulative sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FindBin" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "FindBin"; - version = "0.0.5"; - sha256 = "279c7967e0803ca3b9a0a1956ce7ba9b9a2294eb9f971bea8a557b5f80ddfda4"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/audreyt/findbin"; - description = "Locate directory of original program"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FloatingHex" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "FloatingHex"; - version = "0.4"; - sha256 = "b277054db48d2dec62e3831586f218cbe0a056dec44dbc032e9a73087425a24c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Read and write hexadecimal floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "FontyFruity" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, stdenv, text, vector, xml - }: - mkDerivation { - pname = "FontyFruity"; - version = "0.5.3.5"; - sha256 = "2deb5ba03a5326c7dd364900b86e427344266c4866b863e8325bf6eade760a9a"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath text - vector xml - ]; - doHaddock = false; - doCheck = false; - description = "A true type file format loader"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLFW-b" = callPackage - ({ mkDerivation, array, base, bindings-GLFW, deepseq, stdenv }: - mkDerivation { - pname = "GLFW-b"; - version = "3.3.0.0"; - sha256 = "64772fd294a168567742753588f33627836bd0de876761f2da721d46aab506f6"; - libraryHaskellDepends = [ array base bindings-GLFW deepseq ]; - doHaddock = false; - doCheck = false; - description = "Bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GLURaw" = callPackage - ({ mkDerivation, base, libGL, libGLU, OpenGLRaw, stdenv - , transformers - }: - mkDerivation { - pname = "GLURaw"; - version = "2.0.0.4"; - sha256 = "b863fd5cb26b1a37afb66ef8a81c0335bc073d33b0a67ec5190dfc62cb885dc4"; - libraryHaskellDepends = [ base OpenGLRaw transformers ]; - librarySystemDepends = [ libGL libGLU ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs) libGLU;}; - "GLUT" = callPackage - ({ mkDerivation, array, base, containers, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "GLUT"; - version = "2.7.0.15"; - sha256 = "e99527f965849756e99b132fd6975747ec0952476454e0b9ec90526e9cdde108"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers OpenGL StateVar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A binding for the OpenGL Utility Toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "GenericPretty" = callPackage - ({ mkDerivation, base, ghc-prim, pretty, stdenv }: - mkDerivation { - pname = "GenericPretty"; - version = "1.2.2"; - sha256 = "eeea7ae7081f866de6a83ab8c4c335806b8cbb679d85e416e6224384ffcdae3c"; - libraryHaskellDepends = [ base ghc-prim pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RazvanRanca/GenericPretty"; - description = "A generic, derivable, haskell pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Glob" = callPackage - ({ mkDerivation, base, containers, directory, dlist, filepath - , stdenv, transformers, transformers-compat - }: - mkDerivation { - pname = "Glob"; - version = "0.10.0"; - sha256 = "473355bd6ba0a97902e0edada1acbc0d76cfda77596f0188b2cc0ae34272a324"; - revision = "1"; - editedCabalFile = "0zfd4wimwgnmgqkz9g9jqj2dq2r50wdcqmcz6v7is1zrpwhszk5v"; - libraryHaskellDepends = [ - base containers directory dlist filepath transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://iki.fi/matti.niemenmaa/glob/"; - description = "Globbing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSlippyMap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "HSlippyMap"; - version = "3.0.1"; - sha256 = "27eb37f3b1e70780173e732a949776fc0b0ecc5b1ba515c2e239d6545a2beb0d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/HSlippyMap"; - description = "OpenStreetMap Slippy Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HStringTemplate" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, mtl, old-locale, parsec, pretty - , semigroups, stdenv, syb, template-haskell, text, time, void - }: - mkDerivation { - pname = "HStringTemplate"; - version = "0.8.7"; - sha256 = "4f4ea4aa2e45e7c45821b87b0105c201fbadebc2f2d00c211e728403a0af6b0e"; - revision = "1"; - editedCabalFile = "0s7y606q2q0vnbg9c51kypawyvapva60i2lw1dg1bij50aiv5d3i"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers deepseq directory - filepath mtl old-locale parsec pretty semigroups syb - template-haskell text time void - ]; - doHaddock = false; - doCheck = false; - description = "StringTemplate implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HSvm" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "HSvm"; - version = "0.1.1.3.22"; - sha256 = "8f348ff87d7312a5a41d99a1df558df72592aa34f4520c4b03fad4376e0f326e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Haskell Bindings for libsvm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HTF" = callPackage - ({ mkDerivation, aeson, array, base, base64-bytestring, bytestring - , Cabal, containers, cpphs, Diff, directory, haskell-src, HUnit - , lifted-base, monad-control, mtl, old-time, pretty, process - , QuickCheck, random, regex-compat, stdenv, text, time, unix - , vector, xmlgen - }: - mkDerivation { - pname = "HTF"; - version = "0.14.0.3"; - sha256 = "17bb9811b15e3bfaf25cda58820509ce1d4cc556eae274e16745742b54810f8d"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson array base base64-bytestring bytestring containers cpphs Diff - directory haskell-src HUnit lifted-base monad-control mtl old-time - pretty process QuickCheck random regex-compat text time unix vector - xmlgen - ]; - libraryToolDepends = [ cpphs ]; - executableHaskellDepends = [ - array base cpphs directory HUnit mtl old-time random text - ]; - executableToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/skogsbaer/HTF/"; - description = "The Haskell Test Framework"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "HTTP" = callPackage - ({ mkDerivation, array, base, bytestring, mtl, network, network-uri - , parsec, stdenv, time - }: - mkDerivation { - pname = "HTTP"; - version = "4000.3.14"; - sha256 = "a602d7f30e917164c6a634f8cb1f5df4849048858db01380a0875e16e5aa687b"; - libraryHaskellDepends = [ - array base bytestring mtl network network-uri parsec time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/HTTP"; - description = "A library for client-side HTTP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit" = callPackage - ({ mkDerivation, base, call-stack, deepseq, stdenv }: - mkDerivation { - pname = "HUnit"; - version = "1.6.0.0"; - sha256 = "7448e6b966e98e84b7627deba23f71b508e9a61e7bc571d74304a25d30e6d0de"; - libraryHaskellDepends = [ base call-stack deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/HUnit#readme"; - description = "A unit testing framework for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HUnit-approx" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "HUnit-approx"; - version = "1.1.1.1"; - sha256 = "4a4327d328bb8b944c73ec211dd29e953e477f99fd3f9e28fe5200f02fa62baf"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/HUnit-approx"; - description = "Approximate equality for floating point numbers with HUnit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HaXml" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , polyparse, pretty, random, stdenv - }: - mkDerivation { - pname = "HaXml"; - version = "1.25.5"; - sha256 = "cbc51ac4b6128e130f0272a7b42ab464bc865b3c238d6cce6b76e451765c1235"; - revision = "1"; - editedCabalFile = "1xnni9hdvi87incm1pcx0b7jv410maww99acdfkx1cwhlb6k91ag"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers filepath polyparse pretty random - ]; - executableHaskellDepends = [ base directory polyparse pretty ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/HaXml/"; - description = "Utilities for manipulating XML documents"; - license = "LGPL"; - }) {}; - "HandsomeSoup" = callPackage - ({ mkDerivation, base, containers, HTTP, hxt, hxt-http, mtl - , network, network-uri, parsec, stdenv, transformers - }: - mkDerivation { - pname = "HandsomeSoup"; - version = "0.4.2"; - sha256 = "0ae2dad3fbde1efee9e45b84b2aeb5b526cc7b3ea2cbc5715494f7bde3ceeefb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers HTTP hxt hxt-http mtl network network-uri parsec - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egonSchiele/HandsomeSoup"; - description = "Work with HTML more easily in HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "HsOpenSSL" = callPackage - ({ mkDerivation, base, bytestring, Cabal, network, openssl, stdenv - , time - }: - mkDerivation { - pname = "HsOpenSSL"; - version = "0.11.4.17"; - sha256 = "51df0aeedd2b09b010d30c6a0e335191ec8cc0c05a5cdc397d6ef94a59a23b62"; - configureFlags = [ "-f-fast-bignum" ]; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring network time ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vshabanov/HsOpenSSL"; - description = "Partial OpenSSL binding for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) openssl;}; - "HsYAML" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, mtl, parsec - , stdenv, text - }: - mkDerivation { - pname = "HsYAML"; - version = "0.2.1.0"; - sha256 = "60f727d5c90e693ef71df7dcbed8f40b66d2db11375528043e0326749e861f83"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers deepseq mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/HsYAML"; - description = "Pure Haskell YAML 1.2 processor"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "HsYAML-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, HsYAML, mtl - , scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "HsYAML-aeson"; - version = "0.2.0.0"; - sha256 = "cfb9634b43fcaddb5a520838119ba4b02b18423a35471fef5a805d6004e75d8b"; - libraryHaskellDepends = [ - aeson base bytestring containers HsYAML mtl scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "JSON to YAML Adapter"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "IPv6Addr" = callPackage - ({ mkDerivation, aeson, attoparsec, base, iproute, network - , network-info, random, stdenv, text - }: - mkDerivation { - pname = "IPv6Addr"; - version = "1.1.3"; - sha256 = "699b8ccfdcccc570b540c19c665630783609e8948214d905835cd6f74ad26acd"; - libraryHaskellDepends = [ - aeson attoparsec base iproute network network-info random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/IPv6Addr"; - description = "Library to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Imlib" = callPackage - ({ mkDerivation, array, base, imlib2, stdenv, X11 }: - mkDerivation { - pname = "Imlib"; - version = "0.1.2"; - sha256 = "3ed318a7777a3b0752327b7b128edb3a1d562202b480a6d6b793b79ed90ebd1c"; - libraryHaskellDepends = [ array base X11 ]; - librarySystemDepends = [ imlib2 ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) imlib2;}; - "IntervalMap" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "IntervalMap"; - version = "0.6.1.1"; - sha256 = "e8955ae2accc7529b41893a540d0c6943d118554d25857c1f6721f0777dfb46d"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.chr-breitkopf.de/comp/IntervalMap"; - description = "Containers for intervals, with efficient search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq, mtl - , primitive, stdenv, transformers, vector, zlib - }: - mkDerivation { - pname = "JuicyPixels"; - version = "3.3.4"; - sha256 = "dde000c8802efff8e872d38f7da916ea86d130ba621266dc90d3332cbecd4c61"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq mtl primitive - transformers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Twinside/Juicy.Pixels"; - description = "Picture loading/serialization (in png, jpeg, bitmap, gif, tga, tiff and radiance)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-extra" = callPackage - ({ mkDerivation, base, JuicyPixels, stdenv }: - mkDerivation { - pname = "JuicyPixels-extra"; - version = "0.4.1"; - sha256 = "72d1551b9b9437e275baa96541b41c8c2d25a428ba1bda01200f9760bbf84b4c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/JuicyPixels-extra"; - description = "Efficiently scale, crop, flip images with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "JuicyPixels-scale-dct" = callPackage - ({ mkDerivation, base, base-compat, carray, fft, JuicyPixels - , stdenv - }: - mkDerivation { - pname = "JuicyPixels-scale-dct"; - version = "0.1.2"; - sha256 = "f7381b88446224897e6677692bbdc39cb5b755216212f0ad8050046865cd3013"; - revision = "4"; - editedCabalFile = "0r6v9iv7fkslznn6fw2132j1gpxk9dyccdg8r5qj2vvsrbp0dpjf"; - libraryHaskellDepends = [ - base base-compat carray fft JuicyPixels - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/JuicyPixels-scale-dct#readme"; - description = "Scale JuicyPixels images with DCT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LambdaHack" = callPackage - ({ mkDerivation, assert-failure, async, base, base-compat, binary - , bytestring, containers, deepseq, directory, enummapset, filepath - , ghc-compact, ghc-prim, hashable, hsini, keys, miniutter - , optparse-applicative, pretty-show, primitive, random, sdl2 - , sdl2-ttf, stdenv, stm, template-haskell, text, time, transformers - , unordered-containers, vector, vector-binary-instances, zlib - }: - mkDerivation { - pname = "LambdaHack"; - version = "0.9.5.0"; - sha256 = "d0000272d5d97ed80bda3b9a9e6a0e5b22e53ac53e7e1d33b880505e5921a3f8"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - assert-failure async base base-compat binary bytestring containers - deepseq directory enummapset filepath ghc-compact ghc-prim hashable - hsini keys miniutter optparse-applicative pretty-show primitive - random sdl2 sdl2-ttf stm template-haskell text time transformers - unordered-containers vector vector-binary-instances zlib - ]; - executableHaskellDepends = [ - async base filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://lambdahack.github.io"; - description = "A game engine library for tactical squad ASCII roguelike dungeon crawlers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "LibZip" = callPackage - ({ mkDerivation, base, bindings-libzip, bytestring, filepath, mtl - , stdenv, time, utf8-string - }: - mkDerivation { - pname = "LibZip"; - version = "1.0.1"; - sha256 = "a636e0202d2a3f60d894a814bd9834cf8c62313b67ccc48c295f02a4bebe425f"; - libraryHaskellDepends = [ - base bindings-libzip bytestring filepath mtl time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Bindings to libzip, a library for manipulating zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "List" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "List"; - version = "0.6.2"; - sha256 = "c4b92be1202fc59112018f76d5b17cd3a659ebc36384a46e000ab2fbaf99b878"; - revision = "1"; - editedCabalFile = "11ws93cdzz7k4nvcld2d74155mdgcvyi6f6an7gpf9z4k523c11n"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator"; - description = "List monad transformer and class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListLike" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , dlist, fmlist, stdenv, text, utf8-string, vector - }: - mkDerivation { - pname = "ListLike"; - version = "4.6.3"; - sha256 = "9d06237f7384a5dc06c8d8e8e8b41dbc30b25cfb97b3430a96ff934ef53b7683"; - revision = "1"; - editedCabalFile = "1xi5mlk6jm73fdxsjcp41ffr3ygwwykcjf20c122k7hgpkzg1lms"; - libraryHaskellDepends = [ - array base bytestring containers deepseq dlist fmlist text - utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ddssff/listlike"; - description = "Generalized support for list-like structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ListTree" = callPackage - ({ mkDerivation, base, directory, filepath, List, stdenv - , transformers - }: - mkDerivation { - pname = "ListTree"; - version = "0.2.3"; - sha256 = "0b3aa1d34193d9f7f90b4afeea681a79ab1595e8e651cae093f8fca3c50f60cc"; - libraryHaskellDepends = [ - base directory filepath List transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yairchu/generator/tree"; - description = "Trees and monadic trees expressed as monadic lists where the underlying monad is a list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MemoTrie" = callPackage - ({ mkDerivation, base, newtype-generics, stdenv }: - mkDerivation { - pname = "MemoTrie"; - version = "0.6.10"; - sha256 = "584df0e138093b2f2edc893a69883eb8cbca3402ebdc75392a7742e86156ba53"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base newtype-generics ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/MemoTrie"; - description = "Trie-based memo functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadPrompt" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "MonadPrompt"; - version = "1.0.0.5"; - sha256 = "b012cbbe83650f741c7b7f6eafcc89dec299b0ac74a758b6f3a8cdfc5d3bbeda"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - description = "MonadPrompt, implementation & examples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MonadRandom" = callPackage - ({ mkDerivation, base, mtl, primitive, random, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "MonadRandom"; - version = "0.5.1.2"; - sha256 = "776f0e69ddea30c9e819f1cd75249377b7fc6f7c8181b90e72ec9c7bc7e33448"; - libraryHaskellDepends = [ - base mtl primitive random transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Random-number generation monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "MusicBrainz" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , HTTP, http-conduit, http-types, monad-control, resourcet, stdenv - , text, time, time-locale-compat, transformers, unliftio-core - , vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "MusicBrainz"; - version = "0.4.1"; - sha256 = "262c29f630a761356454c2a382d149230ea2e621c95102b3d3b30427d7c0cd57"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra HTTP http-conduit - http-types monad-control resourcet text time time-locale-compat - transformers unliftio-core vector xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/hMusicBrainz"; - description = "interface to MusicBrainz XML2 and JSON web services"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "NineP" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "NineP"; - version = "0.0.2.1"; - sha256 = "4bb1516b9fb340118960043e0c72aa62316be8ff3f78cc8c1354e2fac96dd8cc"; - configureFlags = [ "-f-bytestring-in-base" ]; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://9ph.googlecode.com"; - description = "9P2000 in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NoHoed" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "NoHoed"; - version = "0.1.1"; - sha256 = "9b663a234c034e0049126ae7f06d1756dc496012177bf18548c6d8caeec43b3d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/NoHoed"; - description = "Placeholder package to preserve debug ability via conditional builds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "NumInstances" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "NumInstances"; - version = "1.4"; - sha256 = "cbdb2a49346f59ceb5ab38592d7bc52e5205580d431d0ac6d852fd9880e59679"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/NumInstances"; - description = "Instances of numeric classes for functions and tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ObjectName" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "ObjectName"; - version = "1.1.0.1"; - sha256 = "72dbef237580fd4e8567de2de752835bbadd3629f486d1586486d49a49aad210"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/svenpanne/ObjectName"; - description = "Explicitly handled object names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OneTuple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "OneTuple"; - version = "0.2.2"; - sha256 = "d82e702485bcbdefbda0d12b6a250d318a269572ee58d63b60eee531e56624dc"; - revision = "3"; - editedCabalFile = "0m3a9fj2h0v529q3i1kq1jfbdj68wxsmhq65hgx2rwjpgb8cqf0z"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Singleton Tuple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Only" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "Only"; - version = "0.1"; - sha256 = "ab7aa193e8c257d3bda6b0b3c1cbcf74cdaa85ab08cb20c2dd62ba248c1ab265"; - revision = "1"; - editedCabalFile = "1ahk7p34kmh041mz7lyc10nhcxgv2i4z8nvzxvqm2x34gslmsbzr"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "The 1-tuple type or single-value \"collection\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenAL" = callPackage - ({ mkDerivation, base, ObjectName, openal, OpenGL, StateVar, stdenv - , transformers - }: - mkDerivation { - pname = "OpenAL"; - version = "1.7.0.5"; - sha256 = "343a546d94f8d05008896be509149b94ad601c0b48a83dd9e26990a0e97af898"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base ObjectName OpenGL StateVar transformers - ]; - librarySystemDepends = [ openal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-openal/ALUT"; - description = "A binding to the OpenAL cross-platform 3D audio API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "OpenGL" = callPackage - ({ mkDerivation, base, bytestring, containers, GLURaw, ObjectName - , OpenGLRaw, StateVar, stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGL"; - version = "3.0.3.0"; - sha256 = "5a05ffc752dfc7dd16818d7b3c7c59a27639e246cdfa1963fa02e3ce247a2e19"; - revision = "1"; - editedCabalFile = "1748mrb6r9mpf5jbrx436lwbg8w6dadyy8dhxw2dwnrj5z7zf741"; - libraryHaskellDepends = [ - base bytestring containers GLURaw ObjectName OpenGLRaw StateVar - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/OpenGL"; - description = "A binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "OpenGLRaw" = callPackage - ({ mkDerivation, base, bytestring, containers, fixed, half, libGL - , stdenv, text, transformers - }: - mkDerivation { - pname = "OpenGLRaw"; - version = "3.3.4.0"; - sha256 = "756169eaadfe16627a893c35e7952d82ff466ac77b13ec2d1ea1de8fb5afba3e"; - libraryHaskellDepends = [ - base bytestring containers fixed half text transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Opengl"; - description = "A raw binding for the OpenGL graphics system"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "ParsecTools" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "ParsecTools"; - version = "0.0.2.0"; - sha256 = "ef4843353127aa3e6f6ab0aece9f4245225d375802921e151a1751d797857a87"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Parsec combinators for more complex objects"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "PyF" = callPackage - ({ mkDerivation, base, containers, haskell-src-exts - , haskell-src-meta, megaparsec, mtl, stdenv, template-haskell, text - }: - mkDerivation { - pname = "PyF"; - version = "0.9.0.0"; - sha256 = "1c5af5b527615886d94c52eb43e5cab42d429e7461f8cde645fc4a84dbb7c849"; - libraryHaskellDepends = [ - base containers haskell-src-exts haskell-src-meta megaparsec mtl - template-haskell text - ]; - doHaddock = false; - doCheck = false; - description = "Quasiquotations for a python like interpolated string formater"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuasiText" = callPackage - ({ mkDerivation, attoparsec, base, haskell-src-meta, stdenv - , template-haskell, text, th-lift-instances - }: - mkDerivation { - pname = "QuasiText"; - version = "0.1.2.6"; - sha256 = "e801d269e25263645ee66fc090040fe9b9c8a8e5bf10485801dd7a5a30e0f119"; - libraryHaskellDepends = [ - attoparsec base haskell-src-meta template-haskell text - th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mikeplus64/QuasiText"; - description = "A QuasiQuoter for Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "QuickCheck" = callPackage - ({ mkDerivation, base, containers, deepseq, random, splitmix - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "QuickCheck"; - version = "2.13.2"; - sha256 = "7b560baa5853de777702dc23a6f2126ae4adbfdab163295bc56323a706914610"; - libraryHaskellDepends = [ - base containers deepseq random splitmix template-haskell - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nick8325/quickcheck"; - description = "Automatic testing of Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RSA" = callPackage - ({ mkDerivation, base, binary, bytestring, crypto-api - , crypto-pubkey-types, SHA, stdenv - }: - mkDerivation { - pname = "RSA"; - version = "2.4.1"; - sha256 = "72c5d8c45ef1013e0e8aff763bb8894df0f022f28e698e33ae87bbdb33d69041"; - libraryHaskellDepends = [ - base binary bytestring crypto-api crypto-pubkey-types SHA - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of RSA, using the padding schemes of PKCS#1 v2.1."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Ranged-sets" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "Ranged-sets"; - version = "0.4.0"; - sha256 = "4b25a843f0fbbeda9bf218e3f4be7f1ac58704e433a08ef02ead1dee8d126dea"; - revision = "2"; - editedCabalFile = "1dl69wa509yn2jvl0d4c5c036swq22i6nd73kqn0bp7vhbj4rfq4"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/PaulJohnson/Ranged-sets"; - description = "Ranged sets for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, FontyFruity - , free, JuicyPixels, mtl, primitive, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "Rasterific"; - version = "0.7.5.1"; - sha256 = "c612c3dde7c47aa8044c6e0ce6bdc0e1d36ea55cc37ec4fc48d0baea63555358"; - libraryHaskellDepends = [ - base bytestring containers dlist FontyFruity free JuicyPixels mtl - primitive transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "A pure haskell drawing engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "RefSerialize" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashtables - , stdenv, stringsearch - }: - mkDerivation { - pname = "RefSerialize"; - version = "0.4.0"; - sha256 = "05b25eb1ab943d96119aa2acca678fc8f194c3411af521e3835f4de5c752bbb2"; - libraryHaskellDepends = [ - base binary bytestring containers hashtables stringsearch - ]; - doHaddock = false; - doCheck = false; - description = "Write to and read from ByteStrings maintaining internal memory references"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SHA" = callPackage - ({ mkDerivation, array, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "SHA"; - version = "1.6.4.4"; - sha256 = "6bd950df6b11a3998bb1452d875d2da043ee43385459afc5f16d471d25178b44"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base binary bytestring ]; - doHaddock = false; - doCheck = false; - description = "Implementations of the SHA suite of message digest functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SVGFonts" = callPackage - ({ mkDerivation, attoparsec, base, blaze-markup, blaze-svg - , bytestring, cereal, cereal-vector, containers, data-default-class - , diagrams-core, diagrams-lib, directory, parsec, split, stdenv - , text, vector, xml - }: - mkDerivation { - pname = "SVGFonts"; - version = "1.7.0.1"; - sha256 = "30b1eb325312b6dda99da23997197cda9dbc93e0829e2b795849a790e7bc761b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base blaze-markup blaze-svg bytestring cereal - cereal-vector containers data-default-class diagrams-core - diagrams-lib directory parsec split text vector xml - ]; - doHaddock = false; - doCheck = false; - description = "Fonts from the SVG-Font format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "SafeSemaphore" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "SafeSemaphore"; - version = "0.10.1"; - sha256 = "21e5b737a378cae9e1faf85cab015316d4c84d4b37e6d9d202111cef8c4cef66"; - revision = "1"; - editedCabalFile = "1k61gqgfh6n3sj8ni8sfvpcm39nqc2msjfxk2pgmhfabvv48w5hv"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisKuklewicz/SafeSemaphore"; - description = "Much safer replacement for QSemN, QSem, and SampleVar"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "Spintax" = callPackage - ({ mkDerivation, attoparsec, base, extra, mtl, mwc-random, stdenv - , text - }: - mkDerivation { - pname = "Spintax"; - version = "0.3.3"; - sha256 = "21df2193bf1216d55a0d43691182125993eeadc6f097eaf5eb995c23f2016b13"; - libraryHaskellDepends = [ - attoparsec base extra mtl mwc-random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/spintax"; - description = "Random text generation based on spintax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "StateVar" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "StateVar"; - version = "1.2"; - sha256 = "afc036021fcd38f15fcc4af392a3e57017d5ddcc926e99391dbfc8c4e6375f8b"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-opengl/StateVar"; - description = "State variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TCache" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , hashtables, mtl, old-time, RefSerialize, stdenv, stm, text - }: - mkDerivation { - pname = "TCache"; - version = "0.12.1"; - sha256 = "f134b45fcdd127fa1a4214f01d44dc34e994fed137cec63f4c4ea632363ab7bd"; - libraryHaskellDepends = [ - base bytestring containers directory hashtables mtl old-time - RefSerialize stm text - ]; - doHaddock = false; - doCheck = false; - description = "A Transactional cache with user-defined persistence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "TypeCompose" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "TypeCompose"; - version = "0.9.14"; - sha256 = "56034f7917c7464e3be93754c36302d91b8d750f84f6ed7af146f94c4fd05a57"; - revision = "1"; - editedCabalFile = "1pxg6az5vkl0zvs3zdvvvnhxqawd9fkkd44jmzzzyyibppgni6x4"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/TypeCompose"; - description = "Type composition classes & instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ViennaRNAParser" = callPackage - ({ mkDerivation, base, parsec, ParsecTools, process, stdenv - , transformers - }: - mkDerivation { - pname = "ViennaRNAParser"; - version = "1.3.3"; - sha256 = "7ee941d106b8b0c57e1ca5104d19b94215721e4a7b8aeb53fa353d246efbaefe"; - libraryHaskellDepends = [ - base parsec ParsecTools process transformers - ]; - doHaddock = false; - doCheck = false; - description = "Libary for parsing ViennaRNA package output"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "Win32" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "Win32"; - version = "2.6.1.0"; - sha256 = "eba445ba0717e96f239c984890f67172e7bfe72a23f32f37fe265b6cadfd9ce3"; - revision = "1"; - editedCabalFile = "1ia6dk2fvxg3gzqdmcypdka6fcnnrza23hq1rhslj53jy3qzs3kn"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/win32"; - description = "A binding to part of the Win32 library"; - license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.none; - }) {}; - "Win32-notify" = callPackage - ({ mkDerivation, base, containers, directory, stdenv, Win32 }: - mkDerivation { - pname = "Win32-notify"; - version = "0.3.0.3"; - sha256 = "0c21dbe06cb1ce3b3e5f1aace0b7ee359b36e7cb057f8fe2c28c943150044116"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers directory Win32 ]; - doHaddock = false; - doCheck = false; - description = "A binding to part of the Win32 library for file notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "X11" = callPackage - ({ mkDerivation, base, data-default, libX11, libXext, libXinerama - , libXrandr, libXrender, libXScrnSaver, stdenv - }: - mkDerivation { - pname = "X11"; - version = "1.9.1"; - sha256 = "7581e7b3c1c8313d1f7d224d57b20c689e5f757404c9f0ec47f4d15c4541e63d"; - libraryHaskellDepends = [ base data-default ]; - librarySystemDepends = [ - libX11 libXext libXinerama libXrandr libXrender libXScrnSaver - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/X11"; - description = "A binding to the X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs.xorg) libXScrnSaver; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXinerama; inherit (pkgs.xorg) libXrender;}; - "X11-xft" = callPackage - ({ mkDerivation, base, libXft, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "X11-xft"; - version = "0.3.1"; - sha256 = "4eba3fee62570e06447654030a62fb55f19587884bc2cef77a9c3b2c3458f8d1"; - libraryHaskellDepends = [ base utf8-string X11 ]; - libraryPkgconfigDepends = [ libXft ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the Xft, X Free Type interface library, and some Xrender parts"; - license = "LGPL"; - }) {}; - "Xauth" = callPackage - ({ mkDerivation, base, libXau, stdenv }: - mkDerivation { - pname = "Xauth"; - version = "0.1"; - sha256 = "ba332dea9ec152b3f676d22461eee81a657e16987c3dfb8249e9dbe0cda56ed7"; - libraryHaskellDepends = [ base ]; - libraryPkgconfigDepends = [ libXau ]; - doHaddock = false; - doCheck = false; - description = "A binding to the X11 authentication library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-deque" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv, time }: - mkDerivation { - pname = "abstract-deque"; - version = "0.3"; - sha256 = "09aa10f38193a8275a7791b92a4f3a7192a304874637e2a35c897dde25d75ca2"; - libraryHaskellDepends = [ array base containers random time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Abstract, parameterized interface to mutable Deques"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "abstract-par" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "abstract-par"; - version = "0.3.3"; - sha256 = "248a8739bd902462cb16755b690b55660e196e58cc7e6ef8157a72c2a3d5d860"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Type classes generalizing the functionality of the 'monad-par' library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "accuerr" = callPackage - ({ mkDerivation, base, bifunctors, lens, semigroups, stdenv }: - mkDerivation { - pname = "accuerr"; - version = "0.2.0.2"; - sha256 = "4f6a8230d2ad3bc274dea234208ce4f5282e2d9413a5da1f5505fc55a2fa9a36"; - libraryHaskellDepends = [ base bifunctors lens semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/accuerr"; - description = "Data type like Either but with accumulating error type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ace" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , data-default, parsec, stdenv, text - }: - mkDerivation { - pname = "ace"; - version = "0.6"; - sha256 = "d3472b659d26cf7ea9afa207ec24ac0314598de997722e636e9bfa24b3900738"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup data-default parsec text - ]; - doHaddock = false; - doCheck = false; - description = "Attempto Controlled English parser and printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "action-permutations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "action-permutations"; - version = "0.0.0.1"; - sha256 = "a419ee59f996e5305afd96336a561a9fcf26844362eaa32ab6b747a8f9fd1466"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Execute a set of actions (e.g. parsers) in each possible order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "active" = callPackage - ({ mkDerivation, base, lens, linear, semigroupoids, semigroups - , stdenv, vector - }: - mkDerivation { - pname = "active"; - version = "0.2.0.14"; - sha256 = "df45678266e0d95830a8210213fdf86d4dca765f1c094d31294569662c256b74"; - libraryHaskellDepends = [ - base lens linear semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "Abstractions for animation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ad" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, comonad - , containers, data-reify, erf, free, nats, reflection, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "ad"; - version = "4.3.6"; - sha256 = "6580f376b4c1a55cd35baccdcfd6ddcc240bcd514743e629df610251e9d8f739"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array base comonad containers data-reify erf free nats reflection - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ad"; - description = "Automatic Differentiation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adjunctions" = callPackage - ({ mkDerivation, array, base, comonad, containers, contravariant - , distributive, free, mtl, profunctors, semigroupoids, semigroups - , stdenv, tagged, transformers, transformers-compat, void - }: - mkDerivation { - pname = "adjunctions"; - version = "4.4"; - sha256 = "507c2ef55337ae61c805f8cbc1213dfd7d2b85187342675d662254b8d8a16ae9"; - revision = "2"; - editedCabalFile = "1yfsjx7dqikg3hvld7i91xfsg5lawmr5980lvfd794sybmgxsf17"; - libraryHaskellDepends = [ - array base comonad containers contravariant distributive free mtl - profunctors semigroupoids semigroups tagged transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/adjunctions/"; - description = "Adjunctions and representable functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "adler32" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "adler32"; - version = "0.1.2.0"; - sha256 = "26b43c9f389f45ed792698ea4880d24ba56ab61c6f7cae51e582a05e0b5866a4"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-adler32"; - description = "An implementation of Adler-32, supporting rolling checksum operation"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "advent-of-code-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, finite-typelits, http-api-data, http-client - , http-client-tls, http-media, megaparsec, mtl, profunctors - , servant, servant-client, servant-client-core, stdenv, stm - , tagsoup, text, time, time-compat - }: - mkDerivation { - pname = "advent-of-code-api"; - version = "0.2.7.0"; - sha256 = "99f7eb28da234c3188d1002a413b6a8560ee1e24cc567ea40e1a5a57f9143028"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - finite-typelits http-api-data http-client http-client-tls - http-media megaparsec mtl profunctors servant servant-client - servant-client-core stm tagsoup text time time-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/advent-of-code-api#readme"; - description = "Advent of Code REST API bindings and servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, bytestring - , containers, deepseq, dlist, ghc-prim, hashable, primitive - , scientific, stdenv, tagged, template-haskell, text - , th-abstraction, time, time-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "aeson"; - version = "1.4.6.0"; - sha256 = "923fb2c6e224c4c0d1848174b1010592f31cd149f538923efd87f8a6b4b3488b"; - libraryHaskellDepends = [ - attoparsec base base-compat bytestring containers deepseq dlist - ghc-prim hashable primitive scientific tagged template-haskell text - th-abstraction time time-compat unordered-containers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Fast JSON parsing and encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-attoparsec" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv }: - mkDerivation { - pname = "aeson-attoparsec"; - version = "0.0.0"; - sha256 = "a5868390477938b3086e820f4a432f9d6a3972454f561fc386520634eec72104"; - libraryHaskellDepends = [ aeson attoparsec base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/aeson-attoparsec#readme"; - description = "Embed an Attoparsec text parser into an Aeson parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-better-errors" = callPackage - ({ mkDerivation, aeson, base, bytestring, dlist, mtl, scientific - , stdenv, text, transformers, transformers-compat - , unordered-containers, vector, void - }: - mkDerivation { - pname = "aeson-better-errors"; - version = "0.9.1.0"; - sha256 = "68f001bf055ec7b755d91019f2a0ef136307d157a231acddad6b4cc561f67327"; - libraryHaskellDepends = [ - aeson base bytestring dlist mtl scientific text transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/aeson-better-errors"; - description = "Better error messages when decoding JSON values"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-casing" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-casing"; - version = "0.2.0.0"; - sha256 = "3723075673a3f188a05e5db0cd2851c249ca16eba532c3e76e7f1fa60cf19233"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Tools to change the formatting of field names in Aeson instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-compat" = callPackage - ({ mkDerivation, aeson, attoparsec, attoparsec-iso8601, base - , base-compat, bytestring, containers, exceptions, hashable - , scientific, stdenv, tagged, text, time, time-locale-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-compat"; - version = "0.3.9"; - sha256 = "e043941ba761c13a3854fc087521b864b56b2df874154e42aedb67b2a77f23c8"; - revision = "2"; - editedCabalFile = "1y07skwfg22z37fvjmqcpcl1yz1kx2zn4zz3n1bfghk7740c4gyd"; - libraryHaskellDepends = [ - aeson attoparsec attoparsec-iso8601 base base-compat bytestring - containers exceptions hashable scientific tagged text time - time-locale-compat unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/aeson-compat#readme"; - description = "Compatibility layer for aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-diff" = callPackage - ({ mkDerivation, aeson, base, bytestring, edit-distance-vector - , hashable, mtl, optparse-applicative, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-diff"; - version = "1.1.0.8"; - sha256 = "24eab662fc61c022db1a67ba94ce1385e2ad1f500c6498b5ee90725f070835de"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring edit-distance-vector hashable mtl scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/aeson-diff"; - description = "Extract and apply patches to JSON documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-generic-compat" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-generic-compat"; - version = "0.0.1.3"; - sha256 = "a6b6ca511483bc9de72c2c640a9f871fe8d329811fb8b87d0a664c4394e223cf"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - description = "Compatible generic class names of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-lens" = callPackage - ({ mkDerivation, aeson, base, bytestring, lens, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-lens"; - version = "0.5.0.0"; - sha256 = "7ace668031da8119439e21b6ccbe329d37c533be2f5c5612389107d2676728df"; - libraryHaskellDepends = [ - aeson base bytestring lens text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Lens of Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-optics" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , optics-core, optics-extra, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-optics"; - version = "1.1.0.1"; - sha256 = "c7555096900d1c9bb18b1a5c8697976e6dc8268a9ec1c6dbb9abf0431941d1dd"; - revision = "1"; - editedCabalFile = "08nyfzxcw2j9wkm0cnbw2dl8f3zj2zrv85wrjayqq9v06hqk0dkl"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bytestring optics-core - optics-extra scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/aeson-optics"; - description = "Law-abiding optics for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-picker" = callPackage - ({ mkDerivation, aeson, base, lens, lens-aeson, stdenv, text }: - mkDerivation { - pname = "aeson-picker"; - version = "0.1.0.5"; - sha256 = "97df83f6ef5f201e784c0a96c3bc3205c94d20b67f5ff4e3193acd8e9a339c16"; - libraryHaskellDepends = [ aeson base lens lens-aeson text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ozzzzz/aeson-picker#readme"; - description = "Tiny library to get fields from JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-pretty" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bytestring - , cmdargs, scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "aeson-pretty"; - version = "0.8.8"; - sha256 = "81cea61cb6dcf32c3f0529ea5cfc98dbea3894152d7f2d9fe1cb051f927ec726"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base-compat bytestring scientific text - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson attoparsec base bytestring cmdargs - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/aeson-pretty"; - description = "JSON pretty-printing library and command-line tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-qq" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat - , haskell-src-meta, parsec, scientific, stdenv, template-haskell - , text, vector - }: - mkDerivation { - pname = "aeson-qq"; - version = "0.8.3"; - sha256 = "8f3129cf88bf52214a9f74c0be584a3c3296d1541280ad900188e102fee7f482"; - libraryHaskellDepends = [ - aeson attoparsec base base-compat haskell-src-meta parsec - scientific template-haskell text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/aeson-qq#readme"; - description = "JSON quasiquoter for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-schemas" = callPackage - ({ mkDerivation, aeson, base, bytestring, first-class-families - , megaparsec, stdenv, template-haskell, text, unordered-containers - }: - mkDerivation { - pname = "aeson-schemas"; - version = "1.0.3"; - sha256 = "5133311983f3e2d3b5593d8db2b57c4bda6208c63193043bd48957c357c4b03a"; - revision = "2"; - editedCabalFile = "0dydrwj8d7337c0qdxc7cxg8y2hb89ksli9692rvx7zfan41cpq7"; - libraryHaskellDepends = [ - aeson base bytestring first-class-families megaparsec - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/aeson-schemas#readme"; - description = "Easily consume JSON data on-demand with type-safety"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-utils" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, scientific - , stdenv, text - }: - mkDerivation { - pname = "aeson-utils"; - version = "0.3.0.2"; - sha256 = "71814b1be8849f945395eb81217a2ad464f2943134c50c09afd8a3126add4b1f"; - revision = "7"; - editedCabalFile = "0lnlmsn5imbapdhbza1175wm04ynn1w75llkhlk1akpanx1dnd15"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific text - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for working with Aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aeson-yak" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "aeson-yak"; - version = "0.1.1.3"; - sha256 = "af4355bc315a152592e9c06f5cc41bdb5ce7b236d85fe572a292c6bac02faa74"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/aeson-yak"; - description = "Handle JSON that may or may not be a list, or exist"; - license = stdenv.lib.licenses.mit; - }) {}; - "aeson-yaml" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "aeson-yaml"; - version = "1.0.5.0"; - sha256 = "e3c49b52b7000dcfe0a227af2e3a70aa7fd97f5c577156ad659470b17127a533"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/clovyr/aeson-yaml"; - description = "Output any Aeson value as YAML (pure Haskell library)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "al" = callPackage - ({ mkDerivation, base, c2hs, mtl, openal, stdenv }: - mkDerivation { - pname = "al"; - version = "0.1.4.2"; - sha256 = "8bf0f3b3a05ea7b7b8e43da282e1952e5c532ed23247d3384d394cd5046cecd2"; - libraryHaskellDepends = [ base mtl ]; - libraryPkgconfigDepends = [ openal ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/al"; - description = "OpenAL 1.1 raw API."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openal;}; - "alerts" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "alerts"; - version = "0.1.2.0"; - sha256 = "8e9c684b1236c5a730f50b48aa38de2b835fbb48d5bc27be41e742cedb64de91"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/alerts#readme"; - description = "Alert messages for web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alex" = callPackage - ({ mkDerivation, array, base, containers, directory, happy, stdenv - }: - mkDerivation { - pname = "alex"; - version = "3.2.5"; - sha256 = "b77c8a1270767c64e2adb21a6e91ee7cd904ba17edae17bc20fd03da5256e0e3"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers directory ]; - executableToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/alex/"; - description = "Alex is a tool for generating lexical analysers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alg" = callPackage - ({ mkDerivation, base, dual, stdenv, util }: - mkDerivation { - pname = "alg"; - version = "0.2.13.1"; - sha256 = "83929d69abda54ba724c5221071b8629ed60605edb8ec9a66ed8a025ad90c41c"; - libraryHaskellDepends = [ base dual util ]; - doHaddock = false; - doCheck = false; - description = "Algebraic structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "almost-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "almost-fix"; - version = "0.0.2"; - sha256 = "20597d015fe9b6bb6bfcb0eaee3eb58b28e38a1f4f43049ad0aeebcc6409a70f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Recurse while a predicate is satisfied"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "alsa-core" = callPackage - ({ mkDerivation, alsaLib, base, extensible-exceptions, stdenv }: - mkDerivation { - pname = "alsa-core"; - version = "0.5.0.1"; - sha256 = "eb50495ef05ecc7c06a0147da7f0d3efde832a44d23caaf5172dc114882270ab"; - libraryHaskellDepends = [ base extensible-exceptions ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (Exceptions)"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "i686-linux" "x86_64-linux" ]; - }) {inherit (pkgs) alsaLib;}; - "alsa-mixer" = callPackage - ({ mkDerivation, alsa-core, alsaLib, base, c2hs, stdenv, unix }: - mkDerivation { - pname = "alsa-mixer"; - version = "0.3.0"; - sha256 = "cb6a197de99c6b4339a7f552e1c6b71eaefa11bb96102d5ba4519a23c615de02"; - libraryHaskellDepends = [ alsa-core base unix ]; - librarySystemDepends = [ alsaLib ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ttuegel/alsa-mixer"; - description = "Bindings to the ALSA simple mixer API"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-pcm" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base - , extensible-exceptions, sample-frame, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "alsa-pcm"; - version = "0.6.1.1"; - sha256 = "6348f63e2858df9c0b516053c7c5111139936faea6edf7cf400b8fba6cca94d6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base extensible-exceptions sample-frame semigroups - storable-record - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (PCM audio)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alsa-seq" = callPackage - ({ mkDerivation, alsa-core, alsaLib, array, base, bytestring - , data-accessor, enumset, extensible-exceptions, poll, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "alsa-seq"; - version = "0.6.0.7"; - sha256 = "06cda1e24993aaf0c3592b51a613cf1e187eea603dd77ad3a129a8a7b1e0b778"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - alsa-core array base bytestring data-accessor enumset - extensible-exceptions poll transformers utility-ht - ]; - libraryPkgconfigDepends = [ alsaLib ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/ALSA"; - description = "Binding to the ALSA Library API (MIDI sequencer)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) alsaLib;}; - "alternative-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "alternative-vector"; - version = "0.0.0"; - sha256 = "42474bc708dbc81e13a7850887cefc2596db47cb07423610094cd994f754c7b1"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/alternative-vector#readme"; - description = "Use vectors instead of lists for many and some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "amazonka" = callPackage - ({ mkDerivation, amazonka-core, base, bytestring, conduit - , conduit-extra, directory, exceptions, http-client, http-conduit - , http-types, ini, mmorph, monad-control, mtl, resourcet, retry - , stdenv, text, time, transformers, transformers-base - , transformers-compat, unliftio-core, void - }: - mkDerivation { - pname = "amazonka"; - version = "1.6.1"; - sha256 = "edb794b7ed0db3f5955ec08ded68b5eca753f62978312c881f3cb0c6eb769180"; - revision = "1"; - editedCabalFile = "0xn4wy5gb1h4f4wd2h5ic17nb6ilikmsp1qip6xxc3img5rmaqyq"; - libraryHaskellDepends = [ - amazonka-core base bytestring conduit conduit-extra directory - exceptions http-client http-conduit http-types ini mmorph - monad-control mtl resourcet retry text time transformers - transformers-base transformers-compat unliftio-core void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Comprehensive Amazon Web Services SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-apigateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-apigateway"; - version = "1.6.1"; - sha256 = "3b843dd490d09c45aac415269bf3d7db894fad8104cdd76292058adb03adf385"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon API Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-application-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-application-autoscaling"; - version = "1.6.1"; - sha256 = "da0eaaa282cc04c6aa486dfe00cdb5f42afc77e6785493ffdaa2ff7c9a8ad286"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-appstream" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-appstream"; - version = "1.6.1"; - sha256 = "6644fac750a0a415439df14567597de57bbe75cfe259feb42265af58867c088c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon AppStream SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-athena" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-athena"; - version = "1.6.1"; - sha256 = "370ee46f0d9b7f09b911b25d97457d727510fa049b42921f5f6e4a730fe15b9d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Athena SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-autoscaling" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-autoscaling"; - version = "1.6.1"; - sha256 = "2fb4adc14d35ce6a24b1c294bbf3974317ff8b315fc10dc8f9609399a8acc914"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Auto Scaling SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-budgets" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-budgets"; - version = "1.6.1"; - sha256 = "84ab20850439ba786153a6e0c27bc8a321ef1c79524a8bf2d89adb56442d6273"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Budgets SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-certificatemanager" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-certificatemanager"; - version = "1.6.1"; - sha256 = "833d7b67e7bae4c8633d34109998675edbc95478ac0eb86ec1cf866079689ef2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Certificate Manager SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudformation" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudformation"; - version = "1.6.1"; - sha256 = "e823eab5456b0b6f86f9cd391cf2572998e30ecbed9ce373cd8e3ac6f5d3afc8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFormation SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudfront" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudfront"; - version = "1.6.1"; - sha256 = "8c5900fb0d34878ecfe9470bcd897259e2575dbf7e13fc526a515a0e52dfa779"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudFront SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudhsm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudhsm"; - version = "1.6.1"; - sha256 = "34dfe223cf33e207be71c6c0f092e892b549f5332eb392a0c474493be0e0a019"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudHSM SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch"; - version = "1.6.1"; - sha256 = "d04812c26d5c19b5ad00f343e2607e18a91f12743508903ee76f12999bcd7adc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudsearch-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudsearch-domains"; - version = "1.6.1"; - sha256 = "041b6c655878f0ae85803cc4ef338bf1c4eab48ec327c46ffadb78b5c886b11f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudSearch Domain SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudtrail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudtrail"; - version = "1.6.1"; - sha256 = "55cc7c15a2e26824621ddb7e8086605bac315f994ac4cefb56b6b9726e0f7da9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudTrail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch"; - version = "1.6.1"; - sha256 = "4e56b617c7b14f0074812562c52f05059c83921800cf737e231e3a8a4149326d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-events" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-events"; - version = "1.6.1"; - sha256 = "8b323d428e163bebb83bbcc3790666356c53bde5c418c84ac48898ebcc3f7646"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Events SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cloudwatch-logs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cloudwatch-logs"; - version = "1.6.1"; - sha256 = "61dfdebb7c99d7d2875cd5ddba10000923c14a0d8a22e233ed3bbe617aa4d490"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CloudWatch Logs SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codebuild" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codebuild"; - version = "1.6.1"; - sha256 = "1375ef0b6b261e6762a3c35837055af3f0066f1da00c62f00fb28def8d39a6b0"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeBuild SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codecommit" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codecommit"; - version = "1.6.1"; - sha256 = "b639a3106095c6dc5d3885a75e20bd9ae4c270ae70b3fb342a40d191da1d0733"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeCommit SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codedeploy" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codedeploy"; - version = "1.6.1"; - sha256 = "3dff6fd082f1dc5c0f5992229499432e97b1a958a810a98330e25cf7175b54fa"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodeDeploy SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-codepipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-codepipeline"; - version = "1.6.1"; - sha256 = "bfa0ffffdf925b5e8693c10d4d73c1fbe310cb8f51a20d155ed08761cb3965c9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon CodePipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-identity" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-identity"; - version = "1.6.1"; - sha256 = "b97778558ce4ba5b8703d5549cd0ffa0b899812e2dd044d7515435070f9e8204"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-idp" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-idp"; - version = "1.6.1"; - sha256 = "df62c34ef4269974d71cc8a1ed6a8160dd739a4dd7ef5e18a5c061a9f2e8f01b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Identity Provider SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-cognito-sync" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-cognito-sync"; - version = "1.6.1"; - sha256 = "e048f9d072b5655f8da36d47c40c45f2d77d85a0a0e4ae0adf14b0e30590db63"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Cognito Sync SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-config" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-config"; - version = "1.6.1"; - sha256 = "ff36ba897040319981edf9736115ca541e000eb37fe6fd408f07f32792f06834"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Config SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-core" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, cryptonite, deepseq - , exceptions, hashable, http-client, http-conduit, http-types, lens - , memory, mtl, resourcet, scientific, semigroups, stdenv, tagged - , text, time, transformers, transformers-compat - , unordered-containers, xml-conduit, xml-types - }: - mkDerivation { - pname = "amazonka-core"; - version = "1.6.1"; - sha256 = "4198f52da9d20338bd6a3a18748d4312d3ff2c06bc84503cb18406251b28a243"; - revision = "1"; - editedCabalFile = "1656dyw6fk3gvph6v3xzvdp3p8xny3ji0gxg7qxvmvn60gj9ricv"; - libraryHaskellDepends = [ - aeson attoparsec base bifunctors bytestring case-insensitive - conduit conduit-extra cryptonite deepseq exceptions hashable - http-client http-conduit http-types lens memory mtl resourcet - scientific semigroups tagged text time transformers - transformers-compat unordered-containers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Core data types and functionality for Amazonka libraries"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-datapipeline" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-datapipeline"; - version = "1.6.1"; - sha256 = "6bf752844ec49c59be856bb082b600959ec187cc890f1bb7f7d9641e9b78b122"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Data Pipeline SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-devicefarm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-devicefarm"; - version = "1.6.1"; - sha256 = "bed85bba8a891f7c626e0b1e41cb4912974c250a6534e5438a3f51e5379a83ec"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Device Farm SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-directconnect" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-directconnect"; - version = "1.6.1"; - sha256 = "dc61998ad1145118be5138df37bd97cb1a61298e8fbc506ef1a22a33bafa045b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Direct Connect SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-discovery" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-discovery"; - version = "1.6.1"; - sha256 = "02abc932bf71df3ee03f5503d08414e3c01c49f08b4720e14e1a1e8fa13f449d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Application Discovery Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dms"; - version = "1.6.1"; - sha256 = "8c79f617ccd7035f709ae8057a8e1a6c5a89cdab3aa9c3aabaee7c0628e3ed87"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Database Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ds"; - version = "1.6.1"; - sha256 = "fb4807974a865556eafc99b7c030244cf7da0b5b1ade9365fcb8689a48d6c8ff"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Directory Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb"; - version = "1.6.1"; - sha256 = "0420486c88f10636a4407c8732b927498c5a809b235e2da56750d012f05c1d82"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-dynamodb-streams" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-dynamodb-streams"; - version = "1.6.1"; - sha256 = "fe2dab6892599dac4ec9f4408283019d670f6ba0a24723914aabe718b14ed959"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon DynamoDB Streams SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecr"; - version = "1.6.1"; - sha256 = "2d0d5dd640f63e11b6009d3b486505e93afd379c5f5738df79582b5eeb6c7358"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Registry SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ecs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ecs"; - version = "1.6.1"; - sha256 = "55071129ab02b9bf3feb5b5ca04feb64ea8709a125b67a35fda15b25cc1a1bba"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon EC2 Container Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-efs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-efs"; - version = "1.6.1"; - sha256 = "741e047eb04c3bbd8dcbb03579bc82e4546abd0ae9a835ae128e2b3843d6b18c"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic File System SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticache" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticache"; - version = "1.6.1"; - sha256 = "4d2d8ae02e7c43eb77ba3a52863a4a2be305fb7f219a568709e830d647feeb60"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon ElastiCache SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticbeanstalk" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticbeanstalk"; - version = "1.6.1"; - sha256 = "2ad4f9e80217d544f5fdd837eb2749d54f3ca3b210dcbada70fec1c920879f69"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Beanstalk SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elasticsearch" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elasticsearch"; - version = "1.6.1"; - sha256 = "9ef91d5db4b13a0164a83674763ce25cb104ba92afd6f8ee5c70aa379006ca13"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elasticsearch Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elastictranscoder" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elastictranscoder"; - version = "1.6.1"; - sha256 = "df80e7de3db78431eddb2d5413ac5e2271ec282c50ee1a23076aca90d697fb5b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Transcoder SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elb"; - version = "1.6.1"; - sha256 = "5b5eecb81db898daa55ac1628bf65ac124d44e616dca5b33356ced32e6ba109d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-elbv2" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-elbv2"; - version = "1.6.1"; - sha256 = "6740907fe448cbee8512b91b570204d56018e520239fc9f1689601eb382f7b79"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic Load Balancing SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-emr" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-emr"; - version = "1.6.1"; - sha256 = "4b93c73647239e0bb1f779c876e933126fae48d51777b15ae4c4750dec2d87bc"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Elastic MapReduce SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-gamelift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-gamelift"; - version = "1.6.1"; - sha256 = "c9c85550858c9eac54e86b226d31270de09cc8d71099a075829cc512fbe0e3b2"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon GameLift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glacier" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glacier"; - version = "1.6.1"; - sha256 = "5b55cf733d0f987c1b3b61fb3fd0e29cdcfdc2bb7c9fcc0fa3c959d4bd540887"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glacier SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-glue" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-glue"; - version = "1.6.1"; - sha256 = "6b2a30379b9727522512a8f259a1e6bd1d22b34ed52669d5558777a81e5be89f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Glue SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-health" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-health"; - version = "1.6.1"; - sha256 = "a2b533d5ac019b7dce0a8cc07f2515b577cabbd3caa613372018a37fa8764677"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Health APIs and Notifications SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iam" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iam"; - version = "1.6.1"; - sha256 = "1d5106a4af75fae4444a3353b2568d4e1f751e81c7e9e263d26cd81466c3e7d7"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Identity and Access Management SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-importexport" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-importexport"; - version = "1.6.1"; - sha256 = "ce142494cc9d5a063ee93224e488380d3730ab507b57ebc53b215dafb0d6dd8e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-inspector" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-inspector"; - version = "1.6.1"; - sha256 = "68b4b3c335ce13754d08726a203fc01a5731f8b9147948b8848a986505efb674"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Inspector SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot"; - version = "1.6.1"; - sha256 = "51763922dbb965d5c01ec60f1090eed03bec959a77e451cef70c55a42a2dc683"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-iot-dataplane" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-iot-dataplane"; - version = "1.6.1"; - sha256 = "7b43f97fe9eb1d81c7ec9ea865fb49c4cd364fa532d4c50d8676306bb8c20b48"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon IoT Data Plane SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis"; - version = "1.6.1"; - sha256 = "5fe3dcf3fbf9aded3e27eb430be32400ebb84a01c0aec237e330a9480cbb5167"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-analytics"; - version = "1.6.1"; - sha256 = "af589c9afa3f253efefb95b356a5f2a7a280d6abbf5314f182f0beecb1066e99"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kinesis-firehose" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kinesis-firehose"; - version = "1.6.1"; - sha256 = "e4a10bfe3f334c9ec27b86096b671b363357c8b417268444b7600dfdcd68872d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Kinesis Firehose SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-kms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-kms"; - version = "1.6.1"; - sha256 = "6d333ec392d1f47c850449e78a1071f2265b46f699f3c58ad9e30bd99c956285"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Key Management Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lambda" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lambda"; - version = "1.6.1"; - sha256 = "972b5ff15cad609f44761d485563496ca3584884e1fa367193ddaf76260fcca3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lambda SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-lightsail" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-lightsail"; - version = "1.6.1"; - sha256 = "7c678ea0f8aa5beee2e0473ac5055a17aeb50c148362739adc84c940beb3931e"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Lightsail SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-analytics" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-analytics"; - version = "1.6.1"; - sha256 = "6ff582afb73e30d97d1f74e815ae03cdf919c4be4581b23691346a6d48a2137d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Commerce Analytics SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-marketplace-metering" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-marketplace-metering"; - version = "1.6.1"; - sha256 = "928bdbe8fbd3b81429ff4936590f3e04fd3632737fb39048afdc6be8ade85037"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Marketplace Metering SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ml" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ml"; - version = "1.6.1"; - sha256 = "b8c7c0b8663ffe570c79a1abc3d387b02e69b61b3f0d39b9ffa39e3049a7b872"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Machine Learning SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks"; - version = "1.6.1"; - sha256 = "0a1716f0d6e5edaad37d86f2f3c0be043a0b0086d1f7a2f06cdd539f717faa96"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-opsworks-cm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-opsworks-cm"; - version = "1.6.1"; - sha256 = "51857803a2f0bee215c92119c3c5899df01e9195c2dc133e3f9774d4b93eca57"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon OpsWorks for Chef Automate SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-pinpoint" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-pinpoint"; - version = "1.6.1"; - sha256 = "aa38c2d154b7ad3c16f0760c5304fd7d9875b1e8c7d48bb32b87a5616717fc87"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Pinpoint SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-polly" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-polly"; - version = "1.6.1"; - sha256 = "b0887545cce2a01b16733b1d329570b4c79e6cfd6412813ec5c9c6c0a79fccef"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Polly SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rds" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rds"; - version = "1.6.1"; - sha256 = "fcd2400a359093bd075ccfc76e16c42c3f3bdc65828bf4cb24c9e5cfdc389421"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Relational Database Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-redshift" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-redshift"; - version = "1.6.1"; - sha256 = "87ea855e565636cc06396172e108df6aeca1e5fac1efc194d7bd98fc56402214"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Redshift SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-rekognition" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-rekognition"; - version = "1.6.1"; - sha256 = "3e20fbeea825447a063684e40b3a3a71342ac32df15f9c40a580279fe6a9f8f8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Rekognition SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv, text }: - mkDerivation { - pname = "amazonka-route53"; - version = "1.6.1"; - sha256 = "7c6442da5b6ded2a26b4f2b642cffe578456ffda8903f424590744f0dbc75773"; - libraryHaskellDepends = [ amazonka-core base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-route53-domains" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-route53-domains"; - version = "1.6.1"; - sha256 = "2c2bcd7445c391235d3a8af2fcd8f641d5a4996379fbbdb8645a24c77f4ba2e8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Route 53 Domains SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-s3" = callPackage - ({ mkDerivation, amazonka-core, base, lens, stdenv, text }: - mkDerivation { - pname = "amazonka-s3"; - version = "1.6.1"; - sha256 = "47a0b0124eaf34b8f14bdac4a8ed2a61f86984da4f6fc9e34b44acda07167e28"; - libraryHaskellDepends = [ amazonka-core base lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Storage Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sdb" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sdb"; - version = "1.6.1"; - sha256 = "53b4585f2cc3d192ce85163e23b153e605563b3938d9f9da28244fec8db92a7a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon SimpleDB SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-servicecatalog" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-servicecatalog"; - version = "1.6.1"; - sha256 = "b4d6ad7c79db7f1b106aa79f7477cff6191aa77d7c1c2b614c108b627507f54b"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Service Catalog SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ses" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ses"; - version = "1.6.1"; - sha256 = "054c576d30341d11ce79869ac1ac5bc0d92ecab88f0fffe9895b78f4b614ece8"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Email Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-shield" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-shield"; - version = "1.6.1"; - sha256 = "1b8a71a8ef5055e8c100ba81ee0fb0a6af7af1e2b29020f546f896f712a07519"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Shield SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sms" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sms"; - version = "1.6.1"; - sha256 = "d6eb434bde9424080f68691775867e119a9f802cb4e7b7761de31e9a800b4b85"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Server Migration Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-snowball" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-snowball"; - version = "1.6.1"; - sha256 = "48c11fb69fed73bb3e7ed7b4cbaba28eb8cd3013b987479d8fb2d35eaa477cd3"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Import/Export Snowball SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sns" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sns"; - version = "1.6.1"; - sha256 = "db98a53c40addfcff33938cdfc4daf4ca35e49bbab01b804562abfb1e613e735"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Notification Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sqs" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sqs"; - version = "1.6.1"; - sha256 = "ee067dd46f51af2ad33ee351d5c85a7d9599a669139fde30fcad825ff80843d4"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Queue Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-ssm" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-ssm"; - version = "1.6.1"; - sha256 = "952dff5e1fba8d79cfc5df93c9e6e782e93462554ce446d4ef4e8aaa313cb0af"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Systems Manager (SSM) SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-stepfunctions" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-stepfunctions"; - version = "1.6.1"; - sha256 = "60af76621df8ba65cd64dcba3a8b0ca54445599accd0de8c54338920577dd013"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Step Functions SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-storagegateway" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-storagegateway"; - version = "1.6.1"; - sha256 = "1041b53029d829dd11b30c08d21a87af8da0b4ed92e51376b3233327b1817e3f"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Storage Gateway SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-sts" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-sts"; - version = "1.6.1"; - sha256 = "ee2364bb14e931528aa3d271c1688829c0975251bc5ffc5c824710841e1c8fb9"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Security Token Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-support" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-support"; - version = "1.6.1"; - sha256 = "5a2d0dd5dd00a067b915e5dfb13c1848683ed7b9bdcfd6ac40d712b417c719ba"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Support SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-swf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-swf"; - version = "1.6.1"; - sha256 = "7b9ce6704f7fe46607722daaa35d11dc2c239fa82ab26ae8a456cdc390b8744a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon Simple Workflow Service SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-test" = callPackage - ({ mkDerivation, aeson, amazonka-core, base, bifunctors, bytestring - , case-insensitive, conduit, conduit-extra, groom, http-client - , http-types, process, resourcet, stdenv, tasty, tasty-hunit - , template-haskell, temporary, text, time, unordered-containers - , yaml - }: - mkDerivation { - pname = "amazonka-test"; - version = "1.6.1"; - sha256 = "751ed583302c4d8dd1dabe8628e8eb8d97b807a899bb71fe208158fe44f222a9"; - libraryHaskellDepends = [ - aeson amazonka-core base bifunctors bytestring case-insensitive - conduit conduit-extra groom http-client http-types process - resourcet tasty tasty-hunit template-haskell temporary text time - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Common functionality for Amazonka library test-suites"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-waf" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-waf"; - version = "1.6.1"; - sha256 = "45c2f517d858891fa85e70e73969721c97ee22236d6932f0df87cd139255516a"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WAF SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-workspaces" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-workspaces"; - version = "1.6.1"; - sha256 = "e589385b8a86f9997d0831ca350d5591484b9e1245374d3e0e88ab45d45c37bf"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon WorkSpaces SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amazonka-xray" = callPackage - ({ mkDerivation, amazonka-core, base, stdenv }: - mkDerivation { - pname = "amazonka-xray"; - version = "1.6.1"; - sha256 = "348cf06a7529d78a1b48d84e46a9c527b590355b4133473e8091052b34a5d00d"; - libraryHaskellDepends = [ amazonka-core base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/amazonka"; - description = "Amazon X-Ray SDK"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "amqp" = callPackage - ({ mkDerivation, base, binary, bytestring, clock, connection - , containers, data-binary-ieee754, monad-control, network - , network-uri, split, stdenv, stm, text, vector, xml - }: - mkDerivation { - pname = "amqp"; - version = "0.19.1"; - sha256 = "7229d9b083349f0bf59b6c5d289edfceab40ba718a9532f8d7d192439f7d02a0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring clock connection containers - data-binary-ieee754 monad-control network network-uri split stm - text vector - ]; - executableHaskellDepends = [ base containers xml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hreinhardt/amqp"; - description = "Client library for AMQP servers (currently only RabbitMQ)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "annotated-wl-pprint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "annotated-wl-pprint"; - version = "0.7.0"; - sha256 = "0c262d7fe13a9a50216438ec882c13e25f31236b886a5692e3c35b85cd773d18"; - revision = "1"; - editedCabalFile = "138k24qxvl90l7dwdw1b3w36mpw93n0xi0nljblqg88pxg7jcvjx"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/david-christiansen/annotated-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer, with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-terminal" = callPackage - ({ mkDerivation, base, colour, stdenv }: - mkDerivation { - pname = "ansi-terminal"; - version = "0.10.2"; - sha256 = "a894e224920b5bd475eb514126801ae3d58538c1fc2d3804b890e17754a40940"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base colour ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/ansi-terminal"; - description = "Simple ANSI terminal support, with Windows compatibility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "ansi-wl-pprint"; - version = "0.6.9"; - sha256 = "a7b2e8e7cd3f02f2954e8b17dc60a0ccd889f49e2068ebb15abfa1d42f7a4eac"; - revision = "1"; - editedCabalFile = "0bb5fzjjc00932pny1fql40dmpmikfqzbrbmpwr09bfw9aynvzgn"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ansi-wl-pprint"; - description = "The Wadler/Leijen Pretty Printer for colored ANSI terminal output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "antiope-core" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, base, bytestring - , exceptions, generic-lens, http-client, http-types, lens, mtl - , resourcet, stdenv, text, transformers, unliftio-core - }: - mkDerivation { - pname = "antiope-core"; - version = "7.4.5"; - sha256 = "ac90bb9d9b22849e3d7890ccd4456c54df006bc165e161a38322e49277c132c3"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core base bytestring exceptions - generic-lens http-client http-types lens mtl resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-dynamodb" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-dynamodb - , antiope-core, base, generic-lens, lens, stdenv, text - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "antiope-dynamodb"; - version = "7.4.5"; - sha256 = "2e76152cf7db548de6fbbc88cdce1765673b8b88749a42a55b3e8cb7cdc9657f"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-dynamodb antiope-core base - generic-lens lens text unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-messages" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, base, bytestring - , generic-lens, lens, lens-aeson, monad-loops, network-uri, stdenv - , text, unliftio-core - }: - mkDerivation { - pname = "antiope-messages"; - version = "7.4.5"; - sha256 = "069b1507e12c1d0e4ba8bd0d6a110f17e3aee1be26986f881958b94d00a8b11d"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core base bytestring generic-lens lens - lens-aeson monad-loops network-uri text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-s3" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-s3 - , antiope-core, antiope-messages, attoparsec, base, bytestring - , conduit, conduit-extra, deepseq, dlist, exceptions, generic-lens - , http-types, lens, mtl, network-uri, resourcet, stdenv, text, time - , unliftio-core - }: - mkDerivation { - pname = "antiope-s3"; - version = "7.4.5"; - sha256 = "8a459edc1244f53f062506732ce7e9a1d0451ee58b3590b1c52ab631fbd12a9b"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-s3 antiope-core - antiope-messages attoparsec base bytestring conduit conduit-extra - deepseq dlist exceptions generic-lens http-types lens mtl - network-uri resourcet text time unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-sns" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sns, base - , bytestring, generic-lens, lens, stdenv, text, time, unliftio-core - }: - mkDerivation { - pname = "antiope-sns"; - version = "7.4.5"; - sha256 = "c9383693f7aabf976b0a437232b8f499c4f22cab9bef8ff284e5828832446f38"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-sns base bytestring - generic-lens lens text time unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "antiope-sqs" = callPackage - ({ mkDerivation, aeson, amazonka, amazonka-core, amazonka-sqs, base - , bytestring, conduit, generic-lens, lens, lens-aeson, monad-loops - , mtl, network-uri, split, stdenv, text, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "antiope-sqs"; - version = "7.4.5"; - sha256 = "dc0d48f446db395649ed23c7a1cc6afe5530f8f23de5823077f8b7a023c15ae0"; - libraryHaskellDepends = [ - aeson amazonka amazonka-core amazonka-sqs base bytestring conduit - generic-lens lens lens-aeson monad-loops mtl network-uri split text - unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/antiope#readme"; - description = "Please see the README on Github at "; - license = stdenv.lib.licenses.mit; - }) {}; - "api-field-json-th" = callPackage - ({ mkDerivation, aeson, base, lens, split, stdenv, template-haskell - , text - }: - mkDerivation { - pname = "api-field-json-th"; - version = "0.1.0.2"; - sha256 = "b8d49c3869bc8104539c43d5544ed2271d1e68a963440d781ee71d2252b0f724"; - libraryHaskellDepends = [ - aeson base lens split template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nakaji-dayo/api-field-json-th"; - description = "option of aeson's deriveJSON"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "app-settings" = callPackage - ({ mkDerivation, base, containers, directory, mtl, parsec, stdenv - , text - }: - mkDerivation { - pname = "app-settings"; - version = "0.2.0.12"; - sha256 = "2bd198b97077090476f8f512a7c03f3ab4147a6df51cf8cd22b5145c37b2ccda"; - libraryHaskellDepends = [ - base containers directory mtl parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emmanueltouzery/app-settings"; - description = "A library to manage application settings (INI file-like)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appar" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "appar"; - version = "0.1.8"; - sha256 = "c4ceeddc26525b58d82c41b6d3e32141371a200a6794aae185b6266ccc81631f"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A simple applicative parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "appendmap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "appendmap"; - version = "0.1.5"; - sha256 = "2dbfa21a3702c30e0bdf764f5775f4ed8ac63b48a830b8931ea994f52030b90e"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/koterpillar/appendmap#readme"; - description = "Map with a Semigroup and Monoid instances delegating to Semigroup of the elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apply-refact" = callPackage - ({ mkDerivation, base, containers, directory, filemanip, filepath - , ghc, ghc-exactprint, mtl, optparse-applicative, process, refact - , stdenv, syb, temporary, transformers, unix-compat - }: - mkDerivation { - pname = "apply-refact"; - version = "0.7.0.0"; - sha256 = "e03a89f23f0564b3a361af278b9237aaa9cd6d1cd9cdc00d8c3db1450b8b4cb9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filemanip ghc ghc-exactprint mtl process - refact syb temporary transformers unix-compat - ]; - executableHaskellDepends = [ - base containers directory filemanip filepath ghc ghc-exactprint mtl - optparse-applicative process refact syb temporary transformers - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Perform refactorings specified by the refact library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "apportionment" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "apportionment"; - version = "0.0.0.3"; - sha256 = "8f71d0b77152edb048e9f75c72a82b9d7ae1b15432fc011610fe9f1b83225b18"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/apportionment"; - description = "Round a set of numbers while maintaining its sum"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "approximate" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, ghc-prim, hashable, lens, log-domain, pointed - , safecopy, semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "approximate"; - version = "0.3.2"; - sha256 = "d3fb53dd85d95263eb2c61146b3bd872c28670f4ff9da91fb260d558d819d104"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq ghc-prim hashable lens - log-domain pointed safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/approximate/"; - description = "Approximate discrete values and numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arbor-lru-cache" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "arbor-lru-cache"; - version = "0.1.1.1"; - sha256 = "602f4969a88c630bff1a4e96acf326c455fdd79ada94c9de134bf4734b33d92b"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/arbor-lru-cache#readme"; - description = "LRU cache based on STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "arbor-postgres" = callPackage - ({ mkDerivation, base, bytestring, generic-lens, lens, network-uri - , optparse-applicative, postgresql-simple, stdenv, text - }: - mkDerivation { - pname = "arbor-postgres"; - version = "0.0.5"; - sha256 = "41449dd18622c4981d8eed1da27b7bcd2004f5a031582e619512de0bcc96c36e"; - libraryHaskellDepends = [ - base bytestring generic-lens lens network-uri optparse-applicative - postgresql-simple text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/arbor-postgres#readme"; - description = "Convenience types and functions for postgresql-simple"; - license = stdenv.lib.licenses.mit; - }) {}; - "arithmoi" = callPackage - ({ mkDerivation, array, base, constraints, containers, deepseq - , exact-pi, ghc-prim, integer-gmp, integer-logarithms, random - , semirings, stdenv, transformers, vector - }: - mkDerivation { - pname = "arithmoi"; - version = "0.10.0.0"; - sha256 = "69e6886835f065900197bf5eeaf5725c99c74ba51115c34391852f401eaf39e3"; - configureFlags = [ "-f-llvm" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base constraints containers deepseq exact-pi ghc-prim - integer-gmp integer-logarithms random semirings transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/arithmoi"; - description = "Efficient basic number-theoretic functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "array-memoize" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "array-memoize"; - version = "0.6.0"; - sha256 = "76c88cb3ed04875821a5601f6a1c40f4e15ef8cb36e8a3d4004df956d1db05dc"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Memoization combinators using arrays for finite sub-domains of functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "arrow-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "arrow-extras"; - version = "0.1.0.1"; - sha256 = "c13c3aba839d1ec78a49991fa4038a68c5eb9ef6da61eceb6e68bc3ce0586a6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/arrow-extras#readme"; - description = "Extra functions for Control.Arrow"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ascii-progress" = callPackage - ({ mkDerivation, async, base, concurrent-output, data-default - , stdenv, time - }: - mkDerivation { - pname = "ascii-progress"; - version = "0.3.3.0"; - sha256 = "7e3fa6b80c09a83c9ba8a0644ef304ca92d65b76383b8dd023ff9f89ebec913e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base concurrent-output data-default time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-ascii-progress"; - description = "A simple progress bar for the console"; - license = stdenv.lib.licenses.mit; - }) {}; - "asciidiagram" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , FontyFruity, JuicyPixels, lens, linear, mtl, optparse-applicative - , pandoc-types, rasterific-svg, stdenv, svg-tree, text, vector - }: - mkDerivation { - pname = "asciidiagram"; - version = "1.3.3.3"; - sha256 = "019f1e781143a19434baeffc49ed0ebdf46e05179b36b753772276a0549b6126"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers FontyFruity JuicyPixels lens linear mtl - pandoc-types rasterific-svg svg-tree text vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative rasterific-svg svg-tree text - ]; - doHaddock = false; - doCheck = false; - description = "Pretty rendering of Ascii diagram into svg or png"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asif" = callPackage - ({ mkDerivation, 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 - , stdenv, temporary-resourcet, text, thyme, transformers, vector - }: - mkDerivation { - pname = "asif"; - version = "6.0.4"; - sha256 = "03e8f784df914d7f311efd594d89e455b2177492a8491ff503f870a741ca2398"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arbor/asif#readme"; - description = "Library for creating and querying segmented feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "asn1-encoding" = callPackage - ({ mkDerivation, asn1-types, base, bytestring, hourglass, stdenv }: - mkDerivation { - pname = "asn1-encoding"; - version = "0.9.6"; - sha256 = "d9f8deabd3b908e5cf83c0d813c08dc0143b3ec1c0d97f660d2cfa02c1c8da0a"; - revision = "1"; - editedCabalFile = "19nq8g1v323p47cqlc4m9r6li35dd3cmcd7k486jw24cijkdjm9n"; - libraryHaskellDepends = [ asn1-types base bytestring hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "ASN1 data reader and writer in RAW, BER and DER forms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-parse" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , stdenv - }: - mkDerivation { - pname = "asn1-parse"; - version = "0.9.5"; - sha256 = "8f1fe1344d30b39dc594d74df2c55209577722af1497204b4c2b6d6e8747f39e"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-asn1"; - description = "Simple monadic parser for ASN1 stream types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "asn1-types" = callPackage - ({ mkDerivation, base, bytestring, hourglass, memory, stdenv }: - mkDerivation { - pname = "asn1-types"; - version = "0.3.3"; - sha256 = "57ebc2371bdb607294b5ca18f44ced121ab528ee304905db1524cb441b535498"; - libraryHaskellDepends = [ base bytestring hourglass memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-asn1"; - description = "ASN.1 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assert-failure" = callPackage - ({ mkDerivation, base, pretty-show, stdenv, text }: - mkDerivation { - pname = "assert-failure"; - version = "0.1.2.2"; - sha256 = "f69416fd527b4f6933586edfc9ee741a2163c3741471e9b8e46a244495bd4a9d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base pretty-show text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/assert-failure"; - description = "Syntactic sugar improving 'assert' and 'error'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "assoc" = callPackage - ({ mkDerivation, base, bifunctors, stdenv, tagged }: - mkDerivation { - pname = "assoc"; - version = "1.0.1"; - sha256 = "4000dea2fbc272ff5a15a0bf0fae1c29dea4b87b8fb4ccb8b07b8114ee2636d5"; - libraryHaskellDepends = [ base bifunctors tagged ]; - doHaddock = false; - doCheck = false; - description = "swap and assoc: Symmetric and Semigroupy Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "astro" = callPackage - ({ mkDerivation, base, matrix, stdenv, time }: - mkDerivation { - pname = "astro"; - version = "0.4.2.1"; - sha256 = "da5dde1bcf42e4f48f5f23dbf3a890a2904ecaf86df3d75e365e071b924afe29"; - libraryHaskellDepends = [ base matrix time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/astro"; - description = "Amateur astronomical computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async" = callPackage - ({ mkDerivation, base, hashable, stdenv, stm }: - mkDerivation { - pname = "async"; - version = "2.2.2"; - sha256 = "4b4ab1ac82c45144d82c6daf6cb6ba45eab9957dad44787fa5e869e23d73bbff"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hashable stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/async"; - description = "Run IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-extra" = callPackage - ({ mkDerivation, async, base, deepseq, split, stdenv }: - mkDerivation { - pname = "async-extra"; - version = "0.2.0.0"; - sha256 = "0d06d5a5cb835597ff1668ae58a1f0d048830164876838533dec4a78eb11cc43"; - libraryHaskellDepends = [ async base deepseq split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/async-extra#readme"; - description = "Useful concurrent combinators"; - license = stdenv.lib.licenses.mit; - }) {}; - "async-refresh" = callPackage - ({ mkDerivation, base, formatting, lifted-async, microlens - , microlens-th, monad-logger, safe-exceptions, stdenv, stm, text - , unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh"; - version = "0.3.0.0"; - sha256 = "da68061b2548a9b5b3e6f4af60120554ebfae9638dfa0b10cf7a244710a334c9"; - libraryHaskellDepends = [ - base formatting lifted-async microlens microlens-th monad-logger - safe-exceptions stm text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh"; - description = "Package implementing core logic for refreshing of expiring data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-refresh-tokens" = callPackage - ({ mkDerivation, async-refresh, base, bytestring, formatting - , microlens, microlens-th, monad-logger, safe-exceptions, stdenv - , text, unliftio, unliftio-core - }: - mkDerivation { - pname = "async-refresh-tokens"; - version = "0.4.0.0"; - sha256 = "67a7419449428fc5f80e9cfc392df115f03721811d6cd73a6c7cbd83f48dc7df"; - libraryHaskellDepends = [ - async-refresh base bytestring formatting microlens microlens-th - monad-logger safe-exceptions text unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-refresh-tokens#readme"; - description = "Package implementing core logic for refreshing of expiring access tokens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "async-timer" = callPackage - ({ mkDerivation, async, base, safe-exceptions, stdenv, unliftio - , unliftio-core - }: - mkDerivation { - pname = "async-timer"; - version = "0.2.0.0"; - sha256 = "0632bfc4c141aa47c461747b3edb59f76ef5523a66ac03be0f32868a5e04cee0"; - libraryHaskellDepends = [ - async base safe-exceptions unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/async-timer#readme"; - description = "Provides API for timer based execution of IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atom-basic" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, network - , network-uri, stdenv, text, time - }: - mkDerivation { - pname = "atom-basic"; - version = "0.2.5"; - sha256 = "24be9667b8bad3ad63b2e9b42fdea5aa0fd96f7e90f52fb1203adfa71d2f75ee"; - libraryHaskellDepends = [ - base base64-bytestring bytestring network network-uri text time - ]; - doHaddock = false; - doCheck = false; - description = "Basic Atom feed construction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-primops" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "atomic-primops"; - version = "0.8.3"; - sha256 = "003af9f24f06355aa240d7ba11079def44d6e78f21e5869c5f0f677a7d6dc50e"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "A safe approach to CAS and other atomic ops in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "atomic-write" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , temporary, text, unix-compat - }: - mkDerivation { - pname = "atomic-write"; - version = "0.2.0.7"; - sha256 = "b5f5c77884bc0332306fab89acf1c8a8582d76eabaa303c91b1c4072621c960d"; - libraryHaskellDepends = [ - base bytestring directory filepath temporary text unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/atomic-write"; - description = "Atomically write to a file"; - license = stdenv.lib.licenses.mit; - }) {}; - "attoparsec" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , scientific, stdenv, text, transformers - }: - mkDerivation { - pname = "attoparsec"; - version = "0.13.2.3"; - sha256 = "3d1ac6713505e520ebb51f26cfb5f6e5a0825e25394a51419c7e035b60b2f2d9"; - revision = "1"; - editedCabalFile = "164n392qrgyb8mg3xxaxym0ffvqyjr4ny4lfrr81y7hk3947yw9q"; - libraryHaskellDepends = [ - array base bytestring containers deepseq scientific text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/attoparsec"; - description = "Fast combinator parsing for bytestrings and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-base64" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text, word8 - }: - mkDerivation { - pname = "attoparsec-base64"; - version = "0.0.0"; - sha256 = "0833530c8b4a46217272d14638f91325e156b22046fa291b528228afe66173e7"; - libraryHaskellDepends = [ attoparsec base bytestring text word8 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-base64#readme"; - description = "Fetch only base64 characters, erroring in the attoparsec monad on failure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-binary" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "attoparsec-binary"; - version = "0.2"; - sha256 = "05e6445b20b396c99275de3e37bf8bb18559a5666ad5136907857bf574e77a0b"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Binary processing extensions to Attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-expr" = callPackage - ({ mkDerivation, attoparsec, base, stdenv }: - mkDerivation { - pname = "attoparsec-expr"; - version = "0.1.1.2"; - sha256 = "8d4cd436112ce9007d2831776d4c5102a5322c48993229d2d41e259c07bb457c"; - libraryHaskellDepends = [ attoparsec base ]; - doHaddock = false; - doCheck = false; - description = "Port of parsec's expression parser to attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-ip" = callPackage - ({ mkDerivation, attoparsec, base, ip, stdenv, vector }: - mkDerivation { - pname = "attoparsec-ip"; - version = "0.0.5"; - sha256 = "f5864859694fb9faa64cabea17fdf8f506e325fa4704c23036ea1cc17102c76f"; - libraryHaskellDepends = [ attoparsec base ip vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-ip#readme"; - description = "Parse IP data types with attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-iso8601" = callPackage - ({ mkDerivation, attoparsec, base, base-compat, stdenv, text, time - }: - mkDerivation { - pname = "attoparsec-iso8601"; - version = "1.0.1.0"; - sha256 = "499ffbd2d39e79cc4fda5ad0129dbf94fdb72a84aa932dfe2a5f5c5c02074142"; - revision = "1"; - editedCabalFile = "1rjhscmczgs1bwyqx7lvkm8py3ylxjd2797mrzgnq60fvm292750"; - libraryHaskellDepends = [ attoparsec base base-compat text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/aeson"; - description = "Parsing of ISO 8601 dates, originally from aeson"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-path" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "attoparsec-path"; - version = "0.0.0.1"; - sha256 = "d07126622210fdb18722f585c61bda0a17389aecc83e786f9f6e621ec120b60c"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-path#readme"; - description = "Convenience bindings between path and attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "attoparsec-uri" = callPackage - ({ mkDerivation, attoparsec, attoparsec-ip, base, bytedump, ip - , QuickCheck, quickcheck-instances, stdenv, strict, text, vector - }: - mkDerivation { - pname = "attoparsec-uri"; - version = "0.0.7"; - sha256 = "369d49c342f90bcc5e07c53b12dc642d6e03aa991900262abc48127d4b25725c"; - libraryHaskellDepends = [ - attoparsec attoparsec-ip base bytedump ip QuickCheck - quickcheck-instances strict text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/attoparsec-uri#readme"; - description = "URI parser / printer using attoparsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "audacity" = callPackage - ({ mkDerivation, base, bytestring, deepseq, directory - , explicit-exception, filepath, non-empty, semigroups, stdenv - , storable-record, storablevector, tagchup, transformers - , utility-ht, xml-basic - }: - mkDerivation { - pname = "audacity"; - version = "0.0.2"; - sha256 = "d9d2dfb1c4e6ad39b535561feb720a7889dc1151ad6625fd5522d4212dbc26a4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq directory explicit-exception filepath - non-empty semigroups storable-record storablevector tagchup - transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/audacity"; - description = "Interchange with the Audacity sound signal editor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aur" = callPackage - ({ mkDerivation, aeson, base, http-client, servant, servant-client - , stdenv, text - }: - mkDerivation { - pname = "aur"; - version = "6.2.0.1"; - sha256 = "a2892492bd0cd07508b25eafd822a4196b5a04fe9215d44360b2e848d6d80502"; - libraryHaskellDepends = [ - aeson base http-client servant servant-client text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aurapm/aura"; - description = "Access metadata from the Arch Linux User Repository"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "authenticate" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, bytestring - , case-insensitive, conduit, containers, html-conduit, http-conduit - , http-types, network-uri, resourcet, stdenv, text, transformers - , unordered-containers, xml-conduit - }: - mkDerivation { - pname = "authenticate"; - version = "1.3.5"; - sha256 = "5f13043155a53b14da9b3625e512480110a5d906b0fd8eca2d2493c63c20ae81"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder bytestring case-insensitive - conduit containers html-conduit http-conduit http-types network-uri - resourcet text transformers unordered-containers xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Authentication methods for Haskell web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "authenticate-oauth" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , crypto-pubkey-types, data-default, http-client, http-types - , random, RSA, SHA, stdenv, time, transformers, transformers-compat - }: - mkDerivation { - pname = "authenticate-oauth"; - version = "1.6.0.1"; - sha256 = "e0520fb4255ac8d6ff30f06a2b91a9fdc478aa799e254e52747ebd13d70f3ec3"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring crypto-pubkey-types - data-default http-client http-types random RSA SHA time - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/authenticate"; - description = "Library to authenticate with OAuth for Haskell web applications"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "auto" = callPackage - ({ mkDerivation, base, base-orphans, bytestring, cereal, containers - , deepseq, MonadRandom, profunctors, random, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "auto"; - version = "0.4.3.1"; - sha256 = "c6e26d1cbb17e3645e55bc8e9432b124520fbcba5ff32445acd4260c25cd3b41"; - libraryHaskellDepends = [ - base base-orphans bytestring cereal containers deepseq MonadRandom - profunctors random semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/auto"; - description = "Denotative, locally stateful programming DSL & platform"; - license = stdenv.lib.licenses.mit; - }) {}; - "auto-update" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "auto-update"; - version = "0.1.6"; - sha256 = "f4e023dc8713c387ecf20d851247597fd012cabea3872310b35e911105eb66c4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Efficiently run periodic, on-demand actions"; - license = stdenv.lib.licenses.mit; - }) {}; - "autoexporter" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "autoexporter"; - version = "1.1.15"; - sha256 = "9d224acd9b1c7fa217d71b8e6d556891effb66874a9a26aa8b200444998d3718"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal directory filepath ]; - executableHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/autoexporter#readme"; - description = "Automatically re-export modules"; - license = stdenv.lib.licenses.mit; - }) {}; - "avers" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, clock - , containers, cryptonite, filepath, inflections, memory - , MonadRandom, mtl, network, network-uri, resource-pool - , rethinkdb-client-driver, safe, scrypt, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "avers"; - version = "0.0.17.1"; - sha256 = "1b45d8aa036b3c2ec7ea180327ff3cdce28dc1e1ef319c062be79f0ffa7626f5"; - revision = "34"; - editedCabalFile = "0mj6881npk0xdkf4nkcy52sn6y4414wdpysbw03kkb5vx6cgjws9"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers cryptonite - filepath inflections memory MonadRandom mtl network network-uri - resource-pool rethinkdb-client-driver safe scrypt stm - template-haskell text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Server-side implementation of the Avers storage model"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "avro" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bifunctors - , binary, bytestring, containers, data-binary-ieee754, deepseq - , fail, hashable, mtl, scientific, semigroups, stdenv, tagged - , template-haskell, text, tf-random, unordered-containers, vector - , zlib - }: - mkDerivation { - pname = "avro"; - version = "0.4.6.0"; - sha256 = "7d03f0de439d9334f1851dc6dda92405fab647d1184e42142f002ae1ed45fc88"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bifunctors binary bytestring - containers data-binary-ieee754 deepseq fail hashable mtl scientific - semigroups tagged template-haskell text tf-random - unordered-containers vector zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/avro#readme"; - description = "Avro serialization support for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "aws-cloudfront-signed-cookies" = callPackage - ({ mkDerivation, aeson, aeson-pretty, asn1-encoding, asn1-types - , base, base64-bytestring, bytestring, cookie, cryptonite, lens - , lens-aeson, optparse-applicative, pem, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "aws-cloudfront-signed-cookies"; - version = "0.2.0.1"; - sha256 = "4850abc15a5614144c94e0dd4cce220c3fdb80c4904b6fa2bfe268f98c0564fa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty asn1-encoding asn1-types base base64-bytestring - bytestring cookie cryptonite lens lens-aeson optparse-applicative - pem text time unordered-containers vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/aws-cloudfront-signed-cookies"; - description = "Generate signed cookies for AWS CloudFront"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "base-compat"; - version = "0.11.1"; - sha256 = "356f1542ec93e7192a9073d32a8ef1e48194275495dcec7fb0d241f4baaf6d36"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A compatibility layer for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-compat-batteries" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "base-compat-batteries"; - version = "0.11.1"; - sha256 = "caf66fed3c0a3b0437692cad18c93a7074e8524a86b8be1ce04d0a18cbf6aed8"; - libraryHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - description = "base-compat with extra batteries"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-orphans" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "base-orphans"; - version = "0.8.2"; - sha256 = "2a8062385e5d5dee418428a22c72b9391557bc1fe2f93bd643f7754b36b9eb01"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/base-orphans#readme"; - description = "Backwards-compatible orphan instances for base"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-prelude" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-prelude"; - version = "1.3"; - sha256 = "e3cc66e99d6c83aac548c4d8e6a166e5bd9cf557947cde49161026d0341267fe"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/base-prelude"; - description = "The most complete prelude formed solely from the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "base-unicode-symbols" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base-unicode-symbols"; - version = "0.2.4.2"; - sha256 = "4364d6c403616e9ec0c240c4cb450c66af43ea8483d73c315e96f4ba3cb97062"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Unicode-symbols"; - description = "Unicode alternatives for common functions and operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base16-bytestring" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "base16-bytestring"; - version = "0.1.1.6"; - sha256 = "5afe65a152c5418f5f4e3579a5e0d5ca19c279dc9bf31c1a371ccbe84705c449"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/base16-bytestring"; - description = "Fast base16 (hex) encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base32string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base32string"; - version = "0.9.1"; - sha256 = "9e931613aeba5f630f9292fc99131388f406e4b34d8f050515ed93aaf632ea32"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-32 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base58string" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, stdenv, text }: - mkDerivation { - pname = "base58string"; - version = "0.10.0"; - sha256 = "3b72607dd76e30a5054acea656c3805f7191e27d67884a7db5fbc73c17e9c088"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base binary bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a Base-58 string"; - license = stdenv.lib.licenses.mit; - }) {}; - "base64" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "base64"; - version = "0.4.0"; - sha256 = "7b9f4967983b8b7893aa50e9672ec66450518cb950a768f0a4aacbcaa8bd0957"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/base64"; - description = "RFC 4648-compliant padded and unpadded base64 and base64url encodings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "base64-bytestring"; - version = "1.0.0.3"; - sha256 = "ef159d60ec14c0a3f3e26bab5c9fd7634d5e1b983c6a64f0b0c3261efe008fc7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/base64-bytestring"; - description = "Fast base64 encoding and decoding for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-bytestring-type" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , binary, bytestring, cereal, deepseq, hashable, http-api-data - , QuickCheck, serialise, stdenv, text - }: - mkDerivation { - pname = "base64-bytestring-type"; - version = "1.0.1"; - sha256 = "f607d07c4aab227b4536c495fa7c07b35ddc9c2c013d385c16c02f236526780e"; - revision = "3"; - editedCabalFile = "0gqyij803y0shpc5knljbffss6c1pbdanfzwlws01vkl4y10sfja"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring binary bytestring cereal - deepseq hashable http-api-data QuickCheck serialise text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/base64-bytestring-type#readme"; - description = "A newtype around ByteString, for base64 encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-lens" = callPackage - ({ mkDerivation, base, base64, bytestring, Cabal, cabal-doctest - , lens, stdenv, text - }: - mkDerivation { - pname = "base64-lens"; - version = "0.2.0"; - sha256 = "004d5f5522af002ad526eae99fa3726f624165919dead31e3cbdabcb4fcc9434"; - revision = "1"; - editedCabalFile = "07x38p4zcv05y94gjn5j3j1ydv06vi17fbjnz4ckcgc3ay0dzbzf"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base base64 bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/base64-lens"; - description = "Optics for the Base64 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "base64-string" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "base64-string"; - version = "0.2"; - sha256 = "3ec896ca7261ad4ddeffbaa3bdf4d5cb61775250c303fca9929aa9a56acc705e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://urchin.earth.li/~ian/cabal/base64-string/"; - description = "Base64 implementation for String's"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "basement" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "basement"; - version = "0.0.11"; - sha256 = "67582b3475a5547925399f719df21f8bbbd0ca4d4db27795c22a474f8ee6346b"; - revision = "2"; - editedCabalFile = "1l95bzmn23cmx386hk3d3r0ykdaibh9rp489lcnba5g56kiy4hxg"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation#readme"; - description = "Foundation scrap box of array & string"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "basic-prelude" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, hashable - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "basic-prelude"; - version = "0.7.0"; - sha256 = "10755f892548faa956b81b40d1d03ec6e94609fd8ec8e92be09b4453b7ad9379"; - libraryHaskellDepends = [ - base bytestring containers filepath hashable text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/basic-prelude#readme"; - description = "An enhanced core prelude; a common foundation for alternate preludes"; - license = stdenv.lib.licenses.mit; - }) {}; - "bazel-runfiles" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "bazel-runfiles"; - version = "0.7.0.1"; - sha256 = "4d217f74a7eee5dced014d74ac8a3be886d9d0c5ce8e556d8ef16535bde40a00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/rules_haskell#readme"; - description = "Locate Bazel runfiles location"; - license = stdenv.lib.licenses.asl20; - }) {}; - "bbdb" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "bbdb"; - version = "0.8"; - sha256 = "dce7798cb8e46e1c0f7048579496cabeebddaba9b6233820fd0496723fbc2a5c"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/henrylaxen/bbdb"; - description = "Ability to read, write, and modify BBDB files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "bcrypt" = callPackage - ({ mkDerivation, base, bytestring, data-default, entropy, memory - , stdenv - }: - mkDerivation { - pname = "bcrypt"; - version = "0.0.11"; - sha256 = "e4331788eda7b65064d88930b4b7a50f5011bdec0ad46059d8c4ee6a5e72fcef"; - libraryHaskellDepends = [ - base bytestring data-default entropy memory - ]; - doHaddock = false; - doCheck = false; - description = "Haskell bindings to the bcrypt password hash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bench" = callPackage - ({ mkDerivation, base, criterion, optparse-applicative, process - , silently, stdenv, text, turtle - }: - mkDerivation { - pname = "bench"; - version = "1.0.12"; - sha256 = "a6376f4741588201ab6e5195efb1e9921bc0a899f77a5d9ac84a5db32f3ec9eb"; - revision = "1"; - editedCabalFile = "0sk6vkjwk7g1diwah67ifj7s69qvwi52ngaijkfx5prn0vz24ldn"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base criterion optparse-applicative process silently text turtle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Gabriel439/bench"; - description = "Command-line benchmark tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "between" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "between"; - version = "0.11.0.0"; - sha256 = "8337351326c5a613d9b7520b6a8203234c04454e23550a81739beaa6f671465d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/between"; - description = "Function combinator \"between\" and derived combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bibtex" = callPackage - ({ mkDerivation, base, latex, parsec, stdenv, utility-ht }: - mkDerivation { - pname = "bibtex"; - version = "0.1.0.6"; - sha256 = "090a3b9589388bdf9d2bf60d8d1898aa0313a2874b551ba86cbbd049f3ee5f04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base latex parsec utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/BibTeX"; - description = "Parse, format and processing BibTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bifunctors" = callPackage - ({ mkDerivation, base, base-orphans, comonad, containers, stdenv - , tagged, template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "bifunctors"; - version = "5.5.7"; - sha256 = "88b3a2d4504e1139a3aef7027913faa0870631477d0a2ebb6fa67d494cdb3532"; - libraryHaskellDepends = [ - base base-orphans comonad containers tagged template-haskell - th-abstraction transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bifunctors/"; - description = "Bifunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap" = callPackage - ({ mkDerivation, base, containers, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "bimap"; - version = "0.4.0"; - sha256 = "d1a39686abbfed5864a8fb778d2244825b6eac977e130e7c1212e6d3a68f249d"; - revision = "1"; - editedCabalFile = "111wyqh17a6pkjhyaz8n1891m69hwr2gybqcpacw4xdmarxmi7f5"; - libraryHaskellDepends = [ base containers deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joelwilliamson/bimap"; - description = "Bidirectional mapping between two key types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bimap-server" = callPackage - ({ mkDerivation, aeson, base, bimap, binary, directory, http-types - , stdenv, unix, wai, warp - }: - mkDerivation { - pname = "bimap-server"; - version = "0.1.0.1"; - sha256 = "09dfd1865812f40e317b610cbe05cc65ba6ea7215428748e1038ff7fc38ef535"; - libraryHaskellDepends = [ - aeson base bimap binary directory http-types unix wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Two-column database server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bin" = callPackage - ({ mkDerivation, base, dec, deepseq, fin, hashable, QuickCheck - , stdenv - }: - mkDerivation { - pname = "bin"; - version = "0.1"; - sha256 = "057fff623abc17bc32cb7c17d5d32d22c0e78f1b587be3d72b60a7b7bb071101"; - libraryHaskellDepends = [ - base dec deepseq fin hashable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Bin: binary natural numbers"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "binary-conduit" = callPackage - ({ mkDerivation, base, binary, bytestring, conduit, exceptions - , stdenv, vector - }: - mkDerivation { - pname = "binary-conduit"; - version = "1.3.1"; - sha256 = "0480c3ff498bdbba6913ee8ad70d4828cf7a766bf9336a3ed8eb73676c46d29f"; - libraryHaskellDepends = [ - base binary bytestring conduit exceptions vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/qnikst/binary-conduit/"; - description = "data serialization/deserialization conduit library"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-ext" = callPackage - ({ mkDerivation, attoparsec, base, binary, bytestring, conduit - , conduit-combinators, data-binary-ieee754, errors, exceptions - , monad-control, monad-loops, mono-traversable, mtl, scientific - , stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "binary-ext"; - version = "2.0.4"; - sha256 = "6e58e19bde26d6f271916ceb43a28903136e28cf7868d86f65e68a60152ade08"; - libraryHaskellDepends = [ - attoparsec base binary bytestring conduit conduit-combinators - data-binary-ieee754 errors exceptions monad-control monad-loops - mono-traversable mtl scientific text transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/binary-ext#readme"; - description = "An alternate with strong-typed errors for `Data.Binary.Get` monad from `binary` package."; - license = stdenv.lib.licenses.asl20; - }) {}; - "binary-ieee754" = callPackage - ({ mkDerivation, array, base, binary, stdenv }: - mkDerivation { - pname = "binary-ieee754"; - version = "0.1.0.0"; - sha256 = "15c489898bcd346b4067a27579cb5fc62e2fafecbec81ea0446165a24aee4d54"; - libraryHaskellDepends = [ array base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-ieee754"; - description = "Backport ieee754 float double combinators to older binary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-list" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, phantom-state - , stdenv, transformers - }: - mkDerivation { - pname = "binary-list"; - version = "1.1.1.2"; - sha256 = "6b21e58ea4091b9572cb24a92dfb1ddc14fcea82d2272d30a83eb1b430dd1878"; - libraryHaskellDepends = [ - base binary bytestring deepseq phantom-state transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lists of length a power of two"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-orphans" = callPackage - ({ mkDerivation, base, binary, stdenv, transformers }: - mkDerivation { - pname = "binary-orphans"; - version = "1.0.1"; - sha256 = "431ad40b8d812bada186c68935c0a69aa2904ca3bc57d957e1b0fb7d73b1753d"; - revision = "3"; - editedCabalFile = "1s3bk63x2rxwk611jbvpvvgrq1k7k0gd9q105cqxcbcih396ac0s"; - libraryHaskellDepends = [ base binary transformers ]; - doHaddock = false; - doCheck = false; - description = "Compatibility package for binary; provides instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-parser" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, mtl, stdenv, text - , transformers - }: - mkDerivation { - pname = "binary-parser"; - version = "0.5.5"; - sha256 = "1dab718e06a978118cd28d2412bceaa0b6ec8d67785bdb0982e259fb60fe43b3"; - revision = "3"; - editedCabalFile = "14n41yazmks2qw0v4krxcqw3ac0wdy2z53d0qz0rdjcd94fpghjf"; - libraryHaskellDepends = [ - base base-prelude bytestring mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/binary-parser"; - description = "A highly-efficient but limited parser API specialised for bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "binary-parsers" = callPackage - ({ mkDerivation, base, binary, bytestring, bytestring-lexing - , scientific, stdenv - }: - mkDerivation { - pname = "binary-parsers"; - version = "0.2.4.0"; - sha256 = "d193d3d3dca259e7299fb2c44cdd95b0a3e1bf54363ce4a9f6cda63b654bb9ca"; - libraryHaskellDepends = [ - base binary bytestring bytestring-lexing scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/binary-parsers"; - description = "Extends binary with parsec/attoparsec style parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-search" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "binary-search"; - version = "1.0.0.3"; - sha256 = "b0e32df46aeddceac57bd6afa940f84f275f82fb251479e10fadd7c14414f6fa"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Binary and exponential searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "binary-shared" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, mtl, stdenv - }: - mkDerivation { - pname = "binary-shared"; - version = "0.8.3"; - sha256 = "830116505018fc43de09867bea9039b0bfa29e77564efa8c3f3b708933c098b2"; - libraryHaskellDepends = [ base binary bytestring containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leksah.org"; - description = "Sharing for the binary package"; - license = "GPL"; - }) {}; - "binary-tagged" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, binary - , bytestring, containers, cryptohash-sha1, generics-sop, hashable - , scientific, stdenv, tagged, text, time, unordered-containers - , vector - }: - mkDerivation { - pname = "binary-tagged"; - version = "0.2"; - sha256 = "123021887847d88d9d8efe09ec77a2d0b604c7162c81625f9d3bc136c115ebdd"; - revision = "1"; - editedCabalFile = "0chv885zl8m7c6281sz8kfr2p7hgcl7xj0yjajjyr9whwfnylfj0"; - libraryHaskellDepends = [ - aeson array base base16-bytestring binary bytestring containers - cryptohash-sha1 generics-sop hashable scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/binary-tagged#readme"; - description = "Tagged binary serialisation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-DSL" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-DSL"; - version = "1.0.25"; - sha256 = "63de32380c68d1cc5e9c7b3622d67832c786da21163ba0c8a4835e6dd169194f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/bindings-dsl/wiki"; - description = "FFI domain specific language, on top of hsc2hs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bindings-GLFW" = callPackage - ({ mkDerivation, base, bindings-DSL, libGL, libX11, libXcursor - , libXext, libXfixes, libXi, libXinerama, libXrandr, libXxf86vm - , stdenv - }: - mkDerivation { - pname = "bindings-GLFW"; - version = "3.3.1.0"; - sha256 = "6a106b3f8e38ca09f8b7a6f5a07a4aa799f6ac54ba471a95a7cf261c0c35d792"; - libraryHaskellDepends = [ base bindings-DSL ]; - librarySystemDepends = [ - libGL libX11 libXcursor libXext libXfixes libXi libXinerama - libXrandr libXxf86vm - ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to GLFW OpenGL library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL; inherit (pkgs.xorg) libXext; -inherit (pkgs.xorg) libXfixes;}; - "bindings-libzip" = callPackage - ({ mkDerivation, base, bindings-DSL, libzip, stdenv }: - mkDerivation { - pname = "bindings-libzip"; - version = "1.0.1"; - sha256 = "908d060360d66974b1d9400dea28a1dce35a88baf5d73a6e3c12be8e74cda2ec"; - libraryHaskellDepends = [ base bindings-DSL ]; - libraryPkgconfigDepends = [ libzip ]; - doHaddock = false; - doCheck = false; - homepage = "http://bitbucket.org/astanin/hs-libzip/"; - description = "Low level bindings to libzip"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libzip;}; - "bindings-uname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "bindings-uname"; - version = "0.1"; - sha256 = "130e75c3fd95e232452c7d903efbfab2d2ff6c9d455b617adeaebe5d60235cd3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Low-level binding to POSIX uname(3)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "bins" = callPackage - ({ mkDerivation, base, containers, finite-typelits - , ghc-typelits-knownnat, ghc-typelits-natnormalise, math-functions - , profunctors, reflection, stdenv, tagged, vector-sized - }: - mkDerivation { - pname = "bins"; - version = "0.1.2.0"; - sha256 = "8a83fe1b836f7455b060becafa19c625a3f35bc2576295d163a81dbe91bbff0e"; - libraryHaskellDepends = [ - base containers finite-typelits ghc-typelits-knownnat - ghc-typelits-natnormalise math-functions profunctors reflection - tagged vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/bins#readme"; - description = "Aggregate continuous values into discrete bins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitarray" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "bitarray"; - version = "0.0.1.1"; - sha256 = "b27f6f1065053a0e8e24fbf9382b7060af9962d8d150b631c682c0c58469d802"; - revision = "1"; - editedCabalFile = "10fk92v9afjqk43zi621jxl0n8kci0xjj32lz3vqa9xbh67zjz45"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Mutable and immutable bit arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits" = callPackage - ({ mkDerivation, base, bytes, Cabal, cabal-doctest, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "bits"; - version = "0.5.2"; - sha256 = "5b4d38ccdb18baa9859f36baad9600ce7648da54da6e3e258f3808a2aaccafe0"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base bytes mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bits"; - description = "Various bit twiddling and bitwise serialization primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bits-extra" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "bits-extra"; - version = "0.0.1.5"; - sha256 = "c5d15734689142425c65911ebeecd41f3d86d02778fa6c79b629d6fe909549b8"; - libraryHaskellDepends = [ base ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/bits-extra#readme"; - description = "Useful bitwise operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bitset-word8" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell - , th-lift-instances - }: - mkDerivation { - pname = "bitset-word8"; - version = "0.1.1.1"; - sha256 = "ffc0f8508049717192021dabcfe77d65f604cbe107da6b8b76d45b891dbe52de"; - libraryHaskellDepends = [ - base containers template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/bitset-word8#readme"; - description = "Space efficient set of Word8 and some pre-canned sets useful for parsing HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "bitvec" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, gmp, integer-gmp - , primitive, stdenv, vector - }: - mkDerivation { - pname = "bitvec"; - version = "1.0.2.0"; - sha256 = "052de3ca41f1a24e6beaf0d5dd5cd0569fd4db2ee703ad7e8834bba8be883932"; - libraryHaskellDepends = [ - base deepseq ghc-prim integer-gmp primitive vector - ]; - librarySystemDepends = [ gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/bitvec"; - description = "Space-efficient bit vectors"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gmp;}; - "blake2" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "blake2"; - version = "0.3.0"; - sha256 = "3b5ab376b87f481f2245f62734071a0e4a80b8ba9cd0cc67a407dd36f23c2379"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/blake2"; - description = "A library providing BLAKE2"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "blanks" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive, mtl - , stdenv - }: - mkDerivation { - pname = "blanks"; - version = "0.3.0"; - sha256 = "b8cbc87e0fb65593444f4490bab098222b77dc7f8abd0e2bcb606090abf354cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - adjunctions base containers distributive mtl - ]; - executableHaskellDepends = [ - adjunctions base containers distributive mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/blanks#readme"; - description = "Fill-in-the-blanks - A library factoring out substitution from ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-carray" = callPackage - ({ mkDerivation, base, blas-ffi, carray, netlib-carray, netlib-ffi - , stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "blas-carray"; - version = "0.1.0.1"; - sha256 = "f4bd1f0d73707ea92992ad18fdea6998ebca2681d76cfde577df67f61f8717ab"; - libraryHaskellDepends = [ - base blas-ffi carray netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-carray/"; - description = "Auto-generated interface to Fortran BLAS via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-comfort-array" = callPackage - ({ mkDerivation, base, blas-ffi, comfort-array - , netlib-comfort-array, netlib-ffi, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "blas-comfort-array"; - version = "0.0.0.2"; - sha256 = "a1cd40064f00c8d5c0dccb0fccaf8a61bb946f7cbbaf8e1ae008ac7b0b483cd9"; - libraryHaskellDepends = [ - base blas-ffi comfort-array netlib-comfort-array netlib-ffi - storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-comfort-array/"; - description = "Auto-generated interface to Fortran BLAS via comfort-array"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blas-ffi" = callPackage - ({ mkDerivation, base, blas, netlib-ffi, stdenv }: - mkDerivation { - pname = "blas-ffi"; - version = "0.1"; - sha256 = "85a77bd66dc55e48a0922ca1c10c484f4a01bddb31008e24bd5a7b75460fbcfe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ blas ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/blas-ffi/"; - description = "Auto-generated interface to Fortran BLAS"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas;}; - "blaze-bootstrap" = callPackage - ({ mkDerivation, base, blaze-html, stdenv, text }: - mkDerivation { - pname = "blaze-bootstrap"; - version = "0.1.0.1"; - sha256 = "53b54c0b55ae7a436ec7e5d4e29d50fceb1ccd459ef715236358a3c661d05163"; - libraryHaskellDepends = [ base blaze-html text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/blaze-bootstrap"; - description = "Blaze helper functions for bootstrap pages"; - license = stdenv.lib.licenses.mit; - }) {}; - "blaze-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv, text }: - mkDerivation { - pname = "blaze-builder"; - version = "0.4.1.0"; - sha256 = "91fc8b966f3e9dc9461e1675c7566b881740f99abc906495491a3501630bc814"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lpsmith/blaze-builder"; - description = "Efficient buffered output"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-html" = callPackage - ({ mkDerivation, base, blaze-builder, blaze-markup, bytestring - , stdenv, text - }: - mkDerivation { - pname = "blaze-html"; - version = "0.9.1.2"; - sha256 = "60503f42546c6c1b954014d188ea137e43d74dcffd2bf6157c113fd91a0c394c"; - libraryHaskellDepends = [ - base blaze-builder blaze-markup bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast HTML combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-markup" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, stdenv, text }: - mkDerivation { - pname = "blaze-markup"; - version = "0.8.2.3"; - sha256 = "72f8b0ed5310e3c2e49abcc9273728555655ec5f13f3f0e1f7cd1da9ad3a35bd"; - libraryHaskellDepends = [ base blaze-builder bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/blaze"; - description = "A blazingly fast markup combinator library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-svg" = callPackage - ({ mkDerivation, base, blaze-markup, mtl, stdenv }: - mkDerivation { - pname = "blaze-svg"; - version = "0.3.6.1"; - sha256 = "f6a4f1bba1e973b336e94de73369f4562778fde43b6ac7c0b32d6a501527aa60"; - libraryHaskellDepends = [ base blaze-markup mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/deepakjois/blaze-svg"; - description = "SVG combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "blaze-textual" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, ghc-prim - , integer-gmp, old-locale, stdenv, text, time, vector - }: - mkDerivation { - pname = "blaze-textual"; - version = "0.2.1.0"; - sha256 = "1042795ab0bab891c034c24a51bafecbb89870ccd28af39534ab3d9ae7f46c2d"; - libraryHaskellDepends = [ - base blaze-builder bytestring ghc-prim integer-gmp old-locale text - time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/blaze-textual"; - description = "Fast rendering of common datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bmp" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bmp"; - version = "1.2.6.3"; - sha256 = "3cc63de40fe088ce4d1c869180fd2309bcec35a940c9e3d1904d3520ca2fdacc"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/benl23x5/bmp"; - description = "Read and write uncompressed BMP image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "boltzmann-samplers" = callPackage - ({ mkDerivation, ad, base, containers, hashable, hmatrix, ieee754 - , MonadRandom, mtl, QuickCheck, stdenv, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "boltzmann-samplers"; - version = "0.1.1.0"; - sha256 = "de7c3e1f77b0ae27c78cb53e539dbaa8dc2f6e3f3605c25f1611545806ad878e"; - libraryHaskellDepends = [ - ad base containers hashable hmatrix ieee754 MonadRandom mtl - QuickCheck transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/boltzmann-samplers#readme"; - description = "Uniform random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolean-like" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , semigroups, stdenv, text, vector - }: - mkDerivation { - pname = "boolean-like"; - version = "0.1.1.0"; - sha256 = "6ca47b21a6d98161edfd94f4d5a19daacc13d229b87a0c107e868ff0259658b8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers semigroups text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Shou/boolean-like"; - description = "Logical combinatory operations dealing with datatypes representing booleans by their constructors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boolean-normal-forms" = callPackage - ({ mkDerivation, base, cond, containers, deepseq, stdenv }: - mkDerivation { - pname = "boolean-normal-forms"; - version = "0.0.1.1"; - sha256 = "59a9474c0b4a0e7b0812c401f80c4e1032d1c8627c92f29dd7e51d660ea1547f"; - libraryHaskellDepends = [ base cond containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "Boolean normal form: NNF, DNF & CNF"; - license = stdenv.lib.licenses.mit; - }) {}; - "boolsimplifier" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "boolsimplifier"; - version = "0.1.8"; - sha256 = "096fa9377241520ee114403fd53b51a7369187fb4dca65f19f85a727d689828f"; - revision = "1"; - editedCabalFile = "0xqm0vn9i49b75fnvnvcnr9m4zwvhqynrkcjdxghrsxayg420lnh"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Simplification tools for simple propositional formulas"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boots" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv }: - mkDerivation { - pname = "boots"; - version = "0.2.0.1"; - sha256 = "1c5d8bdaba7800e0c85c7d75fc7fe65f51129008aff4fae0c88adb721339b011"; - libraryHaskellDepends = [ base exceptions mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/boots#readme"; - description = "IoC Monad in Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "bordacount" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "bordacount"; - version = "0.1.0.0"; - sha256 = "cb691095f688dc2c1726750d5e5d267d3f49466377869a574d6416090a46fdce"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/bordacount#readme"; - description = "Implementation of the Borda count election method"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boring" = callPackage - ({ mkDerivation, adjunctions, base, base-compat, bin, constraints - , dec, fin, generics-sop, ral, singleton-bool, stdenv, streams - , tagged, transformers, transformers-compat, vec - }: - mkDerivation { - pname = "boring"; - version = "0.1.3"; - sha256 = "cd40684cdd4573d948b91705046764ceaf1a3207707a99f0ea2680c2fea492ba"; - libraryHaskellDepends = [ - adjunctions base base-compat bin constraints dec fin generics-sop - ral singleton-bool streams tagged transformers transformers-compat - vec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/boring"; - description = "Boring and Absurd types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "both" = callPackage - ({ mkDerivation, base, semigroups, stdenv, zero }: - mkDerivation { - pname = "both"; - version = "0.1.1.0"; - sha256 = "6f4ee8b7745fb3054282240fe941dd74cf2481f1a07b170d211c2b8791340e8e"; - revision = "1"; - editedCabalFile = "0fi2lvxcdnj9bi683kl840xpyj12wxwxvqbi86a6qp4r8bq8442n"; - libraryHaskellDepends = [ base semigroups zero ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/both"; - description = "Like Maybe, but with a different Monoid instance"; - license = stdenv.lib.licenses.mit; - }) {}; - "bound" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, hashable, mmorph - , profunctors, stdenv, template-haskell, transformers - , transformers-compat - }: - mkDerivation { - pname = "bound"; - version = "2.0.1"; - sha256 = "294a206f33b6583e56bd3aad620e4a7bd0a22b4bf4c6fe5988b2fe55159fbb76"; - revision = "7"; - editedCabalFile = "0amr5rpq8andqq3z2dsh8hn67g3x7ykcmqq899vbkxwnpvg60h5r"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq hashable mmorph - profunctors template-haskell transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/bound/"; - description = "Making de Bruijn Succ Less"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bounded-queue" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "bounded-queue"; - version = "1.0.0"; - sha256 = "ad7056ad562c19841bf5e8d911de3ce90df6d49ff83bf45d341bf0e97e9b54a2"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/bounded-queue"; - description = "A strict, immutable, thread-safe, single-ended, bounded queue"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "boundingboxes" = callPackage - ({ mkDerivation, base, lens, stdenv }: - mkDerivation { - pname = "boundingboxes"; - version = "0.2.3"; - sha256 = "e80947aa2c2c7f11e7eb2eb088a463d1cd1cdf03790e4c2746b629dcb1737564"; - libraryHaskellDepends = [ base lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/boundingboxes"; - description = "A generic boundingbox for an arbitrary vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bower-json" = callPackage - ({ mkDerivation, aeson, aeson-better-errors, base, bytestring - , deepseq, ghc-prim, mtl, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "bower-json"; - version = "1.0.0.1"; - sha256 = "7aa954e2b1bf79307db710c158108bd9ddb45b333ca96072cdbfaf96c77b7e73"; - libraryHaskellDepends = [ - aeson aeson-better-errors base bytestring deepseq ghc-prim mtl - scientific text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hdgarrood/bower-json"; - description = "Read bower.json from Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "boxes" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "boxes"; - version = "0.1.5"; - sha256 = "38e1782e8a458f342a0acbb74af8f55cb120756bc3af7ee7220d955812af56c3"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "2D text pretty-printing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brick" = callPackage - ({ mkDerivation, base, bytestring, config-ini, containers - , contravariant, data-clist, deepseq, directory, dlist, filepath - , microlens, microlens-mtl, microlens-th, stdenv, stm - , template-haskell, text, text-zipper, transformers, unix, vector - , vty, word-wrap - }: - mkDerivation { - pname = "brick"; - version = "0.50.1"; - sha256 = "fe9c6e3fcd71fa4a97bf12411256970dc10a3174623c95386e0e77a2d74d6673"; - configureFlags = [ "-fdemos" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring config-ini containers contravariant data-clist - deepseq directory dlist filepath microlens microlens-mtl - microlens-th stm template-haskell text text-zipper transformers - unix vector vty word-wrap - ]; - executableHaskellDepends = [ - base microlens microlens-th text text-zipper vector vty word-wrap - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/brick/"; - description = "A declarative terminal user interface library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "brittany" = callPackage - ({ mkDerivation, aeson, base, butcher, bytestring, cmdargs - , containers, czipwith, data-tree-print, deepseq, directory, extra - , filepath, ghc, ghc-boot-th, ghc-exactprint, ghc-paths, monad-memo - , mtl, multistate, neat-interpolation, pretty, random, safe - , semigroups, stdenv, strict, syb, text, transformers, uniplate - , unsafe, yaml - }: - mkDerivation { - pname = "brittany"; - version = "0.12.1.1"; - sha256 = "ff40f792758233ed52904a80c7f2438adeed9fec810ac2c93055f5b35af5875b"; - revision = "1"; - editedCabalFile = "0wqg0yl3da1dgpqqv5q0ml3k0njn7pgipaac4vd9gidv3d1pyd74"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty random safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - executableHaskellDepends = [ - aeson base butcher bytestring cmdargs containers czipwith - data-tree-print deepseq directory extra filepath ghc ghc-boot-th - ghc-exactprint ghc-paths monad-memo mtl multistate - neat-interpolation pretty safe semigroups strict syb text - transformers uniplate unsafe yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/brittany/"; - description = "Haskell source code formatter"; - license = stdenv.lib.licenses.agpl3; - }) {}; - "bsb-http-chunked" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bsb-http-chunked"; - version = "0.0.0.4"; - sha256 = "148309e23eb8b261c1de374712372d62d8c8dc8ee504c392809c7ec33c0a0e7c"; - revision = "2"; - editedCabalFile = "0bz62lxdbnwkfr1d4ngm8xi4y1ndpdflbv71s6h43vp5lbd546hr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/bsb-http-chunked"; - description = "Chunked HTTP transfer encoding for bytestring builders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "btrfs" = callPackage - ({ mkDerivation, base, bytestring, stdenv, time, unix }: - mkDerivation { - pname = "btrfs"; - version = "0.2.0.0"; - sha256 = "22ffcc2c0168992f4fcf06bd2b3467392b889801b2d3ab45212cc4a1c8f2a6c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring time unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-btrfs"; - description = "Bindings to the btrfs API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-builder" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "buffer-builder"; - version = "0.2.4.7"; - sha256 = "b389fac5ce61818adb8451550762aca135c34b9007b68be5a8d9a0fa45583f58"; - libraryHaskellDepends = [ - base bytestring mtl text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chadaustin/buffer-builder"; - description = "Library for efficiently building up buffers, one piece at a time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "buffer-pipe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "buffer-pipe"; - version = "0.0"; - sha256 = "0875b6e41988f70e20d2e9d1a092ae03d545954732f93d65a3481b5c4b52dccf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Read from stdin and write to stdout in large blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bugsnag-hs" = callPackage - ({ mkDerivation, aeson, auto-update, base, bytestring, http-client - , stdenv, stm, text, time, unordered-containers - }: - mkDerivation { - pname = "bugsnag-hs"; - version = "0.1.0.0"; - sha256 = "6648d103754d6c8102d665e66c6571c54e3c7131b6d4e3f5802ca73141c247dc"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson auto-update base bytestring http-client stm text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwoudenberg/bugsnag-hs#readme"; - description = "A Bugsnag client for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "butcher" = callPackage - ({ mkDerivation, base, bifunctors, containers, deque, extra, free - , microlens, microlens-th, mtl, multistate, pretty, stdenv - , transformers, unsafe, void - }: - mkDerivation { - pname = "butcher"; - version = "1.3.2.3"; - sha256 = "05177cb934f3cb6acfa5b0567321efa3987cbdee09a5dfbca8a9cc84bd62f152"; - revision = "1"; - editedCabalFile = "06vy9018ia6sncgxdmv4ili2krkqn1b6r7xz4raa18kdvgnl100v"; - libraryHaskellDepends = [ - base bifunctors containers deque extra free microlens microlens-th - mtl multistate pretty transformers unsafe void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/butcher/"; - description = "Chops a command or program invocation into digestable pieces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv" = callPackage - ({ mkDerivation, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "bv"; - version = "0.5"; - sha256 = "04a189ab1758f6adc51ffff0a10705d8c8b54959946a90a3b9a750c930c77bda"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iagoabal/haskell-bv"; - description = "Bit-vector arithmetic library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bv-little" = callPackage - ({ mkDerivation, base, deepseq, hashable, integer-gmp, keys - , mono-traversable, mono-traversable-keys, primitive, QuickCheck - , stdenv, text-show - }: - mkDerivation { - pname = "bv-little"; - version = "1.1.1"; - sha256 = "d936b6eabc60706a2a0668ce88b7f0787feddbd82315b669a19eb1f9288e990c"; - libraryHaskellDepends = [ - base deepseq hashable integer-gmp keys mono-traversable - mono-traversable-keys primitive QuickCheck text-show - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/bv-little"; - description = "Efficient little-endian bit vector library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byte-order" = callPackage - ({ mkDerivation, base, primitive, primitive-unaligned, stdenv }: - mkDerivation { - pname = "byte-order"; - version = "0.1.2.0"; - sha256 = "bc103be34d25e70071a6bc1a65a7b42b9f078d2601e6ee590f66cf8a2b26d8da"; - libraryHaskellDepends = [ base primitive primitive-unaligned ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/byte-order"; - description = "Portable big-endian and little-endian conversions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteable" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "byteable"; - version = "0.1.1"; - sha256 = "243b34a1b5b64b39e39fe58f75c18f6cad5b668b10cabcd86816cbde27783fe2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-byteable"; - description = "Type class for sequence of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytedump" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytedump"; - version = "1.0"; - sha256 = "ae17b5040f0423eec792505f14d1d3e53f5ff81ddf83524f1c5dc7a16c0dc0dd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-bytedump"; - description = "Flexible byte dump helpers for human readers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteorder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "byteorder"; - version = "1.0.4"; - sha256 = "bd20bbb586947f99c38a4c93d9d0266f49f6fc581767b51ba568f6d5d52d2919"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~aslatter/code/byteorder"; - description = "Exposes the native endianness or byte ordering of the system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytes" = callPackage - ({ mkDerivation, base, binary, binary-orphans, bytestring, Cabal - , cabal-doctest, cereal, containers, hashable, mtl, scientific - , stdenv, text, time, transformers, transformers-compat - , unordered-containers, void - }: - mkDerivation { - pname = "bytes"; - version = "0.16"; - sha256 = "291a462c577cd69ce5bd1557d61d1f6bd7df58fcdd051e768a783282e39e16d5"; - revision = "1"; - editedCabalFile = "080sdihajl7fbcyp2j4mbq3zlh8jl6dsn51gk89h1r5nl3zzh3gz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary binary-orphans bytestring cereal containers hashable - mtl scientific text time transformers transformers-compat - unordered-containers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/bytes"; - description = "Sharing code for serialization between binary and cereal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteset" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "byteset"; - version = "0.1.1.0"; - sha256 = "13499c5b279f022097e9ae1d0aeef3fcea12b7f18f50157d4950aec58741afa1"; - revision = "1"; - editedCabalFile = "1lgxxxrmw4g32pa861n6qbfpzwv14wfjrlp4hv5zd9hygy6v6q2p"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "Set of bytes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "byteslice" = callPackage - ({ mkDerivation, base, primitive, primitive-addr - , primitive-unlifted, run-st, stdenv - }: - mkDerivation { - pname = "byteslice"; - version = "0.2.1.0"; - sha256 = "945ae5b8e8aa1e0e49ce3c0888fe2a0e6cdeb93c3973e9c972f2cc9e81ec9b37"; - libraryHaskellDepends = [ - base primitive primitive-addr primitive-unlifted run-st - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/byteslice"; - description = "Slicing managed and unmanaged memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytesmith" = callPackage - ({ mkDerivation, base, byteslice, bytestring, contiguous, primitive - , run-st, stdenv, text-short, wide-word - }: - mkDerivation { - pname = "bytesmith"; - version = "0.3.3.0"; - sha256 = "90dba415ea32445d6f632fc32dbc377e69764c3ce2c5308f3540d921dbe50223"; - libraryHaskellDepends = [ - base byteslice bytestring contiguous primitive run-st text-short - wide-word - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/bytesmith"; - description = "Nonresumable byte parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-builder" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "bytestring-builder"; - version = "0.10.8.2.0"; - sha256 = "27faef6db27c5be5a3715fd68b93725853e0e668849eaf92ce7c33cef9cb2c3f"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - description = "The new bytestring builder, packaged outside of GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-conversion" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, case-insensitive - , double-conversion, stdenv, text - }: - mkDerivation { - pname = "bytestring-conversion"; - version = "0.3.1"; - sha256 = "13b7ea48737dc7a7fd4c894ff1fb9344cf8d9ef8f4201e813d578b613e874ef8"; - revision = "2"; - editedCabalFile = "1x8c42cfzb6fdvgkxxdxcpdf16csimlzsgahb1axnplmr6b3ba63"; - libraryHaskellDepends = [ - attoparsec base bytestring case-insensitive double-conversion text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/twittner/bytestring-conversion/"; - description = "Type-classes to convert values to and from ByteString"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "bytestring-lexing" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-lexing"; - version = "0.5.0.2"; - sha256 = "01f9add3f25067a89c5ae9ab1f2fd8ab75ec9f386987ee0d83f73ec855b43f73"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Parse and produce literals efficiently from strict or lazy bytestrings"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "bytestring-strict-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - }: - mkDerivation { - pname = "bytestring-strict-builder"; - version = "0.4.5.3"; - sha256 = "adcc72c11187604db87d1f7f9f679f8d40102a1ab904dcbbb1524cd445849e5c"; - revision = "1"; - editedCabalFile = "0i3gnzb2dlhxyjx5zbbgycf9l285amwj98s6drvq2hih21z4d3h6"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-strict-builder"; - description = "An efficient strict bytestring builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-to-vector" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "bytestring-to-vector"; - version = "0.3.0.1"; - sha256 = "ccfb5bdccd88a5be488acb291a5863d9026e109d2178e58d87948b43b519284a"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/bytestring-to-vector"; - description = "Convert between ByteString and Vector.Storable without copying"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bytestring-tree-builder" = callPackage - ({ mkDerivation, base, base-prelude, bytestring, semigroups, stdenv - , text - }: - mkDerivation { - pname = "bytestring-tree-builder"; - version = "0.2.7.3"; - sha256 = "26cca5f48754d3d9435370fc2ee946c975c760a73345907d24fcc65b3f97e86c"; - libraryHaskellDepends = [ - base base-prelude bytestring semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/bytestring-tree-builder"; - description = "A very efficient ByteString builder implementation based on the binary tree"; - license = stdenv.lib.licenses.mit; - }) {}; - "bytestring-trie" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "bytestring-trie"; - version = "0.2.5.0"; - sha256 = "0891bd31ff60670ab6849d6dd04a73095e20e7e6bab94818857dc6acfcb5feca"; - revision = "1"; - editedCabalFile = "1qpv52ywp8r30s3m9qyjiqiwa6clg3zp095yhs2d4533amprryly"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://wrengr.org"; - description = "An efficient finite map from (byte)strings to values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bz2" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "bz2"; - version = "0.1.1.1"; - sha256 = "a250f50ae3525c3a9016bdd00ea9ba1c76b40b76aa43b560754b18fa25fd939d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - description = "Bindings to libbz2"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "bzlib-conduit" = callPackage - ({ mkDerivation, base, bindings-DSL, bytestring, bzip2, conduit - , data-default-class, mtl, resourcet, stdenv - }: - mkDerivation { - pname = "bzlib-conduit"; - version = "0.3.0.2"; - sha256 = "eb2c732b3d4ab5f7b367c51eef845e597ade19da52c03ee11954d35b6cfc4128"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bindings-DSL bytestring conduit data-default-class mtl - resourcet - ]; - librarySystemDepends = [ bzip2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/bzlib-conduit#readme"; - description = "Streaming compression/decompression via conduits"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) bzip2;}; - "c2hs" = callPackage - ({ mkDerivation, array, base, bytestring, containers, directory - , dlist, filepath, language-c, pretty, process, stdenv - }: - mkDerivation { - pname = "c2hs"; - version = "0.28.6"; - sha256 = "91dd121ac565009f2fc215c50f3365ed66705071a698a545e869041b5d7ff4da"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - array base bytestring containers directory dlist filepath - language-c pretty process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/c2hs"; - description = "C->Haskell FFI tool that gives some cross-language type safety"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "ca-province-codes" = callPackage - ({ mkDerivation, aeson, base, stdenv, text }: - mkDerivation { - pname = "ca-province-codes"; - version = "1.0.0.0"; - sha256 = "03e3427723546165237d5e27d1e24803ca6b7a5fd88a4e2a752bed812cae15d2"; - libraryHaskellDepends = [ aeson base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/ca-province-codes#readme"; - description = "ISO 3166-2:CA Province Codes and Names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-doctest" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "cabal-doctest"; - version = "1.0.8"; - sha256 = "2026a6a87d410202ce091412ca6bc33c5aca787025326b4a3d13425a23392e0e"; - revision = "1"; - editedCabalFile = "0z0r7h2y5six2zgfylcwr9g4j78qph35zqglk9lz4za1klvgdprl"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/cabal-doctest"; - description = "A Setup.hs helper for doctests running"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-flatpak" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, cabal-plan - , containers, cryptohash-sha256, http-client, http-client-tls - , http-types, optparse-applicative, pathtype, shell-utility, stdenv - , tar, text, utility-ht, zlib - }: - mkDerivation { - pname = "cabal-flatpak"; - version = "0.1"; - sha256 = "1208df7d66e6c992d0a4698350adf21f67b75c5abb1abbf78ffe58e0b0d38238"; - revision = "1"; - editedCabalFile = "05q1bpjvkq7g6q5fx1p44h562i9m6vqffy43arc26zpfgssm59z2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson aeson-pretty base bytestring cabal-plan containers - cryptohash-sha256 http-client http-client-tls http-types - optparse-applicative pathtype shell-utility tar text utility-ht - zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/cabal-flatpak/"; - description = "Generate a FlatPak manifest from a Cabal package description"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cabal-helper" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-plan, clock - , containers, directory, filepath, mtl, process, semigroupoids - , semigroups, SHA, stdenv, template-haskell, temporary, text, time - , transformers, unix, unix-compat, utf8-string - }: - mkDerivation { - pname = "cabal-helper"; - version = "1.0.0.0"; - sha256 = "54f2a2b3a9c4a8a330ca3859e518f50775b2fc925cf30cac7e686d50b417f9d1"; - revision = "1"; - editedCabalFile = "0r1lc3rih1n8y5byhls4daa5ka8x8aj4vfrwr8lm41m3l4l19mb9"; - 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 - ]; - doHaddock = false; - doCheck = false; - description = "Give Haskell development tools access to Cabal project environment"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cabal-plan" = callPackage - ({ mkDerivation, aeson, ansi-terminal, async, base, base-compat - , base16-bytestring, bytestring, containers, directory, filepath - , mtl, optics-core, optparse-applicative, parsec, process - , semialign, singleton-bool, stdenv, text, these, topograph - , transformers, vector - }: - mkDerivation { - pname = "cabal-plan"; - version = "0.6.2.0"; - sha256 = "efbbf4e00c60bc1d59343a4785527f400bf4cd4ea830f1b25a09c64ea4f78b3f"; - configureFlags = [ "-fexe" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring containers directory - filepath text - ]; - executableHaskellDepends = [ - ansi-terminal async base base-compat bytestring containers - directory mtl optics-core optparse-applicative parsec process - semialign singleton-bool text these topograph transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "Library and utility for processing cabal's plan.json file"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "cabal-rpm" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , http-client, http-client-tls, http-conduit, optparse-applicative - , process, simple-cabal, simple-cmd, simple-cmd-args, stdenv, time - , unix - }: - mkDerivation { - pname = "cabal-rpm"; - version = "2.0.0"; - sha256 = "0f597abaa7ac92c0e3e4e5767dc311b3d1156d64df2d8b96a1ae8ab70a4526bf"; - configureFlags = [ "-f-old-locale" ]; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal directory filepath http-client - http-client-tls http-conduit optparse-applicative process - simple-cabal simple-cmd simple-cmd-args time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/cabal-rpm"; - description = "RPM packaging tool for Haskell Cabal-based packages"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cabal2spec" = callPackage - ({ mkDerivation, base, Cabal, filepath, optparse-applicative - , stdenv, time - }: - mkDerivation { - pname = "cabal2spec"; - version = "2.5"; - sha256 = "fc5756b7b160437679ad5d73228b7d437e65eb9a55b1b4b3f90fdca59fecdafc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base Cabal filepath time ]; - executableHaskellDepends = [ - base Cabal filepath optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/cabal2spec"; - description = "Convert Cabal files into rpm spec files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cache" = callPackage - ({ mkDerivation, base, clock, hashable, stdenv, stm, transformers - , unordered-containers - }: - mkDerivation { - pname = "cache"; - version = "0.1.3.0"; - sha256 = "42e9d9f040fab2fd5fc1095a901d6348de73342b1d14254bdaf6ca3d4f11e534"; - libraryHaskellDepends = [ - base clock hashable stm transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-cache#readme"; - description = "An in-memory key/value store with expiration support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cacophony" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, exceptions, free - , lens, memory, monad-coroutine, mtl, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "cacophony"; - version = "0.10.1"; - sha256 = "52c5ac525767c89e103fcf50ebf8db2a9425904abea2e570b37c7fdf2a013bf1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring cryptonite exceptions free lens memory - monad-coroutine mtl safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/centromere/cacophony#readme"; - description = "A library implementing the Noise protocol"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "calendar-recycling" = callPackage - ({ mkDerivation, base, containers, html, old-time, stdenv - , utility-ht - }: - mkDerivation { - pname = "calendar-recycling"; - version = "0.0.0.1"; - sha256 = "8cd39ccf4fbe538f8e5d434d0efd0c559074420b9283d2c7c4b7ab6262b4d529"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers html old-time utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/calendar-recycling"; - description = "List years with the same calendars"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "call-stack" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "call-stack"; - version = "0.2.0"; - sha256 = "95c693c93958758d714dee22edc56d4ebb2dcefa4412264e941e32ccd6e4e0c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/call-stack#readme"; - description = "Use GHC call-stacks in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "can-i-haz" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "can-i-haz"; - version = "0.3.1.0"; - sha256 = "e857532b2d9a634cef07442b483c833696301d64f14cc49ed7a16dae6ea19c5f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/can-i-haz#readme"; - description = "Generic implementation of the Has and CoHas patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "carray" = callPackage - ({ mkDerivation, array, base, binary, bytestring, ix-shapable - , QuickCheck, stdenv, syb - }: - mkDerivation { - pname = "carray"; - version = "0.1.6.8"; - sha256 = "8f1967d54c7cf9680481c6f630eafa66f6d916b93c98f3b3c47449f682f11613"; - libraryHaskellDepends = [ - array base binary bytestring ix-shapable QuickCheck syb - ]; - doHaddock = false; - doCheck = false; - description = "A C-compatible array library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "case-insensitive" = callPackage - ({ mkDerivation, base, bytestring, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "case-insensitive"; - version = "1.2.1.0"; - sha256 = "296dc17e0c5f3dfb3d82ced83e4c9c44c338ecde749b278b6eae512f1d04e406"; - libraryHaskellDepends = [ base bytestring deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/case-insensitive"; - description = "Case insensitive string comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cased" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "cased"; - version = "0.1.0.0"; - sha256 = "8394e6705ed83152875e1de1c51c54c26b04a2359919d8958d66997b2b60ad23"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jb55/cased"; - description = "Track string casing in its type"; - license = stdenv.lib.licenses.mit; - }) {}; - "cases" = callPackage - ({ mkDerivation, attoparsec, base-prelude, loch-th, stdenv, text }: - mkDerivation { - pname = "cases"; - version = "0.1.3.2"; - sha256 = "9ecf632f7751aac2ed7ec93407f9499237316f2eb50f331bb4969abf3359a8a9"; - libraryHaskellDepends = [ attoparsec base-prelude loch-th text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/cases"; - description = "A converter for spinal, snake and camel cases"; - license = stdenv.lib.licenses.mit; - }) {}; - "casing" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "casing"; - version = "0.1.4.1"; - sha256 = "106271c00246b551f2ef6a2e511437c9f0e1f3bb920a283f6f9eaa0940b4f8ca"; - revision = "1"; - editedCabalFile = "1n7w4w2icfppyvlmyzzmfivbx175ckqabs4my5qvvdvwlc89xrqb"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - description = "Convert between various source code casing conventions"; - license = stdenv.lib.licenses.mit; - }) {}; - "cassava" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, containers - , deepseq, hashable, Only, scientific, stdenv, text, text-short - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cassava"; - version = "0.5.2.0"; - sha256 = "b30d2ad5894519e364130c0510f167a4ffaf0e08a1e24c9a64238c855bfe0106"; - configureFlags = [ "-f-bytestring--lt-0_10_4" ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers deepseq hashable Only - scientific text text-short transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cassava"; - description = "A CSV parsing and encoding library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-conduit" = callPackage - ({ mkDerivation, array, base, bifunctors, bytestring, cassava - , conduit, containers, mtl, stdenv, text - }: - mkDerivation { - pname = "cassava-conduit"; - version = "0.5.1"; - sha256 = "b55b72e9d52a40473f609c0c406db41bd92178a493f191295a7d8f23d89677f8"; - libraryHaskellDepends = [ - array base bifunctors bytestring cassava conduit containers mtl - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/domdere/cassava-conduit"; - description = "Conduit interface for cassava package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cassava-megaparsec" = callPackage - ({ mkDerivation, base, bytestring, cassava, megaparsec, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "cassava-megaparsec"; - version = "2.0.1"; - sha256 = "e38e7849da5bcf2b20aff6b85c447c0cdfc2007f1bf3fb2a8bc67f8b129f9a60"; - libraryHaskellDepends = [ - base bytestring cassava megaparsec unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/cassava-megaparsec"; - description = "Megaparsec parser of CSV files that plays nicely with Cassava"; - license = stdenv.lib.licenses.mit; - }) {}; - "cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cast"; - version = "0.1.0.2"; - sha256 = "24d545e5974436b6e3ee9dfda7ed68218c9f698103adae676a60860d90d7bc91"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-patterns/cast#readme"; - description = "Abstact cast pattern"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "category" = callPackage - ({ mkDerivation, alg, base, dual, stdenv, transformers }: - mkDerivation { - pname = "category"; - version = "0.2.5.0"; - sha256 = "870b624395000ccfadb2ec5b739e6dc7d54c03ab2beaaac8ee2bfcb0063eca47"; - libraryHaskellDepends = [ alg base dual transformers ]; - doHaddock = false; - doCheck = false; - description = "Categorical types and classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cayley-client" = callPackage - ({ mkDerivation, aeson, attoparsec, base, binary, bytestring - , exceptions, http-client, http-conduit, lens, lens-aeson, mtl - , stdenv, text, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "cayley-client"; - version = "0.4.11"; - sha256 = "ee3505a719318fe07dcffc6d2c168d658f0f1019eb248210609971d5c4ca9a29"; - libraryHaskellDepends = [ - aeson attoparsec base binary bytestring exceptions http-client - http-conduit lens lens-aeson mtl text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/cayley-client"; - description = "A Haskell client for the Cayley graph database"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , ghc-prim, half, integer-gmp, primitive, stdenv, text - }: - mkDerivation { - pname = "cborg"; - version = "0.2.2.1"; - sha256 = "ba920d368892fe14e048cd6ac4270ce4ea1aea0fb6a4998c5c97fe106e6c6183"; - libraryHaskellDepends = [ - array base bytestring containers deepseq ghc-prim half integer-gmp - primitive text - ]; - doHaddock = false; - doCheck = false; - description = "Concise Binary Object Representation (CBOR)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cborg-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, cborg, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "cborg-json"; - version = "0.2.2.0"; - sha256 = "ab68a2457cb71a76699d7a8df07a880ea70c51d2c1a891b12669ca9ccfa7517b"; - libraryHaskellDepends = [ - aeson aeson-pretty base cborg scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A library for encoding JSON as CBOR"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal" = callPackage - ({ mkDerivation, array, base, bytestring, containers, ghc-prim - , stdenv - }: - mkDerivation { - pname = "cereal"; - version = "0.5.8.1"; - sha256 = "2d9e88ac934b9ebc058097c72011ff59f3f146176310e1c957a0e4cf63681bd7"; - libraryHaskellDepends = [ - array base bytestring containers ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GaloisInc/cereal"; - description = "A binary serialization library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-conduit" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , stdenv, transformers - }: - mkDerivation { - pname = "cereal-conduit"; - version = "0.8.0"; - sha256 = "d95c4518a9984feacfd811c64be993705bff74c1f2daa00b4687bbb79f3a39eb"; - revision = "1"; - editedCabalFile = "1imyl3g2bni8bc6kajr857xh94fscphksj3286pxfpa8yp9vqqpc"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Turn Data.Serialize Gets and Puts into Sources, Sinks, and Conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cereal-text" = callPackage - ({ mkDerivation, base, cereal, stdenv, text }: - mkDerivation { - pname = "cereal-text"; - version = "0.1.0.2"; - sha256 = "3c7a15f4681fa53b66dcd5165f31f56ff9751a752ac5123ecc5bcf5c3ea0354c"; - libraryHaskellDepends = [ base cereal text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ulikoehler/cereal-text"; - description = "Data.Text instances for the cereal serialization library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cereal-vector" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "cereal-vector"; - version = "0.2.0.1"; - sha256 = "ff0685a6c39e7aae32f8b4165e2ae06f284c867298ad4f7b776c1c1b2859f933"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/cereal-vector"; - description = "Serialize instances for Data.Vector types."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cfenv" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "cfenv"; - version = "0.1.0.0"; - sha256 = "8ce96643559ebe4504c0641f9817d8795b22631f614084af50c88e51277e747e"; - libraryHaskellDepends = [ aeson base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomphp/haskell-cfenv#readme"; - description = "A library getting the environment when running on Cloud Foundry"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chan" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "chan"; - version = "0.0.4.1"; - sha256 = "926fcb205f6d43ed3a2b85b8e88a6c99a2deb097bc7988116c493a04a52547cf"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/chan#readme"; - description = "Some extra kit for Chans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charset" = callPackage - ({ mkDerivation, array, base, bytestring, containers, semigroups - , stdenv, unordered-containers - }: - mkDerivation { - pname = "charset"; - version = "0.3.7.1"; - sha256 = "3d415d2883bd7bf0cc9f038e8323f19c71e07dd12a3c712f449ccb8b4daac0be"; - revision = "1"; - editedCabalFile = "1z6nxw2g9vgsjq0g159sk8mwj68lwzxzi5iv5ynha0h85jcqxszy"; - libraryHaskellDepends = [ - array base bytestring containers semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/charset"; - description = "Fast unicode character sets based on complemented PATRICIA tries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "charsetdetect-ae" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "charsetdetect-ae"; - version = "1.1.0.4"; - sha256 = "9bbaa48d3026abdd403ed59ee5f41978b2f5be6d0dc545e142c86d5aa790410c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/charsetdetect-ae"; - description = "Character set detection using Mozilla's Universal Character Set Detector"; - license = "LGPL"; - }) {}; - "chaselev-deque" = callPackage - ({ mkDerivation, abstract-deque, array, atomic-primops, base - , ghc-prim, stdenv, transformers, vector - }: - mkDerivation { - pname = "chaselev-deque"; - version = "0.5.0.5"; - sha256 = "4d58f8d56228e9f5bea2a65717dea65106323cb5ead9b5f39f904dac5c0043f4"; - libraryHaskellDepends = [ - abstract-deque array atomic-primops base ghc-prim transformers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Chase & Lev work-stealing lock-free double-ended queues (deques)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checkers" = callPackage - ({ mkDerivation, array, base, QuickCheck, random, semigroupoids - , stdenv - }: - mkDerivation { - pname = "checkers"; - version = "0.5.2"; - sha256 = "7886d049692925687f5373ab9abb9803fb0bcef53f65b7fa3483ed98a9f10ed7"; - libraryHaskellDepends = [ - array base QuickCheck random semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/conal/checkers"; - description = "Check properties on standard classes and data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "checksum" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, utility-ht }: - mkDerivation { - pname = "checksum"; - version = "0.0"; - sha256 = "337a0f6fcf7687469ecd410a3ed41c85ab68de08b5da0798d0d0aeb861a4470c"; - libraryHaskellDepends = [ base explicit-exception utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/checksum"; - description = "Compute and verify checksums of ISBN, IBAN, etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chimera" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "chimera"; - version = "0.3.0.0"; - sha256 = "8d8ae51ca4e7237141dcbf0103100f1fa45a28f37bdeb98d350078587782ae7d"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/chimera#readme"; - description = "Lazy infinite streams with O(1) indexing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "choice" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "choice"; - version = "0.2.2"; - sha256 = "d367e4321329df5913216f9746528e4526e14b5ad1f33edc82de8288ad719e61"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mboes/choice#readme"; - description = "A solution to boolean blindness"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "chronologique" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv, text, time, vector - }: - mkDerivation { - pname = "chronologique"; - version = "0.3.1.1"; - sha256 = "c538bc2e7b1cb9c1f4ae4177a5545c08d3ff66c29c80ef8faddd92daaa499e16"; - libraryHaskellDepends = [ aeson base hourglass text time vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/chronologique/"; - description = "Time to manipulate time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chronos" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, hashable - , primitive, semigroups, stdenv, text, torsor, vector - }: - mkDerivation { - pname = "chronos"; - version = "1.1"; - sha256 = "cc3cceb5560d3f146664679d89466e895d807c228f2a889a753d9b1c2183813c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring hashable primitive semigroups text - torsor vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/chronos"; - description = "A performant time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chronos-bench" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, chronos - , containers, deepseq, optparse-applicative, process, stdenv - , terminal-size - }: - mkDerivation { - pname = "chronos-bench"; - version = "0.2.0.2"; - sha256 = "1b1880b02973dad0bad3a6fa18d6f85f7e0b2fadc602de83dd91e4fbbe255bc0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring chronos containers deepseq - optparse-applicative process terminal-size - ]; - executableHaskellDepends = [ base optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/chronos"; - description = "Benchmarking tool with focus on comparing results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "chunked-data" = callPackage - ({ mkDerivation, base, bytestring, containers, semigroups, stdenv - , text, transformers, vector - }: - mkDerivation { - pname = "chunked-data"; - version = "0.3.1"; - sha256 = "f710c581aee1f899e807fc9e6cba721b27d53dc9d56986f1922bc7ccddf1a79a"; - libraryHaskellDepends = [ - base bytestring containers semigroups text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Typeclasses for dealing with various chunked data representations"; - license = stdenv.lib.licenses.mit; - }) {}; - "cipher-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-aes"; - version = "0.2.11"; - sha256 = "d3b171895698c73da24d7ce97543f725d26637f038de670c0fd4012ca7f95015"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cipher-aes"; - description = "Fast AES cipher implementation with advanced mode of operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-camellia" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv, vector - }: - mkDerivation { - pname = "cipher-camellia"; - version = "0.0.2"; - sha256 = "8d0cd137cdb890646bb5d3bb52b20fa6d74e1b0c35d7d524d60edd9d43ace2a7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Camellia block cipher primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-des" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , securemem, stdenv - }: - mkDerivation { - pname = "cipher-des"; - version = "0.0.6"; - sha256 = "85f1bccdec625a120ecf83b861afcb6478f8f899ceaa06fc083e642b54ff4ac7"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "DES and 3DES primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cipher-rc4" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , stdenv - }: - mkDerivation { - pname = "cipher-rc4"; - version = "0.1.4"; - sha256 = "c67e731bc9e7f3882e33609c3d9ec97b4e9bbd2f95cd882926acfb621970384d"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cipher-rc4"; - description = "Fast RC4 cipher implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "circle-packing" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "circle-packing"; - version = "0.1.0.6"; - sha256 = "64ee44a90da3e5fe20d5b78bfe6eba93102a6b52c65f8a7b99af7799798ee81b"; - revision = "3"; - editedCabalFile = "0rcv84a6bp6dll8df4pfmjl03cm87hrlrf6mbig26ifp9ql4542m"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Simple heuristic for packing discs of varying radii in a circle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cisco-spark-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "cisco-spark-api"; - version = "0.1.0.4"; - sha256 = "6f550e999cb3b3bf1d4d041363c0bead0eec02f078dc51301873cc450143a244"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring conduit data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "DEPRECATED in favor of webex-teams-api"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude" = callPackage - ({ mkDerivation, async, base, basic-prelude, bifunctors, bytestring - , chunked-data, containers, deepseq, dlist, ghc-prim, hashable - , mono-traversable, mono-traversable-instances, mtl - , mutable-containers, primitive, say, semigroups, stdenv, stm - , stm-chans, text, time, transformers, unliftio - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "classy-prelude"; - version = "1.5.0"; - sha256 = "d3bae4b17fdf73d7255f550ad172b1f709a8743371aa3a40c13c2cdc9fa7a4da"; - libraryHaskellDepends = [ - async base basic-prelude bifunctors bytestring chunked-data - containers deepseq dlist ghc-prim hashable mono-traversable - mono-traversable-instances mtl mutable-containers primitive say - semigroups stm stm-chans text time transformers unliftio - unordered-containers vector vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "A typeclass-based Prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-conduit" = callPackage - ({ mkDerivation, base, bytestring, classy-prelude, conduit - , monad-control, resourcet, stdenv, transformers, void - }: - mkDerivation { - pname = "classy-prelude-conduit"; - version = "1.5.0"; - sha256 = "da27783595cd6b94ea5cb93f3e81084a664e65ed4766757a5e7f81fb3df8fd00"; - libraryHaskellDepends = [ - base bytestring classy-prelude conduit monad-control resourcet - transformers void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "classy-prelude together with conduit functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "classy-prelude-yesod" = callPackage - ({ mkDerivation, aeson, base, classy-prelude - , classy-prelude-conduit, data-default, http-conduit, http-types - , persistent, stdenv, yesod, yesod-newsfeed, yesod-static - }: - mkDerivation { - pname = "classy-prelude-yesod"; - version = "1.5.0"; - sha256 = "9ffbc4447ec2df8131ca32c259da19f379109d6e44569a7ee16714ab67029f83"; - libraryHaskellDepends = [ - aeson base classy-prelude classy-prelude-conduit data-default - http-conduit http-types persistent yesod yesod-newsfeed - yesod-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Provide a classy prelude including common Yesod functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "clay" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "clay"; - version = "0.13.3"; - sha256 = "5db3c4c4a40f377b808a1569c5f8aeeea3ecdd2191f4fbbcd0f22b23fdd254a4"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://fvisser.nl/clay"; - description = "CSS preprocessor as embedded Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clientsession" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, cereal - , cipher-aes, cprng-aes, crypto-api, crypto-random, directory - , entropy, setenv, skein, stdenv, tagged - }: - mkDerivation { - pname = "clientsession"; - version = "0.9.1.2"; - sha256 = "5915adc4de26d2a8b03f1a445bac0b0f5d10a5b0380a4eed71b79a20a727d068"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base64-bytestring bytestring cereal cipher-aes cprng-aes - crypto-api crypto-random directory entropy setenv skein tagged - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/clientsession/tree/master"; - description = "Securely store session data in a client-side cookie"; - license = stdenv.lib.licenses.mit; - }) {}; - "climb" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions - , linenoise, mtl, stdenv, text, unliftio-core - }: - mkDerivation { - pname = "climb"; - version = "0.3.1"; - sha256 = "f94831277b91c1e32bab249bd894f570c49e203358b5bd1219eaa5f901042e35"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers exceptions linenoise mtl text - unliftio-core - ]; - executableHaskellDepends = [ - base bytestring containers exceptions linenoise mtl text - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/climb#readme"; - description = "Building blocks for a GHCi-like REPL with colon-commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "clock"; - version = "0.7.2"; - sha256 = "886601978898d3a91412fef895e864576a7125d661e1f8abc49a2a08840e691f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/corsis/clock"; - description = "High-resolution clock functions: monotonic, realtime, cputime"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clock-extras" = callPackage - ({ mkDerivation, base, clock, stdenv }: - mkDerivation { - pname = "clock-extras"; - version = "0.1.0.2"; - sha256 = "a9ed097aa9d48b53c6a555bc5f67e347249b08e2252dd4fc998fb4ab42edda59"; - libraryHaskellDepends = [ base clock ]; - doHaddock = false; - doCheck = false; - description = "A couple functions that probably should be in the 'clock' package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clr-host" = callPackage - ({ mkDerivation, base, bytestring, Cabal, clr-marshal, directory - , file-embed, filepath, glib, mono, stdenv, text, transformers - }: - mkDerivation { - pname = "clr-host"; - version = "0.2.1.0"; - sha256 = "fe2abf0386c96df6e51cbae4f45e074b54452fc01f9308b098198ade4ffc5ea4"; - setupHaskellDepends = [ - base Cabal directory filepath transformers - ]; - libraryHaskellDepends = [ - base bytestring clr-marshal file-embed text - ]; - librarySystemDepends = [ glib mono ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-host"; - description = "Hosting the Common Language Runtime"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) glib; inherit (pkgs) mono;}; - "clr-marshal" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "clr-marshal"; - version = "0.2.0.0"; - sha256 = "4113651f3d10de21813b2a44b78ca19f9ab62b6c6d9df0c25a88940fabebdcd6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/tim-m89/clr-haskell/tree/master/libs/clr-marshal"; - description = "Marshaling for the clr"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "clumpiness" = callPackage - ({ mkDerivation, base, containers, stdenv, tree-fun }: - mkDerivation { - pname = "clumpiness"; - version = "0.17.0.2"; - sha256 = "eca2c21c6d3d9d3e6f26f7ca36db99680120c8f959fdbfef8c970aac131936c0"; - libraryHaskellDepends = [ base containers tree-fun ]; - doHaddock = false; - doCheck = false; - description = "Calculate the clumpiness of leaf properties in a tree"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "cmark" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark"; - version = "0.6"; - sha256 = "0dec55cd4e02ac6ff557044a9aa2523479afc88370d3838430b3e386bef981dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/cmark-hs"; - description = "Fast, accurate CommonMark (Markdown) parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmark-gfm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "cmark-gfm"; - version = "0.2.1"; - sha256 = "4330e20dcdf4ca2586585298093d2c514d4b59c208bb38283219a8f3726470e1"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kivikakk/cmark-gfm-hs"; - description = "Fast, accurate GitHub Flavored Markdown parser and renderer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmark-lucid" = callPackage - ({ mkDerivation, base, cmark, lucid, stdenv }: - mkDerivation { - pname = "cmark-lucid"; - version = "0.1.0.0"; - sha256 = "d2927b9fed0e32fe7afc539e7b427e0a95f8c9297bb6bc531101b476ba8a3c03"; - revision = "1"; - editedCabalFile = "1mizbv18bl8qrgz27wlz7sb6cfhblmp7p7gh7dqq8g0r4djrvqg5"; - libraryHaskellDepends = [ base cmark lucid ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/cmark-lucid"; - description = "Use cmark with Lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cmdargs" = callPackage - ({ mkDerivation, base, filepath, process, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "cmdargs"; - version = "0.10.20"; - sha256 = "0e269dc48c3d4c0447c96ffd772a6fe69dfa1260c323f4cd7bf171cbf2ab7331"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base filepath process template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/cmdargs#readme"; - description = "Command line argument processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "co-log" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, chronos - , co-log-core, containers, contravariant, directory, filepath - , markdown-unlit, mtl, stdenv, stm, text, transformers, typerep-map - , vector - }: - mkDerivation { - pname = "co-log"; - version = "0.4.0.0"; - sha256 = "ac54777424e82e238c06cceb0703665c35de49e4db78bd0c14c77b9378d7ddab"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring chronos co-log-core containers - contravariant directory filepath mtl stm text transformers - typerep-map vector - ]; - executableHaskellDepends = [ - base bytestring co-log-core mtl text typerep-map - ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "co-log-core" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "co-log-core"; - version = "0.2.1.0"; - sha256 = "e0c7cf12e9d9ca89b51892a0bdbe24bf4f20c43bb38bec0090b292061793cdc9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "co-log-polysemy" = callPackage - ({ mkDerivation, base, co-log-core, polysemy, stdenv }: - mkDerivation { - pname = "co-log-polysemy"; - version = "0.0.1.0"; - sha256 = "2bc167d8f1fe45d27c12d03ca4a13f8440c66f78d8a615e652041c08e28551d0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base co-log-core polysemy ]; - executableHaskellDepends = [ base co-log-core polysemy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/co-log"; - description = "Composable Contravariant Comonadic Logging Library"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "code-page" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "code-page"; - version = "0.2"; - sha256 = "bfe32a8c4be9cf0d5a088267bf3fdf4adda8ba3f109e85675c93e70d575e1844"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/code-page"; - description = "Windows code page library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-beam" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, zlib - }: - mkDerivation { - pname = "codec-beam"; - version = "0.2.0"; - sha256 = "61eb624e5f347ec9249f976bc8b62ae597777604d82ab0e62acb9901374ae365"; - libraryHaskellDepends = [ base bytestring containers text zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hkgumbs/codec-beam#readme"; - description = "Erlang VM byte code assembler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "codec-rpm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , conduit, conduit-extra, cpio-conduit, exceptions, lzma-conduit - , mtl, parsec, pretty, resourcet, stdenv, text - }: - mkDerivation { - pname = "codec-rpm"; - version = "0.2.2"; - sha256 = "a34b88378dc79b08b56c39515763b6d940166595c24dc45e61cc8d2bb4ed4b97"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring conduit conduit-extra - cpio-conduit exceptions lzma-conduit mtl parsec pretty resourcet - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/weldr/codec-rpm"; - description = "A library for manipulating RPM files"; - license = stdenv.lib.licenses.lgpl21; - }) {}; - "coercible-utils" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "coercible-utils"; - version = "0.1.0"; - sha256 = "9a7a7282046eaabc9f8c3d29cc7cfe026c212009e8e4de77f87c5b9332e44d59"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/coercible-utils"; - description = "Utility functions for Coercible types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colorful-monoids" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colorful-monoids"; - version = "0.2.1.2"; - sha256 = "0b42ff47e011f011f73e444d7121b7bc54324077cb2a1011ee01766483706578"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/colorful-monoids#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "colorize-haskell" = callPackage - ({ mkDerivation, ansi-terminal, base, haskell-lexer, stdenv }: - mkDerivation { - pname = "colorize-haskell"; - version = "1.0.1"; - sha256 = "03764374bd1aed5c63e20517441ccaae7c95cb2fa9e416da952f26be8dba9aec"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base haskell-lexer ]; - executableHaskellDepends = [ ansi-terminal base haskell-lexer ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yav/colorize-haskell"; - description = "Highligt Haskell source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "colour" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "colour"; - version = "2.3.5"; - sha256 = "3b8d471979617dce7c193523743c9782df63433d8e87e3ef6d97922e0da104e7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Colour"; - description = "A model for human colour/color perception"; - license = stdenv.lib.licenses.mit; - }) {}; - "combinatorial" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "combinatorial"; - version = "0.1.0.1"; - sha256 = "c4d67854fecd353f5e7e6be009ffbd16cd6e9f6f41af16f072ae89778596db70"; - libraryHaskellDepends = [ - array base containers transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/combinatorial/"; - description = "Count, enumerate, rank and unrank combinatorial objects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-array" = callPackage - ({ mkDerivation, base, containers, deepseq, guarded-allocation - , non-empty, prelude-compat, primitive, QuickCheck, semigroups - , stdenv, storable-record, tagged, transformers, utility-ht - }: - mkDerivation { - pname = "comfort-array"; - version = "0.4"; - sha256 = "35dcc0e36f684ed52a4aca08281db4fa28840106ed161b71e4e56daaf7d6734b"; - libraryHaskellDepends = [ - base containers deepseq guarded-allocation non-empty prelude-compat - primitive QuickCheck semigroups storable-record tagged transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-array/"; - description = "Arrays where the index type is a function of the shape type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comfort-graph" = callPackage - ({ mkDerivation, base, containers, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "comfort-graph"; - version = "0.0.3.1"; - sha256 = "c926189971d0b416b4b078a1652de65a12a9fabd013d2373204bbe96fef8b562"; - libraryHaskellDepends = [ - base containers QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/comfort-graph"; - description = "Graph structure with type parameters for nodes and edges"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "commutative" = callPackage - ({ mkDerivation, base, random, semigroups, stdenv, vector }: - mkDerivation { - pname = "commutative"; - version = "0.0.2"; - sha256 = "ccbc6a445bbc5c26a504a322664b2275e9834fdc17c80a2bdcef0dc517609969"; - libraryHaskellDepends = [ base random semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/commutative#readme"; - description = "Commutative binary operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "comonad" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers - , distributive, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "comonad"; - version = "5.0.6"; - sha256 = "77cfb016acd1747b892c31b82daf0de93f508ba775d62562d376b354adb88fae"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers distributive tagged transformers - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/comonad/"; - description = "Comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compactmap" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "compactmap"; - version = "0.1.4.2.1"; - sha256 = "22166e0a2a78bf2b7cff49448ed9fcb145dece4f034de9afc8ce5b692fd0f774"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A read-only memory-efficient key-value store"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compensated" = callPackage - ({ mkDerivation, base, bifunctors, binary, bytes, Cabal - , cabal-doctest, cereal, comonad, deepseq, distributive, hashable - , lens, log-domain, safecopy, semigroupoids, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "compensated"; - version = "0.8.1"; - sha256 = "fff0c7c4da0a408dcb99e2390d9ed5cdaff60bf0812571b958d12c679eb625e3"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bifunctors binary bytes cereal comonad deepseq distributive - hashable lens log-domain safecopy semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/compensated/"; - description = "Compensated floating-point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "compiler-warnings" = callPackage - ({ mkDerivation, base, binary, parsec, stdenv, text }: - mkDerivation { - pname = "compiler-warnings"; - version = "0.1.0"; - sha256 = "8cf4c57e1b4d61b1163969faa6e9f2cb8f22073fa75bf982d9b8a328225f5ce3"; - libraryHaskellDepends = [ base binary parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/compiler-warnings#readme"; - description = "Parser for common compiler warning formats"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "composable-associations" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "composable-associations"; - version = "0.1.0.0"; - sha256 = "9d1a10bc7ee1b514221bd8d0fc71f43f8d2338b1faebe6722f1d4db3bc29800e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Types and helpers for composing types into a single larger key-value type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composable-associations-aeson" = callPackage - ({ mkDerivation, aeson, base, composable-associations, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "composable-associations-aeson"; - version = "0.1.0.0"; - sha256 = "dbd754ed6d624469f16c4cd2ad51c441eeb8c62d6af66673f76034c7517c2a4f"; - libraryHaskellDepends = [ - aeson base composable-associations text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/composable-associations#readme"; - description = "Aeson ToJSON/FromJSON implementation for the types of composable-associations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "composition"; - version = "1.0.2.1"; - sha256 = "7123300f5eca5a7cec4eb731dc0e9c2c44aabe26b37e6579582a7267d9f7ad6a"; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox function composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "composition-extra" = callPackage - ({ mkDerivation, base, composition, contravariant, stdenv }: - mkDerivation { - pname = "composition-extra"; - version = "2.0.0"; - sha256 = "c998244a8fd160af3dd7ee93c417f665af51a46a04ce6b7d4623f46596ba7129"; - libraryHaskellDepends = [ base composition contravariant ]; - doHaddock = false; - doCheck = false; - description = "Combinators for unorthodox structure composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concise" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, text }: - mkDerivation { - pname = "concise"; - version = "0.1.0.1"; - sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; - libraryHaskellDepends = [ base bytestring lens text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frasertweedale/hs-concise"; - description = "Utilities for Control.Lens.Cons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrency" = callPackage - ({ mkDerivation, array, atomic-primops, base, exceptions - , monad-control, mtl, stdenv, stm, transformers - }: - mkDerivation { - pname = "concurrency"; - version = "1.8.1.0"; - sha256 = "e5e6bda4675edc9a706be72e507ea8aad5352ecdfbfe7cd9bd03c04f0b8a855b"; - libraryHaskellDepends = [ - array atomic-primops base exceptions monad-control mtl stm - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Typeclasses, functions, and data types for concurrency and STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "concurrent-extra" = callPackage - ({ mkDerivation, base, stdenv, stm, unbounded-delays }: - mkDerivation { - pname = "concurrent-extra"; - version = "0.7.0.12"; - sha256 = "040e6db9e0147de9929661759930f1566a7250add4c7f65b04dc6e070c991df9"; - libraryHaskellDepends = [ base stm unbounded-delays ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/concurrent-extra"; - description = "Extra concurrency primitives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "concurrent-output" = callPackage - ({ mkDerivation, ansi-terminal, async, base, directory, exceptions - , process, stdenv, stm, terminal-size, text, transformers, unix - }: - mkDerivation { - pname = "concurrent-output"; - version = "1.10.11"; - sha256 = "e30a5f8164f6e172349c4f882455d4e28d6b007443f308562a9304541e562ab4"; - libraryHaskellDepends = [ - ansi-terminal async base directory exceptions process stm - terminal-size text transformers unix - ]; - doHaddock = false; - doCheck = false; - description = "Ungarble output from several threads or commands"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "concurrent-split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "concurrent-split"; - version = "0.0.1.1"; - sha256 = "ae0028cfaf27da2c4d0e70783e8f45e82d33f402af1dfc6778c8ab81cf542f45"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "MVars and Channels with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cond" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cond"; - version = "0.4.1.1"; - sha256 = "039c76e43b5484bdc78627f50740106ae2844b3c877d92b5228de9106997ac8b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/cond"; - description = "Basic conditional and boolean operators with monadic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conduit" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mono-traversable, mtl, primitive, resourcet, stdenv, text - , transformers, unix, unliftio-core, vector - }: - mkDerivation { - pname = "conduit"; - version = "1.3.1.2"; - sha256 = "78e2cbe92cdadb89cb1dba486bb0834d23d5c09b0db43e3c307f1819f30e8289"; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath mono-traversable mtl - primitive resourcet text transformers unix unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Streaming data processing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-algorithms" = callPackage - ({ mkDerivation, async, base, bytestring, bzlib-conduit, conduit - , conduit-combinators, conduit-extra, conduit-zstd, containers - , deepseq, exceptions, lzma-conduit, monad-control, mtl, pqueue - , resourcet, stdenv, stm, stm-conduit, streaming-commons - , transformers, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-algorithms"; - version = "0.0.11.0"; - sha256 = "31edb5d0a4a1bc03c31b0cafe27255ce4f30bd402798454faf71cf09c6e73230"; - libraryHaskellDepends = [ - async base bytestring bzlib-conduit conduit conduit-combinators - conduit-extra conduit-zstd containers deepseq exceptions - lzma-conduit monad-control mtl pqueue resourcet stm stm-conduit - streaming-commons transformers unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-algorithms#readme"; - description = "Conduit-based algorithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "conduit-combinators"; - version = "1.3.0"; - sha256 = "9717d916a0422a7fb7cc262302333269607530d40cd0bea3be947872f906e7d3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "DEPRECATED Functionality merged into the conduit package itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-concurrent-map" = callPackage - ({ mkDerivation, base, conduit, containers, mtl, resourcet, stdenv - , unliftio, unliftio-core, vector - }: - mkDerivation { - pname = "conduit-concurrent-map"; - version = "0.1.1"; - sha256 = "527c429c39eaf5181e2aa8e5a6fcafd552149cc37b0b9d21003ff6507cd6c766"; - libraryHaskellDepends = [ - base conduit containers mtl resourcet unliftio unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/conduit-concurrent-map"; - description = "Concurrent, order-preserving mapping Conduit"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-extra" = callPackage - ({ mkDerivation, async, attoparsec, base, bytestring, conduit - , directory, filepath, network, primitive, process, resourcet - , stdenv, stm, streaming-commons, text, transformers, typed-process - , unliftio-core - }: - mkDerivation { - pname = "conduit-extra"; - version = "1.3.4"; - sha256 = "b17381c259305eaa1752cbaedf2319757efc1b975633d73d5ab7c89d461b05b5"; - libraryHaskellDepends = [ - async attoparsec base bytestring conduit directory filepath network - primitive process resourcet stm streaming-commons text transformers - typed-process unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Batteries included conduit: adapters for common libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "conduit-parse" = callPackage - ({ mkDerivation, base, conduit, dlist, mtl, parsers, safe - , safe-exceptions, stdenv, text, transformers - }: - mkDerivation { - pname = "conduit-parse"; - version = "0.2.1.0"; - sha256 = "b585dbdc0c1e3a844a9cd97cd1e72d7a73521b66b856001960afe4057130dae1"; - revision = "1"; - editedCabalFile = "1bgxjn9lbx67584xpwl2k9jrwvlgyqf4vkv0s7vs1nnc1h6qk7qw"; - libraryHaskellDepends = [ - base conduit dlist mtl parsers safe safe-exceptions text - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/conduit-parse"; - description = "Parsing framework based on conduit"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "conduit-zstd" = callPackage - ({ mkDerivation, base, bytestring, conduit, stdenv, zstd }: - mkDerivation { - pname = "conduit-zstd"; - version = "0.0.1.1"; - sha256 = "8681f59d08399f92478329b0cdd555ae5a1b7d12ef8acee423fcc10192e00712"; - libraryHaskellDepends = [ base bytestring conduit zstd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/conduit-zstd#readme"; - description = "Conduit-based ZStd Compression"; - license = stdenv.lib.licenses.mit; - }) {}; - "conferer" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, stdenv - , text - }: - mkDerivation { - pname = "conferer"; - version = "0.2.0.0"; - sha256 = "3bc4ace782033be47b7c26d9a7ceb2b03ab3fbdc34c14e9dbeec9a009834c664"; - libraryHaskellDepends = [ - base bytestring containers directory text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "Configuration management library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conferer-hspec" = callPackage - ({ mkDerivation, base, conferer, hspec-core, stdenv, text }: - mkDerivation { - pname = "conferer-hspec"; - version = "0.2.0.0"; - sha256 = "e83f5ceead5accd5f2fa49b0240dfee5678d6af9056a197e01ee2df194a114bf"; - libraryHaskellDepends = [ base conferer hspec-core text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "conferer's FromConfig instances for hspec Config"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conferer-provider-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, conferer, directory - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "conferer-provider-json"; - version = "0.2.0.0"; - sha256 = "5b343689a1652ee70ee65667ad635bf1bdac61d6c73ae432aa521494c74861d1"; - libraryHaskellDepends = [ - aeson base bytestring conferer directory text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "conferer's provider for reading json files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "conferer-warp" = callPackage - ({ mkDerivation, base, conferer, http-types, stdenv, text, wai - , warp - }: - mkDerivation { - pname = "conferer-warp"; - version = "0.2.0.0"; - sha256 = "d9f87eb1bf4b6198e14625ccc93545f1d8531b2694a9b8d5740e7c39e0af5eaa"; - libraryHaskellDepends = [ base conferer http-types text wai warp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ludat/conferer#readme"; - description = "conferer's FromConfig instances for warp settings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "config-ini" = callPackage - ({ mkDerivation, base, containers, megaparsec, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "config-ini"; - version = "0.2.4.0"; - sha256 = "6e5194e8acb7d189f0904852138990d03b64f86b9fde8f591ee1341d5627d535"; - revision = "1"; - editedCabalFile = "15ryq15851m9hzljamw5spr6hzr6picgf6s3xzkn7nviidcq78mz"; - libraryHaskellDepends = [ - base containers megaparsec text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aisamanra/config-ini"; - description = "A library for simple INI-based configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, directory, hashable - , stdenv, text, unix-compat, unordered-containers - }: - mkDerivation { - pname = "configurator"; - version = "0.3.0.0"; - sha256 = "6eb9996b672e9f7112ca23482c42fa533553312c3c13f38a8a06476e67c031b4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring directory hashable text unix-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/configurator"; - description = "Configuration management"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "configurator-export" = callPackage - ({ mkDerivation, base, base-compat, configurator, pretty - , semigroups, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "configurator-export"; - version = "0.1.0.1"; - sha256 = "9dbd62ef29c97792ccdfdb1b3b79aedfa527dce49a9ac5054f21b29a7f9b824c"; - libraryHaskellDepends = [ - base base-compat configurator pretty semigroups text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mstksg/configurator-export"; - description = "Pretty printer and exporter for configurations from the \"configurator\" library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection" = callPackage - ({ mkDerivation, base, basement, bytestring, containers - , data-default-class, network, socks, stdenv, tls, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "connection"; - version = "0.3.1"; - sha256 = "5d759589c532c34d87bfc4f6fcb732bf55b55a93559d3b94229e8347a15375d9"; - revision = "1"; - editedCabalFile = "08f1n38zryd0jklyv3yillilp040zxfxha6jphrmf28haq2irnk5"; - libraryHaskellDepends = [ - base basement bytestring containers data-default-class network - socks tls x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-connection"; - description = "Simple and easy network connections API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "connection-pool" = callPackage - ({ mkDerivation, base, between, data-default-class, monad-control - , network, resource-pool, stdenv, streaming-commons, time - , transformers-base - }: - mkDerivation { - pname = "connection-pool"; - version = "0.2.2"; - sha256 = "f2cf43b7698b719b05467b3625884d00c748de2b3eb1229d19490b029a667353"; - libraryHaskellDepends = [ - base between data-default-class monad-control network resource-pool - streaming-commons time transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/connection-pool"; - description = "Connection pool built on top of resource-pool and streaming-commons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "console-style" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "console-style"; - version = "0.0.2.1"; - sha256 = "6d818ea841d7acfe6c42cc3fc7751e324656abfd0509ce470bc8bdbf52d1bd7f"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/console-style#readme"; - description = "Styled console text output using ANSI escape sequences"; - license = stdenv.lib.licenses.mit; - }) {}; - "constrained-dynamic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constrained-dynamic"; - version = "0.1.0.0"; - sha256 = "20952857c40fcb730584000d2a98e6a89f9f457b86e5e035ae055b40919c8f49"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dynamic typing with retained constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "constraint" = callPackage - ({ mkDerivation, base, category, stdenv, unconstrained }: - mkDerivation { - pname = "constraint"; - version = "0.1.4.0"; - sha256 = "2467002144d7fa5e107c04bd5c64088334879d71e98d20365029fb777f63b631"; - libraryHaskellDepends = [ base category unconstrained ]; - doHaddock = false; - doCheck = false; - description = "Reified constraints"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraint-tuples" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "constraint-tuples"; - version = "0.1.2"; - sha256 = "6262fe19dbacdaf3e0e2343d6db692f921560eca57a28706abc3857330f0c999"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/constraint-tuples"; - description = "Partially applicable constraint tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "constraints" = callPackage - ({ mkDerivation, base, binary, deepseq, ghc-prim, hashable, mtl - , semigroups, stdenv, transformers, transformers-compat - , type-equality - }: - mkDerivation { - pname = "constraints"; - version = "0.11.2"; - sha256 = "584e556465a89f98eee1625cfda6abdbc298273e8036fad78864be72cf83b682"; - libraryHaskellDepends = [ - base binary deepseq ghc-prim hashable mtl semigroups transformers - transformers-compat type-equality - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/constraints/"; - description = "Constraint manipulation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "contiguous" = callPackage - ({ mkDerivation, base, deepseq, primitive, primitive-unlifted - , stdenv - }: - mkDerivation { - pname = "contiguous"; - version = "0.5"; - sha256 = "5847ad45df426ac45d9abfb64eab614aae4d2f62d5a1598fd119b10fa0d6e35b"; - libraryHaskellDepends = [ - base deepseq primitive primitive-unlifted - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/contiguous"; - description = "Unified interface for primitive arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant" = callPackage - ({ mkDerivation, base, StateVar, stdenv, transformers }: - mkDerivation { - pname = "contravariant"; - version = "1.5.2"; - sha256 = "c4262c24e3dcc2ba8ca221ed52a6390818a715301e4f13135d8d732e0c7dc60c"; - libraryHaskellDepends = [ base StateVar transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/contravariant/"; - description = "Contravariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "contravariant-extras" = callPackage - ({ mkDerivation, base, contravariant, stdenv, template-haskell - , template-haskell-compat-v0208 - }: - mkDerivation { - pname = "contravariant-extras"; - version = "0.3.5.1"; - sha256 = "e9037c990ec8c5d92f75d99e0dde0667dac59f1235dd6be3d990979aab792b65"; - libraryHaskellDepends = [ - base contravariant template-haskell template-haskell-compat-v0208 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/contravariant-extras"; - description = "Extras for the \"contravariant\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "control-bool" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-bool"; - version = "0.2.1"; - sha256 = "e46a85d2985a65f8d7ecbcdab0cfb12734b4d6e4c558631e6ab01fe742ed5581"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/control-bool"; - description = "Useful combinators for boolean expressions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "control-monad-free" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "control-monad-free"; - version = "0.6.2"; - sha256 = "63c830bd2af23e372ebfee628d9f538a32d8368cf74f897370d839bf8e7b4bc1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pepeiborra/control-monad-free"; - description = "Free monads and monad transformers"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "control-monad-omega" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "control-monad-omega"; - version = "0.3.2"; - sha256 = "f62c1e4607481041b66a4c7afd1e4cb1fef72669c142fe73301c84bdfd17a9ff"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/control-monad-omega"; - description = "A breadth-first list monad"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "convertible" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, old-locale - , old-time, stdenv, text, time - }: - mkDerivation { - pname = "convertible"; - version = "1.1.1.0"; - sha256 = "e9f9a70904b9995314c2aeb41580d654a2c76293feb955fb6bd63256c355286c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers mtl old-locale old-time text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/convertible"; - description = "Typeclasses and instances for converting between types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cookie" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , stdenv, text, time - }: - mkDerivation { - pname = "cookie"; - version = "0.4.5"; - sha256 = "707f94d1b31018b91d6a1e9e19ef5413e20d02cab00ad93a5fd7d7b3b46a3583"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/cookie"; - description = "HTTP cookie parsing and rendering"; - license = stdenv.lib.licenses.mit; - }) {}; - "core-data" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, core-text - , hashable, prettyprinter, prettyprinter-ansi-terminal, scientific - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "core-data"; - version = "0.2.1.5"; - sha256 = "3630c886e8104cb780f6ea389edc21d3b8e15eb185cc7cf14895a79cfdba9b9e"; - libraryHaskellDepends = [ - aeson base bytestring containers core-text hashable prettyprinter - prettyprinter-ansi-terminal scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "Convenience wrappers around common data structures and encodings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "core-program" = callPackage - ({ mkDerivation, async, base, bytestring, chronologique, core-data - , core-text, directory, exceptions, filepath, fsnotify, hashable - , hourglass, mtl, prettyprinter, prettyprinter-ansi-terminal - , safe-exceptions, stdenv, stm, template-haskell, terminal-size - , text, text-short, transformers, unix - }: - mkDerivation { - pname = "core-program"; - version = "0.2.4.1"; - sha256 = "acd0ba73917553f0d610d25486501deebde0b174a7c5fbcd8a2f9379a6dd204a"; - libraryHaskellDepends = [ - async base bytestring chronologique core-data core-text directory - exceptions filepath fsnotify hashable hourglass mtl prettyprinter - prettyprinter-ansi-terminal safe-exceptions stm template-haskell - terminal-size text text-short transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "Opinionated Haskell Interoperability"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "core-text" = callPackage - ({ mkDerivation, base, bytestring, deepseq, fingertree, hashable - , prettyprinter, prettyprinter-ansi-terminal, stdenv - , template-haskell, text, text-short - }: - mkDerivation { - pname = "core-text"; - version = "0.2.3.3"; - sha256 = "4d502670f2a7478f65946264c43d41664890c86d9e3d49913a89f8efc8a0cb2e"; - libraryHaskellDepends = [ - base bytestring deepseq fingertree hashable prettyprinter - prettyprinter-ansi-terminal template-haskell text text-short - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/oprdyn/unbeliever#readme"; - description = "A rope type based on a finger tree over UTF-8 fragments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "countable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "countable"; - version = "1.0"; - sha256 = "f9a0eb6f697a044bdf72e9c08126d4cb0f2d6de82cce07e55cb87ddbae6a0e6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/countable"; - description = "Countable, Searchable, Finite, Empty classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpio-conduit" = callPackage - ({ mkDerivation, base, base16-bytestring, binary, bytestring - , conduit, conduit-extra, stdenv - }: - mkDerivation { - pname = "cpio-conduit"; - version = "0.7.0"; - sha256 = "8f0be7538b234496ef3b2fb2633336908ae99040ecb6d9832b3dbd1d0750f513"; - libraryHaskellDepends = [ - base base16-bytestring binary bytestring conduit conduit-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/da-x/cpio-conduit"; - description = "Conduit-based CPIO"; - license = stdenv.lib.licenses.asl20; - }) {}; - "cpphs" = callPackage - ({ mkDerivation, base, directory, old-locale, old-time, polyparse - , stdenv - }: - mkDerivation { - pname = "cpphs"; - version = "1.20.8"; - sha256 = "e56d64a7d8058e0fb63f0669397c1c861efb20a0376e0e74d86942ac151105ae"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - executableHaskellDepends = [ - base directory old-locale old-time polyparse - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/cpphs/"; - description = "A liberalised re-implementation of cpp, the C pre-processor"; - license = "LGPL"; - }) {}; - "cprng-aes" = callPackage - ({ mkDerivation, base, byteable, bytestring, cipher-aes - , crypto-random, stdenv - }: - mkDerivation { - pname = "cprng-aes"; - version = "0.6.1"; - sha256 = "64592a01de8c6683c5e29f538dceee918887ffe211d87214a2e38559d72c21f3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base byteable bytestring cipher-aes crypto-random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cprng-aes"; - description = "Crypto Pseudo Random Number Generator using AES in counter mode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpu" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "cpu"; - version = "0.1.2"; - sha256 = "5627feb4974a3ff8499c42cc958927e88761a2e004c4000d34e9cd6a15ad2974"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cpu"; - description = "Cpu information and properties helpers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cpuinfo" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "cpuinfo"; - version = "0.1.0.1"; - sha256 = "d1b3e3992cc0c82edfb21f30e1684bb66e6a3cb23a26b777a079702362d05655"; - libraryHaskellDepends = [ attoparsec base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TravisWhitaker/cpuinfo"; - description = "Haskell Library for Checking CPU Information"; - license = stdenv.lib.licenses.mit; - }) {}; - "crackNum" = callPackage - ({ mkDerivation, array, base, FloatingHex, stdenv }: - mkDerivation { - pname = "crackNum"; - version = "2.3"; - sha256 = "428f25cfa0f7c4c126ee96fb9122966c2b175a194d59c200470a6f689ec038f3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base FloatingHex ]; - executableHaskellDepends = [ array base FloatingHex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/LeventErkok/CrackNum"; - description = "Crack various integer, floating-point data formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crc32c" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "crc32c"; - version = "0.0.0"; - sha256 = "0908682d921cc79249704d8b34fba918f399ad25321376b3a96b471a624500f8"; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/crc32c#readme"; - description = "Haskell bindings for crc32c"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "credential-store" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite, dbus - , memory, safe-exceptions, stdenv - }: - mkDerivation { - pname = "credential-store"; - version = "0.1.2"; - sha256 = "4dadbc219a7187442258608c1d834f4297652fb605fc6bbbb41d751fef6a9284"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers cryptonite dbus memory safe-exceptions - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/credential-store#readme"; - description = "Library to access secure credential storage providers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "criterion" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, base, base-compat-batteries - , binary, binary-orphans, bytestring, cassava, code-page - , containers, criterion-measurement, deepseq, directory, exceptions - , filepath, Glob, js-flot, js-jquery, microstache, mtl, mwc-random - , optparse-applicative, parsec, statistics, stdenv, text, time - , transformers, transformers-compat, vector, vector-algorithms - }: - mkDerivation { - pname = "criterion"; - version = "1.5.6.1"; - sha256 = "a5fb69c78ff33c2a7bc5dca1f56d19b2ce34bc68cc3d345de903039087185354"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint base base-compat-batteries binary - binary-orphans bytestring cassava code-page containers - criterion-measurement deepseq directory exceptions filepath Glob - js-flot js-jquery microstache mtl mwc-random optparse-applicative - parsec statistics text time transformers transformers-compat vector - vector-algorithms - ]; - executableHaskellDepends = [ - base base-compat-batteries optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/criterion"; - description = "Robust, reliable performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "criterion-measurement" = callPackage - ({ mkDerivation, aeson, base, base-compat, binary, containers - , deepseq, stdenv, vector - }: - mkDerivation { - pname = "criterion-measurement"; - version = "0.1.2.0"; - sha256 = "74a433da656c298608c514b962b915ec83915983197ae06c4b5d3a6b5d0de70e"; - libraryHaskellDepends = [ - aeson base base-compat binary containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/criterion"; - description = "Criterion measurement functionality and associated types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cron" = callPackage - ({ mkDerivation, attoparsec, base, data-default-class, mtl - , mtl-compat, old-locale, semigroups, stdenv, text, time - }: - mkDerivation { - pname = "cron"; - version = "0.6.2"; - sha256 = "b0789bab33cd49a9a992f6cddf3975324af53301d0b465cd932fc4229bdde491"; - libraryHaskellDepends = [ - attoparsec base data-default-class mtl mtl-compat old-locale - semigroups text time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/michaelxavier/cron"; - description = "Cron datatypes and Attoparsec parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "crypt-sha512" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, cryptohash-sha512 - , stdenv - }: - mkDerivation { - pname = "crypt-sha512"; - version = "0"; - sha256 = "c2be6252bf12f38c74950eb778039426c730e9a7cd7f034a4cc3e6965d5255f3"; - revision = "3"; - editedCabalFile = "1l8glrv7bhdi0p1m1xq9majlbh8n9agai9d4mldzi5bnp5m5b79q"; - libraryHaskellDepends = [ - attoparsec base bytestring cryptohash-sha512 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/crypt-sha512"; - description = "Pure Haskell implelementation for GNU SHA512 crypt algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-api" = callPackage - ({ mkDerivation, base, bytestring, cereal, entropy, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "crypto-api"; - version = "0.13.3"; - sha256 = "298a9ea7ce97c8ccf4bfe46d4864092c3a007a56bede73560070db3bf1ac7aa5"; - revision = "1"; - editedCabalFile = "1z6n1sa5pn3iqvqjrd8hv4bc2pxzsrhm5sh0l8z7g9lbqp6w0wp5"; - libraryHaskellDepends = [ - base bytestring cereal entropy tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/crypto-api"; - description = "A generic interface for cryptographic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-cipher-types" = callPackage - ({ mkDerivation, base, byteable, bytestring, securemem, stdenv }: - mkDerivation { - pname = "crypto-cipher-types"; - version = "0.0.9"; - sha256 = "2073f6b70df7916aebe2da49d224497183662d56d19da87b76f70039430c0a0f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base byteable bytestring securemem ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-cipher"; - description = "Generic cryptography cipher types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-enigma" = callPackage - ({ mkDerivation, ansi-terminal, base, containers - , optparse-applicative, split, stdenv, text - }: - mkDerivation { - pname = "crypto-enigma"; - version = "0.1.1.6"; - sha256 = "5fec48245fd75d91ed1ac953fb21834eff3dc0b13b5bd100155ce4f4f8cd1d1f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers split text ]; - executableHaskellDepends = [ - ansi-terminal base containers optparse-applicative split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/orome/crypto-enigma-hs"; - description = "An Enigma machine simulator with display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-numbers" = callPackage - ({ mkDerivation, base, bytestring, crypto-random, ghc-prim - , integer-gmp, stdenv, vector - }: - mkDerivation { - pname = "crypto-numbers"; - version = "0.2.7"; - sha256 = "420aeb17e9cdcfdf8c950c6c6f10c54503c5524d36f611aa7238e3fd65f189a6"; - revision = "1"; - editedCabalFile = "1jjkhid8kwrz5894nad537rqxzzyx6b687bmgyk70nv0ny336j9b"; - libraryHaskellDepends = [ - base bytestring crypto-random ghc-prim integer-gmp vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-numbers"; - description = "Cryptographic numbers: functions and algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-numbers - , crypto-pubkey-types, crypto-random, cryptohash, stdenv - }: - mkDerivation { - pname = "crypto-pubkey"; - version = "0.2.8"; - sha256 = "c0ccf2f5c38517de1f1626cb0a2542f35aefad8842f8ad5c1fac0b8c9de8b56e"; - libraryHaskellDepends = [ - base byteable bytestring crypto-numbers crypto-pubkey-types - crypto-random cryptohash - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-crypto-pubkey"; - description = "Public Key cryptography"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-pubkey-types" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, stdenv }: - mkDerivation { - pname = "crypto-pubkey-types"; - version = "0.4.3"; - sha256 = "7ed9f52281ec4e34021a91818fe45288e33d65bff937f60334a3f45be5a71c60"; - libraryHaskellDepends = [ asn1-encoding asn1-types base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-pubkey-types"; - description = "Generic cryptography Public keys algorithm types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random" = callPackage - ({ mkDerivation, base, bytestring, securemem, stdenv, unix, vector - }: - mkDerivation { - pname = "crypto-random"; - version = "0.0.9"; - sha256 = "170a7a18441379c2d1c19b502ee5919026a19adc6e78641cd4fb40b1d69a6904"; - revision = "1"; - editedCabalFile = "1ax1iafbbqkcrvjnnxlvqh2zgpx8xzcbxl6l870207bpzwrja2f1"; - libraryHaskellDepends = [ base bytestring securemem unix vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random"; - description = "Simple cryptographic random related types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "crypto-random-api" = callPackage - ({ mkDerivation, base, bytestring, entropy, stdenv }: - mkDerivation { - pname = "crypto-random-api"; - version = "0.2.0"; - sha256 = "56e9777061bd9ce553683d097ba3a11fdc371724060b62ca103f1f291f9f897c"; - libraryHaskellDepends = [ base bytestring entropy ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-crypto-random-api"; - description = "Simple random generators API for cryptography related code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash" = callPackage - ({ mkDerivation, base, byteable, bytestring, cryptonite, ghc-prim - , memory, stdenv - }: - mkDerivation { - pname = "cryptohash"; - version = "0.11.9"; - sha256 = "c28f847fc1fcd65b6eea2e74a100300af940919f04bb21d391f6a773968f22fb"; - libraryHaskellDepends = [ - base byteable bytestring cryptonite ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-cryptohash"; - description = "collection of crypto hashes, fast, pure and practical"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-cryptoapi" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, cryptonite - , memory, stdenv, tagged - }: - mkDerivation { - pname = "cryptohash-cryptoapi"; - version = "0.1.4"; - sha256 = "717a8664ebfaa1c31aaec1d78c9b7c776a5adcfdfc50ad88e21a34566f72058e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal crypto-api cryptonite memory tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-cryptohash-cryptoapi"; - description = "Crypto-api interfaces for cryptohash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-md5" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-md5"; - version = "0.11.100.1"; - sha256 = "710bd48770fa3e9a3b05428c6dc77fb72c91956d334a1eb89ded11bb843e18f9"; - revision = "4"; - editedCabalFile = "0gzaibjkipijwj9m9l6wrhfk5s3kdvfbhdl7cl1373cjfs41v0m3"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-md5"; - description = "Fast, pure and practical MD5 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha1" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha1"; - version = "0.11.100.1"; - sha256 = "3c79af33542512442f8f87f6abb1faef7cd43bbfb2859260a33251d861eb0dab"; - revision = "4"; - editedCabalFile = "0qb2wasfc4dpf6f9ahvhlv8njb3p3p9iwblg4032ssi95cg85718"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha1"; - description = "Fast, pure and practical SHA-1 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha256" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha256"; - version = "0.11.101.0"; - sha256 = "52756435dbea248e344fbcbcc5df5307f60dfacf337dfd11ae30f1c7a4da05dd"; - revision = "3"; - editedCabalFile = "1arhz4y792kx439s2zv9x291gvvl2zxcfx9sq0nxsjlz7c3hpyp1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha256"; - description = "Fast, pure and practical SHA-256 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptohash-sha512" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "cryptohash-sha512"; - version = "0.11.100.1"; - sha256 = "10698bb9575eaa414a65d9644caa9408f9276c63447406e0a4faef91db1071a9"; - revision = "4"; - editedCabalFile = "0iqs51a58w71j1zz3rn9kical63yvvqqqrc6971mh6wfscyi1gqr"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/cryptohash-sha512"; - description = "Fast, pure and practical SHA-512 implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , integer-gmp, memory, stdenv - }: - mkDerivation { - pname = "cryptonite"; - version = "0.26"; - sha256 = "c47390df555295fdb1fb8161c190e208f43b8d334b2da3e96f0c64b7fe07aedd"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim integer-gmp memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite"; - description = "Cryptography Primitives sink"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , cryptonite, exceptions, memory, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "cryptonite-conduit"; - version = "0.2.2"; - sha256 = "705d69ab3f79b7b8810c7b9e7da81a1c6686b6a4323b1e78150576a25a658dae"; - revision = "1"; - editedCabalFile = "1hh2nzfz4qpxgivfilgk4ll416lph8b2fdkzpzrmqfjglivydfmz"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra cryptonite exceptions memory - resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-conduit"; - description = "cryptonite conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cryptonite-openssl" = callPackage - ({ mkDerivation, base, basement, bytestring, cryptonite, memory - , openssl, stdenv - }: - mkDerivation { - pname = "cryptonite-openssl"; - version = "0.7"; - sha256 = "9e4e1c08264f26e602ef3054f3c827c3c65d153e5b9d68a0cb44f446ca0844f6"; - libraryHaskellDepends = [ - base basement bytestring cryptonite memory - ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-crypto/cryptonite-openssl"; - description = "Crypto stuff using OpenSSL cryptographic library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "csp" = callPackage - ({ mkDerivation, base, containers, mtl, nondeterminism, stdenv }: - mkDerivation { - pname = "csp"; - version = "1.4.0"; - sha256 = "08877f5ff196772675ac55b3c43ab39b527259114da8cfc36122c0cd7ce93496"; - libraryHaskellDepends = [ base containers mtl nondeterminism ]; - doHaddock = false; - doCheck = false; - description = "Discrete constraint satisfaction problem (CSP) solver"; - license = "LGPL"; - }) {}; - "css-text" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "css-text"; - version = "0.1.3.0"; - sha256 = "5ff507bf3863219f41e7f2d215e5511fe15ee13d1e28bd3ee64e0b0b894bcd7a"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/css-text.git#readme"; - description = "CSS parser and renderer"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv" = callPackage - ({ mkDerivation, base, filepath, parsec, stdenv }: - mkDerivation { - pname = "csv"; - version = "0.1.2"; - sha256 = "8cf43442325faa1368f9b55ad952beccf677d9980cdffa3d70a7f204a23ae600"; - libraryHaskellDepends = [ base filepath parsec ]; - doHaddock = false; - doCheck = false; - description = "CSV loader and dumper"; - license = stdenv.lib.licenses.mit; - }) {}; - "csv-conduit" = callPackage - ({ mkDerivation, array, attoparsec, base, blaze-builder, bytestring - , conduit, conduit-extra, containers, data-default, exceptions - , ghc-prim, mmorph, monad-control, mtl, primitive, resourcet - , semigroups, stdenv, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "csv-conduit"; - version = "0.7.1.0"; - sha256 = "3b6df9036c4d5b3f151f86767b64832c731e7f0daeb2bada980311ffa7709507"; - libraryHaskellDepends = [ - array attoparsec base blaze-builder bytestring conduit - conduit-extra containers data-default exceptions ghc-prim mmorph - monad-control mtl primitive resourcet semigroups text transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/csv-conduit"; - description = "A flexible, fast, conduit-based CSV parser library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ctrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - }: - mkDerivation { - pname = "ctrie"; - version = "0.2"; - sha256 = "20e3a6d39f65ed1663ff5ab2c5431dc12b1c601d2133a74bc7bea1596ad9c814"; - libraryHaskellDepends = [ atomic-primops base hashable primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mcschroeder/ctrie"; - description = "Non-blocking concurrent map"; - license = stdenv.lib.licenses.mit; - }) {}; - "cubicbezier" = callPackage - ({ mkDerivation, base, containers, fast-math, integration, matrices - , microlens, microlens-mtl, microlens-th, mtl, stdenv, vector - , vector-space - }: - mkDerivation { - pname = "cubicbezier"; - version = "0.6.0.6"; - sha256 = "5a73fcde2b92ce138d924c323f04f48427acbfdc2c774ff0f032a10ea60afa68"; - libraryHaskellDepends = [ - base containers fast-math integration matrices microlens - microlens-mtl microlens-th mtl vector vector-space - ]; - doHaddock = false; - doCheck = false; - description = "Efficient manipulating of 2D cubic bezier curves"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cubicspline" = callPackage - ({ mkDerivation, base, hmatrix, safe, stdenv }: - mkDerivation { - pname = "cubicspline"; - version = "0.1.2"; - sha256 = "5b6ced9ca65b0d01ddceaf18605c8f915491d8d4a6aaef73475c4e8d4b1a9b79"; - libraryHaskellDepends = [ base hmatrix safe ]; - doHaddock = false; - doCheck = false; - description = "Natural cubic spline interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cuckoo-filter" = callPackage - ({ mkDerivation, aeson, array, base, bytestring, cereal, containers - , criterion, hashable, random, stdenv, time - }: - mkDerivation { - pname = "cuckoo-filter"; - version = "0.2.0.2"; - sha256 = "ac495fb589ba939688e7c163ec07f7c591e183278c8ddb4148baf2174746cafb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base bytestring cereal containers hashable time - ]; - executableHaskellDepends = [ - aeson array base bytestring cereal containers criterion hashable - random time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChrisCoffey/cuckoo-filter#readme"; - description = "Pure and impure Cuckoo Filter"; - license = stdenv.lib.licenses.mit; - }) {}; - "cue-sheet" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions - , megaparsec, mtl, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "cue-sheet"; - version = "2.0.1"; - sha256 = "71e42497329b9ebf74e94920ed2bd7a2ffe15e385906a37cbd5160d607a5575d"; - revision = "1"; - editedCabalFile = "0md9051a0jp4vkss15dyyf1w7ylpqmvzfdj9xb1rgj95s1x7cx2g"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers exceptions megaparsec mtl QuickCheck - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/cue-sheet"; - description = "Support for construction, rendering, and parsing of CUE sheets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "curl" = callPackage - ({ mkDerivation, base, bytestring, containers, curl, stdenv }: - mkDerivation { - pname = "curl"; - version = "1.3.8"; - sha256 = "9087c936bfcdb865bad3166baa3f12bf37acf076fa76010e3b5f82a1d485446e"; - revision = "1"; - editedCabalFile = "02sq2bjw5igc2k9f9ssh58k2ivii2xsvk5r00ky3cxh8j61qy86q"; - configureFlags = [ "-fnew-base" ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ curl ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding to libcurl"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) curl;}; - "currencies" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "currencies"; - version = "0.2.0.0"; - sha256 = "fb7292d4a5b9c4389690d1386fe24ce6a93eacbcfa952936ca6d4fd3afa98499"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alx741/currencies#readme"; - description = "Currencies representation, pretty printing and conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "currency" = callPackage - ({ mkDerivation, base, containers, hashable, iso3166-country-codes - , stdenv - }: - mkDerivation { - pname = "currency"; - version = "0.2.0.0"; - sha256 = "bcd517f3d9f47f0dd3c4e802143159239e4a90db2fc552be4a99d759ffe9417a"; - libraryHaskellDepends = [ - base containers hashable iso3166-country-codes - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/currency-haskell"; - description = "Types representing standard and non-standard currencies"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "cutter" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, spreadsheet - , stdenv, utility-ht - }: - mkDerivation { - pname = "cutter"; - version = "0.0"; - sha256 = "117319c36a20efea6d9edd0a8d902e37ec0386512f2eb8a6e5563411c00c6ac2"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception spreadsheet utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Cut files according to a position list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "cyclotomic" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv }: - mkDerivation { - pname = "cyclotomic"; - version = "1.0.1"; - sha256 = "505219393023460ae03dc743c11f652f66351defe30a3365011221aadeb55234"; - libraryHaskellDepends = [ arithmoi base containers ]; - doHaddock = false; - doCheck = false; - description = "A subfield of the complex numbers for exact calculation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "czipwith" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "czipwith"; - version = "1.0.1.2"; - sha256 = "41bf60844327cb9740c8f31a340ca561cdf4aabf335f26a16a875cf9e812ee9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/czipwith/"; - description = "CZipWith class and deriving via TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers }: - mkDerivation { - pname = "data-accessor"; - version = "0.2.3"; - sha256 = "1d583fd28b16093b408a741a1e05402280bb8f0e203c314dcf0f1391ffde3e38"; - libraryHaskellDepends = [ array base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Utilities for accessing and manipulating fields of records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-mtl" = callPackage - ({ mkDerivation, base, data-accessor, mtl, stdenv }: - mkDerivation { - pname = "data-accessor-mtl"; - version = "0.2.0.4"; - sha256 = "10cf9166e2e046076b7e58987718e57b31408e7cada9f26c8ff111e0379814c5"; - libraryHaskellDepends = [ base data-accessor mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in mtl State monad class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-accessor-transformers" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, transformers }: - mkDerivation { - pname = "data-accessor-transformers"; - version = "0.2.1.7"; - sha256 = "20c8823dc16c7ca6f55c64eb5564c9aae4b5565406987a046ded2ea73618e07a"; - libraryHaskellDepends = [ base data-accessor transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Record_access"; - description = "Use Accessor to access state in transformers State monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-binary-ieee754" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "data-binary-ieee754"; - version = "0.4.4"; - sha256 = "59975abed8f4caa602f0780c10a9b2493479e6feb71ad189bb10c3ac5678df0a"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/data-binary-ieee754/"; - description = "Parser/Serialiser for IEEE-754 floating-point values"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-bword" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "data-bword"; - version = "0.1.0.1"; - sha256 = "70f01f857865edcf1d1d20128b0202320b1635cc03b00954b6d1447cd699db7d"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-bword"; - description = "Extra operations on binary words of fixed length"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-checked" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "data-checked"; - version = "0.3"; - sha256 = "dc87d09c7c8587c9e6e372166e8de3b42c2cd804a493ff100c253e4d713c5676"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-checked"; - description = "Type-indexed runtime-checked properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-clist" = callPackage - ({ mkDerivation, base, deepseq, QuickCheck, stdenv }: - mkDerivation { - pname = "data-clist"; - version = "0.1.2.3"; - sha256 = "356910406b1615819fefd87ff50f425bc41bd935750cfaa567718fb8ab858ed7"; - libraryHaskellDepends = [ base deepseq QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sw17ch/data-clist"; - description = "Simple functional ring type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default" = callPackage - ({ mkDerivation, base, data-default-class - , data-default-instances-containers, data-default-instances-dlist - , data-default-instances-old-locale, stdenv - }: - mkDerivation { - pname = "data-default"; - version = "0.7.1.1"; - sha256 = "b0f95d279cd75cacaa8152a01590dc3460f7134f6840b37052abb3ba3cb2a511"; - libraryHaskellDepends = [ - base data-default-class data-default-instances-containers - data-default-instances-dlist data-default-instances-old-locale - ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-class" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-default-class"; - version = "0.1.2.0"; - sha256 = "4f01b423f000c3e069aaf52a348564a6536797f31498bb85c3db4bd2d0973e56"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A class for types with a default value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-containers" = callPackage - ({ mkDerivation, base, containers, data-default-class, stdenv }: - mkDerivation { - pname = "data-default-instances-containers"; - version = "0.0.1"; - sha256 = "a55e07af005c9815d82f3fc95e125db82994377c9f4a769428878701d4ec081a"; - libraryHaskellDepends = [ base containers data-default-class ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-dlist" = callPackage - ({ mkDerivation, base, data-default-class, dlist, stdenv }: - mkDerivation { - pname = "data-default-instances-dlist"; - version = "0.0.1"; - sha256 = "7d683711cbf08abd7adcd5ac2be825381308d220397315a5570fe61b719b5959"; - libraryHaskellDepends = [ base data-default-class dlist ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in dlist"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-default-instances-old-locale" = callPackage - ({ mkDerivation, base, data-default-class, old-locale, stdenv }: - mkDerivation { - pname = "data-default-instances-old-locale"; - version = "0.0.1"; - sha256 = "60d3b02922958c4908d7bf2b24ddf61511665745f784227d206745784b0c0802"; - libraryHaskellDepends = [ base data-default-class old-locale ]; - doHaddock = false; - doCheck = false; - description = "Default instances for types in old-locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-diverse" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, stdenv - , tagged - }: - mkDerivation { - pname = "data-diverse"; - version = "4.7.0.0"; - sha256 = "c3cd9658d59b4a1a1862d0c5bc91e04146f5bf111e8469a050ea6ae1265a8b31"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/data-diverse#readme"; - description = "Extensible records and polymorphic variants"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-dword" = callPackage - ({ mkDerivation, base, data-bword, ghc-prim, hashable, stdenv - , template-haskell - }: - mkDerivation { - pname = "data-dword"; - version = "0.3.1.3"; - sha256 = "0b7545ea720a7a8001a22792eff2d254d434744e04bba624c5ddf4a857478fd0"; - libraryHaskellDepends = [ - base data-bword ghc-prim hashable template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-dword"; - description = "Stick two binary words together to get a bigger one"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-endian" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-endian"; - version = "0.1.1"; - sha256 = "8c1d4f30374f8331d31f4d7c6b39284331b6b9436e7b50f86547417bd05f2ac0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-endian"; - description = "Endian-sensitive data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-fix" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-fix"; - version = "0.2.0"; - sha256 = "7e5718055cb27ccac1e0bf25be70ba9bfe2b0d021cfe0a57a163355830341392"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/anton-k/data-fix"; - description = "Fixpoint data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-has" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-has"; - version = "0.3.0.0"; - sha256 = "3c25d403605ecb196df53c8c8fb7829cd7b6a88e0ea04b88038602ba7faa7379"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/data-has"; - description = "Simple extensible product"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-interval" = callPackage - ({ mkDerivation, base, containers, deepseq, extended-reals - , hashable, lattices, stdenv - }: - mkDerivation { - pname = "data-interval"; - version = "2.0.1"; - sha256 = "5331e2df31eba3f5eb1d097a38fc5428dae56af0c0a7d71bd00491bcf81ee76f"; - libraryHaskellDepends = [ - base containers deepseq extended-reals hashable lattices - ]; - doHaddock = false; - doCheck = false; - description = "Interval datatype, interval arithmetic and interval-based containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-inttrie" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-inttrie"; - version = "0.1.4"; - sha256 = "6b3a7d8d49b0676c09486ac08107b0e5a6dfd66d9627443be440e9fd11e7bd54"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luqui/data-inttrie"; - description = "A simple lazy, infinite trie from integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-lens-light" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell }: - mkDerivation { - pname = "data-lens-light"; - version = "0.1.2.2"; - sha256 = "72d3e6a73bde4a32eccd2024eb58ca96da962d4b659d76baed4ab37f28dcb36e"; - libraryHaskellDepends = [ base mtl template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/data-lens-light"; - description = "Simple lenses, minimum dependencies"; - license = stdenv.lib.licenses.mit; - }) {}; - "data-memocombinators" = callPackage - ({ mkDerivation, array, base, data-inttrie, stdenv }: - mkDerivation { - pname = "data-memocombinators"; - version = "0.5.1"; - sha256 = "b4341d2024b84a43f92edc39f6d6766bf4f0f00a40fd834b9f6f8e987b606ed7"; - libraryHaskellDepends = [ array base data-inttrie ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luqui/data-memocombinators"; - description = "Combinators for building memo tables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-or" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-or"; - version = "1.0.0.5"; - sha256 = "9defb64f1c7210460a940beb7f32ba1c79f363fbf3a5bd126feb876930c6e672"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A data type for non-exclusive disjunction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ordlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "data-ordlist"; - version = "0.4.7.0"; - sha256 = "6f6c1e7a9a9155ad78ca78cb9abd6f7e2e1c78b3e549b179dc0874e6428f490d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Set and bag operations on ordered lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-ref" = callPackage - ({ mkDerivation, base, data-accessor, stdenv, stm, transformers }: - mkDerivation { - pname = "data-ref"; - version = "0.0.2"; - sha256 = "7b14399e9d8df50ed7ee3b10ea2ea4b7fdd8922896da000b171eac742ffb0f77"; - libraryHaskellDepends = [ base data-accessor stm transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Mutable_variable"; - description = "Unify STRef and IORef in plain Haskell 98"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-reify" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "data-reify"; - version = "0.6.1"; - sha256 = "61350a1e96cb1276c2b6b8b13fa1bade5d4e63c702509a3f5e90bbc19ad9b202"; - revision = "1"; - editedCabalFile = "0ixlibqrz7fd4bg9vnnd431a9kqvz4ajx8sbgyvpx9l2yjrabwzp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://ku-fpg.github.io/software/data-reify/"; - description = "Reify a recursive data structure into an explicit graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-serializer" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, data-endian - , parsers, semigroups, split, stdenv - }: - mkDerivation { - pname = "data-serializer"; - version = "0.3.4.1"; - sha256 = "d33e4c43079ca47871220d1f04def858f5f18a475cd26a14f3b5631ff6fca6d5"; - libraryHaskellDepends = [ - base binary bytestring cereal data-endian parsers semigroups split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-serializer"; - description = "Common API for serialization libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-textual" = callPackage - ({ mkDerivation, base, bytestring, parsers, stdenv, text - , text-latin1, text-printer - }: - mkDerivation { - pname = "data-textual"; - version = "0.3.0.3"; - sha256 = "4b9ee8ccd03f24203dd9307bf9aa67180ff0f07b45c3a01e33d8185ff275ec9a"; - libraryHaskellDepends = [ - base bytestring parsers text text-latin1 text-printer - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/data-textual"; - description = "Human-friendly textual representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "data-tree-print" = callPackage - ({ mkDerivation, base, pretty, stdenv, syb }: - mkDerivation { - pname = "data-tree-print"; - version = "0.1.0.2"; - sha256 = "c3ef24d803946a3caf0ff0e51f0c0b9f49055d7dc790518ad518d568d5195002"; - revision = "1"; - editedCabalFile = "1r6dnvc7d50q5p9fdqqwfvi7kwn7r89319plj7v284sjai9b6ld4"; - libraryHaskellDepends = [ base pretty syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/data-tree-print"; - description = "Print Data instances as a nested tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "datadog" = callPackage - ({ mkDerivation, aeson, auto-update, base, buffer-builder - , bytestring, containers, dlist, http-client, http-client-tls - , http-types, lens, lifted-base, monad-control, network, old-locale - , stdenv, text, time, transformers-base, unliftio - , unordered-containers, vector - }: - mkDerivation { - pname = "datadog"; - version = "0.2.4.0"; - sha256 = "c462b472ac18872fff6ffdd9cbb88195fe48c0f6873ac3590ccfec9c17df6a18"; - libraryHaskellDepends = [ - aeson auto-update base buffer-builder bytestring containers dlist - http-client http-client-tls http-types lens lifted-base - monad-control network old-locale text time transformers-base - unliftio unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/datadog"; - description = "Datadog client for Haskell. Supports both the HTTP API and StatsD."; - license = stdenv.lib.licenses.mit; - }) {}; - "dataurl" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, bytestring - , stdenv, text - }: - mkDerivation { - pname = "dataurl"; - version = "0.1.0.0"; - sha256 = "b1e72b48dbe72520f0b43b06ae75cb025e9750213982583f527e16b605660fb2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/agrafix/dataurl#readme"; - description = "Handle data-urls"; - license = stdenv.lib.licenses.mit; - }) {}; - "dbus" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, containers - , deepseq, exceptions, filepath, lens, network, parsec, random - , split, stdenv, template-haskell, text, th-lift, transformers - , unix, vector, xml-conduit, xml-types - }: - mkDerivation { - pname = "dbus"; - version = "1.2.11"; - sha256 = "da2e75448edc1529ae1bbe26bb90a633967841f2a359b359f799aa48227d0a94"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-dbus#readme"; - description = "A client library for the D-Bus IPC system"; - license = stdenv.lib.licenses.asl20; - }) {}; - "debian-build" = callPackage - ({ mkDerivation, base, directory, filepath, process, split, stdenv - , transformers - }: - mkDerivation { - pname = "debian-build"; - version = "0.10.2.0"; - sha256 = "5dd8af7f38780b51ad0dd13d2710f950b3d385b39b7a5b02fd5eeccd4ae61afb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base directory filepath process split transformers - ]; - executableHaskellDepends = [ base filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://twitter.com/khibino/"; - description = "Debian package build sequence tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "debug-trace-var" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, unicode-show }: - mkDerivation { - pname = "debug-trace-var"; - version = "0.2.0"; - sha256 = "174f79d31d905c99adc880dd79899b3f335e1a7c552a7bcff8664abbffb6b489"; - libraryHaskellDepends = [ base template-haskell unicode-show ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/debug-trace-var#readme"; - description = "You do not have to write variable names twice in Debug.Trace"; - license = stdenv.lib.licenses.mit; - }) {}; - "dec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dec"; - version = "0.0.3"; - sha256 = "d9b8701244e77354ba7800f290c05f705994e2cc3a6c09b6c02d9c212add0bf9"; - revision = "1"; - editedCabalFile = "09dkybwqmayf2a1sn94vmmma2xfvf07bw7grhcyjm7lq9jpxv8y0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Decidable propositions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "declarative" = callPackage - ({ mkDerivation, base, hasty-hamiltonian, kan-extensions, lens - , mcmc-types, mighty-metropolis, mwc-probability, pipes, primitive - , speedy-slice, stdenv, transformers - }: - mkDerivation { - pname = "declarative"; - version = "0.5.2"; - sha256 = "1ea8cf5eb0283ed9d9a7e1d46e5386960587c1671f7ce568d6eaf1d1b8ba9a04"; - libraryHaskellDepends = [ - base hasty-hamiltonian kan-extensions lens mcmc-types - mighty-metropolis mwc-probability pipes primitive speedy-slice - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/declarative"; - description = "DIY Markov Chains"; - license = stdenv.lib.licenses.mit; - }) {}; - "deepseq-generics" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "deepseq-generics"; - version = "0.2.0.0"; - sha256 = "b0b3ef5546c0768ef9194519a90c629f8f2ba0348487e620bb89d512187c7c9d"; - revision = "4"; - editedCabalFile = "0928s2qnbqsjzrm94x88rvmvbigfmhcyp4m73gw6asinp2qg1kii"; - libraryHaskellDepends = [ base deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/deepseq-generics"; - description = "GHC.Generics-based Control.DeepSeq.rnf implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "deferred-folds" = callPackage - ({ mkDerivation, base, bytestring, containers, foldl, hashable - , primitive, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "deferred-folds"; - version = "0.9.10.1"; - sha256 = "1bea510e31d1d5a8ba2068db468922df3ac0f13966aa3ae70bb1f2130f639c96"; - libraryHaskellDepends = [ - base bytestring containers foldl hashable primitive transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/deferred-folds"; - description = "Abstractions over deferred folds"; - license = stdenv.lib.licenses.mit; - }) {}; - "dejafu" = callPackage - ({ mkDerivation, base, concurrency, containers, contravariant - , deepseq, exceptions, leancheck, profunctors, random, stdenv - , transformers - }: - mkDerivation { - pname = "dejafu"; - version = "2.1.0.1"; - sha256 = "0fda620212d6d010661aa6133a166cf63aa7bf174e4d0ca236a4f13e892b3523"; - libraryHaskellDepends = [ - base concurrency containers contravariant deepseq exceptions - leancheck profunctors random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "A library for unit-testing concurrent programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "dense-linear-algebra" = callPackage - ({ mkDerivation, base, deepseq, math-functions, primitive, stdenv - , vector, vector-algorithms, vector-binary-instances - , vector-th-unbox - }: - mkDerivation { - pname = "dense-linear-algebra"; - version = "0.1.0.0"; - sha256 = "f7777a7931b40332ebbc716f64abb63697cbab0128e5c1228d47760c5597f2d4"; - libraryHaskellDepends = [ - base deepseq math-functions primitive vector vector-algorithms - vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - description = "Simple and incomplete pure haskell implementation of linear algebra"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "deque" = callPackage - ({ mkDerivation, base, hashable, mtl, stdenv, strict-list }: - mkDerivation { - pname = "deque"; - version = "0.4.3"; - sha256 = "b76a0e7d8a5f3b12ca8cf5a583f3e8e4333c7860f56b1e921a3fdfe959e557a5"; - libraryHaskellDepends = [ base hashable mtl strict-list ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/deque"; - description = "Double-ended queues"; - license = stdenv.lib.licenses.mit; - }) {}; - "deriveJsonNoPrefix" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "deriveJsonNoPrefix"; - version = "0.1.0.1"; - sha256 = "1ae39ca61cdb6df1630a3b5e532a139767b0fc1b5fb5c1cd66603bc4020a93ff"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/deriveJsonNoPrefix"; - description = "Derive ToJSON/FromJSON instances in a more prefix-friendly manner"; - license = stdenv.lib.licenses.asl20; - }) {}; - "deriving-compat" = callPackage - ({ mkDerivation, base, containers, ghc-boot-th, ghc-prim, stdenv - , template-haskell, th-abstraction, transformers - , transformers-compat - }: - mkDerivation { - pname = "deriving-compat"; - version = "0.5.8"; - sha256 = "39ddf88affc68dbed3b6835c270d75bee44a667237c50fc62f2371c0afe7f6b7"; - libraryHaskellDepends = [ - base containers ghc-boot-th ghc-prim template-haskell - th-abstraction transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/deriving-compat"; - description = "Backports of GHC deriving extensions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "derulo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "derulo"; - version = "1.0.7"; - sha256 = "c5f76fc694754c9ced4e9d4c1a79f65f0602996a3f9b76d9d32a0160dfd7045e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/derulo#readme"; - description = "Parse and render JSON simply"; - license = stdenv.lib.licenses.mit; - }) {}; - "detour-via-sci" = callPackage - ({ mkDerivation, aeson, base, cassava, newtype, scientific - , siggy-chardust, stdenv, template-haskell - }: - mkDerivation { - pname = "detour-via-sci"; - version = "1.0.0"; - sha256 = "451e1194f7bf6a7dea02379679c790313cc20423271fd8e98f164c942e3d81e4"; - revision = "1"; - editedCabalFile = "00dj8vf9gg9ww37sir6mblf3xhcpam8qgfz5bfana23arhf2cixj"; - libraryHaskellDepends = [ - aeson base cassava newtype scientific siggy-chardust - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/detour-via-sci#readme"; - description = "JSON and CSV encoding for rationals as decimal point numbers"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "dhall" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, atomic-write - , base, bytestring, case-insensitive, cborg, cborg-json, containers - , contravariant, cryptonite, data-fix, deepseq, Diff, directory - , dotgen, either, exceptions, filepath, hashable, haskeline - , http-client, http-client-tls, http-types, lens-family-core - , megaparsec, memory, mtl, network-uri, optparse-applicative - , parsers, pretty-simple, prettyprinter - , prettyprinter-ansi-terminal, profunctors, repline, scientific - , serialise, stdenv, template-haskell, text, th-lift-instances - , transformers, transformers-compat, unordered-containers - , uri-encode, vector - }: - mkDerivation { - pname = "dhall"; - version = "1.29.0"; - sha256 = "c73e59717ff15707c77f3ff582f5adf68fc7abc68dbf70aa77ce65333637e7f6"; - revision = "2"; - editedCabalFile = "1qksvk63vmypqcd9hasacmqw7gsqcggs5lk85x7w2731mh3c3sa8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal atomic-write base bytestring - case-insensitive cborg cborg-json containers contravariant - cryptonite data-fix deepseq Diff directory dotgen either exceptions - filepath hashable haskeline http-client http-client-tls http-types - lens-family-core megaparsec memory mtl network-uri - optparse-applicative parsers pretty-simple prettyprinter - prettyprinter-ansi-terminal profunctors repline scientific - serialise template-haskell text th-lift-instances transformers - transformers-compat unordered-containers uri-encode vector - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A configuration language guaranteed to terminate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-bash" = callPackage - ({ mkDerivation, base, bytestring, containers, dhall - , neat-interpolation, optparse-generic, shell-escape, stdenv, text - }: - mkDerivation { - pname = "dhall-bash"; - version = "1.0.27"; - sha256 = "fd22d200d032bd79fc8eaff05098bc793a460dd29a9b0790360fb987dd28ae56"; - revision = "1"; - editedCabalFile = "1w4hbk6xx04q0f1sxgwmp3h5s3cwc3w22vbvdxz052nhdcj3sigw"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers dhall neat-interpolation shell-escape - text - ]; - executableHaskellDepends = [ - base bytestring dhall optparse-generic text - ]; - doHaddock = false; - doCheck = false; - description = "Compile Dhall to Bash"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-json" = callPackage - ({ mkDerivation, aeson, aeson-pretty, aeson-yaml, ansi-terminal - , base, bytestring, containers, dhall, exceptions, filepath - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal - , scientific, stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "dhall-json"; - version = "1.6.1"; - sha256 = "3ce9b0a9d3a946beb021bb42589426ceb4c44cf5f104e5bdf120659ccb5109c9"; - revision = "1"; - editedCabalFile = "07h7vldqd623y7jf15j87mhs3nnbwl3a0121ajqc56qc0vvpgywp"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty aeson-yaml base bytestring containers dhall - exceptions filepath optparse-applicative prettyprinter scientific - text unordered-containers vector - ]; - executableHaskellDepends = [ - aeson aeson-pretty ansi-terminal base bytestring dhall exceptions - optparse-applicative prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - description = "Convert between Dhall and JSON or YAML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dhall-yaml" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, dhall - , dhall-json, exceptions, HsYAML, HsYAML-aeson - , optparse-applicative, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text, vector - }: - mkDerivation { - pname = "dhall-yaml"; - version = "1.0.1"; - sha256 = "4ed4351c1850363607ed025a035f973db5c375b4650da692f69652837935a3de"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring dhall dhall-json HsYAML HsYAML-aeson - optparse-applicative text vector - ]; - executableHaskellDepends = [ - aeson ansi-terminal base bytestring dhall dhall-json exceptions - optparse-applicative prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - description = "Convert between Dhall and YAML"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "di-core" = callPackage - ({ mkDerivation, base, containers, safe-exceptions, stdenv, stm - , time - }: - mkDerivation { - pname = "di-core"; - version = "1.0.4"; - sha256 = "55634d9afebfa94f5573471ec846f23fbc3716ae524ebee58f27a7f99b153273"; - libraryHaskellDepends = [ - base containers safe-exceptions stm time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "Typeful hierarchical structured logging without monad towers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "di-monad" = callPackage - ({ mkDerivation, base, containers, di-core, exceptions, mtl, pipes - , stdenv, stm, transformers - }: - mkDerivation { - pname = "di-monad"; - version = "1.3.1"; - sha256 = "f5ddeae5a199f6e83abdc989a2df8408e761a798646eb7ca5944f7a3383416a4"; - libraryHaskellDepends = [ - base containers di-core exceptions mtl pipes stm transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/di"; - description = "mtl flavoured typeful hierarchical structured logging for di-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams" = callPackage - ({ mkDerivation, diagrams-contrib, diagrams-core, diagrams-lib - , diagrams-svg, stdenv - }: - mkDerivation { - pname = "diagrams"; - version = "1.4"; - sha256 = "8608f6fa682b8c43b9fbe7c42c033c7a6de0680bd7383f6a81ea8bca37999139"; - libraryHaskellDepends = [ - diagrams-contrib diagrams-core diagrams-lib diagrams-svg - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Embedded domain-specific language for declarative vector graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-contrib" = callPackage - ({ mkDerivation, base, circle-packing, colour, containers - , cubicbezier, data-default, data-default-class, diagrams-core - , diagrams-lib, diagrams-solve, force-layout, hashable, lens - , linear, mfsolve, MonadRandom, monoid-extras, mtl, mtl-compat - , parsec, random, semigroups, split, stdenv, text - }: - mkDerivation { - pname = "diagrams-contrib"; - version = "1.4.4"; - sha256 = "35b08328677b4d49e8b54c46e42c6f8e8a308ef698995d3f45e03c4c4fbe7210"; - libraryHaskellDepends = [ - base circle-packing colour containers cubicbezier data-default - data-default-class diagrams-core diagrams-lib diagrams-solve - force-layout hashable lens linear mfsolve MonadRandom monoid-extras - mtl mtl-compat parsec random semigroups split text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Collection of user contributions to diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-core" = callPackage - ({ mkDerivation, adjunctions, base, containers, distributive - , dual-tree, lens, linear, monoid-extras, mtl, profunctors - , semigroups, stdenv, unordered-containers - }: - mkDerivation { - pname = "diagrams-core"; - version = "1.4.2"; - sha256 = "83d0074c3338829f8d52d43d3837ae918ceba5c1ae573b6077e40de1f720eb61"; - libraryHaskellDepends = [ - adjunctions base containers distributive dual-tree lens linear - monoid-extras mtl profunctors semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Core libraries for diagrams EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-lib" = callPackage - ({ mkDerivation, active, adjunctions, array, base, bytestring - , cereal, colour, containers, data-default-class, diagrams-core - , diagrams-solve, directory, distributive, dual-tree, exceptions - , filepath, fingertree, fsnotify, hashable, intervals, JuicyPixels - , lens, linear, monoid-extras, mtl, optparse-applicative, process - , profunctors, semigroups, stdenv, tagged, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "diagrams-lib"; - version = "1.4.3"; - sha256 = "c6fb8dd62f8baacadab2d17b3c36e3bb0b3ae7920eeeeeea46e78eeba567193f"; - libraryHaskellDepends = [ - active adjunctions array base bytestring cereal colour containers - data-default-class diagrams-core diagrams-solve directory - distributive dual-tree exceptions filepath fingertree fsnotify - hashable intervals JuicyPixels lens linear monoid-extras mtl - optparse-applicative process profunctors semigroups tagged text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://diagrams.github.io"; - description = "Embedded domain-specific language for declarative graphics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-postscript" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, hashable, lens, monoid-extras, mtl - , semigroups, split, statestack, stdenv - }: - mkDerivation { - pname = "diagrams-postscript"; - version = "1.5"; - sha256 = "ea3ebfd9e013f1930c5e55060ba142cbf0457b97dfec205cde326b8258454502"; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib hashable lens monoid-extras mtl semigroups split - statestack - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Postscript backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-rasterific" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default-class - , diagrams-core, diagrams-lib, file-embed, filepath, FontyFruity - , hashable, JuicyPixels, lens, mtl, optparse-applicative - , Rasterific, stdenv - }: - mkDerivation { - pname = "diagrams-rasterific"; - version = "1.4.2"; - sha256 = "54b887e60216216ee63d2b089e4afd807e0d49246d7bb7b2d3c3a6f286d73998"; - libraryHaskellDepends = [ - base bytestring containers data-default-class diagrams-core - diagrams-lib file-embed filepath FontyFruity hashable JuicyPixels - lens mtl optparse-applicative Rasterific - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "Rasterific backend for diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-solve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "diagrams-solve"; - version = "0.1.1"; - sha256 = "a41f5f410b10f162b1e5c07bd4ca3305544870ff1314ae4f5824c83a31644f9d"; - revision = "5"; - editedCabalFile = "1yl8cs05fzqcz49p601am1ij66m9pa70yamhfxgcvya2pf8nimlf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams"; - description = "Pure Haskell solver routines used by diagrams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "diagrams-svg" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, colour - , containers, diagrams-core, diagrams-lib, filepath, hashable - , JuicyPixels, lens, monoid-extras, mtl, optparse-applicative - , semigroups, split, stdenv, svg-builder, text - }: - mkDerivation { - pname = "diagrams-svg"; - version = "1.4.3"; - sha256 = "68bebe2fefc13d6af9efb305d55d99310bd93224bc4a4e68b3f959073e335bfb"; - libraryHaskellDepends = [ - base base64-bytestring bytestring colour containers diagrams-core - diagrams-lib filepath hashable JuicyPixels lens monoid-extras mtl - optparse-applicative semigroups split svg-builder text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/diagrams/"; - description = "SVG backend for diagrams drawing EDSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dictionary-sharing" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dictionary-sharing"; - version = "0.1.0.0"; - sha256 = "8c3b5184d5d6056433d51a49c5402e4ab7b0260073d5342685b8e141d2be5a01"; - revision = "3"; - editedCabalFile = "1mn7jcc7h3b8f1pn9zigqp6mc2n0qb66lms5qnrx4zswdv5w9439"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Sharing/memoization of class members"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "digest" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "digest"; - version = "0.0.1.2"; - sha256 = "641717eb16392abf8965986a9e8dc21eebf1d97775bbb6923c7b7f8fee17fe11"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Various cryptographic hashes for bytestrings; CRC32 and Adler32 for now"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "digits" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "digits"; - version = "0.3.1"; - sha256 = "a8499c9745dcf8a4e6c48594f555e6c6276e8d91c457dcc562a370ccadcd6a2c"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Converts integers to lists of digits and back"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dimensional" = callPackage - ({ mkDerivation, base, deepseq, exact-pi, ieee754, numtype-dk - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "dimensional"; - version = "1.3"; - sha256 = "29a32551cfc4819daefa19a3f345923ac2265b2a8c528ce467777032423d9344"; - revision = "2"; - editedCabalFile = "10xkgwjb9kqa95jck3b9wa3sz6vcb2lkygfmcqqz6hz6j65l79r8"; - libraryHaskellDepends = [ - base deepseq exact-pi ieee754 numtype-dk semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/dimensional/"; - description = "Statically checked physical dimensions, using Type Families and Data Kinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "directory-tree" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "directory-tree"; - version = "0.12.1"; - sha256 = "e2084495b3a226cf54d949635c86fc14e89daa09d86cce39e3c3cf898ae6e517"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://brandon.si/code/directory-tree-module-released/"; - description = "A simple directory-like tree datatype, with useful IO functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "discount" = callPackage - ({ mkDerivation, base, bytestring, markdown, stdenv, text }: - mkDerivation { - pname = "discount"; - version = "0.1.1"; - sha256 = "e99cb7fdd1896dd1e525616597f936c1305a657cea1ef82cc0b3dcfe5afa34e0"; - libraryHaskellDepends = [ base bytestring text ]; - librarySystemDepends = [ markdown ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lightquake/discount"; - description = "Haskell bindings to the discount Markdown library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) markdown;}; - "disk-free-space" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "disk-free-space"; - version = "0.1.0.1"; - sha256 = "f17a4f9c3b41083ccbb6c11b2debdbc705f86097b7459ff0f46cc01d2692381f"; - revision = "3"; - editedCabalFile = "0x0wjycr3rhw9vcq51b4sz8cf7mcvx7whhywv72y25r9385lxb3i"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/disk-free-space"; - description = "Retrieve information about disk space usage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributed-closure" = callPackage - ({ mkDerivation, async, base, binary, bytestring, constraints - , stdenv, syb, template-haskell - }: - mkDerivation { - pname = "distributed-closure"; - version = "0.4.2.0"; - sha256 = "16d0b35bea1aa1d43d4935d1569b3f3894febd66a5834129b8699437d6a85750"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring constraints syb template-haskell - ]; - executableHaskellDepends = [ async base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/distributed-closure"; - description = "Serializable closures for distributed programming"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-nixpkgs" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , deepseq, language-nix, lens, pretty, process, split, stdenv - }: - mkDerivation { - pname = "distribution-nixpkgs"; - version = "1.3.1"; - sha256 = "0fd50ace24a34d25c136c32d428335e2d2cd60e44e2a50e3b5318c047fc42384"; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers deepseq language-nix lens - pretty process split - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-nixpkgs"; - description = "Types and functions to manipulate the Nixpkgs distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distribution-opensuse" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , deepseq, Diff, extra, foldl, hashable, hsemail, mtl, parsec-class - , pretty, stdenv, text, time, turtle - }: - mkDerivation { - pname = "distribution-opensuse"; - version = "1.1.1"; - sha256 = "067f08a458aed98e4a67e80ffc42edf99393a861a0d0ecb1950d913d15a332b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring containers deepseq Diff extra foldl - hashable hsemail mtl parsec-class pretty text time turtle - ]; - executableHaskellDepends = [ base containers text turtle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/distribution-opensuse/"; - description = "Types, functions, and tools to manipulate the openSUSE distribution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "distributive" = callPackage - ({ mkDerivation, base, base-orphans, Cabal, cabal-doctest, stdenv - , tagged, transformers - }: - mkDerivation { - pname = "distributive"; - version = "0.6.1"; - sha256 = "7749b1d9b815e3ba558d1daebac9346610e352bb0dfe9720cc686eb2fef7caf2"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base base-orphans tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/distributive/"; - description = "Distributive functors -- Dual to Traversable"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dl-fedora" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath - , http-directory, http-types, optparse-applicative, regex-posix - , simple-cmd, simple-cmd-args, stdenv, text, time, unix - , xdg-userdirs - }: - mkDerivation { - pname = "dl-fedora"; - version = "0.7.2"; - sha256 = "f78c9ace19628b8c8a1e896701a8b55fee4a9cc568decdec35d8a97beb5a4228"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring directory filepath http-directory http-types - optparse-applicative regex-posix simple-cmd simple-cmd-args text - time unix xdg-userdirs - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/dl-fedora"; - description = "Fedora image download tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "dlist" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "dlist"; - version = "0.8.0.7"; - sha256 = "a3c06a200f9756329b09d415e7733b7204dda76ce07783e6457d0ab9ffbcba2c"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/spl/dlist"; - description = "Difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-instances" = callPackage - ({ mkDerivation, base, dlist, semigroups, stdenv }: - mkDerivation { - pname = "dlist-instances"; - version = "0.1.1.1"; - sha256 = "d14a10c06f52fb412b2c1066d729f5534aa43204221e7ba7d81d935c44ce4f5b"; - libraryHaskellDepends = [ base dlist semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gregwebs/dlist-instances"; - description = "Difference lists instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dlist-nonempty" = callPackage - ({ mkDerivation, base, base-compat, deepseq, dlist, semigroupoids - , stdenv - }: - mkDerivation { - pname = "dlist-nonempty"; - version = "0.1.1"; - sha256 = "40e8a64c979ca07b4f67a38878d1d13c1127fe2d1ad6b2b4daff0ee2dbd54b33"; - revision = "7"; - editedCabalFile = "0cp5v4zfkx7mz8cc8hgjx0v0a37y4fnld3r59i6mb00ilzrh1nhk"; - libraryHaskellDepends = [ - base base-compat deepseq dlist semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/dlist-nonempty"; - description = "Non-empty difference lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dns" = callPackage - ({ mkDerivation, array, async, attoparsec, auto-update, base - , base16-bytestring, base64-bytestring, bytestring, containers - , cryptonite, hourglass, iproute, mtl, network, psqueues, stdenv - }: - mkDerivation { - pname = "dns"; - version = "4.0.1"; - sha256 = "20cdb4519f19becd5ba321c5acfe03fd3c16b298a78404530b65f10ddb4a68cb"; - libraryHaskellDepends = [ - array async attoparsec auto-update base base16-bytestring - base64-bytestring bytestring containers cryptonite hourglass - iproute mtl network psqueues - ]; - doHaddock = false; - doCheck = false; - testTarget = "spec"; - description = "DNS library in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "do-list"; - version = "1.0.1"; - sha256 = "b377193461b0ad7a81f9e66bcf10f8838b6f1e39f4a5de3b2e2f45c749c5b694"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tserduke/do-list#readme"; - description = "Do notation for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "do-notation" = callPackage - ({ mkDerivation, base, indexed, stdenv }: - mkDerivation { - pname = "do-notation"; - version = "0.1.0.2"; - sha256 = "c9f3783d4b8ede05bf64a9dc7c594306b40fb05a68ae7f4c21dafec52fbc7bf5"; - libraryHaskellDepends = [ base indexed ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/do-notation#readme"; - description = "Generalize do-notation to work on monads and indexed monads simultaneously"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dockerfile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dockerfile"; - version = "0.2.0"; - sha256 = "97a1992559bf510a7b17e5678fd29e3b5c4a9059a0483e4ab36ef8ec723fb5aa"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/dockerfile#readme"; - description = "A Haskell DSL for generating Dockerfiles"; - license = stdenv.lib.licenses.mit; - }) {}; - "doclayout" = callPackage - ({ mkDerivation, base, mtl, safe, stdenv, text }: - mkDerivation { - pname = "doclayout"; - version = "0.2.0.1"; - sha256 = "5361bb86ef97e4fbf351ef50089566f651dfcd6cd34e8e588ee154e2c072df38"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base mtl safe text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doclayout"; - description = "A prettyprinting library for laying out text documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctemplates" = callPackage - ({ mkDerivation, aeson, base, containers, doclayout, filepath - , HsYAML, mtl, parsec, safe, scientific, stdenv, text - , text-conversions, unordered-containers, vector - }: - mkDerivation { - pname = "doctemplates"; - version = "0.8"; - sha256 = "d61a1a30c7c10a78d5d61f3a8883d2fa95116674be1493ad819e01b86e83167e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base containers doclayout filepath HsYAML mtl parsec safe - scientific text text-conversions unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/doctemplates#readme"; - description = "Pandoc-style document templates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doctest" = callPackage - ({ mkDerivation, base, base-compat, code-page, deepseq, directory - , filepath, ghc, ghc-paths, process, stdenv, syb, transformers - }: - mkDerivation { - pname = "doctest"; - version = "0.16.2"; - sha256 = "4fa5419bebf65094149f02bac9c67ffb81480d883ff0efac167d95f89d646452"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - executableHaskellDepends = [ - base base-compat code-page deepseq directory filepath ghc ghc-paths - process syb transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/doctest#readme"; - description = "Test interactive Haskell examples"; - license = stdenv.lib.licenses.mit; - }) {}; - "doctest-discover" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory, doctest - , filepath, stdenv - }: - mkDerivation { - pname = "doctest-discover"; - version = "0.2.0.0"; - sha256 = "a953aa50837e52efc766a77e382c2be2acbc887fa6dadbc54b756f59d6c49ec8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - executableHaskellDepends = [ - aeson base bytestring directory doctest filepath - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/karun012/doctest-discover"; - description = "Easy way to run doctests via cabal"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "doctest-driver-gen" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doctest-driver-gen"; - version = "0.3.0.2"; - sha256 = "5840c26d699339188e75ee0807778d1f011ea075f37a2a1c975ea1daae4b78f6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Hexirp/doctest-driver-gen#readme"; - description = "Generate driver file for doctest's cabal integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "doldol" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "doldol"; - version = "0.4.1.2"; - sha256 = "6553dcb9fded77f0f0655264a4b071e503690a467b46921679556cef5da43e65"; - revision = "1"; - editedCabalFile = "0xwbdrfzd6z3nwkgnav2drisw2sn464ggkz8fid58cym9hbfpl47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/QuietJoon/doldol/"; - description = "Flag packer & handler for flaggable data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dotenv" = callPackage - ({ mkDerivation, base, base-compat, containers, directory - , exceptions, megaparsec, optparse-applicative, process, stdenv - , text, transformers, yaml - }: - mkDerivation { - pname = "dotenv"; - version = "0.8.0.4"; - sha256 = "444a40b7a27425d50ea11803fe42712437f86797a25fd6c29f7ff6fa4352b815"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat containers directory exceptions megaparsec process - text transformers yaml - ]; - executableHaskellDepends = [ - base base-compat megaparsec optparse-applicative process text - transformers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/dotenv-hs"; - description = "Loads environment variables from dotenv files"; - license = stdenv.lib.licenses.mit; - }) {}; - "dotgen" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dotgen"; - version = "0.4.2"; - sha256 = "cf0de20a435d74aeb9a32b8bcb3ebfa1b6659ac3f26edefe2df9e1aaf1481891"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/dotgen"; - description = "A simple interface for building .dot graph files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dotnet-timespan" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dotnet-timespan"; - version = "0.0.1.0"; - sha256 = "d8ca8dffbc916ff5139d6f0df4a22c947ab5f996c376f1ab8c2e120789209ac3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/YoEight/dotnet-timespan"; - description = ".NET TimeSpan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "double-conversion" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv, text }: - mkDerivation { - pname = "double-conversion"; - version = "2.0.2.0"; - sha256 = "44cde172395401169e844d6791b6eb0ef2c2e55a08de8dda96551cfe029ba26b"; - libraryHaskellDepends = [ base bytestring ghc-prim text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/double-conversion"; - description = "Fast conversion between double precision floating point and text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "drinkery" = callPackage - ({ mkDerivation, base, exceptions, mtl, stdenv, transformers }: - mkDerivation { - pname = "drinkery"; - version = "0.4"; - sha256 = "3860b076f71e05179c7adfc988baf90cf85d0206cfd6a0945e5b354827d8b5b0"; - libraryHaskellDepends = [ base exceptions mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/drinkery#readme"; - description = "Boozy streaming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dsp" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "dsp"; - version = "0.2.5"; - sha256 = "8532af3176819369ae0863170daa7c83de931fff7aff19d362e70ed701356ad2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/DSP"; - description = "Haskell Digital Signal Processing"; - license = "GPL"; - }) {}; - "dual" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "dual"; - version = "0.1.1.1"; - sha256 = "4504b29c4c758457cb6accc00ad4ef4a3f940125ade67301a3549091b9dfc765"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Dual category"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dual-tree" = callPackage - ({ mkDerivation, base, monoid-extras, newtype-generics, semigroups - , stdenv - }: - mkDerivation { - pname = "dual-tree"; - version = "0.2.2.1"; - sha256 = "fdebb501680f50a9fc9fa27da5a484a7f5d07ca5b9bb18e72d1fb8069c756d9e"; - libraryHaskellDepends = [ - base monoid-extras newtype-generics semigroups - ]; - doHaddock = false; - doCheck = false; - description = "Rose trees with cached and accumulating monoidal annotations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dublincore-xml-conduit" = callPackage - ({ mkDerivation, base, conduit, conduit-combinators - , safe-exceptions, stdenv, text, time, timerep, uri-bytestring - , xml-conduit, xml-types - }: - mkDerivation { - pname = "dublincore-xml-conduit"; - version = "0.1.0.2"; - sha256 = "d47a8dcb21d1866f0229168d11d1da136da3028a2f4252bee61d219988f45f9e"; - revision = "1"; - editedCabalFile = "1rljgmi4jb6yhigfy394jb64q5f5qx7i1g68pw6zgq9ziz91p321"; - libraryHaskellDepends = [ - base conduit conduit-combinators safe-exceptions text time timerep - uri-bytestring xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0ral/dublincore-xml-conduit"; - description = "XML streaming parser/renderer for the Dublin Core standard elements"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "dunai" = callPackage - ({ mkDerivation, base, MonadRandom, simple-affine-space, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "dunai"; - version = "0.6.0"; - sha256 = "b6afcb509bda033a9484e684d67602748ff13d68793c5a1394087792c4109c03"; - libraryHaskellDepends = [ - base MonadRandom simple-affine-space transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ivanperez-keera/dunai"; - description = "Generalised reactive framework supporting classic, arrowized and monadic FRP"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "duration" = callPackage - ({ mkDerivation, base, parsec, stdenv, template-haskell, time }: - mkDerivation { - pname = "duration"; - version = "0.1.0.0"; - sha256 = "a0b154c270be1d9c42a92fdf8198ab1030bf09a119157df33a2a43694fb212a3"; - libraryHaskellDepends = [ base parsec template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ryota-ka/duration#readme"; - description = "A tiny compile-time time utility library inspired by zeit/ms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dvorak" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "dvorak"; - version = "0.1.0.0"; - sha256 = "afc8ba89415a01039ccdc719b875826b6b12befb4a6a97bcd7544f22eaffb6cf"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-dvorak"; - description = "Dvorak encoding for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "dynamic-state" = callPackage - ({ mkDerivation, base, binary, bytestring, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "dynamic-state"; - version = "0.3.1"; - sha256 = "c4d50bdf03e7b2af05ee2b78fdd5dd5d16e72ef5edf78cada60bf4cdc6a23537"; - libraryHaskellDepends = [ - base binary bytestring hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Optionally serializable dynamic state keyed by type"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "dyre" = callPackage - ({ mkDerivation, base, binary, directory, executable-path, filepath - , ghc-paths, io-storage, process, stdenv, time, unix, xdg-basedir - }: - mkDerivation { - pname = "dyre"; - version = "0.8.12"; - sha256 = "e224305cc6b38b4143f49489931c2ea94b326915206d34eddf5b2ee2b5a71682"; - libraryHaskellDepends = [ - base binary directory executable-path filepath ghc-paths io-storage - process time unix xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/dyre"; - description = "Dynamic reconfiguration in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eap" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptonite, memory, mtl - , pretty-hex, stdenv - }: - mkDerivation { - pname = "eap"; - version = "0.9.0.2"; - sha256 = "0ccf6246c1e28d43aea25d1e2e0ca22edcc3bfb21fcf7924410dee7abb3efd2d"; - revision = "1"; - editedCabalFile = "1lsy7pl39s02f45l7g9alw49xwh7m8m4bm3ydcz11rh9xdgcb9jv"; - libraryHaskellDepends = [ - base binary bytestring cryptonite memory mtl pretty-hex - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/eap#readme"; - description = "Extensible Authentication Protocol (EAP)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "easy-file" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, time, unix }: - mkDerivation { - pname = "easy-file"; - version = "0.2.2"; - sha256 = "52f52e72ba48d60935932401c233a72bf45c582871238aecc5a18021ce67b47e"; - libraryHaskellDepends = [ base directory filepath time unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kazu-yamamoto/easy-file"; - description = "Cross-platform File handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "echo" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "echo"; - version = "0.1.3"; - sha256 = "704f07310f8272d170f8ab7fb2a2c13f15d8501ef8310801e36964c8eff485ef"; - revision = "1"; - editedCabalFile = "0br8wfiybcw5hand4imiw0i5hacdmrax1dv8g95f35gazffbx42l"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/echo"; - description = "A cross-platform, cross-console way to handle echoing terminal input"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ecstasy" = callPackage - ({ mkDerivation, base, containers, kan-extensions, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "ecstasy"; - version = "0.2.1.0"; - sha256 = "915942d3b8c3d61b98e5b2e825387d48cf3c2d17acdb2d377cb516c26c0fcbc3"; - libraryHaskellDepends = [ - base containers kan-extensions mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/isovector/ecstasy/"; - description = "A GHC.Generics based entity component system."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ed25519" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ed25519"; - version = "0.0.5.0"; - sha256 = "d8a5958ebfa9309790efade64275dc5c441b568645c45ceed1b0c6ff36d6156d"; - revision = "2"; - editedCabalFile = "1cq6h3jqkb1kvd9fjfhsllg5gq78sdiyf2gy9862xhlbv6wil19f"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://thoughtpolice.github.com/hs-ed25519"; - description = "Ed25519 cryptographic signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "edit-distance" = callPackage - ({ mkDerivation, array, base, containers, random, stdenv }: - mkDerivation { - pname = "edit-distance"; - version = "0.2.2.1"; - sha256 = "3e8885ee2f56ad4da940f043ae8f981ee2fe336b5e8e4ba3f7436cff4f526c4a"; - revision = "1"; - editedCabalFile = "1vjn4ryzdilz7l1ad7czh11nw48h5mj8if7ij3q0mmc3sffa8csd"; - libraryHaskellDepends = [ array base containers random ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/edit-distance"; - description = "Levenshtein and restricted Damerau-Levenshtein edit distances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "edit-distance-vector" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "edit-distance-vector"; - version = "1.0.0.4"; - sha256 = "b7dfddd86d315ef1b0c86415f321efc04b4a1b47a7b13edafc73a6e81b620f1f"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thsutton/edit-distance-vector"; - description = "Calculate edit distances and edit scripts between vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "editor-open" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, stdenv, temporary, transformers - , unix - }: - mkDerivation { - pname = "editor-open"; - version = "0.6.0.0"; - sha256 = "2fc5d19bce2d477935202a5a4522671529d0352a0ee28be1307f8ab391065265"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - temporary transformers unix - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra resourcet - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/editor-open"; - description = "Open the user's $VISUAL or $EDITOR for text input"; - license = stdenv.lib.licenses.asl20; - }) {}; - "egison" = callPackage - ({ mkDerivation, array, base, containers, directory, filepath, ghc - , ghc-paths, hashable, haskeline, megaparsec, mtl - , optparse-applicative, parsec, parser-combinators, prettyprinter - , process, random, regex-tdfa, split, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "egison"; - version = "3.10.2"; - sha256 = "11df34960faa110c1b1617e523829647b7d20ba450bee4cd2bdeec88cb307312"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base containers directory ghc ghc-paths hashable haskeline - megaparsec mtl optparse-applicative parsec parser-combinators - prettyprinter process random regex-tdfa split text transformers - unordered-containers vector - ]; - executableHaskellDepends = [ - array base containers directory filepath ghc ghc-paths haskeline - mtl optparse-applicative parsec prettyprinter process split text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.egison.org"; - description = "Programming language with non-linear pattern-matching against non-free data"; - license = stdenv.lib.licenses.mit; - }) {}; - "either" = callPackage - ({ mkDerivation, base, bifunctors, mtl, profunctors, semigroupoids - , stdenv - }: - mkDerivation { - pname = "either"; - version = "5.0.1.1"; - sha256 = "0243d51d6a02ecb541e4854a588a9b6219a4690ebcbdb79387dd14ad519cdf27"; - libraryHaskellDepends = [ - base bifunctors mtl profunctors semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/either/"; - description = "Combinators for working with sums"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "either-both" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "either-both"; - version = "0.1.1.1"; - sha256 = "6ea467bbcb62d2aded238d3b078fc6fdce44a2137b6be40b209562be3978a6b2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Either or both"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elerea" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "elerea"; - version = "2.9.0"; - sha256 = "901221660b32597803b20fe2e78bb6f1f60f064d04671fb3f0baa05c87446681"; - libraryHaskellDepends = [ - base containers transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "A minimalistic FRP library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elf" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "elf"; - version = "0.30"; - sha256 = "97b0a2cfeff33dcc0640fbd878643e3f87bc88e2da02982f2698728735beee99"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wangbj/elf"; - description = "An Elf parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eliminators" = callPackage - ({ mkDerivation, base, extra, singleton-nats, singletons, stdenv - , template-haskell, th-abstraction, th-desugar - }: - mkDerivation { - pname = "eliminators"; - version = "0.6"; - sha256 = "2e026872e1362a6e56b67f963a7f321d72583325d15d1c951f531cf7bcb8b2d7"; - libraryHaskellDepends = [ - base extra singleton-nats singletons template-haskell - th-abstraction th-desugar - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/eliminators"; - description = "Dependently typed elimination functions using singletons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-bridge" = callPackage - ({ mkDerivation, aeson, base, stdenv, template-haskell }: - mkDerivation { - pname = "elm-bridge"; - version = "0.5.2"; - sha256 = "77b3c29628d26dbfd77bb2a950fae203c661bbb5087dc566d0b52e99296144d3"; - libraryHaskellDepends = [ aeson base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/elm-bridge"; - description = "Derive Elm types and Json code from Haskell types, using aeson's options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "elm-core-sources" = callPackage - ({ mkDerivation, base, bytestring, containers, file-embed, stdenv - , template-haskell - }: - mkDerivation { - pname = "elm-core-sources"; - version = "1.0.0"; - sha256 = "a403505d50cd6ff0d21243db55c6decc6dde14b88a6a393e2b6243f09f6620fb"; - libraryHaskellDepends = [ - base bytestring containers file-embed template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JoeyEremondi/elm-build-lib"; - description = "Source files for the Elm runtime and standard libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emacs-module" = callPackage - ({ mkDerivation, base, bytestring, deepseq, exceptions - , monad-control, mtl, prettyprinter, resourcet - , safe-exceptions-checked, stdenv, template-haskell, text - , transformers-base, vector, void - }: - mkDerivation { - pname = "emacs-module"; - version = "0.1.1"; - sha256 = "1ee0fd9cde2e218d604c5d1670f24194575f975510936510fe9fc2f6e066d9d4"; - libraryHaskellDepends = [ - base bytestring deepseq exceptions monad-control mtl prettyprinter - resourcet safe-exceptions-checked template-haskell text - transformers-base vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sergv/emacs-module"; - description = "Utilities to write Emacs dynamic modules"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "email-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv - , template-haskell - }: - mkDerivation { - pname = "email-validate"; - version = "2.3.2.12"; - sha256 = "0e7b2ab28bd4d072d06c6d20a4ab55b2950b4facc0f0b3200ba10f15a563232b"; - libraryHaskellDepends = [ - attoparsec base bytestring template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Porges/email-validate-hs"; - description = "Email address validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "emojis" = callPackage - ({ mkDerivation, base, containers, stdenv, text }: - mkDerivation { - pname = "emojis"; - version = "0.1"; - sha256 = "5a03c36ff41989d3309c225bf8dfab81d7733d04c5e6b61e483eccfa929cdfb0"; - libraryHaskellDepends = [ base containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/emojis#readme"; - description = "Conversion between emoji characters and their names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enclosed-exceptions" = callPackage - ({ mkDerivation, base, deepseq, lifted-base, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "enclosed-exceptions"; - version = "1.0.3"; - sha256 = "af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9"; - libraryHaskellDepends = [ - base deepseq lifted-base monad-control transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jcristovao/enclosed-exceptions"; - description = "Catching all exceptions from within an enclosed computation"; - license = stdenv.lib.licenses.mit; - }) {}; - "entropy" = callPackage - ({ mkDerivation, base, bytestring, Cabal, directory, filepath - , process, stdenv, unix - }: - mkDerivation { - pname = "entropy"; - version = "0.4.1.5"; - sha256 = "5502aaf0415979dcfe64d3da407db46085f98a81d5b369fb040fc51b2244ee6b"; - setupHaskellDepends = [ base Cabal directory filepath process ]; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TomMD/entropy"; - description = "A platform independent entropy source"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enum-subset-generate" = callPackage - ({ mkDerivation, base, microlens, stdenv, template-haskell }: - mkDerivation { - pname = "enum-subset-generate"; - version = "0.1.0.0"; - sha256 = "dd07c2089495ee5b07bdb371bc10004341edb58cbc287d4862ee96b797b14581"; - libraryHaskellDepends = [ base microlens template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/0xd34df00d/enum-subset-generate#readme"; - description = "Generate an ADT being a subset of another ADT, and the corresponding mappings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enummapset" = callPackage - ({ mkDerivation, base, containers, deepseq, semigroups, stdenv }: - mkDerivation { - pname = "enummapset"; - version = "0.6.0.2"; - sha256 = "3b344af1b375cd904ab4cbe687a1a336840c6de3e66b4c2a26f73a96d5cfe610"; - libraryHaskellDepends = [ base containers deepseq semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/enummapset"; - description = "IntMap and IntSet with Enum keys/elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "enumset" = callPackage - ({ mkDerivation, base, data-accessor, semigroups, stdenv - , storable-record - }: - mkDerivation { - pname = "enumset"; - version = "0.0.5"; - sha256 = "31629409abbdcc40131b59bdb10e6cbbafc69e815f45b2a06b9eb35a0fb53435"; - libraryHaskellDepends = [ - base data-accessor semigroups storable-record - ]; - doHaddock = false; - doCheck = false; - description = "Sets of enumeration values represented by machine words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envelope" = callPackage - ({ mkDerivation, aeson, base, http-api-data, mtl, stdenv, text }: - mkDerivation { - pname = "envelope"; - version = "0.2.2.0"; - sha256 = "cf4d6fe3f906e859ec3c16684a8dafb349e77f0fa4f21b7090ca33e707867ef9"; - libraryHaskellDepends = [ aeson base http-api-data mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/envelope#readme"; - description = "Defines generic 'Envelope' type to wrap reponses from a JSON API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "envy" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "envy"; - version = "2.0.0.0"; - sha256 = "1f3c9e305490202deadd8a05b7da0e2690eb2c7806511e3c45f796be677a7950"; - libraryHaskellDepends = [ - base bytestring containers mtl text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "An environmentally friendly way to deal with environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "epub-metadata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , hxt, mtl, regex-compat-tdfa, stdenv, utf8-string, zip-archive - }: - mkDerivation { - pname = "epub-metadata"; - version = "4.5"; - sha256 = "19ae3914df5936908c8d7264ae5f1e310262fa06bd7e4390838892840e4c0349"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath hxt mtl - regex-compat-tdfa utf8-string zip-archive - ]; - executableHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/epub-metadata"; - description = "Library for parsing epub document metadata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "eq" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "eq"; - version = "4.2"; - sha256 = "4160703a06af1c7518b8ff3244a04013fc7c04a012637dd26be31308e23970e8"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/eq/"; - description = "Leibnizian equality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "equal-files" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception, filemanip - , stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "equal-files"; - version = "0.0.5.3"; - sha256 = "e5b785c286c557c57dba7107d913b220781aa2549ba4b7685da494b20a0172aa"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring explicit-exception filemanip transformers - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/equal-files/"; - description = "Shell command for finding equal files"; - license = "GPL"; - }) {}; - "erf" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "erf"; - version = "2.0.0.0"; - sha256 = "24f0b79c7e1d25cb2cd44c2258d7a464bf6db8079775b50b60b54a254616b337"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "The error function, erf, and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors" = callPackage - ({ mkDerivation, base, exceptions, safe, stdenv, text, transformers - , transformers-compat - }: - mkDerivation { - pname = "errors"; - version = "2.3.0"; - sha256 = "6772e5689f07e82077ffe3339bc672934d83d83a97a7d4f1349de1302cb71f75"; - libraryHaskellDepends = [ - base exceptions safe text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simplified error-handling"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "errors-ext" = callPackage - ({ mkDerivation, base, errors, exceptions, monad-control, mtl - , stdenv, transformers - }: - mkDerivation { - pname = "errors-ext"; - version = "0.4.2"; - sha256 = "406e65338046d6c1d6994072b529272fab4ad7abbdb2c3b63576788fd8dd9618"; - libraryHaskellDepends = [ - base errors exceptions monad-control mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/A1-Triard/errors-ext#readme"; - description = "`bracket`-like functions for `ExceptT` over `IO` monad"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ersatz" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , cabal-doctest, containers, data-default, fail, lens, mtl, parsec - , process, semigroups, stdenv, temporary, transformers - , unordered-containers - }: - mkDerivation { - pname = "ersatz"; - version = "0.4.8"; - sha256 = "0cedf3498227323be9c3042af6de00f64ce35c12cddae1008ab96f053f72adbd"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers data-default lens mtl - process semigroups temporary transformers unordered-containers - ]; - executableHaskellDepends = [ - array base containers fail lens mtl parsec semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/ersatz"; - description = "A monad for expressing SAT or QSAT problems using observable sharing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "esqueleto" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-html, bytestring - , conduit, containers, monad-logger, persistent, resourcet, stdenv - , tagged, text, time, transformers, unliftio, unordered-containers - }: - mkDerivation { - pname = "esqueleto"; - version = "3.3.1.1"; - sha256 = "7b6c23ad669ab6123167717c49d1c66d66affb57b447dbe5f36e1689544522e2"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-html bytestring conduit containers - monad-logger persistent resourcet tagged text time transformers - unliftio unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitemyapp/esqueleto"; - description = "Type-safe EDSL for SQL queries on persistent backends"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "etc" = callPackage - ({ mkDerivation, aeson, base, rio, stdenv, template-haskell, text - , typed-process, unliftio - }: - mkDerivation { - pname = "etc"; - version = "0.4.1.0"; - sha256 = "61b4d5f29a1fc66df082623e5fc9269bdbb49d28ebf4cbb740c71319257a27c8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base rio template-haskell text typed-process unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roman/Haskell-etc"; - description = "Declarative configuration spec for Haskell projects"; - license = stdenv.lib.licenses.mit; - }) {}; - "event-list" = callPackage - ({ mkDerivation, base, non-negative, QuickCheck, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "event-list"; - version = "0.1.2"; - sha256 = "624e30b876e0acdaea895efbb2000bbbec2d5be0743ecac9805655ae634af89c"; - libraryHaskellDepends = [ - base non-negative QuickCheck semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/event-list/"; - description = "Event lists with relative or absolute time stamps"; - license = "GPL"; - }) {}; - "eventful-core" = callPackage - ({ mkDerivation, aeson, base, containers, contravariant - , http-api-data, path-pieces, stdenv, sum-type-boilerplate - , template-haskell, text, transformers, uuid - }: - mkDerivation { - pname = "eventful-core"; - version = "0.2.0"; - sha256 = "e0f55e7498d8e48232ce2d5194c69f635beaeb322cb64753766076d7b35c9019"; - libraryHaskellDepends = [ - aeson base containers contravariant http-api-data path-pieces - sum-type-boilerplate template-haskell text transformers uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Core module for eventful"; - license = stdenv.lib.licenses.mit; - }) {}; - "eventful-test-helpers" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, eventful-core, extra - , hspec, monad-logger, stdenv, text - }: - mkDerivation { - pname = "eventful-test-helpers"; - version = "0.2.0"; - sha256 = "a99f9d0cde3926add542c4fc59e079da7d71f2b40e2251b7d79777585c4ebfe0"; - libraryHaskellDepends = [ - aeson aeson-casing base eventful-core extra hspec monad-logger text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/eventful#readme"; - description = "Common module used for eventful tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "every" = callPackage - ({ mkDerivation, async, base, stdenv, stm }: - mkDerivation { - pname = "every"; - version = "0.0.1"; - sha256 = "5d0ff0e4cefb094c44b55defa283146b16b925722a2eb244a5ef4364737980e5"; - libraryHaskellDepends = [ async base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/every#readme"; - description = "Run a process every so often"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-combinatorics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exact-combinatorics"; - version = "0.2.0.9"; - sha256 = "725785ac22c252b0753aefffd8eb591f8a4184cec08a5d50bca1d57c5345c9ab"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://wrengr.org/"; - description = "Efficient exact computation of combinatoric functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exact-pi" = callPackage - ({ mkDerivation, base, numtype-dk, stdenv }: - mkDerivation { - pname = "exact-pi"; - version = "0.5.0.1"; - sha256 = "5d8156ec8b044a36c2ac789b85bf65116be24304868fff472d033977ebcc1860"; - revision = "1"; - editedCabalFile = "1l55d7x61i2d5rlh7sh2nhn0af9cyp92gzdmqqnnjzg55d347qsm"; - libraryHaskellDepends = [ base numtype-dk ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmcclean/exact-pi/"; - description = "Exact rational multiples of pi (and integer powers of pi)"; - license = stdenv.lib.licenses.mit; - }) {}; - "exception-hierarchy" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "exception-hierarchy"; - version = "0.1.0.3"; - sha256 = "e93651623290adde12f2e119c37e480746cc85aa7a84610fb73545cc5d70199d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "yet"; - description = "Exception type hierarchy with TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-mtl" = callPackage - ({ mkDerivation, base, exception-transformers, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "exception-mtl"; - version = "0.4.0.1"; - sha256 = "ec13bcbae6cdde218a7118a2bd3058493af09a330b86e28469a278c9b2cea134"; - libraryHaskellDepends = [ - base exception-transformers mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Exception monad transformer instances for mtl classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exception-transformers" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "exception-transformers"; - version = "0.4.0.8"; - sha256 = "39eb6848e73a5ef97e8eae26ee84f0412dcf8dedbacb2b232bfeec4941e33b1d"; - libraryHaskellDepends = [ - base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Type classes and monads for unchecked extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exceptions" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm, template-haskell - , transformers - }: - mkDerivation { - pname = "exceptions"; - version = "0.10.4"; - sha256 = "4d0bfb4355cffcd67d300811df9d5fe44ea3594ed63750795bfc1f797abd84cf"; - libraryHaskellDepends = [ - base mtl stm template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/exceptions/"; - description = "Extensible optionally-pure exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "executable-path" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, unix }: - mkDerivation { - pname = "executable-path"; - version = "0.0.3.1"; - sha256 = "9cc742b6d40a487b3af38dca6852ca3b50a0db94d42fe819576c84beb5adbc6f"; - libraryHaskellDepends = [ base directory filepath unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~bkomuves/"; - description = "Finding out the full path of the executable"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "exit-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "exit-codes"; - version = "1.0.0"; - sha256 = "4aa2499a18b0453a9f921bb3262aefe24c8fa98ef9633ab284d8cf6f52a49e01"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/JustusAdam/exit-codes"; - description = "Exit codes as defined by BSD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "exomizer" = callPackage - ({ mkDerivation, base, bytestring, c2hs, stdenv }: - mkDerivation { - pname = "exomizer"; - version = "1.0.0"; - sha256 = "94c24d436d12666d16cb7171c83cedec449b992dc3aeaaa6decdc0faf8e2cfd2"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/exomizer#readme"; - description = "Compression and decompression in the exomizer format"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "exp-pairs" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, prettyprinter - , stdenv - }: - mkDerivation { - pname = "exp-pairs"; - version = "0.2.0.0"; - sha256 = "57471bfd498570247c03863ec4532ff06c20198efe7a7fe4484478d7139ac967"; - revision = "1"; - editedCabalFile = "1fkllbgsygzm1lw3g3a9l8fg8ap74bx0x7ja8yx3lbrjjsaqh8pa"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim prettyprinter - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/exp-pairs"; - description = "Linear programming over exponent pairs"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "expiring-cache-map" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers - }: - mkDerivation { - pname = "expiring-cache-map"; - version = "0.0.6.1"; - sha256 = "0e3bc294978b46ee59bf0b4a7e7a5bd7ed5da7bc261ffebdb0cb1b60353c64b9"; - libraryHaskellDepends = [ - base containers hashable unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/expiring-cache-map"; - description = "General purpose simple caching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "explicit-exception" = callPackage - ({ mkDerivation, base, deepseq, semigroups, stdenv, transformers }: - mkDerivation { - pname = "explicit-exception"; - version = "0.1.10"; - sha256 = "00d467d6f75751db37adfbc5ab238db3d92f16ca642f872f912aed8e7f00f8bc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base deepseq semigroups transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Exception"; - description = "Exceptions which are explicit in the type signature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "express" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "express"; - version = "0.1.2"; - sha256 = "de78c2301f6ba275cfe6d9af6705f54daf1570fb7a56ab94231036756780cd44"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/express#readme"; - description = "Dynamically-typed expressions involving applications and variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extended-reals" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "extended-reals"; - version = "0.2.3.0"; - sha256 = "7c8ac733ef09cb37c0a9816e7765ab6fe46551ee58445c00fc6c52a37eef169c"; - revision = "4"; - editedCabalFile = "1gzi55w9kpfg51njyi3a28n7nc64chzgnv76m3xyrz7z0gbri93q"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/msakai/extended-reals/"; - description = "Extension of real numbers with positive/negative infinities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extensible-effects" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "extensible-effects"; - version = "5.0.0.1"; - sha256 = "c3b3165893d3738c5ec7ffd0d8c46a7af855b7d3087e159d6da516e78880c039"; - revision = "1"; - editedCabalFile = "1ihcxj58a3ca80zfyxgbzjzgps9izy96vnj7h4sk9wwb9khbxl1f"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/suhailshergill/extensible-effects"; - description = "An Alternative to Monad Transformers"; - license = stdenv.lib.licenses.mit; - }) {}; - "extensible-exceptions" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "extensible-exceptions"; - version = "0.1.1.4"; - sha256 = "6ce5e8801760385a408dab71b53550f87629e661b260bdc2cd41c6a439b6e388"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extensible exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extra" = callPackage - ({ mkDerivation, base, clock, directory, filepath, process - , semigroups, stdenv, time, unix - }: - mkDerivation { - pname = "extra"; - version = "1.6.18"; - sha256 = "9e81788ea870cc94e0cd809f3258aec0a361981783f59b122aeea20801256d4b"; - libraryHaskellDepends = [ - base clock directory filepath process semigroups time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/extra#readme"; - description = "Extra functions I use"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extractable-singleton" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "extractable-singleton"; - version = "0.0.1"; - sha256 = "e8da1928d98c57ef3d1bab7deb1378f51fa496721495777233663dd0b1b2c0ad"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/extractable-singleton#readme"; - description = "A functor, where the \"stored\" value is isomorphic to Identity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "extrapolate" = callPackage - ({ mkDerivation, base, express, leancheck, speculate, stdenv - , template-haskell - }: - mkDerivation { - pname = "extrapolate"; - version = "0.4.1"; - sha256 = "145d1eedc9e1b6c5675891b61dce0d7bf8ad3012dbc2020385084f8dfa7a1ce6"; - libraryHaskellDepends = [ - base express leancheck speculate template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/extrapolate#readme"; - description = "generalize counter-examples of test properties"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fail" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "fail"; - version = "4.9.0.0"; - sha256 = "6d5cdb1a5c539425a9665f740e364722e1d9d6ae37fbc55f30fe3dbbbb91d4a2"; - doHaddock = false; - doCheck = false; - homepage = "https://prime.haskell.org/wiki/Libraries/Proposals/MonadFail"; - description = "Forward-compatible MonadFail class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "failable" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "failable"; - version = "1.2.4.0"; - sha256 = "8fd367b3408e6f2be38a4a9c9136c76ace2acea1910c65d6bf8e77c5bdccceed"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - description = "A 'Failable' error monad class to unify failure across monads that can fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fakedata" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , exceptions, filepath, hashable, random, stdenv, template-haskell - , text, time, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "fakedata"; - version = "0.5.0"; - sha256 = "67a636c2c0d50549a25071ef3baea9334b9d0ed1e0ba581efc19de21575f6d75"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory exceptions filepath hashable - random template-haskell text time unordered-containers vector yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fakedata#readme"; - description = "Library for producing fake data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "farmhash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "farmhash"; - version = "0.1.0.5"; - sha256 = "0e685a5445f7bce88682d209bccb47d03f06065a627475df44a8e2af8bc20fa1"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abhinav/farmhash"; - description = "Fast hash functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-digits" = callPackage - ({ mkDerivation, base, integer-gmp, stdenv }: - mkDerivation { - pname = "fast-digits"; - version = "0.2.1.0"; - sha256 = "ec84576e479202de8257c7c499b66e91bcf18444f7683475d74b575e166dd83b"; - libraryHaskellDepends = [ base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/fast-digits"; - description = "The fast library for integer-to-digits conversion"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fast-logger" = callPackage - ({ mkDerivation, array, auto-update, base, bytestring, directory - , easy-file, filepath, stdenv, text, unix-compat, unix-time - }: - mkDerivation { - pname = "fast-logger"; - version = "3.0.0"; - sha256 = "03f5e1bf4925b7c9d88122c77b6fa264d6b15a0a15593143715dacae1fa1ff49"; - libraryHaskellDepends = [ - array auto-update base bytestring directory easy-file filepath text - unix-compat unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/logger"; - description = "A fast logging system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fast-math" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fast-math"; - version = "1.0.2"; - sha256 = "45101ddc8b86402e866ec029bcfbc2662779e578e43b40acd971a9f411e2be95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Non IEEE-754 compliant compile-time floating-point optimisations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, cryptonite, data-default, http-client - , http-conduit, http-types, memory, monad-logger, resourcet, stdenv - , text, time, transformers, transformers-base, unliftio - , unliftio-core, unordered-containers - }: - mkDerivation { - pname = "fb"; - version = "2.0.0"; - sha256 = "9c596a412d958ea1214ceca2ff85e06358f1cca992c8aab609c695db5764a67c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra cryptonite - data-default http-client http-conduit http-types memory - monad-logger resourcet text time transformers transformers-base - unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/fb"; - description = "Bindings to Facebook's API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "feature-flags" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "feature-flags"; - version = "0.1.0.1"; - sha256 = "0e4cf7db6791b0875975dfa001d71bf31797b2edbfd2424f6b6202ace7935ad3"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iand675/feature-flags"; - description = "A simple library for dynamically enabling and disabling functionality"; - license = stdenv.lib.licenses.mit; - }) {}; - "fedora-dists" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fedora-dists"; - version = "1.1.2"; - sha256 = "bcd8a8b3f51261281ac8269eaa5253a6a0cec35d5b7d0694ad1b90c422afd643"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/fedora-dists"; - description = "Library for Fedora distribution versions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "fedora-haskell-tools" = callPackage - ({ mkDerivation, base, csv, directory, fedora-dists, filepath, HTTP - , optparse-applicative, process, simple-cmd, simple-cmd-args, split - , stdenv, time, unix - }: - mkDerivation { - pname = "fedora-haskell-tools"; - version = "0.9"; - sha256 = "b6468349b91cfbc6280b6e4b1b9c7df6ec63486fe77181466f8f2b6902a30fff"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base csv directory fedora-dists filepath HTTP optparse-applicative - process simple-cmd simple-cmd-args split time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fedora-haskell/fedora-haskell-tools"; - description = "Building and maintenance tools for Fedora Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "feed" = callPackage - ({ mkDerivation, base, base-compat, bytestring, old-locale - , old-time, safe, stdenv, text, time, time-locale-compat - , utf8-string, xml-conduit, xml-types - }: - mkDerivation { - pname = "feed"; - version = "1.3.0.0"; - sha256 = "e266c7febd6d299c8b22618f18dec280a6874f23a3a2a0ac921ae8ac509fb8a7"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base base-compat bytestring old-locale old-time safe text time - time-locale-compat utf8-string xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bergmark/feed"; - description = "Interfacing with RSS (v 0.9x, 2.x, 1.0) + Atom feeds."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fft" = callPackage - ({ mkDerivation, array, base, carray, fftw, fftwFloat, ix-shapable - , stdenv, storable-complex, syb, transformers - }: - mkDerivation { - pname = "fft"; - version = "0.1.8.6"; - sha256 = "2ed8d8301903283c9a62eda1f1cf49db0c471c4c128fbfdef562d598401e5b42"; - libraryHaskellDepends = [ - array base carray ix-shapable storable-complex syb transformers - ]; - libraryPkgconfigDepends = [ fftw fftwFloat ]; - doHaddock = false; - doCheck = false; - description = "Bindings to the FFTW library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) fftw; inherit (pkgs) fftwFloat;}; - "fgl" = callPackage - ({ mkDerivation, array, base, containers, deepseq, stdenv - , transformers - }: - mkDerivation { - pname = "fgl"; - version = "5.7.0.2"; - sha256 = "945a9acf5883c9f20a23d02d345227d1c617e8449db5c18f40c50b69246ff88f"; - libraryHaskellDepends = [ - array base containers deepseq transformers - ]; - doHaddock = false; - doCheck = false; - description = "Martin Erwig's Functional Graph Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, stdenv - , template-haskell - }: - mkDerivation { - pname = "file-embed"; - version = "0.0.11.1"; - sha256 = "a113e7fe528be8204f40d3e9e00d595234e49def6caa133136e8254b659189d6"; - libraryHaskellDepends = [ - base bytestring directory filepath template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/file-embed"; - description = "Use Template Haskell to embed file contents directly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "file-embed-lzma" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , lzma, stdenv, template-haskell, text, th-lift-instances - , transformers - }: - mkDerivation { - pname = "file-embed-lzma"; - version = "0"; - sha256 = "e86cf44f747cf403898158e9fdf9342871e293097a29679fcf587aed497f0c77"; - revision = "4"; - editedCabalFile = "19z355zylpsqsfihldbda6lwrdj5divfhhnc24ryzvi384dw74lx"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath lzma - template-haskell text th-lift-instances transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/file-embed-lzma"; - description = "Use Template Haskell to embed (LZMA compressed) data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filecache" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, filepath - , fsnotify, mtl, stdenv, stm, strict-base-types, time - }: - mkDerivation { - pname = "filecache"; - version = "0.4.1"; - sha256 = "c502a8b43cf08694c8d2657dc282306d811cdd91f284614a6a9945267c93cb9d"; - libraryHaskellDepends = [ - base containers directory exceptions filepath fsnotify mtl stm - strict-base-types time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "A cache system associating values to files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filelock" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "filelock"; - version = "0.1.1.4"; - sha256 = "d97e29095b0d8b652bc02e52d79bb415e75285c651bcaacb108db883f72536a1"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/takano-akio/filelock"; - description = "Portable interface to file locking (flock / LockFileEx)"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "filemanip" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, mtl, stdenv - , unix-compat - }: - mkDerivation { - pname = "filemanip"; - version = "0.3.6.3"; - sha256 = "8836da17baaaf02ca080c9990ece4e0b0c8d6a128f458f8b64fd07b225ca9846"; - libraryHaskellDepends = [ - base bytestring directory filepath mtl unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/filemanip"; - description = "Expressive file and directory manipulation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filepattern" = callPackage - ({ mkDerivation, base, directory, extra, filepath, stdenv }: - mkDerivation { - pname = "filepattern"; - version = "0.1.1"; - sha256 = "f7fc5bdcfef0d43a793a3c64e7c0fd3b1d35eea97a37f0e69d6612ab255c9b4b"; - libraryHaskellDepends = [ base directory extra filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/filepattern#readme"; - description = "File path glob-like matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fileplow" = callPackage - ({ mkDerivation, base, binary-search, bytestring, stdenv, vector }: - mkDerivation { - pname = "fileplow"; - version = "0.1.0.0"; - sha256 = "9ddc7db62c97fa4413ff2435c96aac9f6f716e2f6bc7a71aa4db25c3871bee04"; - libraryHaskellDepends = [ base binary-search bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/fileplow#readme"; - description = "Library to process and search large files or a collection of files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "filtrable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "filtrable"; - version = "0.1.3.0"; - sha256 = "80364ec6b28b8e5c68df44d6e7f03389bd2c19eeca7a9d79d487db1ec0fa2aee"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/strake/filtrable.hs"; - description = "Class of filtrable containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fin" = callPackage - ({ mkDerivation, base, dec, deepseq, hashable, QuickCheck, stdenv - }: - mkDerivation { - pname = "fin"; - version = "0.1.1"; - sha256 = "31e3174c0220ed6ca07c02982105279d01309e71791534355c612e1a45478c7f"; - libraryHaskellDepends = [ base dec deepseq hashable QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Nat and Fin: peano naturals and finite numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fingertree" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fingertree"; - version = "0.1.4.2"; - sha256 = "95a948341570bad5a9b2468c388c0eb2c20c57e10dd8fbfc994c7b8764b36a7f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "finite-typelits" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "finite-typelits"; - version = "0.1.4.2"; - sha256 = "d207a46c911b69ecc1f7c50d9d65ea1aca6c6efacec6342bc3294ed1bc4bd747"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mniip/finite-typelits"; - description = "A type inhabited by finitely many values, indexed by type-level naturals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "first-class-families" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "first-class-families"; - version = "0.6.0.0"; - sha256 = "16a577b3755eb6f761f877a9baa78a7cfb103a7dbc453bda8668d3d1123a2e28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/first-class-families#readme"; - description = "First class type families"; - license = stdenv.lib.licenses.mit; - }) {}; - "first-class-patterns" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "first-class-patterns"; - version = "0.3.2.5"; - sha256 = "7a4bcfe2c9907d7964d2a29816ea37aac64b0506fdebd34241d0dd735cb308ae"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/first-class-patterns"; - description = "First class patterns and pattern matching, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fitspec" = callPackage - ({ mkDerivation, base, cmdargs, leancheck, stdenv, template-haskell - }: - mkDerivation { - pname = "fitspec"; - version = "0.4.7"; - sha256 = "b8dc00aad234b30d1d383075062c0756bb7d412a5bf4b766f2aad0d7ac30716a"; - libraryHaskellDepends = [ - base cmdargs leancheck template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/fitspec#readme"; - description = "refining property sets for testing Haskell programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fixed"; - version = "0.3"; - sha256 = "9218ebd3af3f07335db8dcd148b3ce40acf984734c244cce5959f57402d48282"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/fixed"; - description = "Signed 15.16 precision fixed point arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-length" = callPackage - ({ mkDerivation, base, non-empty, stdenv, storable-record, tfp - , utility-ht - }: - mkDerivation { - pname = "fixed-length"; - version = "0.2.1"; - sha256 = "a151b68802538e8f98d05f582bd23fad94c869e1ad1f5506579524f5d2764b49"; - libraryHaskellDepends = [ - base non-empty storable-record tfp utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/fixed-length/"; - description = "Lists with statically known length based on non-empty package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector"; - version = "1.2.0.0"; - sha256 = "dc67e4f139f07018be73a5f2e44ddfb3e8dab8b884a66a93c7676b2a9f3604a5"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - description = "Generic vectors with statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fixed-vector-hetero" = callPackage - ({ mkDerivation, base, deepseq, fixed-vector, primitive, stdenv }: - mkDerivation { - pname = "fixed-vector-hetero"; - version = "0.5.0.0"; - sha256 = "a3f25968b260c953c6ad4ec75ba5211238b2bb07185fe1f33fb98301a4ee8690"; - libraryHaskellDepends = [ base deepseq fixed-vector primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.org/Shimuuar/fixed-vector-hetero"; - description = "Generic heterogeneous vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flac" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , exceptions, filepath, FLAC, mtl, stdenv, text, transformers - , vector, wave - }: - mkDerivation { - pname = "flac"; - version = "0.2.0"; - sha256 = "6c8ca5fbe7ac4c6d9475678fc3bcc3b132a75fea870a3591d646cc79add5f50f"; - revision = "1"; - editedCabalFile = "1phwdnya8bgw24a80vbw0m4pm7r67grnc6si8683jz620snnsm48"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers directory exceptions filepath mtl text - transformers vector wave - ]; - librarySystemDepends = [ FLAC ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac"; - description = "Complete high-level binding to libFLAC"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) FLAC;}; - "flac-picture" = callPackage - ({ mkDerivation, base, bytestring, flac, JuicyPixels, stdenv }: - mkDerivation { - pname = "flac-picture"; - version = "0.1.2"; - sha256 = "15689d14d382588697ec0da88a0025c2b156061c060979deaec0d75ecc37030a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring flac JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/flac-picture"; - description = "Support for writing picture to FLAC metadata blocks with JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flags-applicative" = callPackage - ({ mkDerivation, base, casing, containers, mtl, network, stdenv - , text - }: - mkDerivation { - pname = "flags-applicative"; - version = "0.1.0.2"; - sha256 = "ee69b8dad942e4528e6d4cecda1b4885ae0c9b595009414fb1d6535f1b7c5ea4"; - libraryHaskellDepends = [ - base casing containers mtl network text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/flags-applicative"; - description = "Applicative flag parsing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flat-mcmc" = callPackage - ({ mkDerivation, base, formatting, mcmc-types, monad-par - , monad-par-extras, mwc-probability, pipes, primitive, stdenv, text - , transformers, vector - }: - mkDerivation { - pname = "flat-mcmc"; - version = "1.5.1"; - sha256 = "eb4e05c1e9dccf217f37617afa765e7a838fe153714b6be1d4f8fc6a3a4421ba"; - libraryHaskellDepends = [ - base formatting mcmc-types monad-par monad-par-extras - mwc-probability pipes primitive text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/flat-mcmc"; - description = "Painless general-purpose sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "floatshow" = callPackage - ({ mkDerivation, array, base, integer-gmp, stdenv }: - mkDerivation { - pname = "floatshow"; - version = "0.2.4"; - sha256 = "0c4e9494df46120942b2078db53c16200b46eff603fca5ab85775a541f975dff"; - libraryHaskellDepends = [ array base integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/floatshow"; - description = "Alternative faster String representations for Double and Float, String representations for more general numeric types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "floskell" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , containers, data-default, directory, filepath, ghc-prim - , haskell-src-exts, monad-dijkstra, mtl, optparse-applicative - , stdenv, text, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "floskell"; - version = "0.10.2"; - sha256 = "1020f7cad8ac48a1cfbba960a49ffb8d3de177dd342a110de6a417fa375fa1c5"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers data-default directory - filepath haskell-src-exts monad-dijkstra mtl text transformers - unordered-containers utf8-string - ]; - executableHaskellDepends = [ - aeson-pretty base bytestring directory ghc-prim haskell-src-exts - optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/ennocramer/floskell"; - description = "A flexible Haskell source code pretty printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "flow" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "flow"; - version = "1.0.19"; - sha256 = "2942c34bdb0f70bf647ab367e87ea404d8a17a9eeaf5c4357ceff2639dd7ee02"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/flow#readme"; - description = "Write more understandable Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "fmlist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "fmlist"; - version = "0.9.3"; - sha256 = "8e5fd44df2a7d9f950168d4a47c3389a719431976a52450323bd2dff458536f1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/fmlist"; - description = "FoldMap lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fn" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, directory - , filepath, http-types, resourcet, stdenv, text - , unordered-containers, wai, wai-extra - }: - mkDerivation { - pname = "fn"; - version = "0.3.0.2"; - sha256 = "1e34b017aa13f60464ec06dfbae970c3c0f01f2160f5001a4e84c8179de7ae5f"; - libraryHaskellDepends = [ - base blaze-builder bytestring directory filepath http-types - resourcet text unordered-containers wai wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/positiondev/fn#readme"; - description = "A functional web framework"; - license = stdenv.lib.licenses.isc; - }) {}; - "focus" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "focus"; - version = "1.0.1.3"; - sha256 = "bdb56955fdd0fe0f97e2292d121bdc7d679c37f7a87aed9195ab4c73fc7720bc"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/focus"; - description = "A general abstraction for manipulating elements of container data structures"; - license = stdenv.lib.licenses.mit; - }) {}; - "focuslist" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, containers, lens - , mono-traversable, QuickCheck, stdenv - }: - mkDerivation { - pname = "focuslist"; - version = "0.1.0.2"; - sha256 = "78527aad6212617d4c8c3183c02750693d5bd30be1a26f1caff7db434b31481b"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base containers lens mono-traversable QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/focuslist"; - description = "Lists with a focused element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce" = callPackage - ({ mkDerivation, base, data-default-class, stdenv, stm, stm-delay - , time - }: - mkDerivation { - pname = "fold-debounce"; - version = "0.2.0.9"; - sha256 = "98931e65001dd5d7be5a767837e74e6fc7a5ec16cbdd09408fa7e97a17995b0c"; - libraryHaskellDepends = [ - base data-default-class stm stm-delay time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce"; - description = "Fold multiple events that happen in a given period of time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fold-debounce-conduit" = callPackage - ({ mkDerivation, base, conduit, fold-debounce, resourcet, stdenv - , stm, transformers, transformers-base - }: - mkDerivation { - pname = "fold-debounce-conduit"; - version = "0.2.0.4"; - sha256 = "d201526442e17f2338e39eab36e423ac27e9a92c47b2b26c26ae5a8964611656"; - libraryHaskellDepends = [ - base conduit fold-debounce resourcet stm transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/fold-debounce-conduit"; - description = "Regulate input traffic from conduit Source with Control.FoldDebounce"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldable1" = callPackage - ({ mkDerivation, base, stdenv, transformers, util }: - mkDerivation { - pname = "foldable1"; - version = "0.1.0.0"; - sha256 = "85d684e5caab9e0c87dd04d016432f4a9effb5c8c62354aedcf85c96c1e3e90a"; - libraryHaskellDepends = [ base transformers util ]; - doHaddock = false; - doCheck = false; - description = "Foldable types with at least 1 element"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foldl" = callPackage - ({ mkDerivation, base, bytestring, comonad, containers - , contravariant, hashable, mwc-random, primitive, profunctors - , semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-builder - }: - mkDerivation { - pname = "foldl"; - version = "1.4.6"; - sha256 = "2a14aae99eb30344c983b8a07e0c2e5999d097042951e9349eb32d0f388a04aa"; - libraryHaskellDepends = [ - base bytestring comonad containers contravariant hashable - mwc-random primitive profunctors semigroupoids semigroups text - transformers unordered-containers vector vector-builder - ]; - doHaddock = false; - doCheck = false; - description = "Composable, streaming, and efficient left folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "folds" = callPackage - ({ mkDerivation, adjunctions, base, bifunctors, Cabal - , cabal-doctest, comonad, constraints, contravariant, data-reify - , distributive, lens, mtl, pointed, profunctors, reflection - , semigroupoids, stdenv, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "folds"; - version = "0.7.5"; - sha256 = "39e0c7511d7c24585e9a376cffe8ea84eb7486689d8ac6234ca59ed0dfeb489d"; - configureFlags = [ "-f-test-hlint" ]; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base bifunctors comonad constraints contravariant - data-reify distributive lens mtl pointed profunctors reflection - semigroupoids transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/folds"; - description = "Beautiful Folding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "follow-file" = callPackage - ({ mkDerivation, attoparsec, attoparsec-path, base, bytestring - , conduit, conduit-combinators, directory, exceptions, hinotify - , monad-control, mtl, path, stdenv, text, unix, utf8-string - }: - mkDerivation { - pname = "follow-file"; - version = "0.0.3"; - sha256 = "232de19ab42130273aac870e5b8d13e55996af670b28c12a192fcb664fe0bb5b"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/follow-file#readme"; - 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 = stdenv.lib.licenses.bsd3; - }) {}; - "force-layout" = callPackage - ({ mkDerivation, base, containers, data-default-class, lens, linear - , stdenv - }: - mkDerivation { - pname = "force-layout"; - version = "0.4.0.6"; - sha256 = "f7729855b1b14e0b255325faaca9f4834004e02bd21def6a865d2c55c734259d"; - revision = "5"; - editedCabalFile = "14d494pa7hcxmq9cvy039y5x7da6j4p5jp8kw0kmrlb9q8h6rh18"; - libraryHaskellDepends = [ - base containers data-default-class lens linear - ]; - doHaddock = false; - doCheck = false; - description = "Simple force-directed layout"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foreign-store" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "foreign-store"; - version = "0.2"; - sha256 = "06718a214d068eaa494cc82376f23b2059a141b01048cd7efcf2176a6c3383dc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/foreign-store"; - description = "Store a stable pointer in a foreign context to be retrieved later"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forkable-monad" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "forkable-monad"; - version = "0.2.0.3"; - sha256 = "571e33effa5baaef4e2dc910010e2b02c01d8b8e06f051e96906f288f71ad462"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/System-Indystress/ForkableMonad#readme"; - description = "An implementation of forkIO for monad stacks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "forma" = callPackage - ({ mkDerivation, aeson, base, containers, mtl, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "forma"; - version = "1.1.3"; - sha256 = "0c6c4f31688802ca44e477022c9d05f426109e3fc8cc4a98e07339b7e2c7a25d"; - libraryHaskellDepends = [ - aeson base containers mtl text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/forma"; - description = "Parse and validate forms in JSON format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "format-numbers" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "format-numbers"; - version = "0.1.0.0"; - sha256 = "0ca4561b55c888552f7bf0eb68e97b62acedcb0d5e5e1cc4afd94402d01231a6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/format-numbers#readme"; - description = "Various number formatting functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "formatting" = callPackage - ({ mkDerivation, array, base, bytestring, clock, ghc-prim - , integer-gmp, old-locale, scientific, semigroups, stdenv, text - , time, transformers - }: - mkDerivation { - pname = "formatting"; - version = "6.3.7"; - sha256 = "0cdb4fc2c33612db08cd07926ac4fbea6b9f3c31955ed7d212ae04586f585c1a"; - libraryHaskellDepends = [ - array base bytestring clock ghc-prim integer-gmp old-locale - scientific semigroups text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Combinator-based type-safe formatting (like printf() or FORMAT)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "foundation" = callPackage - ({ mkDerivation, base, basement, ghc-prim, stdenv }: - mkDerivation { - pname = "foundation"; - version = "0.0.25"; - sha256 = "c158550f8429be8614e832aa0b5018b29a4e5a8429118bdca5f6d7e74fe9d360"; - revision = "1"; - editedCabalFile = "1ps5sk50sf4b5hd87k3jqykqrwcw2wzyp50rcy6pghd61h83cjg2"; - libraryHaskellDepends = [ base basement ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-foundation/foundation"; - description = "Alternative prelude with batteries and no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free" = callPackage - ({ mkDerivation, base, comonad, containers, distributive - , exceptions, mtl, profunctors, semigroupoids, stdenv - , template-haskell, transformers, transformers-base - }: - mkDerivation { - pname = "free"; - version = "5.1.3"; - sha256 = "2c70d66e3a1ad52ce4b22d5510ffc6d7b3db950bd7f43bc61801cfe7b24c2e2d"; - libraryHaskellDepends = [ - base comonad containers distributive exceptions mtl profunctors - semigroupoids template-haskell transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/free/"; - description = "Monads for free"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-categories" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-categories"; - version = "0.1.0.0"; - sha256 = "9ddfd7b9e75c36ad2f7095013a1f00d61849b6b6b0f2469e62f207b8b6a1ea53"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/morphismtech/free-categories"; - description = "free categories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "free-vl" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "free-vl"; - version = "0.1.4"; - sha256 = "57f63ed35b42fc54fefb3cc183d0655e0d6c4a28d5371dba00fc9c9d3fa602bf"; - revision = "1"; - editedCabalFile = "1711k76b6w7gfqvc8z9jnylj4hhk3rvx7ap31y1mmq4g2a4s82qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aaronlevin/free-vl"; - description = "van Laarhoven encoded Free Monad with Extensible Effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freenect" = callPackage - ({ mkDerivation, base, freenect, freenect_sync, libfreenect, stdenv - , vector - }: - mkDerivation { - pname = "freenect"; - version = "1.2.1"; - sha256 = "fca7aa958ec04396334b101679f8603850d7c6629770d5206d774e115cd70759"; - libraryHaskellDepends = [ base vector ]; - librarySystemDepends = [ freenect freenect_sync ]; - libraryPkgconfigDepends = [ libfreenect ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/freenect"; - description = "Interface to the Kinect device"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) freenect; inherit (pkgs) freenect_sync; -inherit (pkgs) libfreenect;}; - "freer-simple" = callPackage - ({ mkDerivation, base, natural-transformation, stdenv - , template-haskell, transformers-base - }: - mkDerivation { - pname = "freer-simple"; - version = "1.2.1.1"; - sha256 = "27cc3eaebef74268421c25d87c088003f7d8f175dd8b39818e66f62e4ecc0b6f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base natural-transformation template-haskell transformers-base - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lexi-lambda/freer-simple#readme"; - description = "Implementation of a friendly effect system for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "freetype2" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "freetype2"; - version = "0.1.2"; - sha256 = "517e80298890e903b03134d7840d3d1a517bfdad53127ed57c2fdd18cbfae302"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell binding for FreeType 2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "friendly-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv, time }: - mkDerivation { - pname = "friendly-time"; - version = "0.4.1"; - sha256 = "9af3443227c3f271f5d11ed8c3c15c77a59de3ab82d87d93ac1f8455a54393c8"; - revision = "1"; - editedCabalFile = "096nfaqxavi6xblqh4q5dxks824liz75b4rm2la2hlkkn5mhqdgs"; - libraryHaskellDepends = [ base old-locale time ]; - doHaddock = false; - doCheck = false; - description = "Print time information in friendly ways"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "from-sum" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "from-sum"; - version = "0.2.3.0"; - sha256 = "015582194287e21259db9c60b92d4c896a88e9f6e92356def001e15aa3f5bae5"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/from-sum"; - description = "Combinators for working with Maybe and Either"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "frontmatter" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, yaml }: - mkDerivation { - pname = "frontmatter"; - version = "0.1.0.2"; - sha256 = "66eb97b0d5097397f0238b9af764a8c6ea2bb9a4a16cd1214051719fc313b99d"; - libraryHaskellDepends = [ attoparsec base bytestring yaml ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-frontmatter"; - description = "Parses frontmatter as used in Jekyll markdown files"; - license = stdenv.lib.licenses.mit; - }) {}; - "fsnotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , filepath, hinotify, shelly, stdenv, text, time, unix, unix-compat - }: - mkDerivation { - pname = "fsnotify"; - version = "0.3.0.1"; - sha256 = "ded2165f72a2b4971f941cb83ef7f58b200e3e04159be78da55ba6c5d35f6da5"; - revision = "1"; - editedCabalFile = "1pa9pa0kflkqlb4dysagy0aihn452hmf6wwlsr7fp4ygg86m7fsq"; - libraryHaskellDepends = [ - async base bytestring containers directory filepath hinotify shelly - text time unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-fswatch/hfsnotify"; - description = "Cross platform library for file change notification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fsnotify-conduit" = callPackage - ({ mkDerivation, base, conduit, directory, filepath, fsnotify - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "fsnotify-conduit"; - version = "0.1.1.1"; - sha256 = "03990f311f7d66a6996b88722602b6058fbae7ad33e74073875ef0466ef001ce"; - libraryHaskellDepends = [ - base conduit directory filepath fsnotify resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fsnotify-conduit#readme"; - description = "Get filesystem notifications as a stream of events"; - license = stdenv.lib.licenses.mit; - }) {}; - "funcmp" = callPackage - ({ mkDerivation, base, filepath, pretty, process, stdenv }: - mkDerivation { - pname = "funcmp"; - version = "1.9"; - sha256 = "08b2b982fc301af160ae5f2ab5d01e850b4ed177963fb19b4d4b2a28e7bdaab4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base filepath pretty process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/funcmp"; - description = "Functional MetaPost is a Haskell frontend to the MetaPost language"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "function-builder" = callPackage - ({ mkDerivation, base, stdenv, tagged }: - mkDerivation { - pname = "function-builder"; - version = "0.3.0.1"; - sha256 = "932d61d4622f84effcb67def19531f0baab34aa3adaff0417a6840a580f5eedf"; - libraryHaskellDepends = [ base tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/function-builder#readme"; - description = "Create poly variadic functions for monoidal results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "functor-classes-compat" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , unordered-containers, vector - }: - mkDerivation { - pname = "functor-classes-compat"; - version = "1"; - sha256 = "ef11f94f44a74d6657ee61dcd2cfbc6d0889d233a2fb4caae6a29d9c59a1366f"; - revision = "6"; - editedCabalFile = "0r0h3hp182w9ndhr5lrvhzl1vyj2f3vvh32fpdnbxb8xkkhx55sa"; - configureFlags = [ "-fcontainers" ]; - libraryHaskellDepends = [ - base containers hashable unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/functor-classes-compat#readme"; - description = "Data.Functor.Classes instances for core packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fused-effects" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "fused-effects"; - version = "1.0.0.0"; - sha256 = "463b9c9046ed2c36936f03ac52e1a2ad857c610b0c3585c5da85f232e0db1288"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fused-effects/fused-effects"; - description = "A fast, flexible, fused effect system"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzcheck" = callPackage - ({ mkDerivation, base, lifted-base, monad-control, QuickCheck - , random, stdenv, transformers - }: - mkDerivation { - pname = "fuzzcheck"; - version = "0.1.1"; - sha256 = "ecd664796e9cf5c608ca904897dd9ec18b471a86fcfb4216328382b28023d961"; - libraryHaskellDepends = [ - base lifted-base monad-control QuickCheck random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/fuzzcheck"; - description = "A simple checker for stress testing monadic code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzy-dates" = callPackage - ({ mkDerivation, base, hourglass, hspec, lens, parsec, stdenv }: - mkDerivation { - pname = "fuzzy-dates"; - version = "0.1.1.1"; - sha256 = "e33406933fbb45172f5ee9b10194397333effecc3ce5f1495521bc903faf56c1"; - libraryHaskellDepends = [ base hourglass hspec lens parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ReedOei/fuzzy-dates#readme"; - description = "Libary for parsing dates in strings in varied formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "fuzzyset" = callPackage - ({ mkDerivation, base, data-default, stdenv, text, text-metrics - , unordered-containers, vector - }: - mkDerivation { - pname = "fuzzyset"; - version = "0.2.0"; - sha256 = "cf5512f0897e6de3ba0899bd7e84b6dcc99b7f0d80977e52576586ec185ba873"; - libraryHaskellDepends = [ - base data-default text text-metrics unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/laserpants/fuzzyset-haskell"; - description = "Fuzzy set for approximate string matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gauge" = callPackage - ({ mkDerivation, base, basement, deepseq, directory, process - , stdenv, vector - }: - mkDerivation { - pname = "gauge"; - version = "0.2.5"; - sha256 = "d520fd677890c1bf2b1601331d003f976d85420811c3db4a72cff4d3bdb7f5a7"; - libraryHaskellDepends = [ - base basement deepseq directory process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-gauge"; - description = "small framework for performance measurement and analysis"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gd" = callPackage - ({ mkDerivation, base, bytestring, expat, fontconfig, freetype, gd - , libjpeg, libpng, stdenv, zlib - }: - mkDerivation { - pname = "gd"; - version = "3000.7.3"; - sha256 = "14aecb600d9a058b1905dfdef3d51a1eb11fb92f804fbaaa041103a0bfd97fb6"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ - expat fontconfig freetype gd libjpeg libpng zlib - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell binding to a subset of the GD graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat; inherit (pkgs) fontconfig; -inherit (pkgs) freetype; inherit (pkgs) gd; -inherit (pkgs) libjpeg; inherit (pkgs) libpng; inherit (pkgs) zlib;}; - "gdp" = callPackage - ({ mkDerivation, base, lawful, stdenv }: - mkDerivation { - pname = "gdp"; - version = "0.0.3.0"; - sha256 = "a0f70f3eb52d0c666ef2c6a68130d1e8db21c545fc9a7cd3a839dd538a347d5e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base lawful ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/gdp#readme"; - description = "Reason about invariants and preconditions with ghosts of departed proofs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "general-games" = callPackage - ({ mkDerivation, base, monad-loops, MonadRandom, random - , random-shuffle, stdenv - }: - mkDerivation { - pname = "general-games"; - version = "1.1.1"; - sha256 = "8b8e9e3546738b55a74589cf76ebe46c3a2f2fd346a853f9dbbf8bd0563350c0"; - libraryHaskellDepends = [ - base monad-loops MonadRandom random random-shuffle - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgorski/general-games"; - description = "Library supporting simulation of a number of games"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-arbitrary" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-arbitrary"; - version = "0.1.0"; - sha256 = "69f30a54e7a3d0a45288778e22e6d0d03cfc3b525dfe0a663cd4f559a619bcc6"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Generic implementation for QuickCheck's Arbitrary"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-constraints" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-abstraction }: - mkDerivation { - pname = "generic-constraints"; - version = "1.1.1.1"; - sha256 = "199c1374323914cd3e335404b2a1ab83127ed01bde489610fed81c046320a3c5"; - libraryHaskellDepends = [ base template-haskell th-abstraction ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yairchu/generic-constraints"; - description = "Constraints via Generic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-data" = callPackage - ({ mkDerivation, base, base-orphans, contravariant - , show-combinators, stdenv - }: - mkDerivation { - pname = "generic-data"; - version = "0.7.0.0"; - sha256 = "48c59d9c238596d764ab0391d3fce4dbbee64207460c902e7c771541fa47cd94"; - libraryHaskellDepends = [ - base base-orphans contravariant show-combinators - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/generic-data#readme"; - description = "Deriving instances with GHC.Generics and related utilities"; - license = stdenv.lib.licenses.mit; - }) {}; - "generic-deriving" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "generic-deriving"; - version = "1.13.1"; - sha256 = "e9b53a40eae58e18ee281858a1ba400f14128d5779858272b01c10d64aa09abe"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dreixel/generic-deriving"; - description = "Generic programming library for generalised deriving"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-lens" = callPackage - ({ mkDerivation, base, profunctors, stdenv, tagged, text }: - mkDerivation { - pname = "generic-lens"; - version = "1.2.0.1"; - sha256 = "8e6f5ee53df18b4c92ecef5e0443f4472989b2f931d264aaf99aad9c73ee8736"; - libraryHaskellDepends = [ base profunctors tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kcsongor/generic-lens"; - description = "Generically derive traversals, lenses and prisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-monoid" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "generic-monoid"; - version = "0.1.0.0"; - sha256 = "1ce033351f4674a6ffa1ff6b7b8c4f43a8f753e190c44d2d1b178db88daff04b"; - revision = "1"; - editedCabalFile = "1xsgnb87k80p3gn0jyiv3a1c6g77q8sqml6bmbpppfa24z8paa1p"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Derive monoid instances for product types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generic-random" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "generic-random"; - version = "1.3.0.0"; - sha256 = "f3c3025f5d9a44252a26d67446e2077331c005217233a1b52abec90fd6a6c2fc"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lysxia/generic-random"; - description = "Generic random generators"; - license = stdenv.lib.licenses.mit; - }) {}; - "generics-sop" = callPackage - ({ mkDerivation, base, ghc-prim, sop-core, stdenv, template-haskell - }: - mkDerivation { - pname = "generics-sop"; - version = "0.5.0.0"; - sha256 = "ece7130d99eec28d1d34a166875458e4fde9c05e77b8334c58863c61a36ab3a1"; - revision = "1"; - editedCabalFile = "10zfjhcipm77zfx32ls7bc8vk3affa5v7cyphwpw93d6sfqc9wym"; - libraryHaskellDepends = [ - base ghc-prim sop-core template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Generic Programming using True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "generics-sop-lens" = callPackage - ({ mkDerivation, base, generics-sop, lens, stdenv }: - mkDerivation { - pname = "generics-sop-lens"; - version = "0.2"; - sha256 = "4a30bcdf195082aa2ba6d6d4cd4d4d6378f49c09b522fad686fd0658beeda332"; - revision = "1"; - editedCabalFile = "1ghgh91wd764firxc2s083jzr38w51fg0ry2b7s1wn71mnvzb893"; - libraryHaskellDepends = [ base generics-sop lens ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/generics-sop-lens#readme"; - description = "Lenses for types in generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "genvalidity" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, validity }: - mkDerivation { - pname = "genvalidity"; - version = "0.9.1.0"; - sha256 = "6f420db0661f7c534f231637ad15c4e6903e7798bc0fa48568e09987b4076c5e"; - libraryHaskellDepends = [ base QuickCheck validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Testing utilities for the validity library"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-aeson" = callPackage - ({ mkDerivation, aeson, base, genvalidity, genvalidity-scientific - , genvalidity-text, genvalidity-unordered-containers - , genvalidity-vector, QuickCheck, stdenv, validity, validity-aeson - }: - mkDerivation { - pname = "genvalidity-aeson"; - version = "0.3.0.0"; - sha256 = "5090c6fc63c1a059c98bf77f09df8578ecf9c9b43a63d0538e3f8ab1d33c1651"; - libraryHaskellDepends = [ - aeson base genvalidity genvalidity-scientific genvalidity-text - genvalidity-unordered-containers genvalidity-vector QuickCheck - validity validity-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, genvalidity, QuickCheck, stdenv - , validity, validity-bytestring - }: - mkDerivation { - pname = "genvalidity-bytestring"; - version = "0.5.0.0"; - sha256 = "aa828fed8bfb38bb7a621e51f3540c6a0597ac92073cc60e321338da129e8f51"; - libraryHaskellDepends = [ - base bytestring genvalidity QuickCheck validity validity-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for ByteString"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-containers" = callPackage - ({ mkDerivation, base, containers, genvalidity, QuickCheck, stdenv - , validity, validity-containers - }: - mkDerivation { - pname = "genvalidity-containers"; - version = "0.8.0.1"; - sha256 = "575697f00d10585edfc527d957e613f5de3f5eae553377273c40e19d33de55c5"; - libraryHaskellDepends = [ - base containers genvalidity QuickCheck validity validity-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-property, hspec - , hspec-core, QuickCheck, stdenv, transformers, validity - }: - mkDerivation { - pname = "genvalidity-hspec"; - version = "0.7.0.3"; - sha256 = "bc192e16dddb1435652d9442e477afb9709f23e61a54fb1fd1bef502400bb157"; - libraryHaskellDepends = [ - base genvalidity genvalidity-property hspec hspec-core QuickCheck - transformers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for GenValidity instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-aeson"; - version = "0.3.1.0"; - sha256 = "2bcd3edb84fde5e6e72dd794352805e38cfa8814704ce4d95b018b2834ae362a"; - libraryHaskellDepends = [ - aeson base bytestring deepseq genvalidity genvalidity-hspec hspec - QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for aeson-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-binary" = callPackage - ({ mkDerivation, base, binary, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-binary"; - version = "0.2.0.3"; - sha256 = "b99ba22694a36af01f6617463a38a35f305e55c46c52ee727302f2e1585ea9aa"; - libraryHaskellDepends = [ - base binary deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for binary-related Instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-cereal" = callPackage - ({ mkDerivation, base, cereal, deepseq, genvalidity - , genvalidity-hspec, hspec, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-cereal"; - version = "0.2.0.3"; - sha256 = "947ec34b6befa40f12eb16ad1d37aba97c5daf91efcbb25c564e8ae2ac887185"; - libraryHaskellDepends = [ - base cereal deepseq genvalidity genvalidity-hspec hspec QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for cereal-related instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-hashable" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec - , genvalidity-property, hashable, hspec, QuickCheck, stdenv - , validity - }: - mkDerivation { - pname = "genvalidity-hspec-hashable"; - version = "0.2.0.4"; - sha256 = "36f8df481831d05752148ff7558651ff976432f2fab5b8dc9aa4485d1909cdef"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec genvalidity-property hashable - hspec QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard spec's for Hashable instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-hspec-optics" = callPackage - ({ mkDerivation, base, genvalidity, genvalidity-hspec, hspec - , microlens, QuickCheck, stdenv - }: - mkDerivation { - pname = "genvalidity-hspec-optics"; - version = "0.1.1.1"; - sha256 = "0a92cb7d1f98dc17634434f715473cc19596864146eee6256eaf86576c943788"; - libraryHaskellDepends = [ - base genvalidity genvalidity-hspec hspec microlens QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://cs-syd.eu"; - description = "Standard spec's for optics"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-path" = callPackage - ({ mkDerivation, base, genvalidity, path, QuickCheck, stdenv - , validity-path - }: - mkDerivation { - pname = "genvalidity-path"; - version = "0.3.0.3"; - sha256 = "84a4110d2d545a93ee6f1cfbcded1ef02c10791bd52ca3d3df4df672f2847483"; - libraryHaskellDepends = [ - base genvalidity path QuickCheck validity-path - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-property" = callPackage - ({ mkDerivation, base, genvalidity, hspec, pretty-show, QuickCheck - , stdenv, validity - }: - mkDerivation { - pname = "genvalidity-property"; - version = "0.5.0.1"; - sha256 = "ffa8322bcb9608a1a1cb5cc04099a19f3ecfb507923dc799bf3b9c433e617f33"; - libraryHaskellDepends = [ - base genvalidity hspec pretty-show QuickCheck validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Standard properties for functions on `Validity` types"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-scientific" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, scientific, stdenv - , validity, validity-scientific - }: - mkDerivation { - pname = "genvalidity-scientific"; - version = "0.2.1.0"; - sha256 = "af11d48c53455eb250e68c6cb4f6e8159ddc16fb635879fc2973d57d8bd5903d"; - libraryHaskellDepends = [ - base genvalidity QuickCheck scientific validity validity-scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-text" = callPackage - ({ mkDerivation, array, base, genvalidity, QuickCheck, stdenv, text - , validity, validity-text - }: - mkDerivation { - pname = "genvalidity-text"; - version = "0.6.0.0"; - sha256 = "4a8a0f3ab2616d6ef3d319b3114ee8549e2194a6d92a4be69e646ee16a25c804"; - libraryHaskellDepends = [ - array base genvalidity QuickCheck text validity validity-text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-time" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, time - , validity-time - }: - mkDerivation { - pname = "genvalidity-time"; - version = "0.2.1.1"; - sha256 = "c555c206edddbd70355b295ccf9ff053463c137735c4aebcc340091f6d6b7874"; - libraryHaskellDepends = [ - base genvalidity QuickCheck time validity-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-unordered-containers" = callPackage - ({ mkDerivation, base, genvalidity, hashable, QuickCheck, stdenv - , unordered-containers, validity, validity-unordered-containers - }: - mkDerivation { - pname = "genvalidity-unordered-containers"; - version = "0.3.0.0"; - sha256 = "30a7b8e14e7f0e97d7881929e2a508fa2bafd8c6f850c069437117a456259636"; - libraryHaskellDepends = [ - base genvalidity hashable QuickCheck unordered-containers validity - validity-unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-uuid" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, uuid - , validity, validity-uuid - }: - mkDerivation { - pname = "genvalidity-uuid"; - version = "0.1.0.2"; - sha256 = "d1354bdfc0a75a1f228cfed22cd0edb0cc13a925e4b2514a634d56eb5b53f412"; - libraryHaskellDepends = [ - base genvalidity QuickCheck uuid validity validity-uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for UUID"; - license = stdenv.lib.licenses.mit; - }) {}; - "genvalidity-vector" = callPackage - ({ mkDerivation, base, genvalidity, QuickCheck, stdenv, validity - , validity-vector, vector - }: - mkDerivation { - pname = "genvalidity-vector"; - version = "0.3.0.0"; - sha256 = "70f06305a7b90708287285c2e6cfb7d1ef27499287952d946f1918071d531b87"; - libraryHaskellDepends = [ - base genvalidity QuickCheck validity validity-vector vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "GenValidity support for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "geojson" = callPackage - ({ mkDerivation, aeson, base, containers, deepseq, lens, scientific - , semigroups, stdenv, text, transformers, validation, vector - }: - mkDerivation { - pname = "geojson"; - version = "4.0.1"; - sha256 = "32fb795e89d8bb5cf4baecd4dff09019961e70aa8fe2eb60ef9e847c8a341380"; - libraryHaskellDepends = [ - aeson base containers deepseq lens scientific semigroups text - transformers validation vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/indicatrix/hs-geojson"; - description = "A thin GeoJSON Layer above the aeson library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "getopt-generics" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, generics-sop - , stdenv, tagged - }: - mkDerivation { - pname = "getopt-generics"; - version = "0.13.0.4"; - sha256 = "f9458ffc13a8767ca8026a2c9dfc294ce2b5ca94148d5286e368bc1c2c9b5fe7"; - libraryHaskellDepends = [ - base base-compat base-orphans generics-sop tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/getopt-generics#readme"; - description = "Create command line interfaces with ease"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-compact" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "ghc-compact"; - version = "0.1.0.0"; - sha256 = "50bc40e5e5b3a17b267250136af0c04027a9d9eb699e9fee8a5a321bae424e0f"; - revision = "3"; - editedCabalFile = "09l51r0nk7vj6a9crz7q5sv4962mnq18xb6zkxfl6cnm28v85nsk"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "In memory storage of deeply evaluated data structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-core" = callPackage - ({ mkDerivation, base, colorize-haskell, directory, filepath - , pcre-light, process, stdenv - }: - mkDerivation { - pname = "ghc-core"; - version = "0.5.6"; - sha256 = "ec34f3e5892be7c2b52945875cd330397eca3904ae1d9574559855817b8b7e85"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base colorize-haskell directory filepath pcre-light process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shachaf/ghc-core"; - description = "Display GHC's core and assembly output in a pager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-exactprint" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , free, ghc, ghc-boot, ghc-paths, mtl, stdenv, syb - }: - mkDerivation { - pname = "ghc-exactprint"; - version = "0.6.2"; - sha256 = "32f13e5788576d971ad0a14cdea7e8d0c3f4980dfcb060cebdea8d29f77166b0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers directory filepath free ghc ghc-boot - ghc-paths mtl syb - ]; - doHaddock = false; - doCheck = false; - description = "ExactPrint for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-lib-parser, ghc-prim, happy - , hpc, pretty, process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib"; - version = "8.8.2"; - sha256 = "63a03737b12ac0f79e44df27aeccdf2545081356d92b7bf8e7fea93477204b37"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-lib-parser ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser" = callPackage - ({ mkDerivation, alex, array, base, binary, bytestring, containers - , deepseq, directory, filepath, ghc-prim, happy, hpc, pretty - , process, stdenv, time, transformers, unix - }: - mkDerivation { - pname = "ghc-lib-parser"; - version = "8.8.2"; - sha256 = "e08b1618149f63e7b02a2d3e665ba6001613460b76ae6bb5c9b0d45f79eb3761"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base binary bytestring containers deepseq directory filepath - ghc-prim hpc pretty process time transformers unix - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/digital-asset/ghc-lib"; - description = "The GHC API, decoupled from GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-lib-parser-ex" = callPackage - ({ mkDerivation, base, bytestring, ghc, ghc-boot-th, stdenv - , uniplate - }: - mkDerivation { - pname = "ghc-lib-parser-ex"; - version = "8.8.4.0"; - sha256 = "aaf6e296862c99520e2d25d5b7de92b46527a3d6eab70bf56919c139c5c47b9f"; - libraryHaskellDepends = [ - base bytestring ghc ghc-boot-th uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/shayne-fletcher/ghc-lib-parser-ex#readme"; - description = "Algorithms on GHC parse trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-paths" = callPackage - ({ mkDerivation, base, Cabal, directory, stdenv }: - mkDerivation { - pname = "ghc-paths"; - version = "0.1.0.12"; - sha256 = "6ecbe676d073cb07989c61ce4c5709c4e67cbefdd2d55a4095f9388b6fe2c484"; - revision = "1"; - editedCabalFile = "1gb4hn87a78j1c2y1adi81y03irzkaxywscjkphfajsxc7f0ydw5"; - setupHaskellDepends = [ base Cabal directory ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Knowledge of GHC's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-prof" = callPackage - ({ mkDerivation, attoparsec, base, containers, scientific, stdenv - , text, time - }: - mkDerivation { - pname = "ghc-prof"; - version = "1.4.1.6"; - sha256 = "24a8929d6b3342484e7159997498136c6262454a2b225b3d57fbdd4e8899d7e7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base containers scientific text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/ghc-prof"; - description = "Library for parsing GHC time and allocation profiling reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-source-gen" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-source-gen"; - version = "0.3.0.0"; - sha256 = "13632a428d8e41c6359c61b3bad9d259722b33470517bd98fc2bb0bb38b735e5"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/ghc-source-gen#readme"; - description = "Constructs Haskell syntax trees for the GHC API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-syntax-highlighter" = callPackage - ({ mkDerivation, base, ghc-lib-parser, stdenv, text }: - mkDerivation { - pname = "ghc-syntax-highlighter"; - version = "0.0.5.0"; - sha256 = "47042d944b9c5af8d19d2ba8bc41a939d548dbd958f296645aa6288979080926"; - revision = "2"; - editedCabalFile = "1l95cyk6cb2bwpy4whm3kgrm7jv3kbygsssip8jj9f683lrm5gf1"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ghc-lib-parser text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/ghc-syntax-highlighter"; - description = "Syntax highlighter for Haskell using lexer of GHC itself"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghc-tcplugins-extra" = callPackage - ({ mkDerivation, base, ghc, stdenv }: - mkDerivation { - pname = "ghc-tcplugins-extra"; - version = "0.4"; - sha256 = "1c6d4ffde539e3ff427c8f83d803cc1a4ddb6dd54d8fbc92318fcc9387aa057d"; - libraryHaskellDepends = [ base ghc ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/clash-lang/ghc-tcplugins-extra"; - description = "Utilities for writing GHC type-checker plugins"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-extra" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-prim - , ghc-tcplugins-extra, ghc-typelits-knownnat - , ghc-typelits-natnormalise, integer-gmp, stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-extra"; - version = "0.3.2"; - sha256 = "1be290e6fa67c0c83af1fe54e57b9f7264cd57d67923e9396dc01c42e31b8b6b"; - libraryHaskellDepends = [ - base containers ghc ghc-prim ghc-tcplugins-extra - ghc-typelits-knownnat ghc-typelits-natnormalise integer-gmp - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "Additional type-level operations on GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-knownnat" = callPackage - ({ mkDerivation, base, ghc, ghc-prim, ghc-tcplugins-extra - , ghc-typelits-natnormalise, stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "ghc-typelits-knownnat"; - version = "0.7.1"; - sha256 = "0cd4bb5364a88baeea1a5652dbc932ae13b43cd69855096e753a121ecd9aee02"; - libraryHaskellDepends = [ - base ghc ghc-prim ghc-tcplugins-extra ghc-typelits-natnormalise - template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://clash-lang.org/"; - description = "Derive KnownNat constraints from other KnownNat constraints"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghc-typelits-natnormalise" = callPackage - ({ mkDerivation, base, containers, ghc, ghc-tcplugins-extra - , integer-gmp, stdenv, transformers - }: - mkDerivation { - pname = "ghc-typelits-natnormalise"; - version = "0.7"; - sha256 = "a4f3c783c63ed4bef7c9ac7cfa401aac6d796c544488b1917a434d08e131dce5"; - libraryHaskellDepends = [ - base containers ghc ghc-tcplugins-extra integer-gmp transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.clash-lang.org/"; - description = "GHC typechecker plugin for types of kind GHC.TypeLits.Nat"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "ghci-hexcalc" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "ghci-hexcalc"; - version = "0.1.1.0"; - sha256 = "701ee465d6f1d4b815782954fb68bd058b257b38773b07e89f2ee01c38ea53ce"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/takenobu-hs/ghci-hexcalc"; - description = "GHCi as a Hex Calculator interactive"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcid" = callPackage - ({ mkDerivation, ansi-terminal, base, cmdargs, containers - , directory, extra, filepath, fsnotify, process, stdenv - , terminal-size, time, unix - }: - mkDerivation { - pname = "ghcid"; - version = "0.8.1"; - sha256 = "8c3039278092139745ec0e09d37c3d375d1cf74feb878e35075d3ca3569abecc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base cmdargs directory extra filepath process time - ]; - executableHaskellDepends = [ - ansi-terminal base cmdargs containers directory extra filepath - fsnotify process terminal-size time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/ghcid#readme"; - description = "GHCi based bare bones IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ghcjs-codemirror" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghcjs-codemirror"; - version = "0.0.0.2"; - sha256 = "6cbb2c649f6d4a874eb7486a2dd33db2ed0f138f1f8289a6447460d39b4b2097"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ghcjs/CodeMirror"; - description = "Installs CodeMirror JavaScript files"; - license = stdenv.lib.licenses.mit; - }) {}; - "ghost-buster" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ghost-buster"; - version = "0.1.1.0"; - sha256 = "02d0930ee77838e7f5a04ebc0a74f62b15218b8ace4a5b88510d9a6b56dbf6d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lazersmoke/ghost-buster#readme"; - description = "Existential type utilites"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gingersnap" = callPackage - ({ mkDerivation, aeson, base, bytestring, deepseq, http-types - , postgresql-simple, resource-pool, snap-core, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "gingersnap"; - version = "0.3.1.0"; - sha256 = "01509dbfc31e865128d2ef13efc56502f9a716f7b30f0890a0616612aed08c82"; - libraryHaskellDepends = [ - aeson base bytestring deepseq http-types postgresql-simple - resource-pool snap-core text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Consistent and safe JSON APIs with snap-core and (by default) postgresql-simple"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "giphy-api" = callPackage - ({ mkDerivation, aeson, base, containers, http-api-data - , http-client, http-client-tls, microlens, microlens-th, mtl - , network-uri, servant, servant-client, stdenv, text, transformers - }: - mkDerivation { - pname = "giphy-api"; - version = "0.7.0.0"; - sha256 = "4195eb1e30b8cd623bee40da6e0b01c1f3670c0c2de8acb65fe6cbc0d21c0d90"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/passy/giphy-api#readme"; - description = "Giphy HTTP API wrapper and CLI search tool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "githash" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "githash"; - version = "0.1.3.3"; - sha256 = "598231964e161440335b1ba4d31d4b8195e0b78d834d3bbaf4be86faadd0b0a7"; - libraryHaskellDepends = [ - base bytestring directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/githash#readme"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-rest" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, jwt, mtl, scientific, stdenv, text - , time, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "github-rest"; - version = "1.0.1"; - sha256 = "290d12017758c6b88a598cfceb39b034a1351bed4fc729ad9c8b5f577b2a6937"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-types jwt - mtl scientific text time transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/github-rest#readme"; - description = "Query the GitHub REST API programmatically"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "github-types" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, time }: - mkDerivation { - pname = "github-types"; - version = "0.2.1"; - sha256 = "cce4ea461b3ea7c92d130181244cfe7f29c10aecc7e7a980ee6722b6d6af7867"; - libraryHaskellDepends = [ aeson base text time ]; - doHaddock = false; - doCheck = false; - description = "Type definitions for objects used by the GitHub v3 API"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "gitlab-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, connection, http-conduit - , http-types, stdenv, text, time, transformers, unliftio - , unliftio-core - }: - mkDerivation { - pname = "gitlab-haskell"; - version = "0.1.5"; - sha256 = "9c998cfbfea97d835ade99bcb0cdc47eea23b3160126f18b5ca98f1955a09407"; - libraryHaskellDepends = [ - aeson base bytestring connection http-conduit http-types text time - transformers unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/robstewart57/gitlab-haskell"; - description = "A Haskell library for the GitLab web API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gitrev" = callPackage - ({ mkDerivation, base, base-compat, directory, filepath, process - , stdenv, template-haskell - }: - mkDerivation { - pname = "gitrev"; - version = "1.3.1"; - sha256 = "a89964db24f56727b0e7b10c98fe7c116d721d8c46f52d6e77088669aaa38332"; - libraryHaskellDepends = [ - base base-compat directory filepath process template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acfoltzer/gitrev"; - description = "Compile git revision info into Haskell projects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gl" = callPackage - ({ mkDerivation, base, containers, fixed, half, libGL, stdenv - , transformers - }: - mkDerivation { - pname = "gl"; - version = "0.9"; - sha256 = "318ef0aab5239d5253c387709dd935c43a0d614f9bb1e186db4a7a96d88b61cd"; - revision = "1"; - editedCabalFile = "19qyb9m2fy9qyirmhhayg51scas42n3i2rx7jcw6v3ra8c8r9rwr"; - libraryHaskellDepends = [ - base containers fixed half transformers - ]; - librarySystemDepends = [ libGL ]; - doHaddock = false; - doCheck = false; - description = "Complete OpenGL raw bindings"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libGL;}; - "glabrous" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base, bytestring - , cereal, cereal-text, either, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "glabrous"; - version = "2.0.1"; - sha256 = "9c738bc148407b74c94947e3fa6c739b03669b3dd0f33829617df29efd390719"; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base bytestring cereal cereal-text - either text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/glabrous"; - description = "A template DSL library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gluturtle" = callPackage - ({ mkDerivation, base, convertible, GLUT, stdenv, stm, yjsvg - , yjtools - }: - mkDerivation { - pname = "gluturtle"; - version = "0.0.58.1"; - sha256 = "178658ce4f76ac0a855ca9123cdc8bda0ecc5531356551c00ba6de98dcbd934b"; - libraryHaskellDepends = [ - base convertible GLUT stm yjsvg yjtools - ]; - doHaddock = false; - doCheck = false; - description = "turtle like LOGO with glut"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "google-isbn" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, conduit-extra - , http-conduit, stdenv, text - }: - mkDerivation { - pname = "google-isbn"; - version = "1.0.3"; - sha256 = "3a4df734785c46d381cff3cb44a553b0f9d5ffb051279367a193d64928c2322f"; - libraryHaskellDepends = [ - aeson base bytestring conduit conduit-extra http-conduit text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/google-isbn#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gothic" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, connection - , exceptions, hashable, http-client, http-client-tls, http-conduit - , http-types, lens, lens-aeson, scientific, stdenv, text, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "gothic"; - version = "0.1.3"; - sha256 = "fa661e5966446020678329bf4f87ecfed2fbae24802b22fefe6e96ac58b8e642"; - libraryHaskellDepends = [ - aeson base binary bytestring connection exceptions hashable - http-client http-client-tls http-conduit http-types lens lens-aeson - scientific text unix unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/gothic"; - description = "A Haskell Vault KVv2 secret engine client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gpolyline" = callPackage - ({ mkDerivation, base, split, stdenv }: - mkDerivation { - pname = "gpolyline"; - version = "0.1.0.1"; - sha256 = "28b3a644853ba6f0a7d6465d8d62646a10c995008a799ae67e728c8cf4a17a05"; - libraryHaskellDepends = [ base split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fegu/gpolyline"; - description = "Pure module for encoding/decoding Google Polyline"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graph-core" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, mtl, safe - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "graph-core"; - version = "0.3.0.0"; - sha256 = "378f0baa40ebbb78e8c389f79e363eb573cdf182f799684d2f3d6ac51b10e854"; - libraryHaskellDepends = [ - base containers deepseq hashable mtl safe unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/factisresearch/graph-core"; - description = "Fast, memory efficient and persistent graph implementation"; - license = stdenv.lib.licenses.mit; - }) {}; - "graph-wrapper" = callPackage - ({ mkDerivation, array, base, containers, stdenv }: - mkDerivation { - pname = "graph-wrapper"; - version = "0.2.6.0"; - sha256 = "b89ed6f47a6d44b9466d090eabddc9d9ec4b2d7e4b52a61b26d0cf19dac95ba6"; - libraryHaskellDepends = [ array base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/graph-wrapper"; - description = "A wrapper around the standard Data.Graph with a less awkward interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "graphs" = callPackage - ({ mkDerivation, array, base, containers, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "graphs"; - version = "0.7.1"; - sha256 = "acd37a7ba5dd02f24131ac8971a5f8639cc0e9db687e7d6790a84af4af0ce209"; - revision = "1"; - editedCabalFile = "1cjyxswlkachki6l4mcaffwpjajyx86jzipzlqjg7c080vwvb19g"; - libraryHaskellDepends = [ - array base containers transformers transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/graphs"; - description = "A simple monadic graph library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "gravatar" = callPackage - ({ mkDerivation, base, bytestring, data-default, HTTP, pureMD5 - , stdenv, text - }: - mkDerivation { - pname = "gravatar"; - version = "0.8.0"; - sha256 = "6f6000acaea47f3fc8711f5a2a62d5fbe96f5bb698fcb997f9f07ffe3102f4d7"; - libraryHaskellDepends = [ - base bytestring data-default HTTP pureMD5 text - ]; - doHaddock = false; - doCheck = false; - description = "Generate Gravatar image URLs"; - license = stdenv.lib.licenses.mit; - }) {}; - "greskell" = callPackage - ({ mkDerivation, aeson, base, exceptions, greskell-core, hashable - , semigroups, stdenv, text, transformers, unordered-containers - , vector - }: - mkDerivation { - pname = "greskell"; - version = "1.0.0.1"; - sha256 = "1c27f0f365065af3d431671a7d2d630f62ab32bbb185eccdb3ffdc46eec6181c"; - configureFlags = [ "-f-hint-test" ]; - libraryHaskellDepends = [ - aeson base exceptions greskell-core hashable semigroups text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-core" = callPackage - ({ mkDerivation, aeson, base, containers, hashable, scientific - , semigroups, stdenv, text, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "greskell-core"; - version = "0.1.3.1"; - sha256 = "bcd22f9587b708e8d09a043784bcb9afcb94b6f840e5f5ecb3c60760f2efe64a"; - libraryHaskellDepends = [ - aeson base containers hashable scientific semigroups text - unordered-containers uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell binding for Gremlin graph query language - core data types and tools"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "greskell-websocket" = callPackage - ({ mkDerivation, aeson, async, base, base64-bytestring, bytestring - , greskell-core, hashtables, safe-exceptions, stdenv, stm, text - , unordered-containers, uuid, vector, websockets - }: - mkDerivation { - pname = "greskell-websocket"; - version = "0.1.2.1"; - sha256 = "fd92319d970ddf4c58772bb555659fe31ea5ccd9c9c7efab968d3362ece9e473"; - libraryHaskellDepends = [ - aeson async base base64-bytestring bytestring greskell-core - hashtables safe-exceptions stm text unordered-containers uuid - vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/greskell/"; - description = "Haskell client for Gremlin Server using WebSocket serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groom" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv }: - mkDerivation { - pname = "groom"; - version = "0.1.2.1"; - sha256 = "a6b4a4d3af1b26f63039f04bd4176493f8dd4f6a9ab281f0e33c0151c20de59d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base haskell-src-exts ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing for well-behaved Show instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "group-by-date" = callPackage - ({ mkDerivation, base, explicit-exception, filemanip, hsshellscript - , pathtype, stdenv, time, transformers, unix-compat, utility-ht - }: - mkDerivation { - pname = "group-by-date"; - version = "0.1.0.3"; - sha256 = "501a34dffc20c0f8e4086d66e61219ac1c885d889de1fba165d9aafeebf3e253"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base explicit-exception filemanip hsshellscript pathtype time - transformers unix-compat utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/group-by-date/"; - description = "Shell command for grouping files by dates into folders"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "groups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "groups"; - version = "0.4.1.0"; - sha256 = "dd4588b71dfff42b9a30cb40304912742b95db964b20f51951aff0eee7f3f33d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Haskell 98 groups"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "guarded-allocation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "guarded-allocation"; - version = "0.0.1"; - sha256 = "0cac10d1790817bdbc44ffe4ee8fcb649e350bb831987ee80739393917784695"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/guarded-allocation/"; - description = "Memory allocation with added stress tests and integrity checks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hackage-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, exceptions, filepath, stdenv, tar, time, utf8-string - }: - mkDerivation { - pname = "hackage-db"; - version = "2.1.0"; - sha256 = "7458bdecb426344ced430851c95ef5901b827e610063e6b32ba2acbc32054cef"; - revision = "1"; - editedCabalFile = "1h3x5a8xmqkkcd3h1m7z0il1vbsh2c77685y68zmyp21zb1y88hy"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory exceptions - filepath tar time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hackage-db#readme"; - description = "Access cabal-install's Hackage database via Data.Map"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-api" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, fetchgit, filepath, ghc, ghc-boot, ghc-paths - , haddock-library, stdenv, transformers, xhtml - }: - mkDerivation { - pname = "haddock-api"; - version = "2.23.0"; - src = fetchgit { - url = "https://github.com/haskell/haddock.git"; - sha256 = "0b6c78paq6hh8n9pasnwwmlhfk745ha84fd84500mcpjlrsm5qgf"; - rev = "be8b02c4e3cffe7d45b3dad0a0f071d35a274d65"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/haddock-api; echo source root reset to $sourceRoot"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath ghc - ghc-boot ghc-paths haddock-library transformers xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "A documentation-generation tool for Haskell libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haddock-library" = callPackage - ({ mkDerivation, base, bytestring, containers, parsec, stdenv, text - , transformers - }: - mkDerivation { - pname = "haddock-library"; - version = "1.8.0"; - sha256 = "7093a70308a548c1fa46c01fe236bc27125311159ad797304e6b0ee893d8b797"; - revision = "1"; - editedCabalFile = "09v6lq3ncf3ax7b6n36vhsflm488x0qc8sgc3w17m09x1jl48d99"; - libraryHaskellDepends = [ - base bytestring containers parsec text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haddock/"; - description = "Library exposing some functionality of Haddock"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "half" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell }: - mkDerivation { - pname = "half"; - version = "0.3"; - sha256 = "06b26fb062a55fa8f5df1cc2fddc47e5303f09977279f05f62d1950a51b72093"; - libraryHaskellDepends = [ base deepseq template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/half"; - description = "Half-precision floating-point"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hamtsolo" = callPackage - ({ mkDerivation, async, attoparsec, attoparsec-binary, base, binary - , bytestring, conduit, conduit-combinators, conduit-extra - , exceptions, gitrev, optparse-applicative, resourcet, stdenv - , stm-conduit, unix - }: - mkDerivation { - pname = "hamtsolo"; - version = "1.0.3"; - sha256 = "d0deda06a582db978a417d8eed9e403c339a54c4bc9c2b6c6cdee8555dbb7035"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - async attoparsec attoparsec-binary base binary bytestring conduit - conduit-combinators conduit-extra exceptions gitrev - optparse-applicative resourcet stm-conduit unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfc/hamtsolo#readme"; - description = "Intel AMT serial-over-lan (SOL) client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "happy" = callPackage - ({ mkDerivation, array, base, containers, mtl, stdenv }: - mkDerivation { - pname = "happy"; - version = "1.19.12"; - sha256 = "fb9a23e41401711a3b288f93cf0a66db9f97da1ce32ec4fffea4b78a0daeb40f"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ array base containers mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.haskell.org/happy/"; - description = "Happy is a parser generator for Haskell"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "hashable" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, integer-gmp - , stdenv, text - }: - mkDerivation { - pname = "hashable"; - version = "1.3.0.0"; - sha256 = "822e5413fbccca6ae884d3aba4066422c8b5d58d23d18b9ecb5c03273bb19ab4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim integer-gmp text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tibbe/hashable"; - description = "A class for types that can be converted to a hash value"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashable-time" = callPackage - ({ mkDerivation, base, hashable, stdenv, time }: - mkDerivation { - pname = "hashable-time"; - version = "0.2.0.2"; - sha256 = "fa61f7fbd493b5a54f2aeb10e0c1c4144111ecf34e74080d12c5738ce925fee0"; - revision = "2"; - editedCabalFile = "006phc5y9rrvsshdcmjmhxzxh8dpgs685mpqbkjm9c40xb1ydjbz"; - libraryHaskellDepends = [ base hashable time ]; - doHaddock = false; - doCheck = false; - description = "Hashable instances for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashids" = callPackage - ({ mkDerivation, base, bytestring, containers, split, stdenv }: - mkDerivation { - pname = "hashids"; - version = "1.0.2.4"; - sha256 = "27991fc8a6debe76a086af80f6b72a5d451e7f1466b79cb0df973b98a2f5f3cf"; - libraryHaskellDepends = [ base bytestring containers split ]; - doHaddock = false; - doCheck = false; - homepage = "http://hashids.org/"; - description = "Hashids generates short, unique, non-sequential ids from numbers"; - license = stdenv.lib.licenses.mit; - }) {}; - "hashmap" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "hashmap"; - version = "1.3.3"; - sha256 = "dc06b57cd1bcd656d4602df7705a3f11a54ae65f664e9be472d42a9bdcd64755"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/foxik/hashmap"; - description = "Persistent containers Map and Set based on hashing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hashtables" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "hashtables"; - version = "1.2.3.4"; - sha256 = "125ce62701fba3f666609f5c75f452005aa5d32dff4eeee3f3903c30b2ed55e6"; - libraryHaskellDepends = [ - base ghc-prim hashable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gregorycollins/hashtables"; - description = "Mutable hash tables in the ST monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskeline" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , process, stdenv, stm, terminfo, transformers, unix - }: - mkDerivation { - pname = "haskeline"; - version = "0.7.5.0"; - sha256 = "d26508444914efcd6a0369f89c3ade57feae7732c73f5329b610c0c8f1c1dec6"; - revision = "1"; - editedCabalFile = "0i8fyhk7fvz2bxnh5xsmdw5rr7yywzc2wv115034q1g4sb018zrd"; - configureFlags = [ "-fterminfo" ]; - libraryHaskellDepends = [ - base bytestring containers directory filepath process stm terminfo - transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/judah/haskeline"; - description = "A command-line interface for user input, written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-gi" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, Cabal, containers - , directory, filepath, glib, gobject-introspection, haskell-gi-base - , mtl, pretty-show, process, regex-tdfa, safe, stdenv, text - , transformers, xdg-basedir, xml-conduit - }: - mkDerivation { - pname = "haskell-gi"; - version = "0.23.0"; - sha256 = "8ad81ef082c71f41c6c6e0afbd8779497da6ffb1e9e7c2b207efe0b56aa7a211"; - libraryHaskellDepends = [ - attoparsec base bytestring Cabal containers directory filepath - haskell-gi-base mtl pretty-show process regex-tdfa safe text - transformers xdg-basedir xml-conduit - ]; - libraryPkgconfigDepends = [ glib gobject-introspection ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Generate Haskell bindings for GObject Introspection capable libraries"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib; inherit (pkgs) gobject-introspection;}; - "haskell-gi-base" = callPackage - ({ mkDerivation, base, bytestring, containers, glib, stdenv, text - }: - mkDerivation { - pname = "haskell-gi-base"; - version = "0.23.0"; - sha256 = "c07ebe7dea2a3c2b0a980f7b958529920caeaf5966280c1317c5fbba2f6942b8"; - libraryHaskellDepends = [ base bytestring containers text ]; - libraryPkgconfigDepends = [ glib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi-base"; - description = "Foundation for libraries generated by haskell-gi"; - license = stdenv.lib.licenses.lgpl21; - }) {inherit (pkgs) glib;}; - "haskell-gi-overloading" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "haskell-gi-overloading"; - version = "1.0"; - sha256 = "3ed797f8dd8d3535640b1ca99851bbc5968817c25a80fc499af42715d371682a"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-gi/haskell-gi"; - description = "Overloading support for haskell-gi"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-ide-engine" = callPackage - ({ mkDerivation, aeson, apply-refact, async, base, blaze-markup - , brittany, bytestring, bytestring-trie, Cabal, cabal-helper - , containers, data-default, Diff, directory, fetchgit, filepath - , floskell, fold-debounce, ghc, ghc-exactprint, gitrev, haddock-api - , haddock-library, haskell-lsp, haskell-lsp-types, haskell-src-exts - , hie-bios, hie-plugin-api, hlint, hoogle, hsimport, hslogger - , hspec, hspec-core, lens, lifted-async, monoid-subclasses, mtl - , optparse-simple, ormolu, parsec, process, safe, sorted-list - , stdenv, stm, syb, tagsoup, text, transformers, unix-time - , unliftio, unordered-containers, vector, versions, yaml - }: - mkDerivation { - pname = "haskell-ide-engine"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - configureFlags = [ "-fpedantic" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson apply-refact async base blaze-markup brittany bytestring - bytestring-trie Cabal cabal-helper containers data-default Diff - directory filepath floskell fold-debounce ghc ghc-exactprint gitrev - haddock-api haddock-library haskell-lsp haskell-lsp-types - haskell-src-exts hie-bios hie-plugin-api hlint hoogle hsimport - hslogger hspec hspec-core lens lifted-async monoid-subclasses mtl - optparse-simple ormolu parsec process safe sorted-list stm syb - tagsoup text transformers unix-time unliftio unordered-containers - vector versions yaml - ]; - executableHaskellDepends = [ - base containers data-default directory filepath ghc haskell-lsp - haskell-lsp-types hie-bios hie-plugin-api hslogger optparse-simple - process stm text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/githubuser/haskell-ide-engine#readme"; - description = "Provide a common engine to power any Haskell IDE"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lexer" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "haskell-lexer"; - version = "1.1"; - sha256 = "313a15cc643322c8badd148867ce25ca1ffc191df9e7eeec5b10bc08c4b563d5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yav/haskell-lexer"; - description = "A fully compliant Haskell 98 lexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-lsp" = callPackage - ({ mkDerivation, aeson, async, attoparsec, base, bytestring - , containers, data-default, directory, filepath, hashable - , haskell-lsp-types, hslogger, lens, mtl, network-uri - , rope-utf16-splay, sorted-list, stdenv, stm, temporary, text, time - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp"; - version = "0.19.0.0"; - sha256 = "91885a0707e977ca4e6ab2bda4af3cc0ab5d7394e34c970d93e8e5d158965532"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async attoparsec base bytestring containers data-default - directory filepath hashable haskell-lsp-types hslogger lens mtl - network-uri rope-utf16-splay sorted-list stm temporary text time - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-lsp-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, deepseq - , filepath, hashable, lens, network-uri, scientific, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "haskell-lsp-types"; - version = "0.19.0.0"; - sha256 = "a942ab1e504d8ae61b586c9b048e3b1422ab793bd908062332180af01beb3921"; - libraryHaskellDepends = [ - aeson base bytestring data-default deepseq filepath hashable lens - network-uri scientific text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alanz/haskell-lsp"; - description = "Haskell library for the Microsoft Language Server Protocol, data types"; - license = stdenv.lib.licenses.mit; - }) {}; - "haskell-names" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers - , data-lens-light, filepath, haskell-src-exts, mtl, stdenv - , transformers, traverse-with-class, uniplate - }: - mkDerivation { - pname = "haskell-names"; - version = "0.9.7"; - sha256 = "b2b03fb559fed5904750e5678b05be51b9158195b552971e08f825456e9ba0a9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers data-lens-light filepath - haskell-src-exts mtl transformers traverse-with-class uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/haskell-suite/haskell-names"; - description = "Name resolution library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src" = callPackage - ({ mkDerivation, array, base, happy, pretty, stdenv, syb }: - mkDerivation { - pname = "haskell-src"; - version = "1.0.3.1"; - sha256 = "869cc710004c2161470d8a788dab96d2cff054fa106c301be6689109f57e5132"; - libraryHaskellDepends = [ array base pretty syb ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - description = "Support for manipulating Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts" = callPackage - ({ mkDerivation, array, base, ghc-prim, happy, pretty, stdenv }: - mkDerivation { - pname = "haskell-src-exts"; - version = "1.21.1"; - sha256 = "2ec911614325f1e5eef7e5bef15c08b8265931d69da3ce566af109d486453e60"; - libraryHaskellDepends = [ array base ghc-prim pretty ]; - libraryToolDepends = [ happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-suite/haskell-src-exts"; - description = "Manipulating Haskell source: abstract syntax, lexer, parser, and pretty-printer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-exts-util" = callPackage - ({ mkDerivation, base, containers, data-default, haskell-src-exts - , semigroups, stdenv, transformers, uniplate - }: - mkDerivation { - pname = "haskell-src-exts-util"; - version = "0.2.5"; - sha256 = "c802f9ec4e05668e3eeb2cbb0a827f342854211315f9bb74c1e79253c589783b"; - libraryHaskellDepends = [ - base containers data-default haskell-src-exts semigroups - transformers uniplate - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/haskell-src-exts-util"; - description = "Helper functions for working with haskell-src-exts trees"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskell-src-meta" = callPackage - ({ mkDerivation, base, haskell-src-exts, pretty, stdenv, syb - , template-haskell, th-orphans - }: - mkDerivation { - pname = "haskell-src-meta"; - version = "0.8.5"; - sha256 = "331271554ba42e4938da1417df1e3192737c3e19dceb9a5484198c71ecb858b3"; - revision = "1"; - editedCabalFile = "00znr8mrlbyn0n1bw4c82rv82pq5ngkk7kw9cgk13pghf93hwwv7"; - libraryHaskellDepends = [ - base haskell-src-exts pretty syb template-haskell th-orphans - ]; - doHaddock = false; - doCheck = false; - description = "Parse source to template-haskell abstract syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskey-btree" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, hashable - , mtl, semigroups, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "haskey-btree"; - version = "0.3.0.1"; - sha256 = "35f54cf51b0cd66361b29e21ebcd0603ab2396028e58ab667ac709591491f387"; - libraryHaskellDepends = [ - base binary bytestring containers hashable mtl semigroups text - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/haskey-btree"; - description = "B+-tree implementation in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "haskoin-core" = callPackage - ({ mkDerivation, aeson, array, base, base16-bytestring, bytestring - , cereal, conduit, containers, cryptonite, deepseq, entropy - , hashable, hspec, HUnit, memory, mtl, murmur3, network, QuickCheck - , safe, scientific, secp256k1-haskell, split, stdenv - , string-conversions, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "haskoin-core"; - version = "0.10.0"; - sha256 = "db0252076e56e9636ff3e790ca769977aa3122906bfb40e648ce1dcf2cf8693d"; - libraryHaskellDepends = [ - aeson array base base16-bytestring bytestring cereal conduit - containers cryptonite deepseq entropy hashable hspec HUnit memory - mtl murmur3 network QuickCheck safe scientific secp256k1-haskell - split string-conversions text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/haskoin#readme"; - description = "Bitcoin & Bitcoin Cash library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "haskoin-node" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, conduit-extra - , containers, data-default, hashable, haskoin-core, monad-logger - , mtl, network, nqe, random, resourcet, rocksdb-haskell - , rocksdb-query, stdenv, string-conversions, text, time - , transformers, unliftio, unordered-containers - }: - mkDerivation { - pname = "haskoin-node"; - version = "0.9.15"; - sha256 = "fdde5a8c46a9580c691bafa0906ebabb0312134f8f1d5c24a6e32fd921c6be2d"; - libraryHaskellDepends = [ - base bytestring cereal conduit conduit-extra containers - data-default hashable haskoin-core monad-logger mtl network nqe - random resourcet rocksdb-haskell rocksdb-query string-conversions - text time transformers unliftio unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/haskoin#readme"; - description = "Haskoin Node P2P library for Bitcoin and Bitcoin Cash"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "hasql" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, bytestring - , bytestring-strict-builder, contravariant, contravariant-extras - , dlist, hashable, hashtables, loch-th, mtl, placeholders - , postgresql-binary, postgresql-libpq, profunctors, stdenv, text - , text-builder, transformers, vector - }: - mkDerivation { - pname = "hasql"; - version = "1.4.1"; - sha256 = "8c0b99bbea546dbc78619999c0509520a74922bc9b6c05dec03d4def978ed763"; - libraryHaskellDepends = [ - attoparsec base base-prelude bytestring bytestring-strict-builder - contravariant contravariant-extras dlist hashable hashtables - loch-th mtl placeholders postgresql-binary postgresql-libpq - profunctors text text-builder transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql"; - description = "An efficient PostgreSQL driver with a flexible mapping API"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-optparse-applicative" = callPackage - ({ mkDerivation, base-prelude, hasql, hasql-pool - , optparse-applicative, stdenv - }: - mkDerivation { - pname = "hasql-optparse-applicative"; - version = "0.3.0.5"; - sha256 = "b8f7061c488f9b84cdcbc506c7429aa403a77f628a9b683605f8d33efa7aaf60"; - libraryHaskellDepends = [ - base-prelude hasql hasql-pool optparse-applicative - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sannsyn/hasql-optparse-applicative"; - description = "\"optparse-applicative\" parsers for \"hasql\""; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-pool" = callPackage - ({ mkDerivation, base-prelude, hasql, resource-pool, stdenv, time - }: - mkDerivation { - pname = "hasql-pool"; - version = "0.5.1"; - sha256 = "739860f61589261b120368c113fbe88360e5db8eafc2166fbaba2a70692cf429"; - libraryHaskellDepends = [ base-prelude hasql resource-pool time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-pool"; - description = "A pool of connections for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasql-transaction" = callPackage - ({ mkDerivation, base, bytestring, bytestring-tree-builder - , contravariant, contravariant-extras, hasql, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "hasql-transaction"; - version = "1.0.0.1"; - sha256 = "149739aba03a0a2c40e965cc3b7b995ae60be95a1f06e26dbca6c82bf552db49"; - libraryHaskellDepends = [ - base bytestring bytestring-tree-builder contravariant - contravariant-extras hasql mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/hasql-transaction"; - description = "Composable abstraction over retryable transactions for Hasql"; - license = stdenv.lib.licenses.mit; - }) {}; - "hasty-hamiltonian" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "hasty-hamiltonian"; - version = "1.3.2"; - sha256 = "e6299d72e145cfabea798e2088284580fc65f01638e3562e1f01cf9df018cc9e"; - revision = "1"; - editedCabalFile = "1k883ziy63p3zmpyfzck5jw2143b6ijcsvwi704rp94pvh0vk02z"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/hasty-hamiltonian"; - description = "Speedy traversal through parameter space"; - license = stdenv.lib.licenses.mit; - }) {}; - "haxr" = callPackage - ({ mkDerivation, array, base, base-compat, base64-bytestring - , blaze-builder, bytestring, HaXml, HsOpenSSL, http-streams - , http-types, io-streams, mtl, mtl-compat, network, network-uri - , old-locale, old-time, stdenv, template-haskell, text, time - , utf8-string - }: - mkDerivation { - pname = "haxr"; - version = "3000.11.4"; - sha256 = "2506d1831351e7d02d5851dc842ec8e8140bf44576c1ff4fb77a6b172507cedf"; - libraryHaskellDepends = [ - array base base-compat base64-bytestring blaze-builder bytestring - HaXml HsOpenSSL http-streams http-types io-streams mtl mtl-compat - network network-uri old-locale old-time template-haskell text time - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/HaXR"; - description = "XML-RPC client and server library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hdaemonize" = callPackage - ({ mkDerivation, base, bytestring, extensible-exceptions, filepath - , hsyslog, mtl, stdenv, unix - }: - mkDerivation { - pname = "hdaemonize"; - version = "0.5.6"; - sha256 = "ad6f302492a9c41e99ce62ca955a959b0cdca0ff328e66f31bfec5a99f7cee24"; - libraryHaskellDepends = [ - base bytestring extensible-exceptions filepath hsyslog mtl unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/unprolix/hdaemonize"; - description = "Library to handle the details of writing daemons for UNIX"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heap"; - version = "1.0.4"; - sha256 = "a4c2489e1031e9e8d96dff61ac8c15e5fcd3541080d81e0e47e298b3aad3172a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Heaps in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heaps" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "heaps"; - version = "0.3.6.1"; - sha256 = "91d552f3c8992f745607de39239b950db78295b533eda43d083699872a4ee36d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/heaps/"; - description = "Asymptotically optimal Brodal/Okasaki heaps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heart-core" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, containers, exceptions - , filepath, hashable, lens, list-t, mtl, newtype-generics, stdenv - , text, unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "heart-core"; - version = "0.1.1"; - sha256 = "c0ac5ba079c55cdecaf7830851de94a4a2a09fd8dd00b55798b891a3f91981e4"; - libraryHaskellDepends = [ - aeson aeson-casing base containers exceptions filepath hashable - lens list-t mtl newtype-generics text unliftio unliftio-core - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/heart-core#readme"; - description = "An opinionated library prelude in the UnliftIO style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hebrew-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "hebrew-time"; - version = "0.1.2"; - sha256 = "4316e2ab829a7344900fe15966460bc553e3a60989a14c08ecadf00d2674462b"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/hebrew-time#readme"; - description = "Hebrew dates and prayer times"; - license = stdenv.lib.licenses.mit; - }) {}; - "hedgehog" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring - , concurrent-output, containers, directory, erf, exceptions, fail - , lifted-async, mmorph, monad-control, mtl, pretty-show, primitive - , random, resourcet, semigroups, stdenv, stm, template-haskell - , text, time, transformers, transformers-base, wl-pprint-annotated - }: - mkDerivation { - pname = "hedgehog"; - version = "1.0.2"; - sha256 = "8e0cef556c2a9386d45b8d29e8051de99693d19b1d29323add108ecd5c69a880"; - revision = "2"; - editedCabalFile = "1qh7yaijp04li1i10cd5j6bc58fcagynxxmvs32wc8m1fvgzi05w"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring concurrent-output containers - directory erf exceptions fail lifted-async mmorph monad-control mtl - pretty-show primitive random resourcet semigroups stm - template-haskell text time transformers transformers-base - wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Release with confidence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-corpus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hedgehog-corpus"; - version = "0.2.0"; - sha256 = "189669375a6425e4d80a59004e486e4096e06e7cdd33085825bba8282b9297a4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmcgilchrist/hedgehog-corpus"; - description = "hedgehog-corpus"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-fn" = callPackage - ({ mkDerivation, base, contravariant, hedgehog, stdenv - , transformers - }: - mkDerivation { - pname = "hedgehog-fn"; - version = "1.0"; - sha256 = "170bc58d2e5a5bc15bc3e8a0a3ea71b11b8aab8b3bfd923b7f9394afe569b915"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base contravariant hedgehog transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/hedgehog-fn"; - description = "Function generation for `hedgehog`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hedgehog-quickcheck" = callPackage - ({ mkDerivation, base, hedgehog, QuickCheck, stdenv, transformers - }: - mkDerivation { - pname = "hedgehog-quickcheck"; - version = "0.1.1"; - sha256 = "97b65db815fdfaacc7c4d06a7b9b74680b50264afa03f839c4037dcc875152fc"; - libraryHaskellDepends = [ base hedgehog QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://hedgehog.qa"; - description = "Use QuickCheck generators in Hedgehog and vice versa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "here" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, parsec, stdenv - , template-haskell - }: - mkDerivation { - pname = "here"; - version = "1.2.13"; - sha256 = "406f9c27ba1e59cd662d078d81dcf2908840a77df15aed31d75dd017b7773c00"; - libraryHaskellDepends = [ - base haskell-src-meta mtl parsec template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tmhedberg/here"; - description = "Here docs & interpolated strings via quasiquotation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "heredoc" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "heredoc"; - version = "0.2.0.0"; - sha256 = "c90d9fc61cb8cd812be510845493b6a6eddcc4b772581fd40a9433ed8f130f40"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://hackage.haskell.org/package/heredoc"; - description = "multi-line string / here document using QuasiQuotes"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "heterocephalus" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, containers, dlist - , mtl, parsec, shakespeare, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "heterocephalus"; - version = "1.0.5.3"; - sha256 = "4723e03896cc91d524da36fe1b8c5b174b81120c323a3fad692f9ada4bd8794f"; - libraryHaskellDepends = [ - base blaze-html blaze-markup containers dlist mtl parsec - shakespeare template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/heterocephalus#readme"; - description = "A type-safe template engine for working with popular front end development tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "hexml" = callPackage - ({ mkDerivation, base, bytestring, extra, stdenv }: - mkDerivation { - pname = "hexml"; - version = "0.3.4"; - sha256 = "937401802ed6593aad8c5acf0ea963d0f1f4473bf72185702b12eb30e52bbe2a"; - libraryHaskellDepends = [ base bytestring extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hexml#readme"; - description = "XML subset DOM parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexml-lens" = callPackage - ({ mkDerivation, base, bytestring, contravariant, foundation, hexml - , lens, profunctors, stdenv, text - }: - mkDerivation { - pname = "hexml-lens"; - version = "0.2.1"; - sha256 = "baa34ef7206ff924b2559a83da8f8f07bf970e9993a171c956b8de7b70cc496b"; - libraryHaskellDepends = [ - base bytestring contravariant foundation hexml lens profunctors - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pepeiborra/hexml-lens#readme"; - description = "Lenses for the hexml package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hexpat" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, expat, List - , stdenv, text, transformers, utf8-string - }: - mkDerivation { - pname = "hexpat"; - version = "0.20.13"; - sha256 = "46e1a0e651c1603c1f064c6ca8d4c66cb27e7a66974bfb45ecaa8f9ccc753fd1"; - libraryHaskellDepends = [ - base bytestring containers deepseq List text transformers - utf8-string - ]; - librarySystemDepends = [ expat ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.org/haskellwiki/Hexpat/"; - description = "XML parser/formatter based on expat"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) expat;}; - "hexstring" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, binary, bytestring - , stdenv, text - }: - mkDerivation { - pname = "hexstring"; - version = "0.11.1"; - sha256 = "40d8dbfe22f572ffdb73f28c448b228a75008e83cc3bf78e939add0c9d800914"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base base16-bytestring binary bytestring text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.leonmergen.com/opensource.html"; - description = "Fast and safe representation of a hex string"; - license = stdenv.lib.licenses.mit; - }) {}; - "hformat" = callPackage - ({ mkDerivation, ansi-terminal, base, base-unicode-symbols, stdenv - , text - }: - mkDerivation { - pname = "hformat"; - version = "0.3.3.1"; - sha256 = "302eda1d9ca71b73c5a5d31561d4ef3e7d4ff9ef1b86329aa019b5df20c5a773"; - libraryHaskellDepends = [ - ansi-terminal base base-unicode-symbols text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/hformat"; - description = "Simple Haskell formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hfsevents" = callPackage - ({ mkDerivation, base, bytestring, cereal, Cocoa, CoreServices, mtl - , stdenv, text - }: - mkDerivation { - pname = "hfsevents"; - version = "0.1.6"; - sha256 = "74c3f3f3a5e55fff320c352a2d481069ff915860a0ab970864c6a0e6b65d3f05"; - libraryHaskellDepends = [ base bytestring cereal mtl text ]; - librarySystemDepends = [ Cocoa ]; - libraryToolDepends = [ CoreServices ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/luite/hfsevents"; - description = "File/folder watching for OS X"; - license = stdenv.lib.licenses.bsd3; - platforms = [ "x86_64-darwin" ]; - }) {inherit (pkgs.darwin.apple_sdk.frameworks) Cocoa;}; - "hi-file-parser" = callPackage - ({ mkDerivation, base, binary, bytestring, rio, stdenv, vector }: - mkDerivation { - pname = "hi-file-parser"; - version = "0.1.0.0"; - sha256 = "54ac6750d5e4ef93c64b255f672261ae4c80ef11f20d92c382736e09be11fa25"; - revision = "2"; - editedCabalFile = "1bm98h0v4wf9vmdng15c2r48yz06118jxlprsnk0z3jw0d95ij9z"; - libraryHaskellDepends = [ base binary bytestring rio vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/stack#readme"; - description = "Parser for GHC's hi files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hidapi" = callPackage - ({ mkDerivation, base, bytestring, deepseq, deepseq-generics - , stdenv, systemd - }: - mkDerivation { - pname = "hidapi"; - version = "0.1.5"; - sha256 = "3726e0bcbdbda309b919241d86629625e732fd07d78cc90ad39cb39b51cd595e"; - libraryHaskellDepends = [ - base bytestring deepseq deepseq-generics - ]; - librarySystemDepends = [ systemd ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vahokif/haskell-hidapi"; - description = "Haskell bindings to HIDAPI"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) systemd;}; - "hie-bios" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , conduit, conduit-extra, containers, cryptohash-sha1, deepseq - , directory, extra, file-embed, filepath, ghc, hslogger, process - , stdenv, temporary, text, time, transformers, unix-compat - , unordered-containers, vector, yaml - }: - mkDerivation { - pname = "hie-bios"; - version = "0.4.0"; - sha256 = "81881340e208e39b3f065898cc2eff5f12300cf9a50c17ce4883566da4e448dd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring conduit conduit-extra - containers cryptohash-sha1 deepseq directory extra file-embed - filepath ghc hslogger process temporary text time transformers - unix-compat unordered-containers vector yaml - ]; - executableHaskellDepends = [ base directory filepath ghc ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mpickering/hie-bios"; - description = "Set up a GHC API session"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hie-plugin-api" = callPackage - ({ mkDerivation, aeson, base, bytestring, bytestring-trie - , cabal-helper, constrained-dynamic, containers, cryptohash-sha1 - , data-default, Diff, directory, fetchgit, filepath, fingertree - , free, ghc, haskell-lsp, hie-bios, hslogger, monad-control, mtl - , process, sorted-list, stdenv, stm, syb, text, transformers - , transformers-base, unix, unliftio, unordered-containers, yaml - }: - mkDerivation { - pname = "hie-plugin-api"; - version = "1.1"; - src = fetchgit { - url = "https://github.com/haskell/haskell-ide-engine"; - sha256 = "06q4dj5i10qm6ddqgbxac7z2i52fj7hd5wg5ypnw5hjrbqv6i9l7"; - rev = "a830c6dac359584649d41e6f351cb67b3372df67"; - fetchSubmodules = true; - }; - postUnpack = "sourceRoot+=/hie-plugin-api; echo source root reset to $sourceRoot"; - configureFlags = [ "-fpedantic" ]; - libraryHaskellDepends = [ - aeson base bytestring bytestring-trie cabal-helper - constrained-dynamic containers cryptohash-sha1 data-default Diff - directory filepath fingertree free ghc haskell-lsp hie-bios - hslogger monad-control mtl process sorted-list stm syb text - transformers transformers-base unix unliftio unordered-containers - yaml - ]; - doHaddock = false; - doCheck = false; - description = "Haskell IDE API for plugin communication"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "higher-leveldb" = callPackage - ({ mkDerivation, base, bytestring, cereal, data-default, exceptions - , leveldb-haskell, mtl, resourcet, stdenv, transformers - , transformers-base, unliftio-core - }: - mkDerivation { - pname = "higher-leveldb"; - version = "0.5.0.2"; - sha256 = "2afc228104a29aed6b208b1aeba93631e96fdf11efbe68ad036f838f95f8aff2"; - libraryHaskellDepends = [ - base bytestring cereal data-default exceptions leveldb-haskell mtl - resourcet transformers transformers-base unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jeremyjh/higher-leveldb"; - description = "A rich monadic API for working with leveldb databases"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "highlighting-kate" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers, mtl - , parsec, pcre-light, stdenv, utf8-string - }: - mkDerivation { - pname = "highlighting-kate"; - version = "0.6.4"; - sha256 = "d8b83385f5da2ea7aa59f28eb860fd7eba0d35a4c36192a5044ee7ea1e001baf"; - configureFlags = [ "-fpcre-light" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers mtl parsec pcre-light - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/highlighting-kate"; - description = "Syntax highlighting"; - license = "GPL"; - }) {}; - "hinfo" = callPackage - ({ mkDerivation, aeson, base, optparse-applicative, stdenv, text - , yaml - }: - mkDerivation { - pname = "hinfo"; - version = "0.0.3.0"; - sha256 = "9bcee53af6ff558efe131ff22ab678b1fc6423a7f176026fc50fbabbab620413"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - executableHaskellDepends = [ - aeson base optparse-applicative text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/hinfo#readme"; - description = "Command Line App With Info on your Haskell App"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hinotify" = callPackage - ({ mkDerivation, async, base, bytestring, containers, stdenv, unix - }: - mkDerivation { - pname = "hinotify"; - version = "0.4"; - sha256 = "7d182c524384aaa15eec666803643d067671e8e806f315c10758685e90a934f4"; - libraryHaskellDepends = [ async base bytestring containers unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kolmodin/hinotify.git"; - description = "Haskell binding to inotify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hint" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, ghc - , ghc-boot, ghc-paths, mtl, random, stdenv, temporary, unix - }: - mkDerivation { - pname = "hint"; - version = "0.9.0.2"; - sha256 = "0ed2c5bddcb84cba0101e38403e98207a2501953c9dc51b723f1c0e4aea3b61b"; - libraryHaskellDepends = [ - base directory exceptions filepath ghc ghc-boot ghc-paths mtl - random temporary unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-hint/hint"; - description = "Runtime Haskell interpreter (GHC API wrapper)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hjsmin" = callPackage - ({ mkDerivation, base, bytestring, language-javascript - , optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hjsmin"; - version = "0.2.0.4"; - sha256 = "81b9947714d8d2b73d0aba9e2e02af7e30c13b2cf8144df8904564d9642e57e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring language-javascript text - ]; - executableHaskellDepends = [ - base bytestring language-javascript optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/erikd/hjsmin"; - description = "Haskell implementation of a javascript minifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hkd-default" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hkd-default"; - version = "1.1.0.0"; - sha256 = "6f1fab330919c8b928884bb40d8e03f5545eb8e1bc20e6e6d10628649ad3c8b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/versioncloud/hkd-default#readme"; - description = "Apply default value for optional field of HKD"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hkgr" = callPackage - ({ mkDerivation, base, directory, filepath, simple-cabal - , simple-cmd, simple-cmd-args, stdenv - }: - mkDerivation { - pname = "hkgr"; - version = "0.2.4"; - sha256 = "b8390f41de99be4dd8a3450160d18459437cc42c095507bae8ae77ee6fbebb26"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base directory filepath simple-cabal simple-cmd simple-cmd-args - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/hkgr"; - description = "Simple Hackage release workflow for package maintainers"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger" = callPackage - ({ mkDerivation, ansi-terminal, base, base-compat-batteries - , bytestring, cmdargs, containers, data-default, Decimal, Diff - , directory, extra, filepath, hashable, haskeline, hledger-lib - , lucid, math-functions, megaparsec, mtl, old-time, parsec - , pretty-show, process, regex-tdfa, safe, shakespeare, split - , stdenv, tabular, tasty, temporary, terminfo, text, time, timeit - , transformers, unordered-containers, utf8-string, utility-ht - , wizards - }: - mkDerivation { - pname = "hledger"; - version = "1.16.2"; - sha256 = "b4b78b3f08d00ca75c6f6d47b37c0a67aec4adc0aefff2ca29bb0f3b82ac7bcb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal Diff directory extra filepath - hashable haskeline hledger-lib lucid math-functions megaparsec mtl - old-time parsec pretty-show process regex-tdfa safe shakespeare - split tabular tasty temporary terminfo text time timeit - transformers unordered-containers utf8-string utility-ht wizards - ]; - executableHaskellDepends = [ - ansi-terminal base base-compat-batteries bytestring cmdargs - containers data-default Decimal directory extra filepath haskeline - hledger-lib math-functions megaparsec mtl old-time parsec - pretty-show process regex-tdfa safe shakespeare split tabular tasty - temporary terminfo text time timeit transformers - unordered-containers utf8-string utility-ht wizards - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Command-line interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-iadd" = callPackage - ({ mkDerivation, base, brick, containers, directory, free - , hledger-lib, megaparsec, microlens, microlens-th - , optparse-applicative, semigroups, stdenv, text, text-zipper, time - , transformers, unordered-containers, vector, vty, xdg-basedir - }: - mkDerivation { - pname = "hledger-iadd"; - version = "1.3.10"; - sha256 = "438be466885798f9cdf2ba78aa4a7f30a1b2732f44b403108328e2a2f76ab94d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base brick containers directory free hledger-lib megaparsec - microlens microlens-th optparse-applicative semigroups text - text-zipper time transformers unordered-containers vector vty - xdg-basedir - ]; - executableHaskellDepends = [ - base brick directory free hledger-lib megaparsec microlens - optparse-applicative text text-zipper time transformers - unordered-containers vector vty xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hpdeifel/hledger-iadd#readme"; - description = "A terminal UI as drop-in replacement for hledger add"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-interest" = callPackage - ({ mkDerivation, base, Cabal, Decimal, hledger-lib, mtl, stdenv - , text, time - }: - mkDerivation { - pname = "hledger-interest"; - version = "1.5.3"; - sha256 = "7a7f5d437c98e42ba1f1529f2645e5df88d18962ae28b71b8c07e428fe08c1b9"; - revision = "1"; - editedCabalFile = "1myqv7hci32hvm98d4fn2zqdvkxsdx1g821n1fwr6814yn89kwjj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base Cabal Decimal hledger-lib mtl text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hledger-interest"; - description = "computes interest for a given account"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hledger-lib" = callPackage - ({ mkDerivation, ansi-terminal, array, base, base-compat-batteries - , blaze-markup, bytestring, call-stack, cassava, cassava-megaparsec - , cmdargs, containers, data-default, Decimal, deepseq, directory - , extra, fgl, file-embed, filepath, Glob, hashtables, megaparsec - , mtl, old-time, parsec, parser-combinators, pretty-show - , regex-tdfa, safe, split, stdenv, tabular, tasty, tasty-hunit - , template-haskell, text, time, timeit, transformers, uglymemo - , utf8-string - }: - mkDerivation { - pname = "hledger-lib"; - version = "1.16.2"; - sha256 = "6f700e901e72a8e1d90bda8ac2921d83d9a0fb4a18ed9a1dea5f4b600a326b2c"; - libraryHaskellDepends = [ - ansi-terminal array base base-compat-batteries blaze-markup - bytestring call-stack cassava cassava-megaparsec cmdargs containers - data-default Decimal deepseq directory extra fgl file-embed - filepath Glob hashtables megaparsec mtl old-time parsec - parser-combinators pretty-show regex-tdfa safe split tabular tasty - tasty-hunit template-haskell text time timeit transformers uglymemo - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Core data types, parsers and functionality for the hledger accounting tools"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-ui" = callPackage - ({ mkDerivation, ansi-terminal, async, base, base-compat-batteries - , brick, cmdargs, containers, data-default, directory, filepath - , fsnotify, hledger, hledger-lib, megaparsec, microlens - , microlens-platform, pretty-show, process, safe, split, stdenv - , text, text-zipper, time, transformers, unix, vector, vty - }: - mkDerivation { - pname = "hledger-ui"; - version = "1.16.2"; - sha256 = "90f69e1e2f9fa66c535b7f61144b3fb681f1629f313c89d423b4569722224faf"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - ansi-terminal async base base-compat-batteries brick cmdargs - containers data-default directory filepath fsnotify hledger - hledger-lib megaparsec microlens microlens-platform pretty-show - process safe split text text-zipper time transformers unix vector - vty - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Terminal user interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hledger-web" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , case-insensitive, clientsession, cmdargs, conduit, conduit-extra - , containers, data-default, Decimal, directory, filepath, hjsmin - , hledger, hledger-lib, http-client, http-conduit, http-types - , megaparsec, mtl, semigroups, shakespeare, stdenv - , template-haskell, text, time, transformers, utf8-string, wai - , wai-cors, wai-extra, wai-handler-launch, warp, yaml, yesod - , yesod-core, yesod-form, yesod-static - }: - mkDerivation { - pname = "hledger-web"; - version = "1.16.2"; - sha256 = "daa4b68d8491d0a5716ee2ac39520a31bef6a1ae6b36ddc0f531b81616c237ce"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring case-insensitive - clientsession cmdargs conduit conduit-extra containers data-default - Decimal directory filepath hjsmin hledger hledger-lib http-client - http-conduit http-types megaparsec mtl semigroups shakespeare - template-haskell text time transformers utf8-string wai wai-cors - wai-extra wai-handler-launch warp yaml yesod yesod-core yesod-form - yesod-static - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hledger.org"; - description = "Web interface for the hledger accounting tool"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hlibcpuid" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hlibcpuid"; - version = "0.2.0"; - sha256 = "015990c807ad4c4fe6d535ae602ad6f4e038d3c0b628a9b739598ac75aed9a59"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dtaskoff/hlibcpuid#readme"; - description = "Bindings to https://github.com/anrieff/libcpuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "hlibgit2" = callPackage - ({ mkDerivation, base, bindings-DSL, openssl, stdenv, zlib }: - mkDerivation { - pname = "hlibgit2"; - version = "0.18.0.16"; - sha256 = "199e4027faafe0a39d18ca3168923d44c57b386b960c72398df1c0fb7eff8e5e"; - libraryHaskellDepends = [ base bindings-DSL zlib ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - description = "Low-level bindings to libgit2"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) openssl;}; - "hlint" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, bytestring, cmdargs - , containers, cpphs, data-default, directory, extra, file-embed - , filepath, filepattern, ghc, ghc-boot-th, ghc-lib-parser-ex - , haskell-src-exts, haskell-src-exts-util, hscolour, process - , refact, stdenv, text, transformers, uniplate - , unordered-containers, utf8-string, vector, yaml - }: - mkDerivation { - pname = "hlint"; - version = "2.2.10"; - sha256 = "041e0a025b56a5cbaf875e2a81dadfb432d1311b1cbcaf18f8fd7f321e40cafe"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-terminal base bytestring cmdargs containers cpphs - data-default directory extra file-embed filepath filepattern ghc - ghc-boot-th ghc-lib-parser-ex haskell-src-exts - haskell-src-exts-util hscolour process refact text transformers - uniplate unordered-containers utf8-string vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/hlint#readme"; - description = "Source code suggestions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmatrix" = callPackage - ({ mkDerivation, array, base, binary, bytestring, deepseq - , openblasCompat, random, semigroups, split, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix"; - version = "0.20.0.0"; - sha256 = "ef421aba2e6c93a22043a233b2c83789b24363ebe35732d67ccafd12990a1eeb"; - configureFlags = [ "-fdisable-default-paths" "-fopenblas" ]; - libraryHaskellDepends = [ - array base binary bytestring deepseq random semigroups split - storable-complex vector - ]; - librarySystemDepends = [ openblasCompat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numeric Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openblasCompat;}; - "hmatrix-gsl" = callPackage - ({ mkDerivation, array, base, gsl, hmatrix, process, random, stdenv - , vector - }: - mkDerivation { - pname = "hmatrix-gsl"; - version = "0.19.0.1"; - sha256 = "157637d336c72cded119127cc3631a569018284ea8ca54b0e29e742388a2cd6c"; - libraryHaskellDepends = [ - array base hmatrix process random vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/albertoruiz/hmatrix"; - description = "Numerical computation"; - license = stdenv.lib.licenses.gpl3; - }) {inherit (pkgs) gsl;}; - "hmatrix-gsl-stats" = callPackage - ({ mkDerivation, base, binary, gsl, hmatrix, stdenv - , storable-complex, vector - }: - mkDerivation { - pname = "hmatrix-gsl-stats"; - version = "0.4.1.8"; - sha256 = "b844420ce1e76e11ab04fba7e826b98449e166c6b08c78ba01b9e021752200b3"; - libraryHaskellDepends = [ - base binary hmatrix storable-complex vector - ]; - libraryPkgconfigDepends = [ gsl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/hmatrix-gsl-stats"; - description = "GSL Statistics interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) gsl;}; - "hmatrix-morpheus" = callPackage - ({ mkDerivation, base, blas, hmatrix, liblapack, stdenv }: - mkDerivation { - pname = "hmatrix-morpheus"; - version = "0.1.1.2"; - sha256 = "f2f3ee02607096a56c7c5c7f1ddff2f7f91ee05211ec2bd659add8208b1505a7"; - libraryHaskellDepends = [ base hmatrix ]; - librarySystemDepends = [ blas liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/morpheus/tree/master/hmatrix-morpheus"; - description = "Low-level machine learning auxiliary functions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) blas; inherit (pkgs) liblapack;}; - "hmatrix-vector-sized" = callPackage - ({ mkDerivation, base, hmatrix, stdenv, vector, vector-sized }: - mkDerivation { - pname = "hmatrix-vector-sized"; - version = "0.1.2.0"; - sha256 = "6c09c84fc1812acc2836ddb399948fb74bb7541711e7a0206df382df33f53759"; - libraryHaskellDepends = [ base hmatrix vector vector-sized ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/hmatrix-vector-sized#readme"; - description = "Conversions between hmatrix and vector-sized types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hmpfr" = callPackage - ({ mkDerivation, base, integer-gmp, mpfr, stdenv }: - mkDerivation { - pname = "hmpfr"; - version = "0.4.4"; - sha256 = "2badebf032a24f6ab3bde068d5246bc9cc00bf5a8ac17da8cc0bd45c882816f5"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base integer-gmp ]; - librarySystemDepends = [ mpfr ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/hmpfr"; - description = "Haskell binding to the MPFR library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mpfr;}; - "hnock" = callPackage - ({ mkDerivation, base, parsec, stdenv, text }: - mkDerivation { - pname = "hnock"; - version = "0.4.0"; - sha256 = "ad5c377fa5c0e089953ca31a4ea65131854d157444903cb4e4df2abd2b357cb4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec text ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/hnock"; - description = "A Nock interpreter"; - license = stdenv.lib.licenses.mit; - }) {}; - "hoauth2" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, exceptions - , http-conduit, http-types, microlens, stdenv, text - , unordered-containers, uri-bytestring, uri-bytestring-aeson - }: - mkDerivation { - pname = "hoauth2"; - version = "1.10.2"; - sha256 = "548a0d9d87e0e2deae5becec84b17fcb4026e69ad3e29c220b578c7703f86d12"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base binary bytestring exceptions http-conduit http-types - microlens text unordered-containers uri-bytestring - uri-bytestring-aeson - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/freizl/hoauth2"; - description = "Haskell OAuth2 authentication client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hoogle" = callPackage - ({ mkDerivation, aeson, base, binary, blaze-html, blaze-markup - , bytestring, cmdargs, conduit, conduit-extra, connection - , containers, deepseq, directory, extra, filepath, foundation - , hashable, haskell-src-exts, http-conduit, http-types, js-flot - , js-jquery, mmap, old-locale, process-extras, QuickCheck - , resourcet, stdenv, storable-tuple, tar, template-haskell, text - , time, transformers, uniplate, utf8-string, vector, wai - , wai-logger, warp, warp-tls, zlib - }: - mkDerivation { - pname = "hoogle"; - version = "5.0.17.11"; - sha256 = "e18ec4cf413894fac8b75469b0546f0de906546b205f8386141f3575d34777eb"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base binary blaze-html blaze-markup bytestring cmdargs - conduit conduit-extra connection containers deepseq directory extra - filepath foundation hashable haskell-src-exts http-conduit - http-types js-flot js-jquery mmap old-locale process-extras - QuickCheck resourcet storable-tuple tar template-haskell text time - transformers uniplate utf8-string vector wai wai-logger warp - warp-tls zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--no-net"; - homepage = "https://hoogle.haskell.org/"; - description = "Haskell API Search"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hopenssl" = callPackage - ({ mkDerivation, base, bytestring, openssl, stdenv }: - mkDerivation { - pname = "hopenssl"; - version = "2.2.4"; - sha256 = "9df46c328fc4c1d1566e2d1539770c9fe9d0422e09ee254721b35ee7d48a7671"; - revision = "1"; - editedCabalFile = "14bs0wjrqnnn1v8c4yznfzggvmgypm2lssgl0cr498kmp54if0lf"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ openssl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hopenssl"; - description = "FFI Bindings to OpenSSL's EVP Digest Interface"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) openssl;}; - "hopfli" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "hopfli"; - version = "0.2.2.1"; - sha256 = "4d71dc0f599c87445c22403b447ce310bf8567d6b10cc82efbdd00a4d4d12a18"; - revision = "1"; - editedCabalFile = "116jns5im51sb9xiwpx308wz3pr67335633anrf8f704pz8vwjka"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ananthakumaran/hopfli"; - description = "Bidings to Google's Zopfli compression library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "hosc" = callPackage - ({ mkDerivation, base, binary, blaze-builder, bytestring - , data-binary-ieee754, network, stdenv, time, transformers - }: - mkDerivation { - pname = "hosc"; - version = "0.17"; - sha256 = "66439c416246cb56c15a0f3fb0cf07b178202c7755034b648f02d4f81ba5800c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary blaze-builder bytestring data-binary-ieee754 network - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://rohandrape.net/t/hosc"; - description = "Haskell Open Sound Control"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "hostname" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hostname"; - version = "1.0"; - sha256 = "9b43dab1b6da521f35685b20555da00738c8e136eb972458c786242406a9cf5c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A very simple package providing a cross-platform means of determining the hostname"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hostname-validate" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "hostname-validate"; - version = "1.0.0"; - sha256 = "7fafb1e0cfe19d453030754962e74cdb8f3e791ec5b974623cbf26872779c857"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Validate hostnames e.g. localhost or foo.co.uk."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hourglass"; - version = "0.2.12"; - sha256 = "44335b5c402e80c60f1db6a74462be4ea29d1a9043aa994334ffee1164f1ca4a"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-hourglass"; - description = "simple performant time related library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hourglass-orphans" = callPackage - ({ mkDerivation, aeson, base, hourglass, stdenv }: - mkDerivation { - pname = "hourglass-orphans"; - version = "0.1.0.0"; - sha256 = "9f0ba9f3b3cdd391b26daf3dce0bac44ab1f9dd883eaff063af9ebfb0b373d64"; - libraryHaskellDepends = [ aeson base hourglass ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/hourglass-orphans#readme"; - description = "Orphan Aeson instances to hourglass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hp2pretty" = callPackage - ({ mkDerivation, array, attoparsec, base, containers, filepath - , floatshow, mtl, optparse-applicative, semigroups, stdenv, text - }: - mkDerivation { - pname = "hp2pretty"; - version = "0.9"; - sha256 = "56fc8ba0ad862668179f5bab032c3738fa42d10abce6b59f8dd01b3a11e52b52"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - array attoparsec base containers filepath floatshow mtl - optparse-applicative semigroups text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://mathr.co.uk/blog/hp2pretty.html"; - description = "generate pretty graphs from heap profiles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader" = callPackage - ({ mkDerivation, base, exceptions, hset, mmorph, monad-control, mtl - , stdenv, tagged, transformers, transformers-base - }: - mkDerivation { - pname = "hreader"; - version = "1.1.0"; - sha256 = "2a2b02c059b343ab7ff0d340b6545a003b0d563fb8a1ad2d53d6c2f4759a7d3a"; - revision = "1"; - editedCabalFile = "0kz3yzah7m4c2r9yaawhljcgb579masx3lx4mrr4lmqy39kmsvcb"; - libraryHaskellDepends = [ - base exceptions hset mmorph monad-control mtl tagged transformers - transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hreader"; - description = "Generalization of MonadReader and ReaderT using hset"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hreader-lens" = callPackage - ({ mkDerivation, base, comonad, hreader, hset, lens, lens-action - , profunctors, stdenv - }: - mkDerivation { - pname = "hreader-lens"; - version = "0.1.3.0"; - sha256 = "408f0a2c6ce4bc5c00746947262f43f421f0e8fb9cc29c0cd2563ee1e87502d0"; - libraryHaskellDepends = [ - base comonad hreader hset lens lens-action profunctors - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dredozubov/hreader-lens"; - description = "Optics for hreader package"; - license = stdenv.lib.licenses.mit; - }) {}; - "hruby" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , process, ruby, scientific, stdenv, stm, text - , unordered-containers, vector - }: - mkDerivation { - pname = "hruby"; - version = "0.3.8"; - sha256 = "68163072f25563ac458539ee34708700978fbd389e5e7a380839f34f017ce274"; - setupHaskellDepends = [ base Cabal process ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring scientific stm text - unordered-containers vector - ]; - librarySystemDepends = [ ruby ]; - doHaddock = false; - doCheck = false; - description = "Embed a Ruby intepreter in your Haskell program !"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ruby;}; - "hs-GeoIP" = callPackage - ({ mkDerivation, base, bytestring, deepseq, GeoIP, stdenv }: - mkDerivation { - pname = "hs-GeoIP"; - version = "0.3"; - sha256 = "8e5ff6a132d8944336f10dcaa69d8852cdd7953a5ff18248ae06cb2819a1ab8c"; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ GeoIP ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ozataman/hs-GeoIP"; - description = "Haskell bindings to the MaxMind GeoIPCity database via the C library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) GeoIP;}; - "hs-bibutils" = callPackage - ({ mkDerivation, base, stdenv, syb }: - mkDerivation { - pname = "hs-bibutils"; - version = "6.8.0.0"; - sha256 = "4cab7f3866df0fe58c6eefa3ce5207ce2c2fd6b8e763f54cd952553c0281d06b"; - libraryHaskellDepends = [ base syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wilx/hs-bibutils"; - description = "Haskell bindings to bibutils, the bibliography conversion utilities"; - license = "GPL"; - }) {}; - "hs-functors" = callPackage - ({ mkDerivation, base, stdenv, tagged, transformers }: - mkDerivation { - pname = "hs-functors"; - version = "0.1.6.0"; - sha256 = "14e0977ae52fd9aa4da8a2335c7452016ed9b4214d72de5b296cb78612f5fba4"; - libraryHaskellDepends = [ base tagged transformers ]; - doHaddock = false; - doCheck = false; - description = "Functors from products of Haskell and its dual to Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hs-php-session" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "hs-php-session"; - version = "0.0.9.3"; - sha256 = "0e717e90933f9e861d9cf374baa0dedac51d8ae7a1746ef2f7bd098fe38c8df7"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/elblake/hs-php-session"; - description = "PHP session and values serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsc2hs" = callPackage - ({ mkDerivation, base, containers, directory, filepath, process - , stdenv - }: - mkDerivation { - pname = "hsc2hs"; - version = "0.68.6"; - sha256 = "e0cc7549c22fafe6e159aadb1048c9bfcce8fda602dd2febd8b1eea4df3292b2"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base containers directory filepath process - ]; - doHaddock = false; - doCheck = false; - description = "A preprocessor that helps with writing Haskell bindings to C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hscolour" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "hscolour"; - version = "1.24.4"; - sha256 = "243332b082294117f37b2c2c68079fa61af68b36223b3fc07594f245e0e5321d"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/hscolour/"; - description = "Colourise Haskell code"; - license = "LGPL"; - }) {}; - "hsdns" = callPackage - ({ mkDerivation, adns, base, containers, network, stdenv }: - mkDerivation { - pname = "hsdns"; - version = "1.8"; - sha256 = "60e2c1467d381ab183c95e29de58f9b0514309f21d728fec700a42adff73b64b"; - revision = "1"; - editedCabalFile = "09ixj0xywmbigfhqmq58dwqns8l3w6wprykafg52fx69bvhg9yph"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers network ]; - librarySystemDepends = [ adns ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsdns"; - description = "Asynchronous DNS Resolver"; - license = stdenv.lib.licenses.lgpl3; - }) {inherit (pkgs) adns;}; - "hsebaysdk" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client, http-types - , stdenv, text, time, transformers, unordered-containers - }: - mkDerivation { - pname = "hsebaysdk"; - version = "0.4.0.0"; - sha256 = "0738d0df113b15bb9148ecbe02f0a34562c557d8f64b65065122925e29df8901"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types text time transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/creichert/hsebaysdk"; - description = "Haskell eBay SDK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsemail" = callPackage - ({ mkDerivation, base, parsec, stdenv, time, time-compat }: - mkDerivation { - pname = "hsemail"; - version = "2.2.0"; - sha256 = "04fdf2c678c6cee3ed7109e41f26d1543bffea95869daf0cb5fa656bb5b0e800"; - libraryHaskellDepends = [ base parsec time time-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsemail#readme"; - description = "Parsec parsers for the Internet Message format (e-mail)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hset" = callPackage - ({ mkDerivation, base, deepseq, stdenv, tagged, type-fun }: - mkDerivation { - pname = "hset"; - version = "2.2.0"; - sha256 = "b8747a0826aeaca2ca814e7a334f9de5a02f36ac83faea5e1c32c8f6040bf130"; - libraryHaskellDepends = [ base deepseq tagged type-fun ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/s9gf4ult/hset"; - description = "Primitive list with elements of unique types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsimport" = callPackage - ({ mkDerivation, attoparsec, base, cmdargs, directory, dyre - , haskell-src-exts, ilist, microlens, mtl, split, stdenv, text - }: - mkDerivation { - pname = "hsimport"; - version = "0.11.0"; - sha256 = "4a718c086df272607e41c74b7be5f2ed6245727a6230412995fc89e5f97da5fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base cmdargs directory dyre haskell-src-exts ilist - microlens mtl split text - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Extend the import list of a Haskell source file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsini" = callPackage - ({ mkDerivation, base, bytestring, containers, mtl, parsec, stdenv - }: - mkDerivation { - pname = "hsini"; - version = "0.5.1.2"; - sha256 = "eaa6ae68c6271d5c3187054e702719b3ee7916524ffda27bb328cc9aad9ed8e4"; - revision = "1"; - editedCabalFile = "0wkvajjgs64l4wlw8s6sn3pbwx3ni41p1260chp67a16innr1qp6"; - libraryHaskellDepends = [ base bytestring containers mtl parsec ]; - doHaddock = false; - doCheck = false; - description = "ini configuration files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hsinstall" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, Cabal, directory, filepath - , heredoc, optparse-applicative, process, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "hsinstall"; - version = "2.6"; - sha256 = "85aa6d67f88e12f5a3590889c682a6252213478c86510546b44a7b44fd97c31c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ - ansi-wl-pprint base Cabal directory filepath heredoc - optparse-applicative process safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dino-/hsinstall#readme"; - description = "Install Haskell software"; - license = stdenv.lib.licenses.isc; - }) {}; - "hslogger" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, network - , network-bsd, old-locale, stdenv, time, unix - }: - mkDerivation { - pname = "hslogger"; - version = "1.3.1.0"; - sha256 = "7f2364f6c0b9c5b85a257267a335816126ef2471c817a42797a5d3c57acaca5b"; - libraryHaskellDepends = [ - base bytestring containers deepseq network network-bsd old-locale - time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/hslogger/wiki"; - description = "Versatile logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hslua" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, fail - , lua5_3, mtl, stdenv, text - }: - mkDerivation { - pname = "hslua"; - version = "1.0.3.2"; - sha256 = "d2d40b0c143ef58d26203f34d96d4220f1a20077386e4a5216be74260b7d6ba0"; - configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ]; - libraryHaskellDepends = [ - base bytestring containers exceptions fail mtl text - ]; - librarySystemDepends = [ lua5_3 ]; - doHaddock = false; - doCheck = false; - homepage = "https://hslua.github.io/"; - description = "Bindings to Lua, an embeddable scripting language"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) lua5_3;}; - "hslua-aeson" = callPackage - ({ mkDerivation, aeson, base, hashable, hslua, scientific, stdenv - , text, unordered-containers, vector - }: - mkDerivation { - pname = "hslua-aeson"; - version = "1.0.0"; - sha256 = "ffa7c2f6cb90a914f796334c8f07b1eb7bfd9b3717c55d8f756589dd14706c73"; - revision = "1"; - editedCabalFile = "1ysgh5s99zv0khkwqw1kcli2r2vi77r7wz3yc0y0i7qr35shzklh"; - libraryHaskellDepends = [ - aeson base hashable hslua scientific text unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/hslua-aeson#readme"; - description = "Allow aeson data types to be used with lua"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-system" = callPackage - ({ mkDerivation, base, containers, directory, exceptions, hslua - , stdenv, temporary - }: - mkDerivation { - pname = "hslua-module-system"; - version = "0.2.1"; - sha256 = "108e4dee68d09eb61b77122e0a5b8b7f0bafe1a7b4168e7ff4970c56def8fcd4"; - libraryHaskellDepends = [ - base containers directory exceptions hslua temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-system"; - description = "Lua module wrapper around Haskell's System module"; - license = stdenv.lib.licenses.mit; - }) {}; - "hslua-module-text" = callPackage - ({ mkDerivation, base, bytestring, hslua, stdenv, text }: - mkDerivation { - pname = "hslua-module-text"; - version = "0.2.1"; - sha256 = "1302d9022e9beea0cf4f09f977d7ca0956c598d0bf15945de5a52dd8f7e66dc6"; - libraryHaskellDepends = [ base bytestring hslua text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/hslua-module-text"; - description = "Lua module for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsp" = callPackage - ({ mkDerivation, base, mtl, stdenv, text }: - mkDerivation { - pname = "hsp"; - version = "0.10.0"; - sha256 = "4ed3905a9db91001bde09f060290833af462e87e35476ab0def1579a1ff7ceab"; - libraryHaskellDepends = [ base mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/nibro/hsp"; - description = "Haskell Server Pages is a library for writing dynamic server-side web pages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec" = callPackage - ({ mkDerivation, base, hspec-core, hspec-discover - , hspec-expectations, QuickCheck, stdenv - }: - mkDerivation { - pname = "hspec"; - version = "2.7.1"; - sha256 = "818cebbcbde8761289902a816f865691e40724babf87e70057ecab204f6619f5"; - libraryHaskellDepends = [ - base hspec-core hspec-discover hspec-expectations QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hspec-expectations - , stdenv, text - }: - mkDerivation { - pname = "hspec-attoparsec"; - version = "0.1.0.2"; - sha256 = "ea7a8b3f2989abde8c8537cec1a2ae312e88df80086b9b01ed12e5324137fb64"; - libraryHaskellDepends = [ - attoparsec base bytestring hspec-expectations text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alpmestan/hspec-attoparsec"; - description = "Utility functions for testing your attoparsec parsers with hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-checkers" = callPackage - ({ mkDerivation, base, checkers, hspec, stdenv }: - mkDerivation { - pname = "hspec-checkers"; - version = "0.1.0.2"; - sha256 = "e7db79dc527cf5b806723bbe3d511a074297976a0c7042968b9abc57f8337e99"; - libraryHaskellDepends = [ base checkers hspec ]; - doHaddock = false; - doCheck = false; - description = "Allows to use checkers properties from hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-contrib" = callPackage - ({ mkDerivation, base, hspec-core, HUnit, stdenv }: - mkDerivation { - pname = "hspec-contrib"; - version = "0.5.1"; - sha256 = "2c1bf064a815af9a3ac8af79d1bf1e761d855276366b86cbace5773794ea1f42"; - revision = "1"; - editedCabalFile = "0vjmyrsb878914b4khwdy3fcn9n217q8k5xnszlrp7dl1jnbqyi4"; - libraryHaskellDepends = [ base hspec-core HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Contributed functionality for Hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-core" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, tf-random - , transformers - }: - mkDerivation { - pname = "hspec-core"; - version = "2.7.1"; - sha256 = "2ccc20f27970f753ed2e902c323f4562adaf1a31f4234b3504e02a8a50417323"; - revision = "1"; - editedCabalFile = "0aw68sgz2p63y0vg07c1jx2pr8lmhp5c1ck60dlipyxsa00455i6"; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm tf-random transformers - ]; - doHaddock = false; - doCheck = false; - testTarget = "--test-option=--skip --test-option='Test.Hspec.Core.Runner.hspecResult runs specs in parallel'"; - homepage = "http://hspec.github.io/"; - description = "A Testing Framework for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-discover" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "hspec-discover"; - version = "2.7.1"; - sha256 = "0b31c29b37d7d446d44b3559f794cd62b09ee5fc3f30862eccd8284e52758764"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory filepath ]; - executableHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "Automatically discover and run Hspec tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations" = callPackage - ({ mkDerivation, base, call-stack, HUnit, stdenv }: - mkDerivation { - pname = "hspec-expectations"; - version = "0.8.2"; - sha256 = "819607ea1faf35ce5be34be61c6f50f3389ea43892d56fb28c57a9f5d54fb4ef"; - libraryHaskellDepends = [ base call-stack HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-expectations#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-lifted" = callPackage - ({ mkDerivation, base, hspec-expectations, stdenv, transformers }: - mkDerivation { - pname = "hspec-expectations-lifted"; - version = "0.10.0"; - sha256 = "22cdf1509b396fea2f53a0bb88dec3552f540d58cc60962a82970264c1e73828"; - libraryHaskellDepends = [ base hspec-expectations transformers ]; - doHaddock = false; - doCheck = false; - description = "A version of hspec-expectations generalized to MonadIO"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-expectations-pretty-diff" = callPackage - ({ mkDerivation, ansi-terminal, base, Diff, hscolour, HUnit - , nicify-lib, stdenv, text - }: - mkDerivation { - pname = "hspec-expectations-pretty-diff"; - version = "0.7.2.5"; - sha256 = "9479251e851c07af1b88ebe91d9a20d074f505209f253ebd6f379f3914ab6210"; - libraryHaskellDepends = [ - ansi-terminal base Diff hscolour HUnit nicify-lib text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/hspec-expectations-pretty-diff#readme"; - description = "Catchy combinators for HUnit"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden" = callPackage - ({ mkDerivation, base, directory, hspec-core, optparse-applicative - , stdenv - }: - mkDerivation { - pname = "hspec-golden"; - version = "0.1.0.1"; - sha256 = "42f8bc639c1ee134992d37b7ea3dea1b9f3e80ba1e94689973258f819d9349c0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory hspec-core ]; - executableHaskellDepends = [ base directory optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/hspec-golden#readme"; - description = "Golden tests for hspec"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-golden-aeson" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, directory - , filepath, hspec, QuickCheck, quickcheck-arbitrary-adt, random - , stdenv, transformers - }: - mkDerivation { - pname = "hspec-golden-aeson"; - version = "0.7.0.0"; - sha256 = "114ccdbe3b7425f6bacc7d0d78d160879528aa76d2a3e774d9c152d8444a4ca2"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring directory filepath hspec - QuickCheck quickcheck-arbitrary-adt random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/hspec-golden-aeson#readme"; - description = "Use tests to monitor changes in Aeson serialization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-leancheck" = callPackage - ({ mkDerivation, base, hspec, hspec-core, HUnit, leancheck, stdenv - }: - mkDerivation { - pname = "hspec-leancheck"; - version = "0.0.3"; - sha256 = "38de8e98ca16e54370f2387c2ceb22fadab53ada5e9c0505ce9fe23f1b99d852"; - libraryHaskellDepends = [ base hspec hspec-core HUnit leancheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/hspec-leancheck#readme"; - description = "LeanCheck support for the Hspec test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-megaparsec" = callPackage - ({ mkDerivation, base, containers, hspec-expectations, megaparsec - , stdenv - }: - mkDerivation { - pname = "hspec-megaparsec"; - version = "2.1.0"; - sha256 = "bddc006eb64a51cbe66546e0c2170105bf8e18232fb0b206a32e4556605c18f5"; - libraryHaskellDepends = [ - base containers hspec-expectations megaparsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/hspec-megaparsec"; - description = "Utility functions for testing Megaparsec parsers with Hspec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-meta" = callPackage - ({ mkDerivation, ansi-terminal, array, base, call-stack, clock - , deepseq, directory, filepath, hspec-expectations, HUnit - , QuickCheck, quickcheck-io, random, setenv, stdenv, stm, time - , transformers - }: - mkDerivation { - pname = "hspec-meta"; - version = "2.6.0"; - sha256 = "e6d701c9f366f6762eb2a86022d1c7a7d7631c100945491ff53b3a3e86212ad8"; - revision = "1"; - editedCabalFile = "1qh3j6mhlz2bvdk8qc5fa4nqh93q4vqnvxmqqisg4agacnvyp4b2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - executableHaskellDepends = [ - ansi-terminal array base call-stack clock deepseq directory - filepath hspec-expectations HUnit QuickCheck quickcheck-io random - setenv stm time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "A version of Hspec which is used to test Hspec itself"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-need-env" = callPackage - ({ mkDerivation, base, hspec-core, hspec-expectations, stdenv }: - mkDerivation { - pname = "hspec-need-env"; - version = "0.1.0.4"; - sha256 = "8f5ecda15d079cfc5ef7658478c3848827fde8451a0d3f1ba65e415c41966631"; - libraryHaskellDepends = [ base hspec-core hspec-expectations ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/hspec-need-env"; - description = "Read environment variables for hspec tests"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-parsec" = callPackage - ({ mkDerivation, base, hspec-expectations, parsec, stdenv }: - mkDerivation { - pname = "hspec-parsec"; - version = "0"; - sha256 = "decc5a32ba44968fbe69f213cb97a6c7d3a4601fa8df75365f7727f61b41a4e0"; - revision = "1"; - editedCabalFile = "03nsxwc5p6whq21dqwba0289g8fqqqws453kyanwgb6vvg1f0s9l"; - libraryHaskellDepends = [ base hspec-expectations parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjakobi/hspec-parsec#readme"; - description = "Hspec expectations for testing Parsec parsers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hspec-smallcheck" = callPackage - ({ mkDerivation, base, call-stack, hspec-core, HUnit, smallcheck - , stdenv - }: - mkDerivation { - pname = "hspec-smallcheck"; - version = "0.5.2"; - sha256 = "9a301a26a439a92b303217545b65792bd8500f25aeccbe48e46dfe914ef58119"; - libraryHaskellDepends = [ - base call-stack hspec-core HUnit smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hspec.github.io/"; - description = "SmallCheck support for the Hspec testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hspec-wai" = callPackage - ({ mkDerivation, base, base-compat, bytestring, case-insensitive - , hspec-core, hspec-expectations, http-types, QuickCheck, stdenv - , text, transformers, wai, wai-extra - }: - mkDerivation { - pname = "hspec-wai"; - version = "0.10.1"; - sha256 = "7fb252802da2309c929e3559a2a97d7c27399f58d2afa2ea306ea18c3e035b16"; - libraryHaskellDepends = [ - base base-compat bytestring case-insensitive hspec-core - hspec-expectations http-types QuickCheck text transformers wai - wai-extra - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/hspec-wai#readme"; - description = "Experimental Hspec support for testing WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "hsshellscript" = callPackage - ({ mkDerivation, base, c2hs, directory, parsec, random, stdenv - , unix - }: - mkDerivation { - pname = "hsshellscript"; - version = "3.4.5"; - sha256 = "7dbfd595832e4ecd7d12d8b36ce8a82192d79a764631c98071440a7daa7ec634"; - libraryHaskellDepends = [ base directory parsec random unix ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.volker-wysk.de/hsshellscript/"; - description = "Haskell for Unix shell scripting tasks"; - license = "LGPL"; - }) {}; - "hsyslog" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hsyslog"; - version = "5.0.2"; - sha256 = "3eec43c8fb42c23d03f1db7b0b594d39cd94275c2284dcd0c64aa4d680bd7ece"; - revision = "1"; - editedCabalFile = "0k1j46nk3z64zw4bqmvw5lgy16ih200m66rv4b6ygjqv7nglqq0b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/hsyslog"; - description = "FFI interface to syslog(3) from POSIX.1-2001"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htaglib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, taglib, text - , transformers - }: - mkDerivation { - pname = "htaglib"; - version = "1.2.0"; - sha256 = "4a17c36ff45995c079d71368a3eeabe595ed7efe2b3e4a3dcbff4bed8324005e"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring text transformers ]; - librarySystemDepends = [ taglib ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/htaglib"; - description = "Bindings to TagLib, audio meta-data library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) taglib;}; - "html" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "html"; - version = "1.0.1.2"; - sha256 = "0c35495ea33d65e69c69bc7441ec8e1af69fbb43433c2aa3406c0a13a3ab3061"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "HTML combinator library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "html-conduit" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit - , conduit-extra, containers, resourcet, stdenv, text, transformers - , xml-conduit, xml-types - }: - mkDerivation { - pname = "html-conduit"; - version = "1.3.2.1"; - sha256 = "3681534cb7fc132a78ac35bd9d415280cf3e7a56a875bc7161375c69d947cca4"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit conduit-extra containers - resourcet text transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/xml"; - description = "Parse HTML documents using xml-conduit datatypes"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entities" = callPackage - ({ mkDerivation, attoparsec, base, base-prelude, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "html-entities"; - version = "1.1.4.3"; - sha256 = "ceeab562184a5921381e41eddd7a91dc98e85431ab445e286320ba3aa0ad5556"; - libraryHaskellDepends = [ - attoparsec base base-prelude text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/html-entities"; - description = "A codec library for HTML-escaped text and HTML-entities"; - license = stdenv.lib.licenses.mit; - }) {}; - "html-entity-map" = callPackage - ({ mkDerivation, base, stdenv, text, unordered-containers }: - mkDerivation { - pname = "html-entity-map"; - version = "0.1.0.0"; - sha256 = "983600c33e8515e6ca31742d25490fb5a7be02503331963621b0ba5cd70d344c"; - revision = "3"; - editedCabalFile = "0aj61kpf39rhn4d7nk3vwq933b826ywhwklw479y9nkczac5lpz8"; - libraryHaskellDepends = [ base text unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/html-entity-map"; - description = "Map from HTML5 entity names to the corresponding Unicode text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "htoml" = callPackage - ({ mkDerivation, aeson, base, containers, old-locale, parsec - , stdenv, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "htoml"; - version = "1.0.0.3"; - sha256 = "08f8d88a326f80fb55c0abb9431941c3a2a30f2d58f49c94349961ceeb4c856f"; - libraryHaskellDepends = [ - aeson base containers old-locale parsec text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cies/htoml"; - description = "Parser for TOML files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-api-data" = callPackage - ({ mkDerivation, attoparsec, attoparsec-iso8601, base, base-compat - , bytestring, containers, cookie, hashable, http-types, stdenv - , tagged, text, time-compat, unordered-containers, uuid-types - }: - mkDerivation { - pname = "http-api-data"; - version = "0.4.1.1"; - sha256 = "d0aa13e2878e4b92edf71391e775476e7d36a4b5736bd5c701373002b7a823e9"; - libraryHaskellDepends = [ - attoparsec attoparsec-iso8601 base base-compat bytestring - containers cookie hashable http-types tagged text time-compat - unordered-containers uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fizruk/http-api-data"; - description = "Converting to/from HTTP API data like URL pieces, headers and query parameters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client" = callPackage - ({ mkDerivation, array, base, blaze-builder, bytestring - , case-insensitive, containers, cookie, deepseq, exceptions - , filepath, ghc-prim, http-types, memory, mime-types, network - , network-uri, random, stdenv, stm, streaming-commons, text, time - , transformers - }: - mkDerivation { - pname = "http-client"; - version = "0.6.4"; - sha256 = "369278ec3d0d89bfdd8bee5bd367b22b7812b98fd62a1121276d728aeeb239d9"; - libraryHaskellDepends = [ - array base blaze-builder bytestring case-insensitive containers - cookie deepseq exceptions filepath ghc-prim http-types memory - mime-types network network-uri random stm streaming-commons text - time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "An HTTP client engine"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-openssl" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, http-client, network - , stdenv - }: - mkDerivation { - pname = "http-client-openssl"; - version = "0.3.0.0"; - sha256 = "74836285c3dbc27230f30bb61db92aafecb8c90e8a9cb62c0db21602ee0aed78"; - revision = "2"; - editedCabalFile = "0p8vgakciq8ar9pfahh1bmriann3h0xn4z3xb328lgbcxxxpwqfd"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL http-client network - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the OpenSSL library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-client-overrides" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-types, network-uri, stdenv, text, yaml - }: - mkDerivation { - pname = "http-client-overrides"; - version = "0.1.1.0"; - sha256 = "944dc0c10c8e223ae93fbdc5b65129a7ebd1031cbe125397acf8643dbba15a95"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring http-client http-types network-uri text yaml - ]; - executableHaskellDepends = [ base http-client http-client-tls ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbiemcmichael/http-client-overrides"; - description = "HTTP client overrides"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-client-tls" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, connection - , containers, cryptonite, data-default-class, exceptions - , http-client, http-types, memory, network, network-uri, stdenv - , text, tls, transformers - }: - mkDerivation { - pname = "http-client-tls"; - version = "0.3.5.3"; - sha256 = "471abf8f29a909f40b21eab26a410c0e120ae12ce337512a61dae9f52ebb4362"; - revision = "1"; - editedCabalFile = "0llb5k8mz1h6zyv1nd433wwgyjsw7n8x0b1fwib312iiws43sz69"; - libraryHaskellDepends = [ - base bytestring case-insensitive connection containers cryptonite - data-default-class exceptions http-client http-types memory network - network-uri text tls transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/http-client"; - description = "http-client backend using the connection package and tls library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-common" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , case-insensitive, directory, mtl, network, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "http-common"; - version = "0.8.2.0"; - sha256 = "2915e77b0d000a617d4c1304fdc46f45b70acc0942670066a95b2c8d4e504593"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring case-insensitive - directory mtl network text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://research.operationaldynamics.com/projects/http-streams/"; - description = "Common types for HTTP clients and servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-client, http-client-tls, http-types, mtl - , resourcet, stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "http-conduit"; - version = "2.3.7.3"; - sha256 = "7aeddc51bcc8f356fb0c9c9ea901b9fbbe7eef024d59ab77261e41e043843a03"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-client - http-client-tls http-types mtl resourcet transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/http-conduit"; - description = "HTTP client package with conduit interface and HTTPS support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-date" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, stdenv, time - }: - mkDerivation { - pname = "http-date"; - version = "0.0.8"; - sha256 = "0f4c6348487abe4f9d58e43d3c23bdefc7fd1fd5672effd3c7d84aaff05f5427"; - libraryHaskellDepends = [ array attoparsec base bytestring time ]; - doHaddock = false; - doCheck = false; - description = "HTTP Date parser/formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-directory" = callPackage - ({ mkDerivation, base, bytestring, html-conduit, http-client - , http-client-tls, http-date, http-types, network-uri, stdenv, text - , time, xml-conduit - }: - mkDerivation { - pname = "http-directory"; - version = "0.1.7"; - sha256 = "29e9d9283fc60ac01ba203156e5da211193aa5d5292ee39d29b02602d4517387"; - libraryHaskellDepends = [ - base bytestring html-conduit http-client http-client-tls http-date - http-types network-uri text time xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/http-directory"; - description = "http directory listing library"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-download" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, cryptonite, cryptonite-conduit, directory - , exceptions, filepath, http-client, http-conduit, http-types - , memory, path, path-io, retry, rio, rio-prettyprint, stdenv - }: - mkDerivation { - pname = "http-download"; - version = "0.1.0.1"; - sha256 = "83244872d6f62c1e10c69ce0e87159649eefaf895e77cbdfa8f95287975730b8"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra cryptonite - cryptonite-conduit directory exceptions filepath http-client - http-conduit http-types memory path path-io retry rio - rio-prettyprint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/http-download#readme"; - description = "Verified downloads with retries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-link-header" = callPackage - ({ mkDerivation, attoparsec, base, bytestring - , bytestring-conversion, errors, http-api-data, network-uri, stdenv - , text - }: - mkDerivation { - pname = "http-link-header"; - version = "1.0.3.1"; - sha256 = "da26db73df1eaebb20df2837b0352cc62a6c151d467bea9442767fd3d51c2a2d"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-conversion errors - http-api-data network-uri text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/http-link-header"; - description = "A parser and writer for the HTTP Link header as specified in RFC 5988 \"Web Linking\""; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "http-media" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , stdenv, utf8-string - }: - mkDerivation { - pname = "http-media"; - version = "0.8.0.0"; - sha256 = "398279d1dff5b60cd8b8c650caceca248ea1184d694bedf5df5426963b2b9c53"; - revision = "2"; - editedCabalFile = "0qvkhbxdz33lis5vca3jm1b44fkm7aalf4iz1gblr8xivnpmq885"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/zmthy/http-media"; - description = "Processing HTTP Content-Type and Accept headers"; - license = stdenv.lib.licenses.mit; - }) {}; - "http-reverse-proxy" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, case-insensitive - , conduit, conduit-extra, containers, http-client, http-types - , network, resourcet, stdenv, streaming-commons, text, transformers - , unliftio, wai, wai-logger, word8 - }: - mkDerivation { - pname = "http-reverse-proxy"; - version = "0.6.0"; - sha256 = "fb1c913111478384c4f23647810b8c3c01c79e9276a08a1ea46215e4a42dd1a8"; - libraryHaskellDepends = [ - base blaze-builder bytestring case-insensitive conduit - conduit-extra containers http-client http-types network resourcet - streaming-commons text transformers unliftio wai wai-logger word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/http-reverse-proxy"; - description = "Reverse proxy HTTP requests, either over raw sockets or with WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-streams" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, case-insensitive, directory, HsOpenSSL - , http-common, io-streams, mtl, network, network-uri - , openssl-streams, stdenv, text, transformers, unordered-containers - }: - mkDerivation { - pname = "http-streams"; - version = "0.8.7.1"; - sha256 = "4bd0142aa2f682cacf25ce0290452f142c5eab8d893f15fffebcfcfe1e32864e"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-builder bytestring - case-insensitive directory HsOpenSSL http-common io-streams mtl - network network-uri openssl-streams text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/afcowie/http-streams/"; - description = "An HTTP client using io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http-types" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive, stdenv - , text - }: - mkDerivation { - pname = "http-types"; - version = "0.12.3"; - sha256 = "4e8a4a66477459fa436a331c75e46857ec8026283df984d54f90576cd3024016"; - libraryHaskellDepends = [ - array base bytestring case-insensitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aristidb/http-types"; - description = "Generic HTTP types for Haskell (for both client and server code)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "http2" = callPackage - ({ mkDerivation, array, base, bytestring, case-insensitive - , containers, http-types, network, network-byte-order, psqueues - , stdenv, stm, time-manager - }: - mkDerivation { - pname = "http2"; - version = "2.0.3"; - sha256 = "ba5105f31d0e83d5bd7f6f6c5deef6b277cd6a82f9701e19920f54e0c00b1093"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring case-insensitive containers http-types - network network-byte-order psqueues stm time-manager - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kazu-yamamoto/http2"; - description = "HTTP/2 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "httpd-shed" = callPackage - ({ mkDerivation, base, network, network-bsd, network-uri, stdenv }: - mkDerivation { - pname = "httpd-shed"; - version = "0.4.1.1"; - sha256 = "590fcfcb401923652bfcaf8c9a81b3bbbe83a4b1d16f7ccfecf7e47f6b6cafa5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base network network-bsd network-uri ]; - doHaddock = false; - doCheck = false; - description = "A simple web-server with an interact style API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "human-readable-duration" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "human-readable-duration"; - version = "0.2.1.4"; - sha256 = "cc688783dd3b761bba580cc01ddd41f75d436a21af7dd10e1268c2b0d43adc1b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.esy.fun/yogsototh/human-readable-duration#readme"; - description = "Provide duration helper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hunit-dejafu" = callPackage - ({ mkDerivation, base, dejafu, exceptions, HUnit, stdenv }: - mkDerivation { - pname = "hunit-dejafu"; - version = "2.0.0.1"; - sha256 = "dfe9126018e4518f4babddb6a759c696665058ddca1eb2a270245c3dd1bcf658"; - libraryHaskellDepends = [ base dejafu exceptions HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the HUnit test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hvect"; - version = "0.4.0.0"; - sha256 = "cb50ef1a7f189f8c217a7d0d55b5568b2fa9bbe415b14ce114a93d2e1d5e30b6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/hvect"; - description = "Simple strict heterogeneous lists"; - license = stdenv.lib.licenses.mit; - }) {}; - "hvega" = callPackage - ({ mkDerivation, aeson, base, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "hvega"; - version = "0.4.1.2"; - sha256 = "e6885056cf1ba4133c8eb95680535d65f6454a7d003df5e41f1c69842187c76d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DougBurke/hvega"; - description = "Create Vega-Lite visualizations (version 3) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-balancedparens" = callPackage - ({ mkDerivation, base, deepseq, hedgehog, hspec, hw-bits, hw-excess - , hw-fingertree, hw-prim, hw-rankselect-base, stdenv, vector - }: - mkDerivation { - pname = "hw-balancedparens"; - version = "0.3.0.3"; - sha256 = "51af53b8f522a97104e3f3a9cddf835ff9e24f27cde1af26583f5e45af79561e"; - libraryHaskellDepends = [ - base deepseq hedgehog hspec hw-bits hw-excess hw-fingertree hw-prim - hw-rankselect-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-balancedparens#readme"; - description = "Balanced parentheses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-bits" = callPackage - ({ mkDerivation, base, bitvec, bytestring, deepseq, hw-int, hw-prim - , hw-string-parse, stdenv, vector - }: - mkDerivation { - pname = "hw-bits"; - version = "0.7.1.0"; - sha256 = "34ae831f26ec6d8c36575c3a32e4f80a7683dd93191b67ae92f31728be8d9264"; - libraryHaskellDepends = [ - base bitvec bytestring deepseq hw-int hw-prim hw-string-parse - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-bits#readme"; - description = "Bit manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-conduit" = callPackage - ({ mkDerivation, array, base, bytestring, conduit - , conduit-combinators, stdenv, time, transformers, unliftio-core - , word8 - }: - mkDerivation { - pname = "hw-conduit"; - version = "0.2.0.6"; - sha256 = "2c871841513859688f6dab906528b1fcbebbe6b094ce1de79fb4b4bda9b6207d"; - libraryHaskellDepends = [ - array base bytestring conduit conduit-combinators time transformers - unliftio-core word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-conduit#readme"; - description = "Conduits for tokenizing streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-conduit-merges" = callPackage - ({ mkDerivation, base, conduit, conduit-extra, mtl, stdenv }: - mkDerivation { - pname = "hw-conduit-merges"; - version = "0.2.0.0"; - sha256 = "9bcea270cc01a117c892315fff0dd46de3e58466e9ef82f7571eedad9b58028c"; - revision = "1"; - editedCabalFile = "1azji7zc0ygqjgd2shbqw7p8a2ll2qp3b1yq5i3665448brlwpvc"; - libraryHaskellDepends = [ base conduit conduit-extra mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-conduit-merges#readme"; - description = "Additional merges and joins for Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-diagnostics" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-diagnostics"; - version = "0.0.0.7"; - sha256 = "f197f234f416e4f2b0d00bbca7e71105d3179a857c43d60b0157cc3d6fcbd5f1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-diagnostics#readme"; - description = "Diagnostics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-dsv" = callPackage - ({ mkDerivation, appar, base, bits-extra, bytestring, deepseq - , generic-lens, ghc-prim, hedgehog, hw-bits, hw-ip, hw-prim - , hw-rankselect, hw-rankselect-base, hw-simd, lens - , optparse-applicative, resourcet, stdenv, text, vector - }: - mkDerivation { - pname = "hw-dsv"; - version = "0.4.0"; - sha256 = "6e7bbe4429a94a7bf63e91bec39a5507ace53dec3f4fada8adbc60f20776f2b2"; - revision = "2"; - editedCabalFile = "167zvbxwjmb25xmhcdhrshk03b98kh5ldrf2b6a4v8xlkj4p33qm"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bits-extra bytestring deepseq ghc-prim hw-bits hw-prim - hw-rankselect hw-rankselect-base hw-simd vector - ]; - executableHaskellDepends = [ - appar base bits-extra bytestring deepseq generic-lens ghc-prim - hedgehog hw-bits hw-ip hw-prim hw-rankselect hw-rankselect-base - hw-simd lens optparse-applicative resourcet text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-dsv#readme"; - description = "Unbelievably fast streaming DSV file parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-eliasfano" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, generic-lens - , hw-bits, hw-int, hw-packed-vector, hw-prim, hw-rankselect - , hw-rankselect-base, lens, optparse-applicative, resourcet, stdenv - , temporary-resourcet, vector - }: - mkDerivation { - pname = "hw-eliasfano"; - version = "0.1.1.1"; - sha256 = "6763cffd6e3bc4654a9a246538609a8457430494d73ec4774fa48ec05b63ab3a"; - revision = "1"; - editedCabalFile = "1i5in5h9jnx4p873qv80jmdd1ak6yyyf70002j3lhxyaxx9byy7k"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hw-bits hw-int hw-packed-vector hw-prim hw-rankselect - hw-rankselect-base temporary-resourcet vector - ]; - executableHaskellDepends = [ - base binary bytestring generic-lens hw-bits hw-packed-vector - hw-prim hw-rankselect hw-rankselect-base lens optparse-applicative - resourcet temporary-resourcet vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-eliasfano#readme"; - description = "Elias-Fano"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-excess" = callPackage - ({ mkDerivation, base, hw-bits, hw-prim, hw-rankselect-base, safe - , stdenv, vector - }: - mkDerivation { - pname = "hw-excess"; - version = "0.2.2.2"; - sha256 = "5ff71cf33aaa02e27bc0b835c1eb793556b683bb4ad8b50de856ed42a3a195c7"; - libraryHaskellDepends = [ - base hw-bits hw-prim hw-rankselect-base safe vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-excess#readme"; - description = "Excess"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree" = callPackage - ({ mkDerivation, base, deepseq, hw-prim, stdenv }: - mkDerivation { - pname = "hw-fingertree"; - version = "0.1.1.1"; - sha256 = "4edf530abfbd95d601fc99d5f6b82a3cd3edc73e83b34c904ebee5b5acb5f005"; - libraryHaskellDepends = [ base deepseq hw-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree#readme"; - description = "Generic finger-tree structure, with example instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-fingertree-strict" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "hw-fingertree-strict"; - version = "0.1.1.3"; - sha256 = "00d5e9565e24a056abd0158f2772e428abe883c459820554ba478140ad48c4bb"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-fingertree-strict#readme"; - description = "Generic strict finger-tree structure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, vector }: - mkDerivation { - pname = "hw-hedgehog"; - version = "0.1.0.5"; - sha256 = "71cda358bcc60392895b9a97107c7a16775e0f7a33671345cdf633b67c7dcef2"; - libraryHaskellDepends = [ base hedgehog vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hedgehog#readme"; - description = "Extra hedgehog functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-hspec-hedgehog" = callPackage - ({ mkDerivation, base, call-stack, hedgehog, hspec, HUnit, stdenv - , transformers - }: - mkDerivation { - pname = "hw-hspec-hedgehog"; - version = "0.1.0.9"; - sha256 = "7eae165a196163993c8c3168f840813a4184b2db81a2ae68efe8be83ddf9cce5"; - libraryHaskellDepends = [ - base call-stack hedgehog hspec HUnit transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-hspec-hedgehog#readme"; - description = "Interoperability between hspec and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-int" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-int"; - version = "0.0.0.4"; - sha256 = "3f22951262e824a6801e4ceb9c01bf735b57a2e2ba8cec3834f0993dc474a046"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-int#readme"; - description = "Additional facilities for Integers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-ip" = callPackage - ({ mkDerivation, appar, base, binary, bytestring, containers - , generic-lens, hedgehog, hw-bits, iproute, lens - , optparse-applicative, stdenv, text - }: - mkDerivation { - pname = "hw-ip"; - version = "2.4.1.0"; - sha256 = "f01b8d9f8ea875685ff9e09d78df53e5a315cd98ec72ee8e48cfc6dfd10154fe"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - appar base containers generic-lens hedgehog hw-bits iproute text - ]; - executableHaskellDepends = [ - appar base binary bytestring generic-lens lens optparse-applicative - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-ip#readme"; - description = "Library for manipulating IP addresses and CIDR blocks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, attoparsec, base - , bits-extra, bytestring, dlist, generic-lens, hw-balancedparens - , hw-bits, hw-json-simd, hw-json-simple-cursor - , hw-json-standard-cursor, hw-mquery, hw-parser, hw-prim - , hw-rankselect, hw-rankselect-base, hw-simd, lens, mmap - , optparse-applicative, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json"; - version = "1.3.1.1"; - sha256 = "b4ac50b6a494c483d9d880d29640911c2914a6425b8d68c7e56a5faee7471370"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base bits-extra bytestring dlist - hw-balancedparens hw-bits hw-json-simple-cursor - hw-json-standard-cursor hw-mquery hw-parser hw-prim hw-rankselect - hw-rankselect-base hw-simd mmap text vector word8 - ]; - executableHaskellDepends = [ - base bytestring dlist generic-lens hw-balancedparens hw-json-simd - hw-json-simple-cursor hw-json-standard-cursor hw-mquery hw-prim - hw-rankselect hw-rankselect-base lens mmap optparse-applicative - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-simd" = callPackage - ({ mkDerivation, base, bytestring, c2hs, hw-prim, lens - , optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-json-simd"; - version = "0.1.0.4"; - sha256 = "4a23de88454d5c076c1623c186bee8c9a6c1e2e8d58945b1291e09e5ff3ef3e2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring hw-prim lens vector ]; - libraryToolDepends = [ c2hs ]; - executableHaskellDepends = [ - base bytestring hw-prim lens optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-json-simd#readme"; - description = "SIMD-based JSON semi-indexer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-simple-cursor" = callPackage - ({ mkDerivation, base, bytestring, generic-lens, hw-balancedparens - , hw-bits, hw-json-simd, hw-prim, hw-rankselect, hw-rankselect-base - , lens, mmap, optparse-applicative, stdenv, text, vector, word8 - }: - mkDerivation { - pname = "hw-json-simple-cursor"; - version = "0.1.0.2"; - sha256 = "f6d2e4e98c9fe3396aeadbd42d2918259b65f6ac5db9e8e62ad152876cf576fa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring hw-balancedparens hw-bits hw-prim hw-rankselect - hw-rankselect-base vector word8 - ]; - executableHaskellDepends = [ - base bytestring generic-lens hw-balancedparens hw-json-simd hw-prim - hw-rankselect hw-rankselect-base lens mmap optparse-applicative - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json-simple-cursor#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-json-standard-cursor" = callPackage - ({ mkDerivation, array, base, bits-extra, bytestring, generic-lens - , hw-balancedparens, hw-bits, hw-json-simd, hw-prim, hw-rankselect - , hw-rankselect-base, lens, mmap, optparse-applicative, stdenv - , text, vector, word8 - }: - mkDerivation { - pname = "hw-json-standard-cursor"; - version = "0.2.1.2"; - sha256 = "ced9b4e6f53c1e850e9ed19fc8b0e38c1d4b025b1ae832b67f06d87f97fbcbd1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bits-extra bytestring hw-balancedparens hw-bits - hw-json-simd hw-prim hw-rankselect hw-rankselect-base mmap vector - word8 - ]; - executableHaskellDepends = [ - base bytestring generic-lens hw-balancedparens hw-json-simd hw-prim - hw-rankselect hw-rankselect-base lens mmap optparse-applicative - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-json-standard-cursor#readme"; - description = "Memory efficient JSON parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-mquery" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, dlist, lens, semigroups - , stdenv - }: - mkDerivation { - pname = "hw-mquery"; - version = "0.2.0.2"; - sha256 = "327a50c2ddf1d106cd7350166fdf09b37b4232a9d24bb7e0bc8079366cf49ded"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base dlist lens semigroups - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-mquery#readme"; - description = "Monadic query DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-packed-vector" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, generic-lens - , hw-bits, hw-prim, lens, optparse-applicative, stdenv, vector - }: - mkDerivation { - pname = "hw-packed-vector"; - version = "0.2.0.1"; - sha256 = "cc55c7edebfda8d2c1f95ab33f9eca488a0092a2f2d96edc6b2c84ebd20a2888"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring deepseq hw-bits hw-prim vector - ]; - executableHaskellDepends = [ - base binary bytestring generic-lens hw-bits hw-prim lens - optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-packed-vector#readme"; - description = "Packed Vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-parser" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, hw-prim, stdenv - , text - }: - mkDerivation { - pname = "hw-parser"; - version = "0.1.0.2"; - sha256 = "317c0ad35361835c8779593f284609d32d3784ecd2f5fe1ec64b0a3d489a0d9c"; - libraryHaskellDepends = [ - attoparsec base bytestring hw-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-parser#readme"; - description = "Simple parser support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-prim" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, mmap - , semigroups, stdenv, transformers, unliftio-core, vector - }: - mkDerivation { - pname = "hw-prim"; - version = "0.6.2.39"; - sha256 = "4f0841600aab06250602189f94e33d11ec246db44c9cc4ffaa6a2c57f9f3c419"; - libraryHaskellDepends = [ - base bytestring deepseq ghc-prim mmap semigroups transformers - unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-prim#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect" = callPackage - ({ mkDerivation, base, deepseq, directory, generic-lens, hedgehog - , hspec, hw-balancedparens, hw-bits, hw-fingertree, hw-prim - , hw-rankselect-base, lens, mmap, mtl, optparse-applicative, stdenv - , vector - }: - mkDerivation { - pname = "hw-rankselect"; - version = "0.13.3.1"; - sha256 = "7a16c79dc51e413ab98dad20d808bb2da5be89df86019041da3f956922627015"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq hedgehog hspec hw-balancedparens hw-bits hw-fingertree - hw-prim hw-rankselect-base vector - ]; - executableHaskellDepends = [ - base directory generic-lens hw-bits hw-prim hw-rankselect-base lens - mmap mtl optparse-applicative vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect#readme"; - description = "Rank-select"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-rankselect-base" = callPackage - ({ mkDerivation, base, bits-extra, bitvec, hw-bits, hw-int, hw-prim - , hw-string-parse, stdenv, vector - }: - mkDerivation { - pname = "hw-rankselect-base"; - version = "0.3.3.0"; - sha256 = "ab44305ead0ba9c460cd86395ad206fcfce77f3610d7759b26f5b19f629d049e"; - libraryHaskellDepends = [ - base bits-extra bitvec hw-bits hw-int hw-prim hw-string-parse - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-rankselect-base#readme"; - description = "Rank-select base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-simd" = callPackage - ({ mkDerivation, base, bits-extra, bytestring, c2hs, deepseq - , hw-bits, hw-prim, hw-rankselect, hw-rankselect-base, stdenv - , vector - }: - mkDerivation { - pname = "hw-simd"; - version = "0.1.1.5"; - sha256 = "cbe3475591e38ffe64db5fbc26999091d6f56d2a84c86c20976bf577221c1e5a"; - libraryHaskellDepends = [ - base bits-extra bytestring deepseq hw-bits hw-prim hw-rankselect - hw-rankselect-base vector - ]; - libraryToolDepends = [ c2hs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-works/hw-simd#readme"; - description = "SIMD library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-streams" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, hw-bits, hw-prim, mmap - , primitive, semigroups, stdenv, transformers, vector - }: - mkDerivation { - pname = "hw-streams"; - version = "0.0.0.12"; - sha256 = "a40673d42271b69ee630b9a85699f9cc043c06761af5e6d3db4938d81fb1fa20"; - libraryHaskellDepends = [ - base bytestring ghc-prim hw-bits hw-prim mmap primitive semigroups - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-streams#readme"; - description = "Primitive functions and data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-string-parse" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hw-string-parse"; - version = "0.0.0.4"; - sha256 = "64a1ebf8d311e255f293c40febfb346da23a55a454b67f2d5e33de1cb7e9f2b7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-string-parse#readme"; - description = "String parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hw-succinct" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, conduit, containers - , hw-balancedparens, hw-bits, hw-prim, hw-rankselect - , hw-rankselect-base, mmap, mono-traversable, stdenv, text, vector - , word8 - }: - mkDerivation { - pname = "hw-succinct"; - version = "0.1.0.1"; - sha256 = "002c578c1ff7a33cbef089b2a943218777c14125629f6bf63dea9e7c8e3749db"; - libraryHaskellDepends = [ - attoparsec base bytestring conduit containers hw-balancedparens - hw-bits hw-prim hw-rankselect hw-rankselect-base mmap - mono-traversable text vector word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-succinct#readme"; - description = "Succint datastructures"; - license = stdenv.lib.licenses.mit; - }) {}; - "hw-xml" = callPackage - ({ mkDerivation, ansi-wl-pprint, array, attoparsec, base - , bytestring, cereal, containers, deepseq, generic-lens, ghc-prim - , hw-balancedparens, hw-bits, hw-parser, hw-prim, hw-rankselect - , hw-rankselect-base, lens, mmap, mtl, optparse-applicative - , resourcet, stdenv, text, transformers, vector, word8 - }: - mkDerivation { - pname = "hw-xml"; - version = "0.5.0.0"; - sha256 = "d6fb7e4381ad73bc116acbcfd8cd169dc1569c0f0bc2cffc31d0a7b652d01933"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - ansi-wl-pprint array attoparsec base bytestring cereal containers - deepseq ghc-prim hw-balancedparens hw-bits hw-parser hw-prim - hw-rankselect hw-rankselect-base lens mmap mtl resourcet text - transformers vector word8 - ]; - executableHaskellDepends = [ - attoparsec base bytestring deepseq generic-lens hw-balancedparens - hw-bits hw-prim hw-rankselect lens mmap mtl optparse-applicative - resourcet text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-works/hw-xml#readme"; - description = "XML parser based on succinct data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hweblib" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, mtl - , stdenv, text, transformers - }: - mkDerivation { - pname = "hweblib"; - version = "0.6.3"; - sha256 = "1e8ee12baac496d56831935a60e78f54eb43d2b7268bf7d31acb6b9a63e9b50d"; - libraryHaskellDepends = [ - attoparsec base bytestring containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aycanirican/hweblib"; - description = "Haskell Web Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , directory, filepath, hxt-charproperties, hxt-regex-xmlschema - , hxt-unicode, mtl, network-uri, parsec, stdenv - }: - mkDerivation { - pname = "hxt"; - version = "9.3.1.18"; - sha256 = "721809d89bbcaf29b2bbe3b9cdbb54e6d6a30afe7509186061898f7e8b996620"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base binary bytestring containers deepseq directory filepath - hxt-charproperties hxt-regex-xmlschema hxt-unicode mtl network-uri - parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "A collection of tools for processing XML with Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-charproperties" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "hxt-charproperties"; - version = "9.4.0.0"; - sha256 = "f50ea1d5528025400507f9b181596f7b277e645a1e33ebbc659be22b244468ae"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Character properties and classes for XML and Unicode"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-css" = callPackage - ({ mkDerivation, base, hxt, parsec, split, stdenv }: - mkDerivation { - pname = "hxt-css"; - version = "0.1.0.3"; - sha256 = "0244fc145d5923df0522ad80949e9b221b01a028c755ebfc4740339881ef65b7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hxt parsec split ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hxt-css"; - description = "CSS selectors for HXT"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hxt-curl" = callPackage - ({ mkDerivation, base, bytestring, curl, hxt, parsec, stdenv }: - mkDerivation { - pname = "hxt-curl"; - version = "9.1.1.1"; - sha256 = "cdc1cc8bf9b8699cabdee965c9737d497c199b5cf82eabc66a5fe3f2ffb3c5ea"; - libraryHaskellDepends = [ base bytestring curl hxt parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "LibCurl interface for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-expat" = callPackage - ({ mkDerivation, base, bytestring, hexpat, hxt, stdenv }: - mkDerivation { - pname = "hxt-expat"; - version = "9.1.1"; - sha256 = "10d9c43c20c82e879fbc06944fcfed373f8b43bd3e0a44f9c712db30a27022d6"; - libraryHaskellDepends = [ base bytestring hexpat hxt ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.fh-wedel.de/~si/HXmlToolbox/index.html"; - description = "Expat parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-http" = callPackage - ({ mkDerivation, base, bytestring, HTTP, hxt, network, network-uri - , parsec, stdenv - }: - mkDerivation { - pname = "hxt-http"; - version = "9.1.5.2"; - sha256 = "6fa19d03991d53c34f4525a4fdfaafde56dd48459093b4502832a1fdd9dfdd0b"; - configureFlags = [ "-fnetwork-uri" ]; - libraryHaskellDepends = [ - base bytestring HTTP hxt network network-uri parsec - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Interface to native Haskell HTTP package HTTP"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-regex-xmlschema" = callPackage - ({ mkDerivation, base, bytestring, hxt-charproperties, parsec - , stdenv, text - }: - mkDerivation { - pname = "hxt-regex-xmlschema"; - version = "9.2.0.3"; - sha256 = "f4743ba65498d6001cdfcf5cbc3317d4bc43941be5c7030b60beb83408c892b0"; - revision = "1"; - editedCabalFile = "0vg9vnfjmq1ma6zwwv4yvfih6wbslksvsvy9b41i4f81l0hh7ia8"; - libraryHaskellDepends = [ - base bytestring hxt-charproperties parsec text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Regular_expressions_for_XML_Schema"; - description = "A regular expression library for W3C XML Schema regular expressions"; - license = stdenv.lib.licenses.mit; - }) {}; - "hxt-tagsoup" = callPackage - ({ mkDerivation, base, hxt, hxt-charproperties, hxt-unicode, stdenv - , tagsoup - }: - mkDerivation { - pname = "hxt-tagsoup"; - version = "9.1.4"; - sha256 = "d77b290d63acf0ac8e5a07c5c69753f9984b97e0c9d2c0befadd7dd5b144b283"; - libraryHaskellDepends = [ - base hxt hxt-charproperties hxt-unicode tagsoup - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "TagSoup parser for HXT"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "hxt-unicode" = callPackage - ({ mkDerivation, base, hxt-charproperties, stdenv }: - mkDerivation { - pname = "hxt-unicode"; - version = "9.0.2.4"; - sha256 = "7b5823f3bd94b57022d9d84ab3555303653c5121eaaef2ee1fd4918f3c434466"; - libraryHaskellDepends = [ base hxt-charproperties ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/UweSchmidt/hxt"; - description = "Unicode en-/decoding functions for utf8, iso-latin-* and other encodings"; - license = stdenv.lib.licenses.mit; - }) {}; - "hybrid-vectors" = callPackage - ({ mkDerivation, base, deepseq, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "hybrid-vectors"; - version = "0.2.2"; - sha256 = "41c6c371df64b9083354e66101ad8c92f87458474fed2a149e4632db644f86d7"; - revision = "1"; - editedCabalFile = "16wpgh7cxgmap5acyccbff02b2jvhqiad5m3fknribpbahvmkk88"; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hybrid-vectors"; - description = "Hybrid vectors e.g. Mixed Boxed/Unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyperloglog" = callPackage - ({ mkDerivation, approximate, base, binary, bits, bytes, Cabal - , cabal-doctest, cereal, cereal-vector, comonad, deepseq - , distributive, hashable, lens, reflection, semigroupoids - , semigroups, siphash, stdenv, tagged, vector - }: - mkDerivation { - pname = "hyperloglog"; - version = "0.4.3"; - sha256 = "8dbb30a58799b1bf145e82b71be0f782b60e9ef55d0c5fd3d2a0c28028cc3f64"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - approximate base binary bits bytes cereal cereal-vector comonad - deepseq distributive hashable lens reflection semigroupoids - semigroups siphash tagged vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/analytics/hyperloglog"; - description = "An approximate streaming (constant space) unique object counter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "hyphenation" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, containers - , stdenv, text, unordered-containers, zlib - }: - mkDerivation { - pname = "hyphenation"; - version = "0.8"; - sha256 = "31fa47011c27cdad034fb691f232209b857774489a2eaf189e075bf9fced8925"; - enableSeparateDataOutput = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring containers text unordered-containers zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/hyphenation"; - description = "Configurable Knuth-Liang hyphenation"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "iconv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "iconv"; - version = "0.4.1.3"; - sha256 = "36425168e3314bc83ba5ee95152872d52e94ee0f9503f3591f84d458e005b554"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "String encoding conversion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "identicon" = callPackage - ({ mkDerivation, base, bytestring, JuicyPixels, stdenv }: - mkDerivation { - pname = "identicon"; - version = "0.2.2"; - sha256 = "3679b4fcc0a5bcc93b6ed2009f43e3ec87bf9549aee3eef182f7403d0c10f263"; - revision = "3"; - editedCabalFile = "0vya6zm3nnbdv3wmj3dwqwwjgsagql8q17078knhjddv2lm8m49q"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring JuicyPixels ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/identicon"; - description = "Flexible generation of identicons"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ieee754" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ieee754"; - version = "0.8.0"; - sha256 = "0e2dff9c37f59acf5c64f978ec320005e9830f276f9f314e4bfed3f482289ad1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/patperry/hs-ieee754"; - description = "Utilities for dealing with IEEE floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "if" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "if"; - version = "0.1.0.0"; - sha256 = "28f673e867dbe0f51324d97fcb7884673a34912593746520a470116b167a141d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/if"; - description = "(?) and (?>) conditional operator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iff" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv }: - mkDerivation { - pname = "iff"; - version = "0.0.6"; - sha256 = "6b8845808481307e2d374fd8d17e82a5de1284e612cf8ade27db8785e9e12837"; - libraryHaskellDepends = [ base binary bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/iff/"; - description = "Constructing and dissecting IFF files"; - license = "GPL"; - }) {}; - "ihs" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "ihs"; - version = "0.1.0.3"; - sha256 = "13bf923ad64d5dd1c517a64c0fd017fe94951a18ebbfe7e587b11e3ad6ebd5fd"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/ihs"; - description = "Interpolated Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "ilist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ilist"; - version = "0.3.1.0"; - sha256 = "e898e1dd1077e5a268f66e2de15f15ef64eddac94133954c9e054d59092afe97"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/aelve/ilist"; - description = "Optimised list functions for doing index-related things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "imagesize-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, stdenv - }: - mkDerivation { - pname = "imagesize-conduit"; - version = "1.1"; - sha256 = "31c5784578b305921b89f7ab6fca35747e5a35f12884770b78c31e3a0a01ac19"; - revision = "3"; - editedCabalFile = "0p4zmizr01pg3d7gb0q88j1alvvlzbdvzyf1wbgajng68a4g0li9"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/silkapp/imagesize-conduit"; - description = "Determine the size of some common image formats"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "immortal" = callPackage - ({ mkDerivation, base, stdenv, stm, unliftio-core }: - mkDerivation { - pname = "immortal"; - version = "0.3"; - sha256 = "11c89db97f33c8bbfe6f72c728c68135a247608ceb2335dfb7ac6679acb41f88"; - libraryHaskellDepends = [ base stm unliftio-core ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/immortal"; - description = "Spawn threads that never die (unless told to do so)"; - license = stdenv.lib.licenses.mit; - }) {}; - "include-file" = callPackage - ({ mkDerivation, base, bytestring, Cabal, random, stdenv - , template-haskell - }: - mkDerivation { - pname = "include-file"; - version = "0.1.0.4"; - sha256 = "5b1f93482bc5ed85bbe04a1c63fa8bee6d4156b79cee43f812db92765fa1666e"; - setupHaskellDepends = [ base bytestring Cabal random ]; - libraryHaskellDepends = [ - base bytestring random template-haskell - ]; - doHaddock = false; - doCheck = false; - description = "Inclusion of files in executables at compile-time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "incremental-parser" = callPackage - ({ mkDerivation, base, monoid-subclasses, parsers, rank2classes - , stdenv, transformers - }: - mkDerivation { - pname = "incremental-parser"; - version = "0.4"; - sha256 = "84a92e26e39d46e913c12d8e5c218867fe6dbf024d0c1344f4ed1b33bdcdd747"; - libraryHaskellDepends = [ - base monoid-subclasses parsers rank2classes transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/incremental-parser"; - description = "Generic parser library capable of providing partial results from partial input"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "indents" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv }: - mkDerivation { - pname = "indents"; - version = "0.5.0.1"; - sha256 = "a1582cc6b705170bab6ea5cbe360530641ae94a31714a61b56c5f2067ee4ec36"; - libraryHaskellDepends = [ base mtl parsec ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/indents"; - description = "indentation sensitive parser-combinators for parsec"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed"; - version = "0.1.3"; - sha256 = "ef84090ec6bf79e7dc6e9d570fc370c9eea6cd251d3c023979f6e1f8d3fbf5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reinerp/indexed"; - description = "Haskell98 indexed functors, monads, comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-list-literals" = callPackage - ({ mkDerivation, base, Only, stdenv }: - mkDerivation { - pname = "indexed-list-literals"; - version = "0.2.1.2"; - sha256 = "d896ae5b3919a7a9fecdd9336e8f330d055fbdae4821be04b7c1266ccaa07d10"; - revision = "1"; - editedCabalFile = "198hmw2m3539vmh3s58d33h6vl5d0fqpdms8rp8cwj196diipjlc"; - libraryHaskellDepends = [ base Only ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/davidm-d/indexed-list-literals"; - description = "Type safe indexed list literals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "indexed-profunctors" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "indexed-profunctors"; - version = "0.1"; - sha256 = "31dfb4319dff84199344000b1efad75158eeac17ddcbb27f91735e958591bb65"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities for indexed profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "infer-license" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, text - , text-metrics - }: - mkDerivation { - pname = "infer-license"; - version = "0.2.0"; - sha256 = "12e6fe616575159c03cf6fd4a4f30021ecf264a529ab4e4edd6e96e296a98e72"; - libraryHaskellDepends = [ - base directory filepath text text-metrics - ]; - doHaddock = false; - doCheck = false; - description = "Infer software license from a given license file"; - license = stdenv.lib.licenses.mit; - }) {}; - "inflections" = callPackage - ({ mkDerivation, base, exceptions, megaparsec, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "inflections"; - version = "0.4.0.5"; - sha256 = "6b5bc532f559df769f1a97747e6770ba0777e0efd24c96c22ceb6da1781cb839"; - libraryHaskellDepends = [ - base exceptions megaparsec text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/inflections-hs"; - description = "Inflections library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "influxdb" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, clock, containers, foldl, http-client, http-types - , lens, network, optional-args, scientific, stdenv, tagged, text - , time, unordered-containers, vector - }: - mkDerivation { - pname = "influxdb"; - version = "1.7.1.1"; - sha256 = "a8236bd703503a88e8421a74ba9e23afd3eb8d7b918c50e828acd36bdfa21f97"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring clock containers foldl http-client - http-types lens network optional-args scientific tagged text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/influxdb-haskell"; - description = "Haskell client library for InfluxDB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ini" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "ini"; - version = "0.4.1"; - sha256 = "14293c2a209f938cc3e779132f3411c330636a91b1a58549a154c025518c7c57"; - libraryHaskellDepends = [ - attoparsec base text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chrisdone/ini"; - description = "Quick and easy configuration files in the INI format"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inj" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "inj"; - version = "1.0"; - sha256 = "4012310e5e80d4f4eb11ec73aeda311f7cb94a5c68e7393bfb3b99513cd61ab6"; - doHaddock = false; - doCheck = false; - description = "A class for injective (one-to-one) functions"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "inline-c" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, containers - , hashable, mtl, parsec, parsers, stdenv, template-haskell - , transformers, unordered-containers, vector - }: - mkDerivation { - pname = "inline-c"; - version = "0.9.0.0"; - sha256 = "061b089a087d7ce9c38b3f13c9c7046526c8651ebbd5dff889b0b31d14c3d320"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint base bytestring containers hashable mtl parsec - parsers template-haskell transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Write Haskell source files including C code inline. No FFI required."; - license = stdenv.lib.licenses.mit; - }) {}; - "insert-ordered-containers" = callPackage - ({ mkDerivation, aeson, base, base-compat, hashable, lens - , optics-core, optics-extra, semigroupoids, semigroups, stdenv - , text, transformers, unordered-containers - }: - mkDerivation { - pname = "insert-ordered-containers"; - version = "0.2.3"; - sha256 = "33022337aed2f5c7beb320af3e8af846bbba450b7cb712eb0dac7f8a78d9078c"; - libraryHaskellDepends = [ - aeson base base-compat hashable lens optics-core optics-extra - semigroupoids semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/insert-ordered-containers#readme"; - description = "Associative containers retaining insertion order for traversals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "inspection-testing" = callPackage - ({ mkDerivation, base, containers, ghc, mtl, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "inspection-testing"; - version = "0.4.2.2"; - sha256 = "d78fcf2129ee1bccd184069e98deacaf7f41afaa292f8aa082a6477353faf7ae"; - libraryHaskellDepends = [ - base containers ghc mtl template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nomeata/inspection-testing"; - description = "GHC plugin to do inspection testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "instance-control" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "instance-control"; - version = "0.1.2.0"; - sha256 = "7d6dd381d8fb449584cdb016464cd02794e3ccc527c0589aab16d8a2221c6b73"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lazac/instance-control"; - description = "Controls how the compiler searches for instances using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "int-cast" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "int-cast"; - version = "0.2.0.0"; - sha256 = "e006956a08b751a996a92828ccb728b7237c9c435c4b35b5169eb8d44ac51969"; - revision = "2"; - editedCabalFile = "1fhc91170q9q9k628wc3dqzdvxfjs97jzg5x7g0ndaqnh60l8cy5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/int-cast"; - description = "Checked conversions between integral types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "integer-logarithms" = callPackage - ({ mkDerivation, array, base, ghc-prim, integer-gmp, stdenv }: - mkDerivation { - pname = "integer-logarithms"; - version = "1.0.3"; - sha256 = "5ae262018698af35bb74916fad170d96d3eb44669c72ed36db9a19a3392cec16"; - revision = "2"; - editedCabalFile = "0a6j3313vz7n7dn8abddyib4jggblaq89f87ib4imdwjxjajbm33"; - libraryHaskellDepends = [ array base ghc-prim integer-gmp ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/integer-logarithms"; - description = "Integer logarithms"; - license = stdenv.lib.licenses.mit; - }) {}; - "integration" = callPackage - ({ mkDerivation, base, parallel, stdenv }: - mkDerivation { - pname = "integration"; - version = "0.2.1"; - sha256 = "0c27385eadc10a580e78f7b7d4bc919c346b2c9b1e73aea7e7804d824d53582f"; - libraryHaskellDepends = [ base parallel ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ekmett/integration"; - description = "Fast robust numeric integration via tanh-sinh quadrature"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intern" = callPackage - ({ mkDerivation, array, base, bytestring, hashable, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "intern"; - version = "0.9.2"; - sha256 = "93a3b20e96dad8d83c9145dfc68bd9d2a6a72c9f64e4a7bc257d330070f42e20"; - revision = "1"; - editedCabalFile = "1mav591qx20p9dx4rg4xwpavqw8rciva82n7q0icdgvc1ayy7sl5"; - libraryHaskellDepends = [ - array base bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intern/"; - description = "Efficient hash-consing for arbitrary data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolate" = callPackage - ({ mkDerivation, base, haskell-src-meta, stdenv, template-haskell - }: - mkDerivation { - pname = "interpolate"; - version = "0.2.0"; - sha256 = "6e112006073f2d91e7e93432ccb147b79a21fcc21a9dedd0d8c38cef51926abe"; - libraryHaskellDepends = [ base haskell-src-meta template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/interpolate#readme"; - description = "String interpolation done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "interpolation" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "interpolation"; - version = "0.1.1.1"; - sha256 = "c5735cf6cde9439188890290e2d01dd40fabca670ecf17b70e12dc9e8aa33d20"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/interpolation/"; - description = "piecewise linear and cubic Hermite interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "interpolator" = callPackage - ({ mkDerivation, aeson, base, containers, either, mono-traversable - , mtl, product-profunctors, profunctors, QuickCheck, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "interpolator"; - version = "1.0.0"; - sha256 = "675195c365ef1bddcbc4f21d5873f3b2db1c27e2c20cf2542da2a8f598d76a4e"; - libraryHaskellDepends = [ - aeson base containers either mono-traversable mtl - product-profunctors profunctors QuickCheck template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvision-insights/interpolator"; - description = "Runtime interpolation of environment variables in records using profunctors"; - license = stdenv.lib.licenses.mit; - }) {}; - "intervals" = callPackage - ({ mkDerivation, array, base, Cabal, cabal-doctest, distributive - , ghc-prim, stdenv - }: - mkDerivation { - pname = "intervals"; - version = "0.9.1"; - sha256 = "dfa8e2ee95b320ac33a11f6e6ecee82d3fb1bbb58ae0640eae9a24a89a9037e9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ array base distributive ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/intervals"; - description = "Interval Arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "intro" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, dlist - , extra, hashable, mtl, safe, stdenv, text, transformers - , unordered-containers, writer-cps-mtl - }: - mkDerivation { - pname = "intro"; - version = "0.6.0.1"; - sha256 = "c75c1675adc940831f144a1b2589632853ed5d8f7fcce95397f7624f6d336ace"; - libraryHaskellDepends = [ - base bytestring containers deepseq dlist extra hashable mtl safe - text transformers unordered-containers writer-cps-mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/intro#readme"; - description = "Safe and minimal prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "intset-imperative" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "intset-imperative"; - version = "0.1.0.0"; - sha256 = "ae549187370f562724f453965519abf65abd3159f70b4715aa6079da48099042"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/haskell-intset-imperative#readme"; - description = "An imperative integer set written in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "invariant" = callPackage - ({ mkDerivation, array, base, bifunctors, comonad, containers - , contravariant, ghc-prim, profunctors, StateVar, stdenv, stm - , tagged, template-haskell, th-abstraction, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "invariant"; - version = "0.5.3"; - sha256 = "d73e5def38da9fdd85def073857aa5f4b1d3b0c2df05c43d58a677cca02d440c"; - revision = "1"; - editedCabalFile = "0sjy375npw6lqcckhyicizzv91v8jh3ca5yjkygiaj22bw5k8c74"; - libraryHaskellDepends = [ - array base bifunctors comonad containers contravariant ghc-prim - profunctors StateVar stm tagged template-haskell th-abstraction - transformers transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nfrisby/invariant-functors"; - description = "Haskell98 invariant functors"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "invertible" = callPackage - ({ mkDerivation, base, haskell-src-meta, invariant, lens - , partial-isomorphisms, semigroupoids, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "invertible"; - version = "0.2.0.5"; - sha256 = "0a0adaa1f371f739fd2c506ff2ba3c4db278bbdfda0171bd8329d678c15b8dbb"; - libraryHaskellDepends = [ - base haskell-src-meta invariant lens partial-isomorphisms - semigroupoids template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - description = "bidirectional arrows, bijective functions, and invariant functors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-machine" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "io-machine"; - version = "0.2.0.0"; - sha256 = "05dcc8d5fcbb6f0d7f3519488ebf743eaa776bc93c2f8b0d4bbd866ac1331ccb"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/io-machine#readme"; - description = "Easy I/O model to learn IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-manager" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-manager"; - version = "0.1.0.2"; - sha256 = "bf0aa7740a8aaf31fc4f2570a47957365ae7d9248edd309e694053f1cd804138"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Skeleton library around the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-memoize" = callPackage - ({ mkDerivation, async, base, stdenv }: - mkDerivation { - pname = "io-memoize"; - version = "1.1.1.0"; - sha256 = "c753a1b1a2fb286bf608d6467e6e7599cde8e641c619885197f298bf1b2f483d"; - libraryHaskellDepends = [ async base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/io-memoize"; - description = "Memoize IO actions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-region" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "io-region"; - version = "0.1.1"; - sha256 = "ee303f66c2b3d33fae877b0dbb7c64624109fc759dffa669ca182e387f1015f1"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/io-region/wiki"; - description = "Exception safe resource management with dynamic regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "io-storage"; - version = "0.3"; - sha256 = "9a0df5cc7ff2eeef11e29e1362fea284f535bc2fe67469bba6dbc41c4f5b49bd"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/io-storage"; - description = "A key-value store in the IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , network, primitive, process, stdenv, text, time, transformers - , vector, zlib-bindings - }: - mkDerivation { - pname = "io-streams"; - version = "1.5.1.0"; - sha256 = "8aa2f0afb83ee2e43c472509ecd45475b9ed4409dfaec16eb781f44152f6ebb0"; - revision = "1"; - editedCabalFile = "0n0qs5lgryh3zxy73j3qbpnxand43yd2bj6pclvyii8apqqp901a"; - configureFlags = [ "-fNoInteractiveTests" ]; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder network primitive - process text time transformers vector zlib-bindings - ]; - doHaddock = false; - doCheck = false; - description = "Simple, composable, and easy-to-use stream I/O"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "io-streams-haproxy" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, io-streams, network - , stdenv, transformers - }: - mkDerivation { - pname = "io-streams-haproxy"; - version = "1.0.1.0"; - sha256 = "b74eca9290fe838a0e3be857a38b62cf6fb7478acee400eac19e47471a2c96b5"; - revision = "2"; - editedCabalFile = "1pvw39f0vrzb5hdx6nqpdg4ccsxa59vwjspfjkh6vvw1zwmidgja"; - libraryHaskellDepends = [ - attoparsec base bytestring io-streams network transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "HAProxy protocol 1.5 support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip" = callPackage - ({ mkDerivation, aeson, attoparsec, base, byteslice, bytesmith - , bytestring, deepseq, hashable, natural-arithmetic, primitive - , small-bytearray-builder, stdenv, text, text-short, vector - , wide-word - }: - mkDerivation { - pname = "ip"; - version = "1.7.1"; - sha256 = "64aa5f2f6cc9a9b2bbf5fd434af8ecf4daa7617194b220412d2c90c84e5e8c78"; - libraryHaskellDepends = [ - aeson attoparsec base byteslice bytesmith bytestring deepseq - hashable natural-arithmetic primitive small-bytearray-builder text - text-short vector wide-word - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/haskell-ip#readme"; - description = "Library for IP and MAC addresses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ip6addr" = callPackage - ({ mkDerivation, base, cmdargs, IPv6Addr, stdenv, text }: - mkDerivation { - pname = "ip6addr"; - version = "1.0.1"; - sha256 = "dfb563510d7db46aeb69897d3e550317e3a95c79cb55032c816e9dbdeb94b25f"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base cmdargs IPv6Addr text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/MichelBoucey/ip6addr"; - description = "Commandline tool to deal with IPv6 address text representations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iproute" = callPackage - ({ mkDerivation, appar, base, byteorder, containers, network - , stdenv - }: - mkDerivation { - pname = "iproute"; - version = "1.7.8"; - sha256 = "4dad14f83bc770554609ac68c3b7bc7cccea4bb2ba2f2085c6e9623378fb584c"; - libraryHaskellDepends = [ - appar base byteorder containers network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.mew.org/~kazu/proj/iproute/"; - description = "IP Routing Table"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipynb" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , containers, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "ipynb"; - version = "0.1"; - sha256 = "45f27b613690ee8b0122bc4686fffbf36e50bfdc378385eb3805131a3f6c4a35"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring containers text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Data structure for working with Jupyter notebooks (ipynb)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ipython-kernel" = callPackage - ({ mkDerivation, aeson, base, bytestring, cereal, cereal-text - , containers, cryptonite, directory, filepath, memory, mtl, process - , stdenv, temporary, text, transformers, unordered-containers, uuid - , zeromq4-haskell - }: - mkDerivation { - pname = "ipython-kernel"; - version = "0.10.1.0"; - sha256 = "bc11976e4850ef2c1e1c92a3fe04e481297303f13c111ac793eec52d0b7c5e0f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring cereal cereal-text containers cryptonite - directory filepath memory mtl process temporary text transformers - unordered-containers uuid zeromq4-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/gibiansky/IHaskell"; - description = "A library for creating kernels for IPython frontends"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "irc"; - version = "0.6.1.0"; - sha256 = "3816ead4dfb32d61c03265e3a2a45053508cb27ca3132595773a27ef381637e1"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A small library for parsing IRC messages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "irc-client" = callPackage - ({ mkDerivation, base, bytestring, conduit, connection, containers - , contravariant, exceptions, irc-conduit, irc-ctcp, mtl - , network-conduit-tls, old-locale, profunctors, stdenv, stm - , stm-chans, text, time, tls, transformers, x509, x509-store - , x509-validation - }: - mkDerivation { - pname = "irc-client"; - version = "1.1.1.1"; - sha256 = "b8396ef8f7afbde0ae8c888e81e42ec89c803ae3ba5cd75dfa2c1ad6d2c24123"; - libraryHaskellDepends = [ - base bytestring conduit connection containers contravariant - exceptions irc-conduit irc-ctcp mtl network-conduit-tls old-locale - profunctors stm stm-chans text time tls transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-client"; - description = "An IRC client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , connection, irc, irc-ctcp, network-conduit-tls, profunctors - , stdenv, text, time, tls, transformers, x509-validation - }: - mkDerivation { - pname = "irc-conduit"; - version = "0.3.0.4"; - sha256 = "8149ee5e5e075662971c4cbd7059a0825b124ac1ea6fb816b8cbb2b6586b4a2b"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra connection irc irc-ctcp - network-conduit-tls profunctors text time tls transformers - x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-conduit"; - description = "Streaming IRC message library using conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "irc-ctcp" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "irc-ctcp"; - version = "0.1.3.0"; - sha256 = "d67cd91a5521173565033777cea76636e4d2be6e6224f681392d9e726f4bb79a"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/irc-ctcp"; - description = "A CTCP encoding and decoding library for IRC clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "islink" = callPackage - ({ mkDerivation, base, stdenv, unordered-containers }: - mkDerivation { - pname = "islink"; - version = "0.1.0.0"; - sha256 = "cfbf9c1a6dc46327b7ed7bf9336e245a255626c9d04aeba3d887d90f26d2aed7"; - libraryHaskellDepends = [ base unordered-containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/islink"; - description = "Check if an HTML element is a link"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso3166-country-codes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso3166-country-codes"; - version = "0.20140203.8"; - sha256 = "b4d6e01cd61bcaef9a8e455c331a8e7a2298531cb587ef6f23675eae7a6b0a36"; - revision = "1"; - editedCabalFile = "0n01pmvkqi0w9l203i1v7kb6bb867plv4h5hmzlkpnhrf5abf0zf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A datatype for ISO 3166 country codes"; - license = "LGPL"; - }) {}; - "iso639" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "iso639"; - version = "0.1.0.3"; - sha256 = "124b8322fabaedb4de3dbc39880b36d0eab0e28d5775954aadb6630bc0da25e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/iso639"; - description = "ISO-639-1 language codes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "iso8601-time" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "iso8601-time"; - version = "0.1.5"; - sha256 = "f2cd444b2be68402c773a4b451912817f06d33093aea691b42ebeed3630ff0c8"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/iso8601-time"; - description = "Convert to/from the ISO 8601 time format"; - license = stdenv.lib.licenses.mit; - }) {}; - "iterable" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged, template-haskell - , vector - }: - mkDerivation { - pname = "iterable"; - version = "3.0"; - sha256 = "6cd13d621144e937cc88acfed1663bd2e208dcbe54be4bad1f7b7279250a87a4"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base mtl tagged template-haskell vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BioHaskell/iterable"; - description = "API for hierarchical multilevel collections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ix-shapable" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "ix-shapable"; - version = "0.1.0"; - sha256 = "5007ffb6a8a7bb490f962cedceed5ceb7c435126d09bc565441070cbfda79222"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - description = "Reshape multi-dimensional arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jack" = callPackage - ({ mkDerivation, array, base, bytestring, enumset, event-list - , explicit-exception, libjack2, midi, non-negative, semigroups - , stdenv, transformers - }: - mkDerivation { - pname = "jack"; - version = "0.7.1.4"; - sha256 = "42aeb281fb62a08bbaca4b20801d55879b0688e25a92962158fbd0578bd21405"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base bytestring enumset event-list explicit-exception midi - non-negative semigroups transformers - ]; - libraryPkgconfigDepends = [ libjack2 ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/JACK"; - description = "Bindings for the JACK Audio Connection Kit"; - license = "GPL"; - }) {inherit (pkgs) libjack2;}; - "jailbreak-cabal" = callPackage - ({ mkDerivation, base, Cabal, stdenv }: - mkDerivation { - pname = "jailbreak-cabal"; - version = "1.3.5"; - sha256 = "8d1fce7dd9b755367f8236d91c94c5bb212a5fea9d8bc32696774cff5e7f4188"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ base Cabal ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/jailbreak-cabal"; - description = "Strip version restrictions from Cabal files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jira-wiki-markup" = callPackage - ({ mkDerivation, base, mtl, parsec, stdenv, text }: - mkDerivation { - pname = "jira-wiki-markup"; - version = "1.0.0"; - sha256 = "c8554ef6c2a2bbf8d6c71873f6d69aa6d8f691bb5cf63a46d4c13cac999482ea"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl parsec text ]; - executableHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tarleb/jira-wiki-markup"; - description = "Handle Jira wiki markup"; - license = stdenv.lib.licenses.mit; - }) {}; - "jose-jwt" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, cereal - , containers, cryptonite, either, memory, mtl, stdenv, text, time - , transformers, transformers-compat, unordered-containers, vector - }: - mkDerivation { - pname = "jose-jwt"; - version = "0.8.0"; - sha256 = "4fb098e8ec18ebec7ab93f229dbaca992c704d006bc0f1ca98e8f00a579db6c2"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring cereal containers cryptonite - either memory mtl text time transformers transformers-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/tekul/jose-jwt"; - description = "JSON Object Signing and Encryption Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "js-dgtable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-dgtable"; - version = "0.5.2"; - sha256 = "e28dd65bee8083b17210134e22e01c6349dc33c3b7bd17705973cd014e9f20ac"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-dgtable#readme"; - description = "Obtain minified jquery.dgtable code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-flot" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-flot"; - version = "0.8.3"; - sha256 = "1ba2f2a6b8d85da76c41f526c98903cbb107f8642e506c072c1e7e3c20fe5e7a"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-flot#readme"; - description = "Obtain minified flot code"; - license = stdenv.lib.licenses.mit; - }) {}; - "js-jquery" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "js-jquery"; - version = "3.3.1"; - sha256 = "e0e0681f0da1130ede4e03a051630ea439c458cb97216cdb01771ebdbe44069b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/js-jquery#readme"; - description = "Obtain minified jQuery code"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-alt" = callPackage - ({ mkDerivation, aeson, base, stdenv }: - mkDerivation { - pname = "json-alt"; - version = "1.0.0"; - sha256 = "b850533adf93fbda01d4aee1f0116cfd67bfce17baf0a035ddc20cfe4a5d75c7"; - libraryHaskellDepends = [ aeson base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgajda/json-autotype"; - description = "Union 'alternative' or Either that has untagged JSON encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "json-feed" = callPackage - ({ mkDerivation, aeson, base, bytestring, mime-types, network-uri - , stdenv, tagsoup, text, time - }: - mkDerivation { - pname = "json-feed"; - version = "1.0.7"; - sha256 = "87e9103e5e8b63a26b22641b142e9e8bd0ad0cb63cca2776094b034a74fc5a66"; - libraryHaskellDepends = [ - aeson base bytestring mime-types network-uri tagsoup text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/json-feed#readme"; - description = "JSON Feed"; - license = stdenv.lib.licenses.mit; - }) {}; - "json-rpc" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, deepseq, hashable, monad-logger, mtl, QuickCheck - , stdenv, stm-conduit, text, time, unliftio, unordered-containers - , vector - }: - mkDerivation { - pname = "json-rpc"; - version = "1.0.1"; - sha256 = "101d24d637ddd874edc0c530ee53ff73b67f1db010e4f96459315cf1d5bff0bd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra deepseq - hashable monad-logger mtl QuickCheck stm-conduit text time unliftio - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring conduit conduit-extra monad-logger mtl - QuickCheck stm-conduit text time unliftio unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/json-rpc.git#readme"; - description = "Fully-featured JSON-RPC 2.0 library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "json-rpc-generic" = callPackage - ({ mkDerivation, aeson, aeson-generic-compat, base, containers - , dlist, scientific, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "json-rpc-generic"; - version = "0.2.1.5"; - sha256 = "9f917ba4b01e1a439482cda9be9fff865043915067cc26571e3df682a3bf3ac0"; - libraryHaskellDepends = [ - aeson aeson-generic-compat base containers dlist scientific text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-json-rpc-generic"; - description = "Generic encoder and decode for JSON-RPC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "jsonpath" = callPackage - ({ mkDerivation, aeson, attoparsec, base, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "jsonpath"; - version = "0.1.0.2"; - sha256 = "8c0493694379edf0d4e51d042674247eeb2612cae09a94ec48588b8fd24d08ad"; - libraryHaskellDepends = [ - aeson attoparsec base text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/akshaymankar/jsonpath-hs#readme"; - description = "Library to parse and execute JSONPath"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "justified-containers" = callPackage - ({ mkDerivation, base, containers, roles, stdenv }: - mkDerivation { - pname = "justified-containers"; - version = "0.3.0.0"; - sha256 = "d830c0ccd036e98ec6bab2bd336bb0bd580ce0495dedf3bf2176bd8084733e87"; - libraryHaskellDepends = [ base containers roles ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/justified-containers"; - description = "Keyed container types with type-checked proofs of key presence"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "jwt" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, cryptonite - , http-types, memory, network-uri, scientific, semigroups, stdenv - , text, time, unordered-containers, vector, x509, x509-store - }: - mkDerivation { - pname = "jwt"; - version = "0.10.0"; - sha256 = "bc1c7b18ba3366dd537f0ccd46e887e5892591a2a60b5ccbc15289ea70c52ea8"; - revision = "2"; - editedCabalFile = "1ld5dh4x3sb28416bk3k39k46vmx1s7agk17v7cb5cxam4hj3c1c"; - libraryHaskellDepends = [ - aeson base bytestring containers cryptonite http-types memory - network-uri scientific semigroups text time unordered-containers - vector x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/puffnfresh/haskell-jwt"; - description = "JSON Web Token (JWT) decoding and encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "kan-extensions" = callPackage - ({ mkDerivation, adjunctions, array, base, comonad, containers - , contravariant, distributive, free, invariant, mtl, profunctors - , semigroupoids, stdenv, tagged, transformers, transformers-compat - }: - mkDerivation { - pname = "kan-extensions"; - version = "5.2"; - sha256 = "6b727e586f744b96529415eeabc745dfe05feea61f6b6bad90c224c879f4dbd3"; - libraryHaskellDepends = [ - adjunctions array base comonad containers contravariant - distributive free invariant mtl profunctors semigroupoids tagged - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/kan-extensions/"; - description = "Kan extensions, Kan lifts, the Yoneda lemma, and (co)density (co)monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kanji" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, containers, deepseq - , hashable, microlens, microlens-aeson, optparse-applicative - , stdenv, text, transformers - }: - mkDerivation { - pname = "kanji"; - version = "3.4.1"; - sha256 = "59500a92369df84e3d8810ae8f037ce82ec550fe0e50759812d4a3712cafffdd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base containers deepseq hashable text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base containers microlens microlens-aeson - optparse-applicative text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/kanji"; - description = "Perform 漢字検定 (Japan Kanji Aptitude Test) level analysis on Japanese Kanji"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "katip" = callPackage - ({ mkDerivation, aeson, async, auto-update, base, bytestring - , containers, either, hostname, microlens, microlens-th - , monad-control, mtl, old-locale, resourcet, safe-exceptions - , scientific, semigroups, stdenv, stm, string-conv - , template-haskell, text, time, transformers, transformers-base - , transformers-compat, unix, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "katip"; - version = "0.8.3.0"; - sha256 = "a085b3d83f841bde5f479c71db7cc6d6a287cc012f47785ce6eadcfc2e64f872"; - libraryHaskellDepends = [ - aeson async auto-update base bytestring containers either hostname - microlens microlens-th monad-control mtl old-locale resourcet - safe-exceptions scientific semigroups stm string-conv - template-haskell text time transformers transformers-base - transformers-compat unix unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/katip"; - description = "A structured logging framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kawhi" = callPackage - ({ mkDerivation, aeson, base, bytestring, exceptions, http-client - , http-conduit, http-types, mtl, safe, scientific, stdenv, text - }: - mkDerivation { - pname = "kawhi"; - version = "0.3.0"; - sha256 = "2321387a3ddaa17c09db3a8e7a41a39f8e211467bd80bccd73791de8fca2a44f"; - libraryHaskellDepends = [ - aeson base bytestring exceptions http-client http-conduit - http-types mtl safe scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thunky-monk/kawhi"; - description = "stats.NBA.com library"; - license = stdenv.lib.licenses.mit; - }) {}; - "kazura-queue" = callPackage - ({ mkDerivation, atomic-primops, base, primitive, stdenv }: - mkDerivation { - pname = "kazura-queue"; - version = "0.1.0.4"; - sha256 = "5e5441f0eee97a4752f485ad2a3e7c0add7a2928190d416b8f83e2939a59237e"; - libraryHaskellDepends = [ atomic-primops base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/asakamirai/kazura-queue#readme"; - description = "Fast concurrent queues much inspired by unagi-chan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kdt" = callPackage - ({ mkDerivation, base, deepseq, deepseq-generics, heap, stdenv }: - mkDerivation { - pname = "kdt"; - version = "0.2.4"; - sha256 = "bc0f8f9ac0cb01466273171f47b627abe170d1130bd59657fb9198b4f9479f9a"; - libraryHaskellDepends = [ base deepseq deepseq-generics heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/giogadi/kdt"; - description = "Fast and flexible k-d trees for various types of point queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "keycode" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "keycode"; - version = "0.2.2"; - sha256 = "56f9407cf182b01e5f0fda80f569ff629f37d894f75ef28b6b8af3024343d310"; - revision = "5"; - editedCabalFile = "17fhzhlbqgd5pqp357n3z0k176q79c2jxvpwqryl3gbad3s8qsfw"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/keycode"; - description = "Maps web browser keycodes to their corresponding keyboard keys"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "keys" = callPackage - ({ mkDerivation, array, base, comonad, containers, free, hashable - , semigroupoids, semigroups, stdenv, tagged, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "keys"; - version = "3.12.3"; - sha256 = "d51e4288a3cc89c5be3327a499212a651549a58af78d0dfeb2cd80e19ce66646"; - libraryHaskellDepends = [ - array base comonad containers free hashable semigroupoids - semigroups tagged transformers transformers-compat - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/keys/"; - description = "Keyed functors and containers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-apply" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kind-apply"; - version = "0.3.2.0"; - sha256 = "98dd45968f777f08aa4e6a8fe20dfa0b345ab474b92ac37835503589a2930073"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Utilities to work with lists of types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics" = callPackage - ({ mkDerivation, base, kind-apply, stdenv }: - mkDerivation { - pname = "kind-generics"; - version = "0.4.0.0"; - sha256 = "17ba4715d198fde1ca499d5441c8ae1be5a4535e18006f10d39fb9b7dbbe79f0"; - libraryHaskellDepends = [ base kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming in GHC style for arbitrary kinds and GADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kind-generics-th" = callPackage - ({ mkDerivation, base, ghc-prim, kind-generics, stdenv - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "kind-generics-th"; - version = "0.2.1.0"; - sha256 = "6b52311122db58462ba13bb739902757587b415a0222e6a0e8ddaf50f9e7ba22"; - libraryHaskellDepends = [ - base ghc-prim kind-generics template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - description = "Template Haskell support for generating `GenericK` instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "kmeans" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "kmeans"; - version = "0.1.3"; - sha256 = "3d9e24a12ce01354c2a731ee079144c3bea2c9f011ffd51db82e5c26da1a2c0b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "K-means clustering algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "koofr-client" = callPackage - ({ mkDerivation, aeson, base, bytestring, filepath, http-client - , http-client-tls, http-types, mtl, stdenv - }: - mkDerivation { - pname = "koofr-client"; - version = "1.0.0.3"; - sha256 = "2ab6f0af8be4f1912ad06ad860db993f9c33c8f0206f87ff0b566b7dda54e7af"; - revision = "1"; - editedCabalFile = "0qaipcg9n93z0za2a8jy3mv73a3q2b1dv98v2g5wwcv1qx7rvvhv"; - libraryHaskellDepends = [ - aeson base bytestring filepath http-client http-client-tls - http-types mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/edofic/koofr-api-hs"; - description = "Client to Koofr API"; - license = stdenv.lib.licenses.mit; - }) {}; - "l10n" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "l10n"; - version = "0.1.0.1"; - sha256 = "0a7032476d257981eb7c274600bef809b4a515ab162a1772a7887f0113455ca0"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/l10n#readme"; - description = "Enables providing localization as typeclass instances in separate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "labels" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "labels"; - version = "0.3.3"; - sha256 = "e6b4c02b5340c68b911fd2df157766260e06939ad2919f555339356613433013"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/labels#readme"; - description = "Anonymous records via named tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lackey" = callPackage - ({ mkDerivation, base, servant, servant-foreign, stdenv, text }: - mkDerivation { - pname = "lackey"; - version = "1.0.11"; - sha256 = "0198a7942546702485f0447ca232393f55fdb6c4e39ded562069ac596f379069"; - libraryHaskellDepends = [ base servant servant-foreign text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/lackey#readme"; - description = "Generate Ruby clients from Servant APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "lame" = callPackage - ({ mkDerivation, base, bytestring, directory, exceptions, filepath - , mp3lame, stdenv, text, transformers, wave - }: - mkDerivation { - pname = "lame"; - version = "0.2.0"; - sha256 = "578b5b8bff09bcf3cde8f26026cef02633aa5d93a72ab007d5cd3967951a18af"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring directory exceptions filepath text transformers - wave - ]; - librarySystemDepends = [ mp3lame ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/lame"; - description = "Fairly complete high-level binding to LAME encoder"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mp3lame;}; - "language-c" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers, deepseq - , directory, filepath, happy, pretty, process, stdenv, syb - }: - mkDerivation { - pname = "language-c"; - version = "0.8.3"; - sha256 = "f3d66c18abececb468f2b069f0c3274709456fde6938eace46dacf1c9b14202e"; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath pretty - process syb - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "http://visq.github.io/language-c/"; - description = "Analysis and generation of C code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-c-quote" = callPackage - ({ mkDerivation, alex, array, base, bytestring, containers - , exception-mtl, exception-transformers, filepath, happy - , haskell-src-meta, mainland-pretty, mtl, srcloc, stdenv, syb - , symbol, template-haskell - }: - mkDerivation { - pname = "language-c-quote"; - version = "0.12.2.1"; - sha256 = "65c485ede8219236f58faba305123b2652e64994c8e297861b25490ec8229b43"; - libraryHaskellDepends = [ - array base bytestring containers exception-mtl - exception-transformers filepath haskell-src-meta mainland-pretty - mtl srcloc syb symbol template-haskell - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/language-c-quote"; - description = "C/CUDA/OpenCL/Objective-C quasiquoting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-haskell-extract" = callPackage - ({ mkDerivation, base, regex-posix, stdenv, template-haskell }: - mkDerivation { - pname = "language-haskell-extract"; - version = "0.2.4"; - sha256 = "14da16e56665bf971723e0c5fd06dbb7cc30b4918cf8fb5748570785ded1acdb"; - libraryHaskellDepends = [ base regex-posix template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/template-helper"; - description = "Module to automatically extract functions from the local code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-java" = callPackage - ({ mkDerivation, alex, array, base, parsec, pretty, stdenv }: - mkDerivation { - pname = "language-java"; - version = "0.2.9"; - sha256 = "1d15c8ad2a1eff6b195ec1ed799b8523aeda1c183392b9b713bc4aff2092190e"; - revision = "1"; - editedCabalFile = "0fnbg9b8isyk8dpmggh736mms7a2m65956y1z15wds63imzhs2ik"; - libraryHaskellDepends = [ array base parsec pretty ]; - libraryToolDepends = [ alex ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/language-java"; - description = "Java source manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-javascript" = callPackage - ({ mkDerivation, alex, array, base, blaze-builder, bytestring - , containers, happy, mtl, stdenv, text, utf8-string - }: - mkDerivation { - pname = "language-javascript"; - version = "0.7.0.0"; - sha256 = "d39e80675c40529574ee93c2bdec1a86497da7a53f39c7d174c30b27e7c57795"; - libraryHaskellDepends = [ - array base blaze-builder bytestring containers mtl text utf8-string - ]; - libraryToolDepends = [ alex happy ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/language-javascript"; - description = "Parser for JavaScript"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-nix" = callPackage - ({ mkDerivation, base, deepseq, lens, parsec-class, pretty - , QuickCheck, stdenv - }: - mkDerivation { - pname = "language-nix"; - version = "2.2.0"; - sha256 = "fd67425268707de245e4b1f5dfee61e091c417106c95dbbe188abc16c23800d3"; - libraryHaskellDepends = [ - base deepseq lens parsec-class pretty QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/language-nix#readme"; - description = "Data types and functions to represent the Nix language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "language-protobuf" = callPackage - ({ mkDerivation, base, megaparsec, stdenv, text }: - mkDerivation { - pname = "language-protobuf"; - version = "1.0"; - sha256 = "880948b876f6df9a0d7f5886857e37dd59ea45527a14ab189dc7652d0c62e9e1"; - libraryHaskellDepends = [ base megaparsec text ]; - doHaddock = false; - doCheck = false; - description = "Language definition and parser for Protocol Buffers"; - license = stdenv.lib.licenses.asl20; - }) {}; - "language-puppet" = callPackage - ({ mkDerivation, aeson, ansi-wl-pprint, async, attoparsec, base - , base16-bytestring, bytestring, case-insensitive, containers - , cryptonite, directory, filecache, filepath, formatting, Glob - , hashable, hruby, hslogger, http-api-data, http-client, lens - , lens-aeson, megaparsec, memory, mtl, operational - , optparse-applicative, parsec, parser-combinators, pcre-utils - , protolude, random, regex-pcre-builtin, scientific, servant - , servant-client, split, stdenv, stm, strict-base-types, text, time - , transformers, unix, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "language-puppet"; - version = "1.4.6.2"; - sha256 = "d617b484684a08140bef0c9fd554afc580696f812b8527c1bb49fd7e33003b1f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson ansi-wl-pprint attoparsec base base16-bytestring bytestring - case-insensitive containers cryptonite directory filecache filepath - formatting hashable hruby hslogger http-api-data http-client lens - lens-aeson megaparsec memory mtl operational parsec - parser-combinators pcre-utils protolude random regex-pcre-builtin - scientific servant servant-client split stm strict-base-types text - time transformers unix unordered-containers vector yaml - ]; - executableHaskellDepends = [ - aeson ansi-wl-pprint async base bytestring containers Glob hslogger - http-client lens mtl optparse-applicative regex-pcre-builtin - strict-base-types text transformers unordered-containers vector - yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://lpuppet.banquise.net/"; - description = "Tools to parse and evaluate the Puppet DSL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-carray" = callPackage - ({ mkDerivation, base, carray, lapack-ffi, netlib-carray - , netlib-ffi, stdenv, storable-complex, transformers - }: - mkDerivation { - pname = "lapack-carray"; - version = "0.0.3"; - sha256 = "510ffbbe349add60dd147181a7517f57071b71f7691e299255b95433dbe48dd0"; - libraryHaskellDepends = [ - base carray lapack-ffi netlib-carray netlib-ffi storable-complex - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-carray/"; - description = "Auto-generated interface to Fortran LAPACK via CArrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-comfort-array" = callPackage - ({ mkDerivation, base, comfort-array, lapack-ffi - , netlib-comfort-array, netlib-ffi, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "lapack-comfort-array"; - version = "0.0.0.1"; - sha256 = "01d2c8c33ab89193e2531db0fdc46433885b335eb86552ea5f5a9c83c75ac94e"; - libraryHaskellDepends = [ - base comfort-array lapack-ffi netlib-comfort-array netlib-ffi - storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-comfort-array/"; - description = "Auto-generated interface to Fortran LAPACK via comfort-array"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lapack-ffi" = callPackage - ({ mkDerivation, base, liblapack, netlib-ffi, stdenv }: - mkDerivation { - pname = "lapack-ffi"; - version = "0.0.2"; - sha256 = "d4b73268bb25244f0234ef4a8b4407818e244d297612a189c7f34fe0b64ae584"; - libraryHaskellDepends = [ base netlib-ffi ]; - libraryPkgconfigDepends = [ liblapack ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi/"; - description = "Auto-generated interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) liblapack;}; - "lapack-ffi-tools" = callPackage - ({ mkDerivation, base, bytestring, cassava, containers - , explicit-exception, filepath, non-empty, optparse-applicative - , parsec, pathtype, stdenv, transformers, unordered-containers - , utility-ht, vector - }: - mkDerivation { - pname = "lapack-ffi-tools"; - version = "0.1.2.1"; - sha256 = "b03d22ca5d322ec50418e5e8e937b640910fd76a855722ec63ca1850f5256542"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ - base bytestring cassava containers explicit-exception filepath - non-empty optparse-applicative parsec pathtype transformers - unordered-containers utility-ht vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/lapack-ffi-tools/"; - description = "Generator for Haskell interface to Fortran LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "largeword" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "largeword"; - version = "1.2.5"; - sha256 = "00b3b06d846649bf404f52a725c88349a38bc8c810e16c99f3100c4e1e9d7d46"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/idontgetoutmuch/largeword"; - description = "Provides Word128, Word192 and Word256 and a way of producing other large words if required"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "latex" = callPackage - ({ mkDerivation, base, containers, stdenv, utility-ht }: - mkDerivation { - pname = "latex"; - version = "0.1.0.4"; - sha256 = "1c2a8b9cefebc3ce5493071670d9c71e4fc30d6527d6a6c92174ce4c39a0a082"; - libraryHaskellDepends = [ base containers utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/LaTeX"; - description = "Parse, format and process LaTeX files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lattices" = callPackage - ({ mkDerivation, base, base-compat, containers, deepseq, hashable - , integer-logarithms, QuickCheck, semigroupoids, stdenv, tagged - , transformers, universe-base, universe-reverse-instances - , unordered-containers - }: - mkDerivation { - pname = "lattices"; - version = "2.0.1"; - sha256 = "dee5ab7c2bd16465132cf03e86d93e07bc8c67248171ea65448fd284a03bf630"; - revision = "1"; - editedCabalFile = "1zfxq1gpfv0vb7arw0hw2nf61hyjwl8c72jng4v61xywvqh9i36q"; - libraryHaskellDepends = [ - base base-compat containers deepseq hashable integer-logarithms - QuickCheck semigroupoids tagged transformers universe-base - universe-reverse-instances unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phadej/lattices/"; - description = "Fine-grained library for constructing and manipulating lattices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lawful" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "lawful"; - version = "0.1.0.0"; - sha256 = "0056794106bbf7fa4d8d4d943fdc75a39b8a5ac1e18ceac2909183a1a7cc8d04"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/matt-noonan/lawful#readme"; - description = "Assert the lawfulness of your typeclass instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazy-csv" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "lazy-csv"; - version = "0.5.1"; - sha256 = "888bcbdd43886099f197c1c246cea324c97c076d4839e97eea0b8d6d7b49649f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/lazy-csv"; - description = "Efficient lazy parsers for CSV (comma-separated values)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lazyio" = callPackage - ({ mkDerivation, base, stdenv, transformers, unsafe }: - mkDerivation { - pname = "lazyio"; - version = "0.1.0.4"; - sha256 = "8b54f0bccdc1c836393ce667ea0f1ad069d52c04762e61fad633d4d44916cf6c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base transformers unsafe ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Lazy_IO"; - description = "Run IO actions lazily while respecting their order"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lca" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, stdenv }: - mkDerivation { - pname = "lca"; - version = "0.3.1"; - sha256 = "8a8d045ae00d82ddb491e873cc36f1ca89e91556a183c343b99f4df6abfe434e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lca/"; - description = "O(log n) persistent online lowest common ancestor search without preprocessing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "leancheck"; - version = "0.9.1"; - sha256 = "abcd854763a828ec1f3008c41612a86deb2fc0bb4eaaa041951b6937f155c90e"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck#readme"; - description = "Enumerative property-based testing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leancheck-instances" = callPackage - ({ mkDerivation, array, base, bytestring, containers, leancheck - , nats, stdenv, text, time - }: - mkDerivation { - pname = "leancheck-instances"; - version = "0.0.3"; - sha256 = "a671ee53d343208ef3dccc93f3f64b1ed8e9ed4f6c509072fa4ab2b69de0cac0"; - libraryHaskellDepends = [ - array base bytestring containers leancheck nats text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/leancheck-instances#readme"; - description = "Common LeanCheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leapseconds-announced" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "leapseconds-announced"; - version = "2017.1.0.1"; - sha256 = "cd3bb27caf704a975ef5718a9a8e641cd9cf9a9f2df27153f7cf80405292a8d6"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/leapseconds-announced"; - description = "Leap seconds announced at library release time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens" = callPackage - ({ mkDerivation, array, base, base-orphans, bifunctors, bytestring - , Cabal, cabal-doctest, call-stack, comonad, containers - , contravariant, distributive, exceptions, filepath, free, ghc-prim - , hashable, kan-extensions, mtl, parallel, profunctors, reflection - , semigroupoids, stdenv, tagged, template-haskell, text - , th-abstraction, transformers, transformers-compat, type-equality - , unordered-containers, vector - }: - mkDerivation { - pname = "lens"; - version = "4.18.1"; - sha256 = "3107a3d5165a9762269d7c9e39205d2c4c2aaebc1900ff44a0066c31a492bdd2"; - setupHaskellDepends = [ base Cabal cabal-doctest filepath ]; - libraryHaskellDepends = [ - array base base-orphans bifunctors bytestring call-stack comonad - containers contravariant distributive exceptions filepath free - ghc-prim hashable kan-extensions mtl parallel profunctors - reflection semigroupoids tagged template-haskell text - th-abstraction transformers transformers-compat type-equality - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "Lenses, Folds and Traversals"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "lens-action" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, comonad, contravariant - , lens, mtl, profunctors, semigroupoids, semigroups, stdenv - , transformers - }: - mkDerivation { - pname = "lens-action"; - version = "0.2.4"; - sha256 = "a3c5d82a392939a4dcb37da50e31bf8697580c420cba40ffd08e91067423cf1b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base comonad contravariant lens mtl profunctors semigroupoids - semigroups transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens-action/"; - description = "Monadic Getters and Folds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, Cabal - , cabal-doctest, lens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "lens-aeson"; - version = "1.1"; - sha256 = "f7bc9c6f95735b523afac6316195d06b31f9b85c84918960096e4eecdb6cc90e"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base bytestring lens scientific text - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/lens/lens-aeson/"; - description = "Law-abiding lenses for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "lens-datetime" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "lens-datetime"; - version = "0.3"; - sha256 = "bb1f8d7bf71c9ef8901bc39e2a2d629b1101307115c0c4d844fcbd8e86b6ccd4"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/lens-datetime"; - description = "Lenses for Data.Time.* types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family" = callPackage - ({ mkDerivation, base, containers, lens-family-core, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "lens-family"; - version = "2.0.0"; - sha256 = "6793f2a5c5030f02258532043d57eac42318cd7f9cef47f6720a7b99276f03db"; - libraryHaskellDepends = [ - base containers lens-family-core mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-core" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "lens-family-core"; - version = "2.0.0"; - sha256 = "19b4fcd3bd37dd0056c112a9b16cf405644fabd6652013c61a5078380ed2265a"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - description = "Haskell 2022 Lens Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-family-th" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "lens-family-th"; - version = "0.5.0.2"; - sha256 = "9c275afad37a5064b9a13c6207ee2307f6ccccc3a5517c0fae84524bad65b0e6"; - revision = "1"; - editedCabalFile = "06sbynlrbqb51rn392w1q82qww1f6k8mmw1npgla2wc6s39k4977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/DanBurton/lens-family-th#readme"; - description = "Generate lens-family style lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-misc" = callPackage - ({ mkDerivation, base, lens, stdenv, tagged, template-haskell }: - mkDerivation { - pname = "lens-misc"; - version = "0.0.2.0"; - sha256 = "59925fe9125e297df0f1afcc8ac0f25de14fd017f7848ac2687ed63850ecd8cb"; - libraryHaskellDepends = [ base lens tagged template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/lens-misc#readme"; - description = "Miscellaneous lens utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-properties" = callPackage - ({ mkDerivation, base, lens, QuickCheck, stdenv, transformers }: - mkDerivation { - pname = "lens-properties"; - version = "4.11.1"; - sha256 = "4f7c5b75a7204c151dbe62160a6917a22ab9e2a1b2e3848b7043d972ac8f4cb1"; - revision = "3"; - editedCabalFile = "1ll8j0zymxnr2xxp2h1aaqfcwd6ihjdllk5b7q02r5kw2b8a266b"; - libraryHaskellDepends = [ base lens QuickCheck transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/lens/"; - description = "QuickCheck properties for lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lens-regex" = callPackage - ({ mkDerivation, array, base, lens, regex-base, stdenv - , template-haskell - }: - mkDerivation { - pname = "lens-regex"; - version = "0.1.1"; - sha256 = "0d946baa2be86452fe0a2185575e1d00752a075c92c48acdb3ed7833cd1ec730"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base lens regex-base template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/himura/lens-regex"; - description = "Lens powered regular expression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lenz" = callPackage - ({ mkDerivation, base, base-unicode-symbols, hs-functors, stdenv - , transformers - }: - mkDerivation { - pname = "lenz"; - version = "0.4.2.0"; - sha256 = "8e9a0d55f51eda0683a7b2b4d466bf21a46d57eb6d3fd9ed442251da3b4ddf8f"; - libraryHaskellDepends = [ - base base-unicode-symbols hs-functors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Van Laarhoven lenses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "leveldb-haskell" = callPackage - ({ mkDerivation, base, bytestring, data-default, exceptions - , filepath, leveldb, resourcet, stdenv, transformers - }: - mkDerivation { - pname = "leveldb-haskell"; - version = "0.6.5"; - sha256 = "a417b088068deba73a77936c1345302bac7ce06019fb10254857cafad1d76c28"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default exceptions filepath resourcet - transformers - ]; - librarySystemDepends = [ leveldb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/kim/leveldb-haskell"; - description = "Haskell bindings to LevelDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) leveldb;}; - "libffi" = callPackage - ({ mkDerivation, base, bytestring, ffi, libffi, stdenv }: - mkDerivation { - pname = "libffi"; - version = "0.1"; - sha256 = "48387067c0f33bcfadf7a3bebbf48a55294202500f2b754229ffc8f12cb4f23c"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ ffi ]; - libraryPkgconfigDepends = [ libffi ]; - doHaddock = false; - doCheck = false; - description = "A binding to libffi"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) ffi; inherit (pkgs) libffi;}; - "libgit" = callPackage - ({ mkDerivation, base, mtl, process, stdenv }: - mkDerivation { - pname = "libgit"; - version = "0.3.1"; - sha256 = "1d4c60dd987c363d77c4be947678d01a51ab4b568964c30a33827ccc854f7522"; - libraryHaskellDepends = [ base mtl process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-libgit"; - description = "Simple Git Wrapper"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libgraph" = callPackage - ({ mkDerivation, array, base, containers, monads-tf, process - , stdenv, union-find - }: - mkDerivation { - pname = "libgraph"; - version = "1.14"; - sha256 = "b7978be50d6182101ca79fb3ea83d0621f5394d483d1fa1eb7d590e45f8d3f3f"; - revision = "1"; - editedCabalFile = "12xyrvvyh73b93k74lj55zwaygsvd93p4bm51kcd54m0pv0lclbq"; - libraryHaskellDepends = [ - array base containers monads-tf process union-find - ]; - doHaddock = false; - doCheck = false; - homepage = "http://maartenfaddegon.nl"; - description = "Store and manipulate data in a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "libmpd" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , data-default-class, filepath, mtl, network, old-locale - , safe-exceptions, stdenv, text, time, utf8-string - }: - mkDerivation { - pname = "libmpd"; - version = "0.9.1.0"; - sha256 = "d941296ce48671f73d328e8b0d00cc1c99eabc0d81d98067af78ddde88db3ab8"; - libraryHaskellDepends = [ - attoparsec base bytestring containers data-default-class filepath - mtl network old-locale safe-exceptions text time utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vimus/libmpd-haskell#readme"; - description = "An MPD client library"; - license = stdenv.lib.licenses.mit; - }) {}; - "libyaml" = callPackage - ({ mkDerivation, base, bytestring, conduit, resourcet, stdenv }: - mkDerivation { - pname = "libyaml"; - version = "0.1.1.1"; - sha256 = "ab05fa889e52ae0cbefcde33a56602e69bd6e656e9d5511c1def7ffc10075862"; - libraryHaskellDepends = [ base bytestring conduit resourcet ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Low-level, streaming YAML interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lift-generics" = callPackage - ({ mkDerivation, base, generic-deriving, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "lift-generics"; - version = "0.1.3"; - sha256 = "671b2e2ece639e9a8e45af49cfda8fcb074f43fb74b1e2f545bd405a665c5964"; - libraryHaskellDepends = [ - base generic-deriving ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/lift-generics"; - description = "GHC.Generics-based Language.Haskell.TH.Syntax.lift implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-async" = callPackage - ({ mkDerivation, async, base, constraints, lifted-base - , monad-control, stdenv, transformers-base - }: - mkDerivation { - pname = "lifted-async"; - version = "0.10.0.4"; - sha256 = "c9c988c2078f9d83034b26f487182869aaaa67c4b1e340c306b35dc9410b9433"; - libraryHaskellDepends = [ - async base constraints lifted-base monad-control transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/maoe/lifted-async"; - description = "Run lifted IO operations asynchronously and wait for their results"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lifted-base" = callPackage - ({ mkDerivation, base, monad-control, stdenv, transformers-base }: - mkDerivation { - pname = "lifted-base"; - version = "0.2.3.12"; - sha256 = "c134a95f56750aae806e38957bb03c59627cda16034af9e00a02b699474317c5"; - libraryHaskellDepends = [ base monad-control transformers-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/lifted-base"; - description = "lifted IO operations from the base library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linear" = callPackage - ({ mkDerivation, adjunctions, base, base-orphans, binary, bytes - , Cabal, cabal-doctest, cereal, containers, deepseq, distributive - , ghc-prim, hashable, lens, reflection, semigroupoids, semigroups - , stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers, vector, void - }: - mkDerivation { - pname = "linear"; - version = "1.20.9"; - sha256 = "c5a9b209d31fc00b62d43c1de34fb59f9f115c51e6db43353f76a4825fc4fe40"; - revision = "1"; - editedCabalFile = "13ff7xvw25fpsikcvf0nly2ca614wzv10qyg4sh378p5r8rvfgka"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base base-orphans binary bytes cereal containers - deepseq distributive ghc-prim hashable lens reflection - semigroupoids semigroups tagged template-haskell transformers - transformers-compat unordered-containers vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/linear/"; - description = "Linear Algebra"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linenoise" = callPackage - ({ mkDerivation, base, bytestring, exceptions, mtl, stdenv, text - , unliftio-core - }: - mkDerivation { - pname = "linenoise"; - version = "0.3.1"; - sha256 = "60e3f9b7e066c582b017155d0f26ade5131228f02c8e75afff5c24b1743d9ffb"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring exceptions mtl text unliftio-core - ]; - executableHaskellDepends = [ - base bytestring exceptions mtl text unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ejconlon/haskell-linenoise#readme"; - description = "A lightweight readline-replacement library for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-file-extents" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "linux-file-extents"; - version = "0.2.0.0"; - sha256 = "6c7cd9e700f666f774736d31a0e6aa7bfe9bd1e075c11eed701ba95095fd9bd0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/linux-file-extents"; - description = "Retrieve file fragmentation information under Linux"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "linux-namespaces" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "linux-namespaces"; - version = "0.1.3.0"; - sha256 = "1412db341c574b6a18e2fa23ee5e3ca6f32719409ea602a6215f1fd0aafb73e7"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/redneb/hs-linux-namespaces"; - description = "Work with linux namespaces: create new or enter existing ones"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "list-singleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "list-singleton"; - version = "1.0.0.2"; - sha256 = "58417647c883e15dbc006d4d00c7ff73cf22db3589e2b9a9143a9493dd30835a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Easily and clearly create lists with only one element in them"; - license = stdenv.lib.licenses.isc; - }) {}; - "list-t" = callPackage - ({ mkDerivation, base, foldl, mmorph, monad-control, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "list-t"; - version = "1.0.4"; - sha256 = "3863844bf18a47997dce5972df30b6a38d257cbc168216be2233a40b33c15577"; - libraryHaskellDepends = [ - base foldl mmorph monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/list-t"; - description = "ListT done right"; - license = stdenv.lib.licenses.mit; - }) {}; - "listsafe" = callPackage - ({ mkDerivation, base, exceptions, stdenv }: - mkDerivation { - pname = "listsafe"; - version = "0.1.0.1"; - sha256 = "1a073247edfbea7dd7b7f9629fc64ddd3bce67fa61695da23ff43fb31d398d69"; - libraryHaskellDepends = [ base exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ombocomp/listsafe"; - description = "Safe wrappers for partial list functions, supporting MonadThrow"; - license = stdenv.lib.licenses.asl20; - }) {}; - "llvm-hs" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, Cabal - , containers, exceptions, llvm-config, llvm-hs-pure, mtl, stdenv - , template-haskell, transformers, utf8-string - }: - mkDerivation { - pname = "llvm-hs"; - version = "9.0.1"; - sha256 = "00e0cf4d4b520f8cf751073e4cbca4c1de85aeb67d6b596bf72cc142e0eb431c"; - setupHaskellDepends = [ base Cabal containers ]; - libraryHaskellDepends = [ - array attoparsec base bytestring containers exceptions llvm-hs-pure - mtl template-haskell transformers utf8-string - ]; - libraryToolDepends = [ llvm-config ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "General purpose LLVM bindings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "llvm-hs-pure" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, fail - , mtl, stdenv, template-haskell, transformers, unordered-containers - }: - mkDerivation { - pname = "llvm-hs-pure"; - version = "9.0.0"; - sha256 = "6e8ea5c8b192d58932cfeeaf7b3e592fea185e7a83e315c5bfff968ca02aab5f"; - libraryHaskellDepends = [ - attoparsec base bytestring containers fail mtl template-haskell - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/llvm-hs/llvm-hs/"; - description = "Pure Haskell LLVM functionality (no FFI)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lmdb" = callPackage - ({ mkDerivation, array, base, lmdb, stdenv }: - mkDerivation { - pname = "lmdb"; - version = "0.2.5"; - sha256 = "80552856211cdce06b808685d621bdd9c33a5ac5540a4dafe120c6b20c901c7d"; - libraryHaskellDepends = [ array base ]; - librarySystemDepends = [ lmdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/dmbarbour/haskell-lmdb"; - description = "Lightning MDB bindings"; - license = stdenv.lib.licenses.bsd2; - }) {inherit (pkgs) lmdb;}; - "load-env" = callPackage - ({ mkDerivation, base, directory, filepath, parsec, stdenv }: - mkDerivation { - pname = "load-env"; - version = "0.2.1.0"; - sha256 = "e3ec6dfafeb9be454d010e1a4330b5a66beb8fb9496a9b70a42e9b18ea0494a0"; - libraryHaskellDepends = [ base directory filepath parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pbrisbin/load-env#readme"; - description = "Load environment variables from a file"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loch-th" = callPackage - ({ mkDerivation, base, pretty, stdenv, template-haskell }: - mkDerivation { - pname = "loch-th"; - version = "0.2.2"; - sha256 = "cc059372b12a79375a0f268db7dc5a2973307a200440d4112e665b9a3d9b6dc3"; - libraryHaskellDepends = [ base pretty template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liskin/loch-th"; - description = "Support for precise error locations in source files (Template Haskell version)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lockfree-queue" = callPackage - ({ mkDerivation, abstract-deque, atomic-primops, base, bytestring - , ghc-prim, stdenv - }: - mkDerivation { - pname = "lockfree-queue"; - version = "0.2.3.1"; - sha256 = "2a576a54bae8eabde01ebe901c9fd26a11bebb30516841de4525b5b60c0f3a8c"; - libraryHaskellDepends = [ - abstract-deque atomic-primops base bytestring ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/haskell-lockfree/wiki"; - description = "Michael and Scott lock-free queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-base" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, deepseq - , exceptions, mmorph, monad-control, monad-time, mtl, semigroups - , stdenv, stm, text, time, transformers-base, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "log-base"; - version = "0.8.0.0"; - sha256 = "a68aee51f113fbaebc1153aac65bb438b013601e415b83d69b8668e3cd4ea394"; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring deepseq exceptions mmorph - monad-control monad-time mtl semigroups stm text time - transformers-base unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/log"; - description = "Structured logging solution (base package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "log-domain" = callPackage - ({ mkDerivation, base, binary, bytes, Cabal, cabal-doctest, cereal - , comonad, deepseq, distributive, hashable, semigroupoids - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "log-domain"; - version = "0.13"; - sha256 = "7babb1b4c2fb8da82a459fbf89433e900ee7742803baabba4608940974465447"; - revision = "1"; - editedCabalFile = "0wcy54axpnym55f1skagnbmdpw6y2ys6zvn99x8i6qcfzw00i6l9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base binary bytes cereal comonad deepseq distributive hashable - semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/log-domain/"; - description = "Log-domain arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logfloat" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "logfloat"; - version = "0.13.3.3"; - sha256 = "f774bd71d82ae053046ab602aa451ce4f65440d5c634dc8d950ae87f53527f82"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Log-domain floating point numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-effect" = callPackage - ({ mkDerivation, async, base, exceptions, free, monad-control, mtl - , prettyprinter, semigroups, stdenv, stm, stm-delay, text, time - , transformers, transformers-base, unliftio-core - }: - mkDerivation { - pname = "logging-effect"; - version = "1.3.9"; - sha256 = "b995326e305b388421d669eb947c24d12526ab0ee629c8c68f9775300bf7e0a1"; - libraryHaskellDepends = [ - async base exceptions free monad-control mtl prettyprinter - semigroups stm stm-delay text time transformers transformers-base - unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocharles/logging-effect"; - description = "A mtl-style monad transformer for general purpose & compositional logging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logging-facade" = callPackage - ({ mkDerivation, base, call-stack, stdenv, transformers }: - mkDerivation { - pname = "logging-facade"; - version = "0.3.0"; - sha256 = "8e7115258b76e0bf5d21b532dd916c63e79b32d1776cc355d2d184f67ae71434"; - libraryHaskellDepends = [ base call-stack transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/logging-facade#readme"; - description = "Simple logging abstraction that allows multiple back-ends"; - license = stdenv.lib.licenses.mit; - }) {}; - "logging-facade-syslog" = callPackage - ({ mkDerivation, base, hsyslog, logging-facade, stdenv }: - mkDerivation { - pname = "logging-facade-syslog"; - version = "1"; - sha256 = "eb8b23c3f77a788891eac00e2d84bf489b683d761028a7938cf93e36729d8ea9"; - libraryHaskellDepends = [ base hsyslog logging-facade ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/logging-facade-syslog#readme"; - description = "A logging back-end to syslog(3) for the logging-facade library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "logict" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "logict"; - version = "0.7.0.2"; - sha256 = "ccc198a05563a4d8fc145ecde8b43a83599b3bcb032d2614a8e852f0ba6ecff5"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/logict#readme"; - description = "A backtracking logic-programming monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "loop" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "loop"; - version = "0.3.0"; - sha256 = "92962010bdab28cc0092dd3fe42819d6f215c717dd10d9349626d92a0d0b3ecf"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/loop"; - description = "Fast loops (for when GHC can't optimize forM_)"; - license = stdenv.lib.licenses.mit; - }) {}; - "loopbreaker" = callPackage - ({ mkDerivation, base, containers, ghc, stdenv, syb }: - mkDerivation { - pname = "loopbreaker"; - version = "0.1.1.1"; - sha256 = "18d81ab891e9d5aa23d26a73d977284bb9a69161b5008bfd2e5613be011dbe47"; - libraryHaskellDepends = [ base containers ghc syb ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/polysemy-research/loopbreaker#readme"; - description = "inline self-recursive definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucache" = callPackage - ({ mkDerivation, base, containers, contravariant, stdenv }: - mkDerivation { - pname = "lrucache"; - version = "1.2.0.1"; - sha256 = "fc1ab2375eeaae181d838095354d3ef77d4072815006a285dd39a165a5855b85"; - libraryHaskellDepends = [ base containers contravariant ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chowells79/lrucache"; - description = "a simple, pure LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lrucaching" = callPackage - ({ mkDerivation, base, base-compat, deepseq, hashable, psqueues - , stdenv, vector - }: - mkDerivation { - pname = "lrucaching"; - version = "0.3.3"; - sha256 = "aa7e5fd27963c70fc1108a7c0526ca0e05f76ccd885844bc50bdae70d5174aa4"; - revision = "9"; - editedCabalFile = "0rzrj9ziwly33lhkamf9rkrc3jqhid3adl0dv9621n4zzd6dnkb6"; - libraryHaskellDepends = [ - base base-compat deepseq hashable psqueues vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cocreature/lrucaching#readme"; - description = "LRU cache"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lsp-test" = callPackage - ({ mkDerivation, aeson, aeson-pretty, ansi-terminal, async, base - , bytestring, conduit, conduit-parse, containers, data-default - , Diff, directory, filepath, haskell-lsp, lens, mtl - , parser-combinators, process, stdenv, text, transformers, unix - , unordered-containers - }: - mkDerivation { - pname = "lsp-test"; - version = "0.10.0.0"; - sha256 = "4ff6eb0c0ea8db62226279f1562b786539a8b85e165d41bab85290df0bfe443b"; - libraryHaskellDepends = [ - aeson aeson-pretty ansi-terminal async base bytestring conduit - conduit-parse containers data-default Diff directory filepath - haskell-lsp lens mtl parser-combinators process text transformers - unix unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bubba/lsp-test#readme"; - description = "Functional test framework for LSP servers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , hashable, mmorph, mtl, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "lucid"; - version = "2.9.12"; - sha256 = "304bc31b4b5d65b0e7bc4ad88ca2a2c84f64e92fa9aee7f3591486d67cb4dc94"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers hashable mmorph mtl text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/lucid"; - description = "Clear to write, read and edit DSL for HTML"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "lucid-extras" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, lucid - , stdenv, text - }: - mkDerivation { - pname = "lucid-extras"; - version = "0.2.2"; - sha256 = "83399f85c9461c44c8dd6d34a076fdefa7f9cb1f92dba5f3d03989233c45247e"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring lucid text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/lucid-extras"; - description = "Generate more HTML with Lucid - Bootstrap, Rdash, Vega-Lite, Leaflet JS, Email"; - license = stdenv.lib.licenses.mit; - }) {}; - "lzma" = callPackage - ({ mkDerivation, base, bytestring, lzma, stdenv }: - mkDerivation { - pname = "lzma"; - version = "0.0.0.3"; - sha256 = "af8321c3511bde3e2745093fa3bd74c642e386db7d2e7c43b3a54814f1338144"; - revision = "4"; - editedCabalFile = "0f3zrjq4zxwacmlc934y873pvlqpmmcmhzhp34d8pvhi5c7dg47j"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ lzma ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/lzma"; - description = "LZMA/XZ compression and decompression"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) lzma;}; - "lzma-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, lzma, resourcet, stdenv - , transformers - }: - mkDerivation { - pname = "lzma-conduit"; - version = "1.2.1"; - sha256 = "e955da2b8b108b3bf07073e12e5b01c46d42c8f3e40828fb1f34cd7e5413a742"; - libraryHaskellDepends = [ - base bytestring conduit lzma resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/alphaHeavy/lzma-conduit"; - description = "Conduit interface for lzma/xz compression"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "machines" = callPackage - ({ mkDerivation, adjunctions, base, Cabal, cabal-doctest, comonad - , containers, distributive, mtl, pointed, profunctors - , semigroupoids, semigroups, stdenv, transformers - , transformers-compat, void - }: - mkDerivation { - pname = "machines"; - version = "0.7"; - sha256 = "0bc0fa74ba656131881a7e2ebb3d7649ab9835d8cc437f8d2e7284e4938c37fe"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - adjunctions base comonad containers distributive mtl pointed - profunctors semigroupoids semigroups transformers - transformers-compat void - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/machines/"; - description = "Networked stream transducers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "main-tester" = callPackage - ({ mkDerivation, base, bytestring, directory, stdenv }: - mkDerivation { - pname = "main-tester"; - version = "0.2.0.1"; - sha256 = "cf06f5934e374e1972f2cc76701c03d67c5536034d9ad32cace4e03819a57842"; - libraryHaskellDepends = [ base bytestring directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/main-tester#readme"; - description = "Capture stdout/stderr/exit code, and replace stdin of your main function"; - license = stdenv.lib.licenses.asl20; - }) {}; - "mainland-pretty" = callPackage - ({ mkDerivation, base, containers, srcloc, stdenv, text - , transformers - }: - mkDerivation { - pname = "mainland-pretty"; - version = "0.7.0.1"; - sha256 = "88856f0ff7c523db03f70939a3ca55f3a827e8ee8ae3f795dc2c2c866fdb2e32"; - libraryHaskellDepends = [ - base containers srcloc text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/mainland-pretty"; - description = "Pretty printing designed for printing source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "makefile" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "makefile"; - version = "1.1.0.0"; - sha256 = "ed7a12094fe93ef0c6350ed6607ad488703f54bc2ad5d8cb2f9d89eb10b75c07"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nmattia/mask"; - description = "Simple Makefile parser and generator"; - license = stdenv.lib.licenses.mit; - }) {}; - "managed" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "managed"; - version = "1.0.7"; - sha256 = "d130c22e988b02bdb4b06234a400578638f5daba6ad9bca08f845d364733b173"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "A monad for managed values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , conduit, conduit-extra, containers, data-default, stdenv, text - , transformers, xml-conduit, xml-types, xss-sanitize - }: - mkDerivation { - pname = "markdown"; - version = "0.1.17.4"; - sha256 = "c2e3e742be2b4af6ed62be262cab59d2366556e120b1f8856cff6e7ef270fdd4"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup conduit conduit-extra - containers data-default text transformers xml-conduit xml-types - xss-sanitize - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/markdown"; - description = "Convert Markdown to HTML, with XSS protection"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "markdown-unlit" = callPackage - ({ mkDerivation, base, base-compat, stdenv }: - mkDerivation { - pname = "markdown-unlit"; - version = "0.5.0"; - sha256 = "e72d0d7b82525e2a2c664012ce9dc35835b3fff91040d9f20897ed82f24ec7bf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base base-compat ]; - executableHaskellDepends = [ base base-compat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/markdown-unlit#readme"; - description = "Literate Haskell support for Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "markov-chain" = callPackage - ({ mkDerivation, base, containers, random, stdenv, transformers }: - mkDerivation { - pname = "markov-chain"; - version = "0.0.3.4"; - sha256 = "6e51b800101a28593be28ce7ef1b21b7cc7a177a821fb99ecd8a28c69b7b92cd"; - libraryHaskellDepends = [ base containers random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/markov-chain/"; - description = "Markov Chains for generating random sequences with a user definable behaviour"; - license = "GPL"; - }) {}; - "massiv" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest - , data-default-class, deepseq, exceptions, primitive, scheduler - , stdenv, unliftio-core, vector - }: - mkDerivation { - pname = "massiv"; - version = "0.4.5.0"; - sha256 = "811b26a2b82af7ea2f5b7530ede027b79aa4dad24775a7f87aa12b2eaea7b41a"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq exceptions primitive - scheduler unliftio-core vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Massiv (Массив) is an Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-io" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , directory, filepath, JuicyPixels, massiv, netpbm, process, stdenv - , vector - }: - mkDerivation { - pname = "massiv-io"; - version = "0.1.9.0"; - sha256 = "79fca7336f0c72da798e4f0457da3f5c31cb61aa1efa1b2e786343b5d5e2f46a"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq directory filepath - JuicyPixels massiv netpbm process vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Import/export of Image files into massiv Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "massiv-test" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, deepseq - , exceptions, hspec, massiv, primitive, QuickCheck, scheduler - , stdenv, unliftio, vector - }: - mkDerivation { - pname = "massiv-test"; - version = "0.1.2"; - sha256 = "e2c29a7db528a37e1f3bc22a97406500c544c349aeb8619d7a98af7c7847578f"; - libraryHaskellDepends = [ - base bytestring data-default-class deepseq exceptions hspec massiv - primitive QuickCheck scheduler unliftio vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/massiv"; - description = "Library that contains generators, properties and tests for Massiv Array Library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "math-functions" = callPackage - ({ mkDerivation, base, data-default-class, deepseq, primitive - , stdenv, vector, vector-th-unbox - }: - mkDerivation { - pname = "math-functions"; - version = "0.3.3.0"; - sha256 = "63c599ea76a4cd7fc41d564a37c09d1f7806085f48028bc02779300d885eb6e8"; - libraryHaskellDepends = [ - base data-default-class deepseq primitive vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/math-functions"; - description = "Collection of tools for numeric computations"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "mathexpr" = callPackage - ({ mkDerivation, base, data-default-class, stdenv }: - mkDerivation { - pname = "mathexpr"; - version = "0.3.0.0"; - sha256 = "23c30ae0c962a7858d57bed320be6421baeb82fa795260e1eea0bc8fcc4871ad"; - libraryHaskellDepends = [ base data-default-class ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mdibaiee/mathexpr"; - description = "Parse and evaluate math expressions with variables and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "matplotlib" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , filepath, process, split, stdenv, temporary - }: - mkDerivation { - pname = "matplotlib"; - version = "0.7.5"; - sha256 = "9a05e177ce4a0d39f117e89af2390c42a09ec7ef1be39c66c6f45c59a4c9d247"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq filepath process split - temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/abarbu/matplotlib-haskell"; - description = "Bindings to Matplotlib; a Python plotting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrices" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv, vector }: - mkDerivation { - pname = "matrices"; - version = "0.5.0"; - sha256 = "fd013f0b061f7fd006242340fb6bc936114c8fc7d255ba58bd54cd1d66391d4d"; - libraryHaskellDepends = [ base deepseq primitive vector ]; - doHaddock = false; - doCheck = false; - description = "native matrix based on vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix" = callPackage - ({ mkDerivation, base, deepseq, loop, primitive, semigroups, stdenv - , vector - }: - mkDerivation { - pname = "matrix"; - version = "0.3.6.1"; - sha256 = "fa976ca3bc98149ce59b7ae37869eda615562711e1fef90889f6e0c4f2093b2c"; - revision = "1"; - editedCabalFile = "0iy0gdgg68ldhgm4lzvzl5pmzflx0r4brdbdkq75rkarm7cigawn"; - libraryHaskellDepends = [ - base deepseq loop primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - description = "A native implementation of matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "matrix-market-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, exceptions - , scientific, stdenv - }: - mkDerivation { - pname = "matrix-market-attoparsec"; - version = "0.1.1.3"; - sha256 = "32b79a75c8cf5b21a40ea51bc091ee5fd4809483d933b0dbc578528ccf8e924d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base bytestring exceptions scientific - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/matrix-market-attoparsec"; - description = "Parsing and serialization functions for the NIST Matrix Market format"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "matrix-static" = callPackage - ({ mkDerivation, base, deepseq, ghc-typelits-natnormalise, matrix - , stdenv, vector - }: - mkDerivation { - pname = "matrix-static"; - version = "0.2.1"; - sha256 = "36f4106836350932425e985472b54d913d679496c3758b7efa00a3a0d57006cb"; - libraryHaskellDepends = [ - base deepseq ghc-typelits-natnormalise matrix vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wchresta/matrix-static#readme"; - description = "Type-safe matrix operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "maximal-cliques" = callPackage - ({ mkDerivation, base, containers, stdenv, vector }: - mkDerivation { - pname = "maximal-cliques"; - version = "0.1.1"; - sha256 = "709d05c753c7d2d7466ade515da0255fc79241432d0118b3182dd3b2def475e9"; - libraryHaskellDepends = [ base containers vector ]; - doHaddock = false; - doCheck = false; - description = "Enumerate all maximal cliques of a graph"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox" = callPackage - ({ mkDerivation, base, safe, stdenv, text, time, time-locale-compat - }: - mkDerivation { - pname = "mbox"; - version = "0.3.4"; - sha256 = "dce4b538bbe03928a1d1438bf80b4d341ffb1a9d23ead1c2b16a04b0fa5371de"; - revision = "1"; - editedCabalFile = "11jikczq21fnhsvr6n33qbb5q6ixbhab4s0js8n39zwgmglighz5"; - libraryHaskellDepends = [ base safe text time time-locale-compat ]; - doHaddock = false; - doCheck = false; - description = "Read and write standard mailbox files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mbox-utility" = callPackage - ({ mkDerivation, base, bytestring, hsemail, non-empty, parsec - , spreadsheet, stdenv, time, utility-ht - }: - mkDerivation { - pname = "mbox-utility"; - version = "0.0.3.1"; - sha256 = "22a938ab138641477017bfd2237219934c6d8a52357f2713d6da8d47e08a096e"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring hsemail non-empty parsec spreadsheet time - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "List contents of an mbox file containing e-mails"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mcmc-types" = callPackage - ({ mkDerivation, base, containers, mwc-probability, stdenv - , transformers - }: - mkDerivation { - pname = "mcmc-types"; - version = "1.0.3"; - sha256 = "3c4b25030b05567694ddc313ca808a32133ad5433b4d89837e1ed00bbfcefc6e"; - libraryHaskellDepends = [ - base containers mwc-probability transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mcmc-types"; - description = "Common types for sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "median-stream" = callPackage - ({ mkDerivation, base, heap, stdenv }: - mkDerivation { - pname = "median-stream"; - version = "0.7.0.0"; - sha256 = "e92fc44be8189dafe9190aad225462780f26d0b1fe1823376342329db6c71f3d"; - libraryHaskellDepends = [ base heap ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/median-stream#readme"; - description = "Constant-time queries for the median of a stream of numeric data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "megaparsec" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , deepseq, mtl, parser-combinators, scientific, stdenv, text - , transformers - }: - mkDerivation { - pname = "megaparsec"; - version = "8.0.0"; - sha256 = "b5d7c64646016d12f540a6948396a86e0cd39865569d68fe2018fe9e3fce6318"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers deepseq mtl - parser-combinators scientific text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "megaparsec-tests" = callPackage - ({ mkDerivation, base, bytestring, containers, hspec - , hspec-expectations, hspec-megaparsec, megaparsec, mtl, QuickCheck - , stdenv, text, transformers - }: - mkDerivation { - pname = "megaparsec-tests"; - version = "8.0.0"; - sha256 = "0e95b22daefc0fe47e87a075bee5f5ee8693a5b54e00e92b294050e84cd0e1d0"; - libraryHaskellDepends = [ - base bytestring containers hspec hspec-expectations - hspec-megaparsec megaparsec mtl QuickCheck text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/megaparsec"; - description = "Test utilities and the test suite of Megaparsec"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "memory" = callPackage - ({ mkDerivation, base, basement, bytestring, deepseq, ghc-prim - , stdenv - }: - mkDerivation { - pname = "memory"; - version = "0.15.0"; - sha256 = "e3ff892c1a94708954d0bb2c4f4ab81bc0f505352d95095319c462db1aeb3529"; - revision = "1"; - editedCabalFile = "136qfj1cbg9571mlwywaqml75ijx3pcgvbpbgwxrqsl71ssj8w5y"; - libraryHaskellDepends = [ - base basement bytestring deepseq ghc-prim - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-memory"; - description = "memory and related abstraction stuff"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mercury-api" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, clock, hashable - , optparse-applicative, stdenv, text, unordered-containers - }: - mkDerivation { - pname = "mercury-api"; - version = "0.1.0.2"; - sha256 = "0f4ed76a96029413aef856a00defaa5d75be196a12a0dc1e75b9a0a866607779"; - revision = "4"; - editedCabalFile = "1bx3xrafmf82b9wlvhggv87fwqgpgqxjdgkk9r5b323m9ci2gign"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring clock hashable text - unordered-containers - ]; - executableHaskellDepends = [ - ansi-terminal base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppelleti/hs-mercury-api"; - description = "Haskell binding to Mercury API for ThingMagic RFID readers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mersenne-random-pure64" = callPackage - ({ mkDerivation, base, random, stdenv, time }: - mkDerivation { - pname = "mersenne-random-pure64"; - version = "0.2.2.0"; - sha256 = "ef1400ddc1ddafb0b98d4331a58bdbe3b5209a81579e17f85f180731a96d75d1"; - revision = "1"; - editedCabalFile = "0pxq0xz42x60993rl4pr4pia80jv1xcqh6njvjzfvn75018j4gw5"; - configureFlags = [ "-f-small_base" ]; - libraryHaskellDepends = [ base random time ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~dons/code/mersenne-random-pure64/"; - description = "Generate high quality pseudorandom numbers purely using a Mersenne Twister"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "messagepack" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, deepseq - , stdenv - }: - mkDerivation { - pname = "messagepack"; - version = "0.5.4"; - sha256 = "939590c05d5b0831b3b4796f2e1a070e290982c92b2009f2aa1ef5f4b05b5d7c"; - revision = "2"; - editedCabalFile = "199x0hqa6h6wqysaip1wc7kivc26f3wkb8y4il70mzmz80skmm29"; - libraryHaskellDepends = [ - base bytestring cereal containers deepseq - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rodrigosetti/messagepack"; - description = "Serialize instance for Message Pack Object"; - license = stdenv.lib.licenses.mit; - }) {}; - "metrics" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, containers, lens - , mwc-random, primitive, stdenv, text, time, transformers - , transformers-base, unix-compat, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "metrics"; - version = "0.4.1.1"; - sha256 = "d55f6e704ec6f0c6bab0da46417049b7de3e76ca69a0be4c49a790db28c75bb8"; - libraryHaskellDepends = [ - ansi-terminal base bytestring containers lens mwc-random primitive - text time transformers transformers-base unix-compat - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - description = "High-performance application metric tracking"; - license = stdenv.lib.licenses.mit; - }) {}; - "mfsolve" = callPackage - ({ mkDerivation, base, hashable, mtl, mtl-compat, stdenv - , unordered-containers - }: - mkDerivation { - pname = "mfsolve"; - version = "0.3.2.0"; - sha256 = "232167442f9c0f326b7514b362d4521b3937b716fd4155c65060d34430aa42f1"; - libraryHaskellDepends = [ - base hashable mtl mtl-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Equation solver and calculator à la metafont"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "microlens"; - version = "0.4.11.2"; - sha256 = "4e484d4a73c7c5176ccfdacc29aec7399352cac1c7e8924d5123857cf36ddffc"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "A tiny lens library with no dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, deepseq - , hashable, microlens, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "microlens-aeson"; - version = "2.3.0.4"; - sha256 = "dcdf98e5c86259fe524241345560a6baf2f5f00b08040271f034da55e604c370"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring deepseq hashable microlens - scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fosskers/microlens-aeson/"; - description = "Law-abiding lenses for Aeson, using microlens"; - license = stdenv.lib.licenses.mit; - }) {}; - "microlens-contra" = callPackage - ({ mkDerivation, base, microlens, stdenv }: - mkDerivation { - pname = "microlens-contra"; - version = "0.1.0.2"; - sha256 = "b57848cf35305f972f450fb6fb743605a9e82a818f3549f06cdfe5d336c4c9db"; - libraryHaskellDepends = [ base microlens ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "True folds and getters for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-ghc" = callPackage - ({ mkDerivation, array, base, bytestring, containers, microlens - , stdenv, transformers - }: - mkDerivation { - pname = "microlens-ghc"; - version = "0.4.12"; - sha256 = "2b441b12ce1108e59593a5cfc2cc98da549f1faa13203e28f912804d9531101f"; - libraryHaskellDepends = [ - array base bytestring containers microlens transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens + array, bytestring, containers, transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-mtl" = callPackage - ({ mkDerivation, base, microlens, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "microlens-mtl"; - version = "0.2.0.1"; - sha256 = "d79de8b228631525da3c17999d3b936eb8f919f2303348151b6cd1d27c3f5e46"; - libraryHaskellDepends = [ - base microlens mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens support for Reader/Writer/State from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-platform" = callPackage - ({ mkDerivation, base, hashable, microlens, microlens-ghc - , microlens-mtl, microlens-th, stdenv, text, unordered-containers - , vector - }: - mkDerivation { - pname = "microlens-platform"; - version = "0.4.1"; - sha256 = "03d8bed7d54b64eaa6453c89065cd38626b9a9341f83726c09eea7150d97917e"; - libraryHaskellDepends = [ - base hashable microlens microlens-ghc microlens-mtl microlens-th - text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "microlens + all batteries included (best for apps)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-process" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, filepath, microlens - , process, stdenv - }: - mkDerivation { - pname = "microlens-process"; - version = "0.2.0.1"; - sha256 = "b9f03fee93e2c9cf84c65de88159068bbde9b095b92a4331228a9ab380c6363f"; - revision = "2"; - editedCabalFile = "0jy50p09axr5gwkhc2qnlragpzvy3s6b947s7r3354ya2byli4dz"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ base filepath microlens process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/lens-process/tree/master/microlens"; - description = "Micro-optics for the process library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microlens-th" = callPackage - ({ mkDerivation, base, containers, microlens, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "microlens-th"; - version = "0.4.3.4"; - sha256 = "e95040257279155d5a8f537313138216d28f6f7056a1257c60cc0382c2ef9121"; - libraryHaskellDepends = [ - base containers microlens template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/monadfix/microlens"; - description = "Automatic generation of record lenses for microlens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microspec" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, time }: - mkDerivation { - pname = "microspec"; - version = "0.2.1.3"; - sha256 = "8bf530a4bce642431014d5395e4c8ab412bed44fe6caa6c2e1239ea9577b2518"; - libraryHaskellDepends = [ base QuickCheck time ]; - doHaddock = false; - doCheck = false; - description = "Tiny QuickCheck test library with minimal dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "microstache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, parsec, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "microstache"; - version = "1.0.1.1"; - sha256 = "5de98542313eb75f84961366ff8a70ed632387ba6518215035b2dd1b32d6a120"; - revision = "5"; - editedCabalFile = "1dr1yqn42j6im1x333rpsqj57nhmagmhwkdfwx832cdsw9ry2gjz"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath parsec - text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/microstache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "midair" = callPackage - ({ mkDerivation, base, containers, safe, stdenv, stm }: - mkDerivation { - pname = "midair"; - version = "0.2.0.1"; - sha256 = "421f941bc6b4a4d27c3de2d618557188e59e929b56860dade281e89b555172b6"; - libraryHaskellDepends = [ base containers safe stm ]; - doHaddock = false; - doCheck = false; - description = "Hot-swappable FRP"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "midi" = callPackage - ({ mkDerivation, base, binary, bytestring, event-list - , explicit-exception, monoid-transformer, non-negative, QuickCheck - , random, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "midi"; - version = "0.2.2.2"; - sha256 = "de7cb58971a43f23e2a1ec0c4c01f690c1dd11ba55bc71264e1b9731014a693b"; - libraryHaskellDepends = [ - base binary bytestring event-list explicit-exception - monoid-transformer non-negative QuickCheck random semigroups - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/MIDI"; - description = "Handling of MIDI messages and files"; - license = "GPL"; - }) {}; - "mighty-metropolis" = callPackage - ({ mkDerivation, base, kan-extensions, mcmc-types, mwc-probability - , pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "mighty-metropolis"; - version = "1.2.0"; - sha256 = "8d3c0b4b65024846291c4f547c45e5c04f587aefd0e8d041d54679bb519871c0"; - libraryHaskellDepends = [ - base kan-extensions mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mighty-metropolis"; - description = "The Metropolis algorithm"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-builder, bytestring - , filepath, process, random, stdenv, text - }: - mkDerivation { - pname = "mime-mail"; - version = "0.5.0"; - sha256 = "10b038e6c11fd1beacd3c9a429a9a244e3c50e1715f8d92d2a1eb9b6b600436f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-builder bytestring filepath process - random text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Compose MIME email messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-mail-ses" = callPackage - ({ mkDerivation, base, base64-bytestring, byteable, bytestring - , conduit, cryptohash, http-client, http-client-tls, http-conduit - , http-types, mime-mail, old-locale, stdenv, text, time - , transformers, xml-conduit, xml-types - }: - mkDerivation { - pname = "mime-mail-ses"; - version = "0.4.1"; - sha256 = "a76f29d1e52d8fbfc7ea8119f6ede5ed87f9e5b9d5587f1e6c69295f2a23d3f0"; - libraryHaskellDepends = [ - base base64-bytestring byteable bytestring conduit cryptohash - http-client http-client-tls http-conduit http-types mime-mail - old-locale text time transformers xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/mime-mail"; - description = "Send mime-mail messages via Amazon SES"; - license = stdenv.lib.licenses.mit; - }) {}; - "mime-types" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "mime-types"; - version = "0.1.0.9"; - sha256 = "0a32435169ef4ba59f4a4b8addfd0c04479410854d1b8d69a1e38fb389ba71d2"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Basic mime-type handling types and functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mini-egison" = callPackage - ({ mkDerivation, base, containers, haskell-src-meta, regex-compat - , sort, split, stdenv, template-haskell - }: - mkDerivation { - pname = "mini-egison"; - version = "0.1.6"; - sha256 = "92a642537211290967bd7f3c83c4c71e82084b1f042ac66340d1da7eb8456420"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers haskell-src-meta regex-compat split - template-haskell - ]; - executableHaskellDepends = [ base sort ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/egison/egison-haskell#readme"; - description = "Template Haskell Implementation of Egison Pattern Matching"; - license = stdenv.lib.licenses.mit; - }) {}; - "minimal-configuration" = callPackage - ({ mkDerivation, base, containers, directory, filepath, stdenv }: - mkDerivation { - pname = "minimal-configuration"; - version = "0.1.4"; - sha256 = "7c0ed6b0d3737ad1d3738b545aa4dc582d1831cf7d2018c8ead2ace2eb1ebf2f"; - libraryHaskellDepends = [ base containers directory filepath ]; - doHaddock = false; - doCheck = false; - description = "Minimal ini like configuration library with a few extras"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "minimorph" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "minimorph"; - version = "0.2.1.0"; - sha256 = "127eb21b889ca9411bee0612ac8aebac7992b9f790dc94b83e28312441d317de"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/minimorph"; - description = "English spelling functions with an emphasis on simplicity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "miniutter" = callPackage - ({ mkDerivation, base, binary, containers, minimorph, stdenv, text - }: - mkDerivation { - pname = "miniutter"; - version = "0.5.0.0"; - sha256 = "ee30db437e6f7012b8862061c842dfaae7e52ea46832fd743e891ca04999fa41"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base binary containers minimorph text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Mikolaj/miniutter"; - description = "Simple English clause creation from arbitrary words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mintty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mintty"; - version = "0.1.2"; - sha256 = "7c8af77bcde4e9b54692e3761f41adf35a50664974ba77f2ba65ea2af9f950da"; - configureFlags = [ "-fwin32-2-5-3" ]; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/mintty"; - description = "A reliable way to detect the presence of a MinTTY console on Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "missing-foreign" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "missing-foreign"; - version = "0.1.1"; - sha256 = "9e1b36cdb8626d848386c1c4d54f3b9f80b3458398aa6a4d499266b5ecbcc885"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convenience functions for FFI work"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mixed-types-num" = callPackage - ({ mkDerivation, base, hspec, hspec-smallcheck, mtl, QuickCheck - , smallcheck, stdenv, template-haskell - }: - mkDerivation { - pname = "mixed-types-num"; - version = "0.4.0.1"; - sha256 = "af304e7ef49d57a42a10af6312e7968eaaf156de75f9867dc9968cd2c8c2d381"; - libraryHaskellDepends = [ - base hspec hspec-smallcheck mtl QuickCheck smallcheck - template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/michalkonecny/mixed-types-num"; - description = "Alternative Prelude with numeric and logic expressions typed bottom-up"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mltool" = callPackage - ({ mkDerivation, ascii-progress, base, deepseq, hmatrix - , hmatrix-gsl, hmatrix-morpheus, MonadRandom, random, stdenv - , vector - }: - mkDerivation { - pname = "mltool"; - version = "0.2.0.1"; - sha256 = "716ec75fc8eb573c9c6ab327a9658685f5131eacff69fbbc72289cdd0133e0ff"; - libraryHaskellDepends = [ - ascii-progress base deepseq hmatrix hmatrix-gsl hmatrix-morpheus - MonadRandom random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aligusnet/mltool"; - description = "Machine Learning Toolbox"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmap" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "mmap"; - version = "0.5.9"; - sha256 = "58fcbb04e1cb8e7c36c05823b02dce2faaa989c53d745a7f36192de2fc98b5f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Memory mapped files for POSIX and Windows"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark" = callPackage - ({ mkDerivation, aeson, base, case-insensitive, containers, deepseq - , dlist, email-validate, foldl, hashable, html-entity-map, lucid - , megaparsec, microlens, microlens-th, modern-uri, mtl - , parser-combinators, stdenv, text, text-metrics - , unordered-containers, yaml - }: - mkDerivation { - pname = "mmark"; - version = "0.0.7.2"; - sha256 = "b59e3b2502b14d1304953593febb9a16d408b5fa4dfc8249066f3ba3d6ff9af3"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base case-insensitive containers deepseq dlist email-validate - foldl hashable html-entity-map lucid megaparsec microlens - microlens-th modern-uri mtl parser-combinators text text-metrics - unordered-containers yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark"; - description = "Strict markdown processor for writers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-cli" = callPackage - ({ mkDerivation, aeson, base, bytestring, directory - , ghc-syntax-highlighter, gitrev, lucid, megaparsec, mmark - , mmark-ext, optparse-applicative, stache, stdenv, text - , unordered-containers - }: - mkDerivation { - pname = "mmark-cli"; - version = "0.0.5.0"; - sha256 = "7ec1e69f4ce0ed638f8a979f0da2e3173d2c034ffd23b9b166a95317b0b81997"; - revision = "2"; - editedCabalFile = "1kpxrf3gwcl0l8jqq3dic49705p338rcvach95vp1g1jjpwd8kbj"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - aeson base bytestring directory ghc-syntax-highlighter gitrev lucid - megaparsec mmark mmark-ext optparse-applicative stache text - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-cli"; - description = "Command line interface to the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmark-ext" = callPackage - ({ mkDerivation, base, foldl, ghc-syntax-highlighter, lucid - , microlens, mmark, modern-uri, skylighting, stdenv, text - }: - mkDerivation { - pname = "mmark-ext"; - version = "0.2.1.2"; - sha256 = "2ca4d826e1714a0079f409a35a1f413870dbe95b9f7d5b7d3c734224eddf84e8"; - revision = "1"; - editedCabalFile = "10dlh96l6fdbpl1slr8v022735z9zkdszd1aziid5ml3gf63ssd8"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base foldl ghc-syntax-highlighter lucid microlens mmark modern-uri - skylighting text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mmark-md/mmark-ext"; - description = "Commonly useful extensions for the MMark markdown processor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mmorph" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "mmorph"; - version = "1.1.3"; - sha256 = "7923f7ad6260a05aaa8175b9f2a250f5bb63187427681171bd36d29a6cf2da65"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Monad morphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mnist-idx" = callPackage - ({ mkDerivation, base, binary, bytestring, stdenv, vector }: - mkDerivation { - pname = "mnist-idx"; - version = "0.1.2.8"; - sha256 = "42ff167e84414821ed47d783042cad20a0bd198f935648aa6cdf97bdc291b2fe"; - libraryHaskellDepends = [ base binary bytestring vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kryoxide/mnist-idx/"; - description = "Read and write IDX data that is used in e.g. the MNIST database."; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "mockery" = callPackage - ({ mkDerivation, base, base-compat, bytestring, directory, filepath - , logging-facade, stdenv, temporary - }: - mkDerivation { - pname = "mockery"; - version = "0.3.5"; - sha256 = "b7a1edacd3d32dc7f0e28c67877209d3ca3551d1da186f6445f825f3477dd727"; - libraryHaskellDepends = [ - base base-compat bytestring directory filepath logging-facade - temporary - ]; - doHaddock = false; - doCheck = false; - description = "Support functions for automated testing"; - license = stdenv.lib.licenses.mit; - }) {}; - "mod" = callPackage - ({ mkDerivation, base, deepseq, integer-gmp, semirings, stdenv }: - mkDerivation { - pname = "mod"; - version = "0.1.1.0"; - sha256 = "3325cf846142d0991d873eb8fb47cf5f6872834bc384f366dc0cc3d09620690f"; - libraryHaskellDepends = [ base deepseq integer-gmp semirings ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/mod"; - description = "Fast type-safe modular arithmetic"; - license = stdenv.lib.licenses.mit; - }) {}; - "modern-uri" = callPackage - ({ mkDerivation, base, bytestring, containers, contravariant - , deepseq, exceptions, megaparsec, mtl, profunctors, QuickCheck - , reflection, stdenv, tagged, template-haskell, text - }: - mkDerivation { - pname = "modern-uri"; - version = "0.3.1.0"; - sha256 = "05220a231996dc75fbfe126639499d0ac6765a23f59fff354ecadd9c85a227de"; - revision = "2"; - editedCabalFile = "0slfswzl4khpn0z8g7frn63gx7hw9n7nc3yff659q18nq7c6vjxd"; - libraryHaskellDepends = [ - base bytestring containers contravariant deepseq exceptions - megaparsec mtl profunctors QuickCheck reflection tagged - template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/modern-uri"; - description = "Modern library for working with URIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "modular" = callPackage - ({ mkDerivation, base, ghc-typelits-knownnat, stdenv }: - mkDerivation { - pname = "modular"; - version = "0.1.0.8"; - sha256 = "430b462330bd795c554f1fe87073022216abb0cea3a872fddd6e864faa3aefc5"; - libraryHaskellDepends = [ base ghc-typelits-knownnat ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pgujjula/modular#readme"; - description = "Type-safe modular arithmetic"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control"; - version = "1.0.2.3"; - sha256 = "6c1034189d237ae45368c70f0e68f714dd3beda715dd265b6c8a99fcc64022b1"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/monad-control"; - description = "Lift control operations, like exception catching, through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-control-aligned" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "monad-control-aligned"; - version = "0.0.1.1"; - sha256 = "44e78fd32d6644e974ab0644dc79331643c8ada4837c8f3c94f4a30b5ee011f6"; - libraryHaskellDepends = [ - base stm transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/monad-control#readme"; - description = "Just like monad-control, except less efficient, and the monadic state terms are all * -> *"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-coroutine" = callPackage - ({ mkDerivation, base, monad-parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-coroutine"; - version = "0.9.0.4"; - sha256 = "13e0ff12046296390ea69dda5001aa02b1b57e968447d27712a24c8c7cfe5de7"; - libraryHaskellDepends = [ - base monad-parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-coroutine"; - description = "Coroutine monad transformer for suspending and resuming monadic computations"; - license = "GPL"; - }) {}; - "monad-dijkstra" = callPackage - ({ mkDerivation, base, containers, free, mtl, psqueues, stdenv - , transformers - }: - mkDerivation { - pname = "monad-dijkstra"; - version = "0.1.1.2"; - sha256 = "66b5056eab091ec9cf697147c36fbda60fd7c2c8f6d4e180232a8f79bdcd20a1"; - revision = "1"; - editedCabalFile = "0dwcwwlfkhjl31asr35cy1m26nacz9xjry01cnq1dyaqcg53xjjb"; - libraryHaskellDepends = [ - base containers free mtl psqueues transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ennocramer/monad-dijkstra"; - description = "A monad transformer for weighted graph searches"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-extras" = callPackage - ({ mkDerivation, base, mmorph, monad-control, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-extras"; - version = "0.6.0"; - sha256 = "df33d7c51a97d16226b8160d9bc09686cb6f7b7bf5c54557381c6fe4a3c84f2c"; - libraryHaskellDepends = [ - base mmorph monad-control stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jwiegley/monad-extras"; - description = "Extra utility functions for working with monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-journal" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "monad-journal"; - version = "0.8.1"; - sha256 = "e20ac220086081b5cf1964e9486e04113ec03b15f247512a2193898100a105ac"; - libraryHaskellDepends = [ - base monad-control mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/phaazon/monad-journal"; - description = "Pure logger typeclass and monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-logger" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , exceptions, fast-logger, lifted-base, monad-control, monad-loops - , mtl, resourcet, stdenv, stm, stm-chans, template-haskell, text - , transformers, transformers-base, transformers-compat - , unliftio-core - }: - mkDerivation { - pname = "monad-logger"; - version = "0.3.31"; - sha256 = "adde9c21da5ca159c0240a91daccd228c18dc990ba0b2e229ba1b4029701992b"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra exceptions fast-logger - lifted-base monad-control monad-loops mtl resourcet stm stm-chans - template-haskell text transformers transformers-base - transformers-compat unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/monad-logger#readme"; - description = "A class of monads which can log messages"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-json" = callPackage - ({ mkDerivation, aeson, base, monad-logger, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "monad-logger-json"; - version = "0.1.0.0"; - sha256 = "10871c4aef838c01c8fdd7586161367b4d66907a53cbd9737efb717a1041e9aa"; - libraryHaskellDepends = [ - aeson base monad-logger template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/fpco/monad-logger-json"; - description = "JSON-friendly Logging APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-logger-prefix" = callPackage - ({ mkDerivation, base, exceptions, monad-control, monad-logger, mtl - , resourcet, stdenv, text, transformers, transformers-base - }: - mkDerivation { - pname = "monad-logger-prefix"; - version = "0.1.11"; - sha256 = "dba2d125ecebdee0600fd5f1b750f7ccec5345f3be6e20f7191efb876d48857f"; - libraryHaskellDepends = [ - base exceptions monad-control monad-logger mtl resourcet text - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/monad-logger-prefix#readme"; - description = "Add prefixes to your monad-logger output"; - license = stdenv.lib.licenses.asl20; - }) {}; - "monad-loops" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-loops"; - version = "0.4.3"; - sha256 = "7eaaaf6bc43661e9e86e310ff8c56fbea16eb6bf13c31a2e28103138ac164c18"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/monad-loops"; - description = "Monadic loops"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "monad-memo" = callPackage - ({ mkDerivation, array, base, containers, primitive, stdenv - , transformers, vector - }: - mkDerivation { - pname = "monad-memo"; - version = "0.5.1"; - sha256 = "c65a4a3c3e05757c251557b392f2cc7edcc09c2c46cbb0e72f4efe291eb85bff"; - libraryHaskellDepends = [ - array base containers primitive transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/EduardSergeev/monad-memo"; - description = "Memoization monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par" = callPackage - ({ mkDerivation, abstract-deque, abstract-par, array, base - , containers, deepseq, monad-par-extras, mtl, mwc-random, parallel - , stdenv - }: - mkDerivation { - pname = "monad-par"; - version = "0.3.5"; - sha256 = "823ad5666cbcaefe2c6e0ff131daa0713dff9b3b534fb809643b869e5e4a15a9"; - revision = "1"; - editedCabalFile = "17l7zjykf5iqjmw1pq4iwls7v9x9d3in94iikxabx43q5l2iccsm"; - libraryHaskellDepends = [ - abstract-deque abstract-par array base containers deepseq - monad-par-extras mtl mwc-random parallel - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "A library for parallel programming based on a monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-par-extras" = callPackage - ({ mkDerivation, abstract-par, base, cereal, deepseq, mtl, random - , stdenv, transformers - }: - mkDerivation { - pname = "monad-par-extras"; - version = "0.3.3"; - sha256 = "e21e33190bc248afa4ae467287ac37d24037ef3de6050c44fd85b52f4d5b842e"; - libraryHaskellDepends = [ - abstract-par base cereal deepseq mtl random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmar/monad-par"; - description = "Combinators and extra features for Par monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-parallel" = callPackage - ({ mkDerivation, base, parallel, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "monad-parallel"; - version = "0.7.2.3"; - sha256 = "128fb8c36be717f82aa3146d855303f48d04c56ba025078e6cd35d6050b45089"; - libraryHaskellDepends = [ - base parallel transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://trac.haskell.org/SCC/wiki/monad-parallel"; - description = "Parallel execution of monadic computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-peel" = callPackage - ({ mkDerivation, base, extensible-exceptions, stdenv, transformers - }: - mkDerivation { - pname = "monad-peel"; - version = "0.2.1.2"; - sha256 = "2dd5e9090f3951dbc298e35c3cea7099818aba0485a55059475c4f346fc933f4"; - libraryHaskellDepends = [ - base extensible-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://andersk.mit.edu/haskell/monad-peel/"; - description = "Lift control operations like exception catching through monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-products" = callPackage - ({ mkDerivation, base, semigroupoids, stdenv }: - mkDerivation { - pname = "monad-products"; - version = "4.0.1"; - sha256 = "02bfe1db2ae1a5cff19f73736a219605b1f0649f6af44ca848d09160a7946cea"; - libraryHaskellDepends = [ base semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-products"; - description = "Monad products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-resumption" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv, transformers }: - mkDerivation { - pname = "monad-resumption"; - version = "0.1.4.0"; - sha256 = "b442bd7a36bb6b9fd35326dce8531446945221ff45b074eca7099806f16a8941"; - libraryHaskellDepends = [ base mmorph mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igraves/monad-resumption#readme"; - description = "Resumption and reactive resumption monads for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-skeleton" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "monad-skeleton"; - version = "0.1.5"; - sha256 = "a96840713ffdbb97d58e8dc7a47d2b725993868f005903fa9aa26bcf6f32559e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/monad-skeleton"; - description = "Monads of program skeleta"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-st" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monad-st"; - version = "0.2.4.1"; - sha256 = "8e1818576bc486e884b953680fe41c524ff23eef2ec382b5f28f47fa7b8abf08"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monad-st"; - description = "Provides a MonadST class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-time" = callPackage - ({ mkDerivation, base, mtl, stdenv, time }: - mkDerivation { - pname = "monad-time"; - version = "0.3.1.0"; - sha256 = "0af450bfc710a9653e008de3df4cff094423e434d54ac5b7419fe2552660607c"; - libraryHaskellDepends = [ base mtl time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scrive/monad-time"; - description = "Type class for monads which carry the notion of the current time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monad-unlift" = callPackage - ({ mkDerivation, base, constraints, monad-control, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift"; - version = "0.2.0"; - sha256 = "4b5e638619e4821918b4ec67aeffb581ab9df23d168fbb72164137009a15ee0f"; - libraryHaskellDepends = [ - base constraints monad-control transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monad-unlift-ref" = callPackage - ({ mkDerivation, base, constraints, exceptions, monad-control - , monad-unlift, mtl, mutable-containers, resourcet, stdenv, stm - , transformers, transformers-base - }: - mkDerivation { - pname = "monad-unlift-ref"; - version = "0.2.1"; - sha256 = "0f059539297478ad8b7e861682207b37b91eaf7e36bd8fdcc3f865a3c6971d1d"; - libraryHaskellDepends = [ - base constraints exceptions monad-control monad-unlift mtl - mutable-containers resourcet stm transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/monad-unlift"; - description = "Typeclasses for representing monad transformer unlifting"; - license = stdenv.lib.licenses.mit; - }) {}; - "monadic-arrays" = callPackage - ({ mkDerivation, array, base, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "monadic-arrays"; - version = "0.2.2"; - sha256 = "667714c6100272b48c4377cf2e2984b67a4445521a2a2e9c37539128c7e276a0"; - libraryHaskellDepends = [ - array base stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/monadic-arrays/"; - description = "Boxed and unboxed arrays for monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monads-tf" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "monads-tf"; - version = "0.1.0.3"; - sha256 = "249dd2aa55c4dd6530f1e49f6b052ec91bc590ecfef2bd24c58837a3f8d4b0f1"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Monad classes, using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mono-traversable" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, split - , stdenv, text, transformers, unordered-containers, vector - , vector-algorithms - }: - mkDerivation { - pname = "mono-traversable"; - version = "1.0.15.1"; - sha256 = "c2df5b79ed2f88f2ee313e57c1d591d4463788e20d39e439297eec5ba5835ddf"; - libraryHaskellDepends = [ - base bytestring containers hashable split text transformers - unordered-containers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Type classes for mapping, folding, and traversing monomorphic containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-instances" = callPackage - ({ mkDerivation, base, comonad, containers, dlist, dlist-instances - , mono-traversable, semigroupoids, semigroups, stdenv, transformers - , vector-instances - }: - mkDerivation { - pname = "mono-traversable-instances"; - version = "0.1.0.0"; - sha256 = "b5ff2b8bcebe31ffcc652a8dd3adde6aa7cd7f27a1cf6d058d4c658b370c087e"; - libraryHaskellDepends = [ - base comonad containers dlist dlist-instances mono-traversable - semigroupoids semigroups transformers vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Extra typeclass instances for mono-traversable"; - license = stdenv.lib.licenses.mit; - }) {}; - "mono-traversable-keys" = callPackage - ({ mkDerivation, base, bytestring, containers, hashable, keys - , mono-traversable, semigroups, stdenv, text, transformers - , unordered-containers, vector, vector-instances - }: - mkDerivation { - pname = "mono-traversable-keys"; - version = "0.1.0"; - sha256 = "bc85929322e287a8d6c4ab2f8beede6d99417fc8c23c519b9719bbe68125d477"; - libraryHaskellDepends = [ - base bytestring containers hashable keys mono-traversable - semigroups text transformers unordered-containers vector - vector-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/recursion-ninja/mono-traversable-keys#readme"; - description = "Type-classes for interacting with monomorphic containers with a key"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-extras" = callPackage - ({ mkDerivation, base, groups, semigroupoids, semigroups, stdenv }: - mkDerivation { - pname = "monoid-extras"; - version = "0.5.1"; - sha256 = "67b8b06e1d14ff3ff221827ab2e44eb5b439071ff5044349f961b464f19bd975"; - revision = "1"; - editedCabalFile = "0b8x5d6vh7mpigvjvcd8f38a1nyzn1vfdqypslw7z9fgsr742913"; - libraryHaskellDepends = [ base groups semigroupoids semigroups ]; - doHaddock = false; - doCheck = false; - description = "Various extra monoid-related definitions and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-subclasses" = callPackage - ({ mkDerivation, base, bytestring, containers, primes, stdenv, text - , vector - }: - mkDerivation { - pname = "monoid-subclasses"; - version = "1.0.1"; - sha256 = "a32c14634958e2706848517c14e313fc0e7f0d2a0cec01884698fbbc4ad8d79b"; - libraryHaskellDepends = [ - base bytestring containers primes text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/monoid-subclasses/"; - description = "Subclasses of Monoid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "monoid-transformer" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "monoid-transformer"; - version = "0.0.4"; - sha256 = "43abf147e4d1b57c5d306d9533e42fb52828d64e761e0e3d8797fb52cfc98388"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - description = "Monoid counterparts to some ubiquitous monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "more-containers" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "more-containers"; - version = "0.2.2.0"; - sha256 = "07295037809930acccd73c8b15e73b28ac0342db18d780bc46c0f0c7dda693c4"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/more-containers"; - description = "A few more collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "morpheus-graphql" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, megaparsec - , mtl, scientific, stdenv, template-haskell, text - , th-lift-instances, transformers, unordered-containers, uuid - , vector, websockets - }: - mkDerivation { - pname = "morpheus-graphql"; - version = "0.10.0"; - sha256 = "e1714d5b7a5d64fb818734e38fe3b80c2065617978c88f6a1ba849aa9d4a56a9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers megaparsec mtl scientific - template-haskell text th-lift-instances transformers - unordered-containers uuid vector websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://morpheusgraphql.com"; - description = "Morpheus GraphQL"; - license = stdenv.lib.licenses.mit; - }) {}; - "mountpoints" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "mountpoints"; - version = "1.0.2"; - sha256 = "67fcdf64fdb8111f58939c64b168a9dfa519d7068e0f439887d739866f18d5c2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "list mount points"; - license = "LGPL"; - }) {}; - "mtl" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "mtl"; - version = "2.2.2"; - sha256 = "8803f48a8ed33296c3a3272f448198737a287ec31baa901af09e2118c829bef6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell/mtl"; - description = "Monad classes, using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-compat" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "mtl-compat"; - version = "0.2.2"; - sha256 = "1955398fe2115674f47f553b2caaf928c6aa3424271a5cd13bc191e54bfe3a9e"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-compat/mtl-compat"; - description = "Backported Control.Monad.Except module from mtl"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mtl-prelude" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "mtl-prelude"; - version = "2.0.3.1"; - sha256 = "c4a6dda093d63bd2161f55030c5825903dfa9b7d5e766c487fd848cb2aa01233"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/mtl-prelude"; - description = "Reexports of most definitions from \"mtl\" and \"transformers\""; - license = stdenv.lib.licenses.mit; - }) {}; - "multiarg" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "multiarg"; - version = "0.30.0.10"; - sha256 = "c9fa623a8e06d62addc2b7ad5102ceac3a6f0db6a67afbc8e693d0d0aec417a1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/massysett/multiarg"; - description = "Command lines for options that take multiple arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multimap" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "multimap"; - version = "1.2.1"; - sha256 = "6332c529475177b9e08d762d5701804dc2edc0ff26dd98a2a1dcd7ed092e7434"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/scravy/multimap"; - description = "A multimap"; - license = stdenv.lib.licenses.mit; - }) {}; - "multiset" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "multiset"; - version = "0.3.4.3"; - sha256 = "79fcae15a5d3ce28f0b973ad90290f7451396e81cc92007456ce2bb49b9415c4"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - description = "The Data.MultiSet container type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "multistate" = callPackage - ({ mkDerivation, base, monad-control, mtl, stdenv, tagged - , transformers, transformers-base - }: - mkDerivation { - pname = "multistate"; - version = "0.8.0.2"; - sha256 = "c5422b078a17b6057c83d18c984d84e7b7974b73e658b9dfbc4f5ea6a49ed743"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base monad-control mtl tagged transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lspitzner/multistate"; - description = "like mtl's ReaderT / WriterT / StateT, but more than one contained value/type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur-hash" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "murmur-hash"; - version = "0.1.0.9"; - sha256 = "89b9db94ead4cc0784dbcfb47c51b5664c1718860db00cd8ada3ef6fdd4465ad"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/murmur-hash"; - description = "MurmurHash2 implementation for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "murmur3" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv }: - mkDerivation { - pname = "murmur3"; - version = "1.0.3"; - sha256 = "102c81e0e6ae604f51bccced6d2d493f4de0b65e856cd0492a17f9f8e4d51f2a"; - libraryHaskellDepends = [ base bytestring cereal ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/plaprade/murmur3"; - description = "Pure Haskell implementation of the MurmurHash3 x86_32 algorithm"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "mustache" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, containers - , directory, either, filepath, mtl, parsec, scientific, stdenv - , template-haskell, text, th-lift, unordered-containers, vector - , yaml - }: - mkDerivation { - pname = "mustache"; - version = "2.3.1"; - sha256 = "ac8bf93d36fc766f54a54b72ddf71d1ab90864ca86bdce3415d2e69823fdb348"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring containers directory either filepath mtl - parsec scientific template-haskell text th-lift - unordered-containers vector - ]; - executableHaskellDepends = [ - aeson base bytestring cmdargs filepath text yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JustusAdam/mustache"; - description = "A mustache template parser library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mutable-containers" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mono-traversable - , primitive, stdenv, vector - }: - mkDerivation { - pname = "mutable-containers"; - version = "0.3.4"; - sha256 = "641966e0adee48badb8bf07037af6c879480e4e97f673d9e2b84fbf43685137e"; - libraryHaskellDepends = [ - base containers ghc-prim mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/mono-traversable#readme"; - description = "Abstactions and concrete implementations of mutable containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-probability" = callPackage - ({ mkDerivation, base, containers, mwc-random, primitive, stdenv - , transformers - }: - mkDerivation { - pname = "mwc-probability"; - version = "2.2.0"; - sha256 = "bfe1d7c0a7b8856fd9f6d6f266f3a7681919206aa3f49c7798d1dda81b64ee87"; - libraryHaskellDepends = [ - base containers mwc-random primitive transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/mwc-probability"; - description = "Sampling function-based probability distributions"; - license = stdenv.lib.licenses.mit; - }) {}; - "mwc-random" = callPackage - ({ mkDerivation, base, math-functions, primitive, stdenv, time - , vector - }: - mkDerivation { - pname = "mwc-random"; - version = "0.14.0.0"; - sha256 = "00370edaa60a51c86663868ecc2b1995824970001875cec458e9acc13511efa2"; - libraryHaskellDepends = [ - base math-functions primitive time vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/mwc-random"; - description = "Fast, high quality pseudo random number generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mx-state-codes" = callPackage - ({ mkDerivation, aeson, base, stdenv, text }: - mkDerivation { - pname = "mx-state-codes"; - version = "1.0.0.0"; - sha256 = "06abe94b48c2c24f13ee31039bb37e0373b629adeb2ce20b0b1a6722203cbccb"; - libraryHaskellDepends = [ aeson base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/mx-state-codes#readme"; - description = "ISO 3166-2:MX State Codes and Names"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "mysql" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, mysql, stdenv - }: - mkDerivation { - pname = "mysql"; - version = "0.1.7"; - sha256 = "ef2d7bc6791171f0c5efa8a6b40c2be386867e8b0c72580343a6646d514972d9"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring containers ]; - librarySystemDepends = [ mysql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql"; - description = "A low-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) mysql;}; - "mysql-simple" = callPackage - ({ mkDerivation, attoparsec, base, base16-bytestring, blaze-builder - , blaze-textual, bytestring, containers, mysql, old-locale - , pcre-light, stdenv, text, time - }: - mkDerivation { - pname = "mysql-simple"; - version = "0.4.5"; - sha256 = "b03c422ed8a62fa7f98b62634a06da8454980c6a733e275020ca7cedbb6e7cb1"; - libraryHaskellDepends = [ - attoparsec base base16-bytestring blaze-builder blaze-textual - bytestring containers mysql old-locale pcre-light text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/mysql-simple"; - description = "A mid-level MySQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "n2o" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv, text - }: - mkDerivation { - pname = "n2o"; - version = "0.11.1"; - sha256 = "674d30b2971f7aaf9fee85b82767895fdcb012ab1df90b8ab7ed49b1858e6f7b"; - libraryHaskellDepends = [ base binary bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xafizoff/n2o#readme"; - description = "Abstract Protocol Loop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nagios-check" = callPackage - ({ mkDerivation, base, bifunctors, exceptions, mtl, stdenv, text }: - mkDerivation { - pname = "nagios-check"; - version = "0.3.2"; - sha256 = "1bc9b85cb10c396943d53c44e2701c5bc2a02ecdf3e8f46da238981f8b7860b7"; - libraryHaskellDepends = [ base bifunctors exceptions mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/haskell-nagios-check"; - description = "Package for writing monitoring plugins"; - license = stdenv.lib.licenses.mit; - }) {}; - "names-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "names-th"; - version = "0.3.0.0"; - sha256 = "0be38f6a22afb69ddda5a3cae095b51835bdae853256403e97078679a9fba526"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Manipulate name strings for TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nano-erl" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "nano-erl"; - version = "0.1.0.1"; - sha256 = "370a60682b38ca77b793ee7326c54d5e74dd688f316f31fdd5cf999ad498ee12"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "Small library for Erlang-style actor semantics"; - license = stdenv.lib.licenses.mit; - }) {}; - "nanospec" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "nanospec"; - version = "0.2.2"; - sha256 = "cf14ccc2b296c910000cdc3eb51b37389b3eb94139384b9555db79b8128595e5"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/nanospec#readme"; - description = "A lightweight implementation of a subset of Hspec's API"; - license = stdenv.lib.licenses.mit; - }) {}; - "nats" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "nats"; - version = "1.1.2"; - sha256 = "b9d2d85d8612f9b06f8c9bfd1acecd848e03ab82cfb53afe1d93f5086b6e80ec"; - revision = "3"; - editedCabalFile = "02ww45nskca28fsbh74iy0z4rm0yshws7lrxld45y053hrn1jdzc"; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/nats/"; - description = "Natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-arithmetic" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-arithmetic"; - version = "0.1.2.0"; - sha256 = "a0517653bf309def7835f952870b6133fde5655ed39f8269bcec1835ba6a817f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/natural-arithmetic"; - description = "Arithmetic of natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-induction" = callPackage - ({ mkDerivation, base, peano, stdenv }: - mkDerivation { - pname = "natural-induction"; - version = "0.2.0.0"; - sha256 = "99aa944a9bf54f549a867b73de56e56adf95d67408822054ee1abfcbe7ae33af"; - libraryHaskellDepends = [ base peano ]; - doHaddock = false; - doCheck = false; - description = "Induction over natural numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-sort" = callPackage - ({ mkDerivation, base, bytestring, parsec, stdenv, text }: - mkDerivation { - pname = "natural-sort"; - version = "0.1.2"; - sha256 = "7b72b734680827ab07df38a004d4f523540055389d62fcd587edd2fcf19a6b50"; - libraryHaskellDepends = [ base bytestring parsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/natural-sort/"; - description = "User-friendly text collation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "natural-transformation" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "natural-transformation"; - version = "0.4"; - sha256 = "aac28e2c1147ed77c1ec0f0eb607a577fa26d0fd67474293ba860ec124efc8af"; - revision = "7"; - editedCabalFile = "03nkhdrwki9j81clgfck4yl7ylv6dwa7gi77kknzq3s3nqlp728v"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ku-fpg/natural-transformation"; - description = "A natural transformation package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ndjson-conduit" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , stdenv - }: - mkDerivation { - pname = "ndjson-conduit"; - version = "0.1.0.5"; - sha256 = "c037b8f7c47b146f1384585541ae8a4f9218bc4456f428935f973ae07da49db1"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-ndjson-conduit"; - description = "Conduit-based parsing and serialization for newline delimited JSON"; - license = stdenv.lib.licenses.mit; - }) {}; - "neat-interpolation" = callPackage - ({ mkDerivation, base, base-prelude, megaparsec, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "neat-interpolation"; - version = "0.3.2.5"; - sha256 = "0c3d5204ca80713461b5b5411bdaceade0ec7a174c04104e65dd5d79fd02cb26"; - libraryHaskellDepends = [ - base base-prelude megaparsec template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/neat-interpolation"; - description = "A quasiquoter for neat and simple multiline text interpolation"; - license = stdenv.lib.licenses.mit; - }) {}; - "netlib-carray" = callPackage - ({ mkDerivation, array, base, carray, netlib-ffi, stdenv - , transformers - }: - mkDerivation { - pname = "netlib-carray"; - version = "0.1"; - sha256 = "a577d19a79f7360d7916185e92feabdc42723a130ac3794e011655de3ba90466"; - libraryHaskellDepends = [ - array base carray netlib-ffi transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-carray/"; - description = "Helper modules for CArray wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-comfort-array" = callPackage - ({ mkDerivation, base, comfort-array, netlib-ffi, stdenv - , transformers - }: - mkDerivation { - pname = "netlib-comfort-array"; - version = "0.0.0.1"; - sha256 = "e32e5eabca4549cdd8dbd71c58acf14377d389317b999b25b37d62f9100d976c"; - libraryHaskellDepends = [ - base comfort-array netlib-ffi transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-comfort-array/"; - description = "Helper modules for comfort-array wrappers to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netlib-ffi" = callPackage - ({ mkDerivation, base, guarded-allocation, stdenv, storable-complex - , transformers - }: - mkDerivation { - pname = "netlib-ffi"; - version = "0.1.1"; - sha256 = "211016f9dc28f0519b1151ce5b1f74e8371a32f53fdb34c69277f099d82b2e47"; - libraryHaskellDepends = [ - base guarded-allocation storable-complex transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/netlib-ffi/"; - description = "Helper modules for FFI to BLAS and LAPACK"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netpbm" = callPackage - ({ mkDerivation, attoparsec, attoparsec-binary, base, bytestring - , stdenv, storable-record, unordered-containers, vector - , vector-th-unbox - }: - mkDerivation { - pname = "netpbm"; - version = "1.0.3"; - sha256 = "68fcb39e7097ccfd0327d36588d18faea438c389a5310d9ea4a91ec74b809d9d"; - libraryHaskellDepends = [ - attoparsec attoparsec-binary base bytestring storable-record - unordered-containers vector vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/haskell-netpbm"; - description = "Loading PBM, PGM, PPM image files"; - license = stdenv.lib.licenses.mit; - }) {}; - "netrc" = callPackage - ({ mkDerivation, base, bytestring, deepseq, parsec, stdenv }: - mkDerivation { - pname = "netrc"; - version = "0.2.0.0"; - sha256 = "9a5e07efa44f4b715b110aa4f9687e2b75458fb7537a2f4f1a3582c9e2e82a86"; - revision = "6"; - editedCabalFile = "0mn0ar2xhjdsm50kmpw5ndvbyfmc30b3x0bx291d2ml7hqspnnsw"; - libraryHaskellDepends = [ base bytestring deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/netrc"; - description = "Parser for .netrc files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "nettle" = callPackage - ({ mkDerivation, base, byteable, bytestring, crypto-cipher-types - , nettle, securemem, stdenv, tagged - }: - mkDerivation { - pname = "nettle"; - version = "0.3.0"; - sha256 = "cf3f08980e8e52190301d33db3b1fe7f02bcf5d276a74a8b8283b79e72bf7d5d"; - revision = "1"; - editedCabalFile = "1j8h6m4cj1ykxrsxmjiyb1c4mv6cawssgb8phl0aijrjn3b79f2b"; - libraryHaskellDepends = [ - base byteable bytestring crypto-cipher-types securemem tagged - ]; - libraryPkgconfigDepends = [ nettle ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stbuehler/haskell-nettle"; - description = "safe nettle binding"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) nettle;}; - "netwire" = callPackage - ({ mkDerivation, base, containers, deepseq, parallel, profunctors - , random, semigroups, stdenv, time, transformers - }: - mkDerivation { - pname = "netwire"; - version = "5.0.3"; - sha256 = "f1dde7293efe9cdb3080f53a1be702f473ef0bcc0d3e4ea2d23b847fa3ef222e"; - libraryHaskellDepends = [ - base containers deepseq parallel profunctors random semigroups time - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/esoeylemez/netwire"; - description = "Functional reactive programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "netwire-input" = callPackage - ({ mkDerivation, base, deepseq, netwire, stdenv }: - mkDerivation { - pname = "netwire-input"; - version = "0.0.7"; - sha256 = "29c6b087c2092ca409442b28aca500642b870461ad820d8bc579097f19ed3db9"; - libraryHaskellDepends = [ base deepseq netwire ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input"; - description = "Input handling abstractions for netwire"; - license = stdenv.lib.licenses.mit; - }) {}; - "netwire-input-glfw" = callPackage - ({ mkDerivation, base, containers, deepseq, GLFW-b, mtl - , netwire-input, stdenv, stm - }: - mkDerivation { - pname = "netwire-input-glfw"; - version = "0.0.10"; - sha256 = "1ea458273055fa2f82451b889b9a2c54e0b5bbdf55a16c35d0ccd392793728e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers deepseq GLFW-b mtl netwire-input stm - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/Mokosha/netwire-input-glfw"; - description = "GLFW instance of netwire-input"; - license = stdenv.lib.licenses.mit; - }) {}; - "network" = callPackage - ({ mkDerivation, base, bytestring, deepseq, stdenv }: - mkDerivation { - pname = "network"; - version = "3.1.1.1"; - sha256 = "d7ef590173fff2ab522fbc167f3fafb867e4ecfca279eb3ef0d137b51f142c9a"; - libraryHaskellDepends = [ base bytestring deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network"; - description = "Low-level networking interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-bsd" = callPackage - ({ mkDerivation, base, deepseq, network, stdenv }: - mkDerivation { - pname = "network-bsd"; - version = "2.8.1.0"; - sha256 = "d94961ca15c42c798d19cde540ec12b25cc43435fb95e682399d6c1a02022d4e"; - revision = "3"; - editedCabalFile = "1hc3jdbmpq2wxh82xfx452v2m2l97jbdaqqbmj5nz4lljxa2696r"; - libraryHaskellDepends = [ base deepseq network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-bsd"; - description = "POSIX network database () API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-byte-order" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "network-byte-order"; - version = "0.1.3.0"; - sha256 = "e38b5213fc01c86f4afe3be6e85a5375d028d1acab2a74522d682583d783e4ce"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Network byte order utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-conduit-tls" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , connection, data-default-class, network, stdenv - , streaming-commons, tls, transformers, unliftio-core - }: - mkDerivation { - pname = "network-conduit-tls"; - version = "1.3.2"; - sha256 = "ecfd60e162de3993a71906293dcf2ec8bd4c794471eb8dca13746c1d8fd3ad7f"; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra connection data-default-class - network streaming-commons tls transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/conduit"; - description = "Create TLS-aware network code with conduits"; - license = stdenv.lib.licenses.mit; - }) {}; - "network-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "network-info"; - version = "0.2.0.10"; - sha256 = "5680f6975d34cf4f81fa7ca0c8efd682261d6a1119e06dece0f67c7bd97fd52a"; - revision = "1"; - editedCabalFile = "07kiw56lhc56kqrnvpa11f5nnnid6by3aq00jrkcbbg7w0q71a6d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/network-info"; - description = "Access the local computer's basic network configuration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-ip" = callPackage - ({ mkDerivation, base, data-default-class, data-dword, data-endian - , data-serializer, data-textual, hashable, parsers, stdenv - , text-printer, type-hint - }: - mkDerivation { - pname = "network-ip"; - version = "0.3.0.3"; - sha256 = "e01dcc4389f3800536066ca150b6b5130d9d4b7fe7ed8e98ae7d92f3f7b1955c"; - libraryHaskellDepends = [ - base data-default-class data-dword data-endian data-serializer - data-textual hashable parsers text-printer type-hint - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/network-ip"; - description = "Internet Protocol data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , stdenv, transformers - }: - mkDerivation { - pname = "network-transport"; - version = "0.5.4"; - sha256 = "5b870bffb4a61b29616bf9520733c7f16fd455ac2e678cc156d61ffa47c4ec47"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Network abstraction layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-transport-composed" = callPackage - ({ mkDerivation, base, bytestring, network-transport, stdenv }: - mkDerivation { - pname = "network-transport-composed"; - version = "0.2.1"; - sha256 = "a35bbfbe35a7a6c6e20e9d839f9f5b30f82f3680863968f73ce82e0e03e55944"; - libraryHaskellDepends = [ base bytestring network-transport ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Compose network transports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "network-uri" = callPackage - ({ mkDerivation, base, deepseq, parsec, stdenv }: - mkDerivation { - pname = "network-uri"; - version = "2.6.1.0"; - sha256 = "423e0a2351236f3fcfd24e39cdbc38050ec2910f82245e69ca72a661f7fc47f0"; - revision = "1"; - editedCabalFile = "141nj7q0p9wkn5gr41ayc63cgaanr9m59yym47wpxqr3c334bk32"; - libraryHaskellDepends = [ base deepseq parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/network-uri"; - description = "URI manipulation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "newtype"; - version = "0.2.2.0"; - sha256 = "3a00ffd1bb48a81e09f8be6510fa4c642ba1482b2f8d4777af1b5dd06c55ebac"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "newtype-generics" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "newtype-generics"; - version = "0.5.4"; - sha256 = "007f3dd80d759b09534dd215b040d1a435b7d2612be3d0a365c27c60c973f932"; - revision = "1"; - editedCabalFile = "1id9a6prj2bzdsyfsfr0pnfy9p8v9wlw59x12fny6y2szfcxcrv7"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sjakobi/newtype-generics"; - description = "A typeclass and set of functions for working with newtypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nicify-lib" = callPackage - ({ mkDerivation, base, parsec, stdenv, transformers }: - mkDerivation { - pname = "nicify-lib"; - version = "1.0.1"; - sha256 = "7d26f86d792dda166805e9dda17cfbc7a2101f3654fe798f4231385d8136e732"; - libraryHaskellDepends = [ base parsec transformers ]; - doHaddock = false; - doCheck = false; - description = "Pretty print the standard output of default `Show` instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "nix-paths" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "nix-paths"; - version = "1.0.1"; - sha256 = "ab37163bc2970ea16c2eb6e091d1e99ab50b8e2ba93c23d24dac761803e509f8"; - configureFlags = [ "-fallow-relative-paths" ]; - libraryHaskellDepends = [ base process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/nix-paths"; - description = "Knowledge of Nix's installation directories"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "no-value" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "no-value"; - version = "1.0.0.0"; - sha256 = "8ed237efdab93eb273596e03cc391803640acb189b35a863e4e440451aea9fc9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/no-value#readme"; - description = "A type class for choosing sentinel-like values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty" = callPackage - ({ mkDerivation, base, containers, deepseq, QuickCheck, stdenv - , utility-ht - }: - mkDerivation { - pname = "non-empty"; - version = "0.3.2"; - sha256 = "1b10fc14386a9152e2bf9d1cc5383326ffcd96bc6a323e94b65ec4ae7a688748"; - libraryHaskellDepends = [ - base containers deepseq QuickCheck utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/non-empty/"; - description = "List-like structures with static restrictions on the number of elements"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-empty-sequence" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "non-empty-sequence"; - version = "0.2.0.4"; - sha256 = "8071a8680bd44f81e7660c74c495302a34344a42d8ccdc3e869f0e29a398dd28"; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/non-empty-sequence"; - description = "Non-empty sequence"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "non-negative" = callPackage - ({ mkDerivation, base, QuickCheck, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "non-negative"; - version = "0.1.2"; - sha256 = "5614acf55f3c16a21fea263e375e8993f9b859e21997b0410c74fe6642c20138"; - libraryHaskellDepends = [ base QuickCheck semigroups utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/non-negative/"; - description = "Non-negative numbers"; - license = "GPL"; - }) {}; - "nonce" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv, text, transformers, unliftio, unliftio-core - }: - mkDerivation { - pname = "nonce"; - version = "1.0.7"; - sha256 = "4b4f6232b2cb07a6de47a838b4dc35c346a745683866dbfc6ebb8682158037e1"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy text transformers - unliftio unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prowdsponsor/nonce"; - description = "Generate cryptographic nonces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nondeterminism" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "nondeterminism"; - version = "1.4"; - sha256 = "3037c93b0277037ab51ad8640f72a7975dcf48ba81570640be12d390d7b47dc5"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "A monad and monad transformer for nondeterministic computations"; - license = "LGPL"; - }) {}; - "nonempty-containers" = callPackage - ({ mkDerivation, base, comonad, containers, deepseq - , nonempty-vector, semigroupoids, stdenv, these, vector - }: - mkDerivation { - pname = "nonempty-containers"; - version = "0.3.3.0"; - sha256 = "e291106c5e64ec4f7c11592f56142b4dfc03bbe3f48f64fbe8b2e3f6b7d8b986"; - libraryHaskellDepends = [ - base comonad containers deepseq nonempty-vector semigroupoids these - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/nonempty-containers#readme"; - description = "Non-empty variants of containers data types, with full API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nonempty-vector" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, primitive - , semigroups, stdenv, vector - }: - mkDerivation { - pname = "nonempty-vector"; - version = "0.2.0.1"; - sha256 = "e16840e4f0a4cc580fc3120e350c0fa44c4ed7c41cca36c6646aafd250a13c62"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq primitive semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/emilypi/nonempty-vector"; - description = "Non-empty vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nonemptymap" = callPackage - ({ mkDerivation, base, containers, semigroupoids, stdenv }: - mkDerivation { - pname = "nonemptymap"; - version = "0.0.6.0"; - sha256 = "24bd4c4c3569ca103352493fc61739574eda0587532f8c85d959795d6728fadf"; - libraryHaskellDepends = [ base containers semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChristopherDavenport/nonemptymap#readme"; - description = "A NonEmptyMap Implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "not-gloss" = callPackage - ({ mkDerivation, base, binary, bmp, bytestring, GLUT, OpenGL - , OpenGLRaw, spatial-math, stdenv, time, vector - , vector-binary-instances - }: - mkDerivation { - pname = "not-gloss"; - version = "0.7.7.0"; - sha256 = "4740d1ee04015bca98092f72c11414326d1bd08473aead61f6678773fb8b835f"; - libraryHaskellDepends = [ - base binary bmp bytestring GLUT OpenGL OpenGLRaw spatial-math time - vector vector-binary-instances - ]; - doHaddock = false; - doCheck = false; - description = "Painless 3D graphics, no affiliation with gloss"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nowdoc" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell }: - mkDerivation { - pname = "nowdoc"; - version = "0.1.1.0"; - sha256 = "4ffe490b2c161a53f0d636d54269df357d41c7b212c70dcb1c7e2cffd33f5268"; - revision = "1"; - editedCabalFile = "074xgrxs8ynq29bsx66an03q0457f80ga9jf4sqi0q34jgfpmbcv"; - libraryHaskellDepends = [ base bytestring template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/nowdoc#readme"; - description = "Here document without variable expansion like PHP Nowdoc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nqe" = callPackage - ({ mkDerivation, base, conduit, containers, hashable, mtl, stdenv - , stm, unique, unliftio - }: - mkDerivation { - pname = "nqe"; - version = "0.6.1"; - sha256 = "adf772bca05f8445e585537e3807df394a8d7c7e3a095fd532ee55cc60f30dd0"; - libraryHaskellDepends = [ - base conduit containers hashable mtl stm unique unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/nqe#readme"; - description = "Concurrency library in the style of Erlang/OTP"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "nsis" = callPackage - ({ mkDerivation, base, stdenv, transformers, uniplate }: - mkDerivation { - pname = "nsis"; - version = "0.3.3"; - sha256 = "bda68ef2893202432be55a7749269ec7660781cba5e2049f9ad474531e21778b"; - libraryHaskellDepends = [ base transformers uniplate ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/nsis#readme"; - description = "DSL for producing Windows Installer using NSIS"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numbers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numbers"; - version = "3000.2.0.2"; - sha256 = "f0cee40b90c3746bd0bc0559d3827d3cf1b1e2c43270b7ec9bf4fa458fcb5a77"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jwiegley/numbers#readme"; - description = "Various number types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-extras" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numeric-extras"; - version = "0.1"; - sha256 = "c700711021d96334be43a21fbd80a5f7146fdd6706ef8656f1d287ff000b61d6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/numeric-extras"; - description = "Useful tools from the C standard library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numeric-prelude" = callPackage - ({ mkDerivation, array, base, containers, deepseq, non-negative - , parsec, QuickCheck, random, semigroups, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "numeric-prelude"; - version = "0.4.3.1"; - sha256 = "c9e4b6f20c47ab38faea9a6a230a722f3b50462989d1b0ad1e7bfd1cb8f46114"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers deepseq non-negative parsec QuickCheck random - semigroups storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Numeric_Prelude"; - description = "An experimental alternative hierarchy of numeric type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numhask" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numhask"; - version = "0.3.1"; - sha256 = "e7bc2f55f642ee9ef06c19a23545f58dbce9ae9387ceb17ab96626ae8f52f964"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonyday567/numhask#readme"; - description = "numeric classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "numtype-dk" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "numtype-dk"; - version = "0.5.0.2"; - sha256 = "98787dc0dd1757e6ed9c37e7d735b448fb9a9281988d97625292c9d8e16a732b"; - revision = "1"; - editedCabalFile = "0892xm8vyyvl1glg4vniz8r5ydg1nz3zmbpgk5mxdih6wi6nmpy4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bjornbm/numtype-dk"; - description = "Type-level integers, using TypeNats, Data Kinds, and Closed Type Families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "nuxeo" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , conduit-extra, http-conduit, http-types, optparse-applicative - , stdenv, text, time, url - }: - mkDerivation { - pname = "nuxeo"; - version = "0.3.2"; - sha256 = "e230a92a3f4b2f56128bfce8b478cdedcbb68b5a8b99d60e895b24af58b61954"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit conduit-extra http-conduit - http-types text time url - ]; - executableHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/apeyroux/nuxeo#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "o-clock" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "o-clock"; - version = "1.1.0"; - sha256 = "8c2cd42b3992683eb11e2923e1532991e09123688cfde26d58a02a2bb3688a96"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ghc-prim ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/o-clock"; - description = "Type-safe time library"; - license = stdenv.lib.licenses.mit; - }) {}; - "oauthenticated" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, blaze-builder - , bytestring, case-insensitive, cryptonite, exceptions, http-client - , http-types, memory, mtl, network, network-uri, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "oauthenticated"; - version = "0.2.1.0"; - sha256 = "d44cd060a4bfb26b0b958a8a203fb25dc171c146093eab82827542264f57d222"; - libraryHaskellDepends = [ - aeson base base64-bytestring blaze-builder bytestring - case-insensitive cryptonite exceptions http-client http-types - memory mtl network network-uri text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tel/oauthenticated.git#readme"; - description = "Simple OAuth for http-client"; - license = stdenv.lib.licenses.mit; - }) {}; - "odbc" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , formatting, optparse-applicative, parsec, semigroups, stdenv - , template-haskell, text, time, transformers, unixODBC - , unliftio-core - }: - mkDerivation { - pname = "odbc"; - version = "0.2.2"; - sha256 = "659a124883696168daf3cd20403394616a56837c904810073183ce41769e7336"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers deepseq formatting parsec - semigroups template-haskell text time transformers unliftio-core - ]; - librarySystemDepends = [ unixODBC ]; - executableHaskellDepends = [ - base bytestring optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/odbc"; - description = "Haskell binding to the ODBC API, aimed at SQL Server driver"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) unixODBC;}; - "oeis2" = callPackage - ({ mkDerivation, aeson, base, containers, http-conduit, lens - , lens-aeson, stdenv, text, vector - }: - mkDerivation { - pname = "oeis2"; - version = "1.0.3"; - sha256 = "97ef0e95f3b78efd696eb0d4f0cab27e37a3f45aa9831057f0b5a9f78ca7ab11"; - libraryHaskellDepends = [ - aeson base containers http-conduit lens lens-aeson text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23prime/oeis2#readme"; - description = "Interface for Online Encyclopedia of Integer Sequences (OEIS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ofx" = callPackage - ({ mkDerivation, base, parsec, pretty, stdenv, time }: - mkDerivation { - pname = "ofx"; - version = "0.4.4.0"; - sha256 = "798ceb6b799c22811ad40289f0eaa54037028cc637cbd0df35a770bcf2efecf2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base parsec pretty time ]; - executableHaskellDepends = [ base parsec pretty time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/ofx"; - description = "Parser for OFX data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-locale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "old-locale"; - version = "1.0.0.7"; - sha256 = "dbaf8bf6b888fb98845705079296a23c3f40ee2f449df7312f7f7f1de18d7b50"; - revision = "2"; - editedCabalFile = "04b9vn007hlvsrx4ksd3r8r3kbyaj2kvwxchdrmd4370qzi8p6gs"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "locale library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "old-time" = callPackage - ({ mkDerivation, base, old-locale, stdenv }: - mkDerivation { - pname = "old-time"; - version = "1.1.0.3"; - sha256 = "1ccb158b0f7851715d36b757c523b026ca1541e2030d02239802ba39b4112bc1"; - revision = "2"; - editedCabalFile = "1j6ln1dkvhdvnwl33bp0xf9lhc4sybqk0aw42p8cq81xwwzbn7y9"; - libraryHaskellDepends = [ base old-locale ]; - doHaddock = false; - doCheck = false; - description = "Time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "once" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv - , template-haskell, unordered-containers - }: - mkDerivation { - pname = "once"; - version = "0.4"; - sha256 = "30bd9195db5c55bc6f9252d10ac03855c792c6dd2ff401f757c155f2d838e92b"; - libraryHaskellDepends = [ - base containers hashable template-haskell unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/kaction/haskell-once"; - description = "memoization for IO actions and functions"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "one-liner" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, ghc-prim - , profunctors, stdenv, tagged, transformers - }: - mkDerivation { - pname = "one-liner"; - version = "1.0"; - sha256 = "c7f4fbea856adcaa145eb4ff9c81bb730f0a1796b24f4075c0a8028ae87a31b6"; - revision = "1"; - editedCabalFile = "1ijc5mj93zyfj7hh12aw3xh30kc1xsp7wf6rbbfal36yllnl2xhs"; - libraryHaskellDepends = [ - base bifunctors contravariant ghc-prim profunctors tagged - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sjoerdvisscher/one-liner"; - description = "Constraint-based generics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "one-liner-instances" = callPackage - ({ mkDerivation, base, one-liner, random, stdenv }: - mkDerivation { - pname = "one-liner-instances"; - version = "0.1.2.1"; - sha256 = "9384f47a3bdd5be17fa8ac3deca8e406794a1e9e140ec3b173ccd8d22c00c9bf"; - libraryHaskellDepends = [ base one-liner random ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/one-liner-instances#readme"; - description = "Generics-based implementations for common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "oo-prototypes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "oo-prototypes"; - version = "0.1.0.0"; - sha256 = "9eaee40e3221f817b957e472917977bdb06ac0e163a0c6ef87941de29a12f576"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/oo-prototypes"; - description = "Support for OO-like prototypes"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "opaleye" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, contravariant, postgresql-simple, pretty - , product-profunctors, profunctors, scientific, semigroups, stdenv - , text, time, time-locale-compat, transformers, uuid, void - }: - mkDerivation { - pname = "opaleye"; - version = "0.6.7004.1"; - sha256 = "e12d1fdf762524997713db4538fe4b9477ff0c48e939d0c712e842c4276e4f26"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive - contravariant postgresql-simple pretty product-profunctors - profunctors scientific semigroups text time time-locale-compat - transformers uuid void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/haskell-opaleye"; - description = "An SQL-generating DSL targeting PostgreSQL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "open-browser" = callPackage - ({ mkDerivation, base, process, stdenv }: - mkDerivation { - pname = "open-browser"; - version = "0.2.1.0"; - sha256 = "0bed2e63800f738e78a4803ed22902accb50ac02068b96c17ce83a267244ca66"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rightfold/open-browser"; - description = "Open a web browser from Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "openexr-write" = callPackage - ({ mkDerivation, base, binary, bytestring, data-binary-ieee754 - , deepseq, split, stdenv, vector, vector-split, zlib - }: - mkDerivation { - pname = "openexr-write"; - version = "0.1.0.2"; - sha256 = "2b0655a64ee36d529030df04f09b6fdf63749f64ec3d29b4f1861cf9c69a05e2"; - libraryHaskellDepends = [ - base binary bytestring data-binary-ieee754 deepseq split vector - vector-split zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "git://klacansky.com/openexr-write.git"; - description = "Library for writing images in OpenEXR HDR file format"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "openpgp-asciiarmor" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary - , bytestring, stdenv - }: - mkDerivation { - pname = "openpgp-asciiarmor"; - version = "0.1.2"; - sha256 = "5342621eaed3cacada7304aae0e3537e8c18b34d35e1457b00f95c7c27a529bd"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "http://floss.scru.org/openpgp-asciiarmor"; - description = "OpenPGP (RFC4880) ASCII Armor codec"; - license = stdenv.lib.licenses.mit; - }) {}; - "opensource" = callPackage - ({ mkDerivation, aeson, base, http-client, http-client-tls, stdenv - , text, transformers - }: - mkDerivation { - pname = "opensource"; - version = "0.1.1.0"; - sha256 = "1ef36be24b2a1d2aee892891e6c7bd975830c38900dbb96a80e5df95c37c5482"; - libraryHaskellDepends = [ - aeson base http-client http-client-tls text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://api.opensource.org/"; - description = "Haskell API Wrapper for the Open Source License API"; - license = stdenv.lib.licenses.mit; - }) {}; - "openssl-streams" = callPackage - ({ mkDerivation, base, bytestring, HsOpenSSL, io-streams, network - , stdenv - }: - mkDerivation { - pname = "openssl-streams"; - version = "1.2.2.0"; - sha256 = "b966b06f579bc9d1f4698408deff77ff6f7047a083d7d44fbeb379af4cf5f466"; - revision = "1"; - editedCabalFile = "125bxb2axgpcq7rrpamfq0yz017i0ks9zsykh6hn0ifw3lxj1k29"; - libraryHaskellDepends = [ - base bytestring HsOpenSSL io-streams network - ]; - doHaddock = false; - doCheck = false; - description = "OpenSSL network support for io-streams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "opentelemetry" = callPackage - ({ mkDerivation, base, clock, exceptions, hashable, random, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "opentelemetry"; - version = "0.0.0.0"; - sha256 = "f4e8be984f956c6a89cde9d46937595e4f53f2063041d6da3d7758d5a6a66192"; - libraryHaskellDepends = [ - base clock exceptions hashable random text unordered-containers - ]; - doHaddock = false; - doCheck = false; - license = stdenv.lib.licenses.asl20; - }) {}; - "operational" = callPackage - ({ mkDerivation, base, mtl, random, stdenv }: - mkDerivation { - pname = "operational"; - version = "0.2.3.5"; - sha256 = "91d479063ae7ed3d0a6ae911bdee550fbf31cf341910f9778046b484c55b4af4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base mtl ]; - executableHaskellDepends = [ base mtl random ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Operational"; - description = "Implementation of difficult monads made easy with operational semantics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "operational-class" = callPackage - ({ mkDerivation, base, operational, stdenv, transformers }: - mkDerivation { - pname = "operational-class"; - version = "0.3.0.0"; - sha256 = "8b28b9cb86a2dd520196f6a563538dc2c9e8730f0a0f5e5f3bca19559631e70b"; - libraryHaskellDepends = [ base operational transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-operational-class"; - description = "MonadProgram typeclass for the operational package"; - license = stdenv.lib.licenses.mit; - }) {}; - "optics" = callPackage - ({ mkDerivation, array, base, containers, mtl, optics-core - , optics-extra, optics-th, stdenv, transformers - }: - mkDerivation { - pname = "optics"; - version = "0.2"; - sha256 = "945d1367373a0ac6b1a02e3c9dbcdc28eeccefe75edb21703b68f0baaaca0061"; - libraryHaskellDepends = [ - array base containers mtl optics-core optics-extra optics-th - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics as an abstract interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-core" = callPackage - ({ mkDerivation, array, base, containers, indexed-profunctors - , stdenv, transformers - }: - mkDerivation { - pname = "optics-core"; - version = "0.2"; - sha256 = "287ff8c28cba855aa9d247f3ed6d476338039653e99a2f3312f9f5ce51571aa6"; - libraryHaskellDepends = [ - array base containers indexed-profunctors transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics as an abstract interface: core definitions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-extra" = callPackage - ({ mkDerivation, array, base, bytestring, containers, hashable - , indexed-profunctors, mtl, optics-core, stdenv, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "optics-extra"; - version = "0.2"; - sha256 = "a195bf9ae05486883a5995f6d026ebf1db08a5e3781c966fe069a1187d23c69a"; - libraryHaskellDepends = [ - array base bytestring containers hashable indexed-profunctors mtl - optics-core text transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities and instances for optics-core"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-th" = callPackage - ({ mkDerivation, base, containers, mtl, optics-core, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "optics-th"; - version = "0.2"; - sha256 = "683b64191056a730dcb2927be1f8c937b985754b60af7f607b01e3575692118a"; - libraryHaskellDepends = [ - base containers mtl optics-core template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Optics construction using TemplateHaskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optics-vl" = callPackage - ({ mkDerivation, base, indexed-profunctors, optics-core - , profunctors, stdenv - }: - mkDerivation { - pname = "optics-vl"; - version = "0.2"; - sha256 = "dda8f7a4104cc4881e1194990d227d12bda4d8320c3e09993b9aaf91140ca63d"; - libraryHaskellDepends = [ - base indexed-profunctors optics-core profunctors - ]; - doHaddock = false; - doCheck = false; - description = "Utilities for compatibility with van Laarhoven optics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optional-args" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "optional-args"; - version = "1.0.2"; - sha256 = "2e3454ad77cba80b15c02dbe1915889fafa81a22deb7fe5e7e01b0dd8d85b0e4"; - revision = "1"; - editedCabalFile = "0fda6mhm44qpbc9hfkf6jxnm3a7qszabywsmxa2iw0dz734a9xl3"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Optional function arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "options" = callPackage - ({ mkDerivation, base, containers, monads-tf, stdenv, transformers - }: - mkDerivation { - pname = "options"; - version = "1.2.1.1"; - sha256 = "283eea9ae2c539830c6c65f5c03fb00626cfd1274da0526c285c146fc3065a62"; - libraryHaskellDepends = [ base containers monads-tf transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-options/"; - description = "A powerful and easy-to-use command-line option parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "optparse-applicative" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, process, stdenv - , transformers, transformers-compat - }: - mkDerivation { - pname = "optparse-applicative"; - version = "0.15.1.0"; - sha256 = "4db3675fd1e0594afdf079db46f4cd412d483835d703e7c07e1a1a37d6f046f3"; - libraryHaskellDepends = [ - ansi-wl-pprint base process transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pcapriotti/optparse-applicative"; - description = "Utilities and combinators for parsing command line options"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-generic" = callPackage - ({ mkDerivation, base, bytestring, Only, optparse-applicative - , semigroups, stdenv, system-filepath, text, time, transformers - , void - }: - mkDerivation { - pname = "optparse-generic"; - version = "1.3.1"; - sha256 = "009bf703d13e1e5833c74ac5bbfa324b85d5180eb80e89cb3f10d94a8a874e30"; - libraryHaskellDepends = [ - base bytestring Only optparse-applicative semigroups - system-filepath text time transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Auto-generate a command-line parser for your datatype"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-simple" = callPackage - ({ mkDerivation, base, githash, optparse-applicative, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "optparse-simple"; - version = "0.1.1.2"; - sha256 = "02716473cc57ff1212c5174cc213f5b1bb744e680c222a4ae97e0b12f38400e4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base githash optparse-applicative template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/optparse-simple#readme"; - description = "Simple interface to optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "optparse-text" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv, text }: - mkDerivation { - pname = "optparse-text"; - version = "0.1.1.0"; - sha256 = "f6c081ecec880ae4124f25c1d91ba3a1a3caed9d2fde9e977bceab7d300884ef"; - libraryHaskellDepends = [ base optparse-applicative text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/passy/optparse-text#readme"; - description = "Data.Text helpers for optparse-applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ordered-containers" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "ordered-containers"; - version = "0.2.2"; - sha256 = "c75ac7330e70cd5d6ac0062b68033779cf15cd986d4ca20f838e016d466d22c9"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Set- and Map-like types that remember the order elements were inserted"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ormolu" = callPackage - ({ mkDerivation, base, bytestring, containers, dlist, exceptions - , ghc-lib-parser, gitrev, mtl, optparse-applicative, stdenv, syb - , text - }: - mkDerivation { - pname = "ormolu"; - version = "0.0.3.1"; - sha256 = "8fb635d49812aac4b50a5dc04fbf07a3d6e586825a04606d6b2e81d817d7765f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers dlist exceptions ghc-lib-parser mtl syb - text - ]; - executableHaskellDepends = [ - base ghc-lib-parser gitrev optparse-applicative text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tweag/ormolu"; - description = "A formatter for Haskell source code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "overhang" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "overhang"; - version = "1.0.0"; - sha256 = "1d68f59354930cdb4372adb86386ca9cbd699d90d2d8c8a1042314f296772a1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/overhang#readme"; - description = "Hang loose with your lambdas!"; - license = stdenv.lib.licenses.mit; - }) {}; - "packcheck" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "packcheck"; - version = "0.4.2"; - sha256 = "da47a26a684b3541542e4f4e7095d2a6bc69e9c47d6953db4baf9084b7ca467d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/harendra-kumar/packcheck"; - description = "Universal build and CI testing for Haskell packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pager" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-extra - , directory, process, resourcet, safe, stdenv, terminfo, text - , transformers, unix - }: - mkDerivation { - pname = "pager"; - version = "0.1.1.0"; - sha256 = "3e1e4f2ca17be6dd68d2d480f29e7a770c0f7ca3109aa1980da677d96cd4eef3"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring conduit conduit-extra directory process resourcet - safe terminfo text transformers unix - ]; - executableHaskellDepends = [ base bytestring conduit-extra text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pharpend/pager"; - description = "Open up a pager, like 'less' or 'more'"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pagination" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv }: - mkDerivation { - pname = "pagination"; - version = "0.2.1"; - sha256 = "88dcbae69e830adac0943f24f8ae6915f9e4ba684531a76bce936767cbeb203d"; - revision = "2"; - editedCabalFile = "0wvwi3hymp2vhhpzpycdc65zbsqmi2h0c6r0nf8p5nkgsk4pm1k2"; - libraryHaskellDepends = [ base deepseq exceptions ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/pagination"; - description = "Framework-agnostic pagination boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc" = callPackage - ({ mkDerivation, aeson, aeson-pretty, attoparsec, base - , base64-bytestring, binary, blaze-html, blaze-markup, bytestring - , case-insensitive, cmark-gfm, containers, data-default, deepseq - , directory, doclayout, doctemplates, emojis, exceptions, filepath - , Glob, haddock-library, hslua, hslua-module-system - , hslua-module-text, HsYAML, HTTP, http-client, http-client-tls - , http-types, ipynb, jira-wiki-markup, JuicyPixels, mtl, network - , network-uri, pandoc-types, parsec, process, random, safe - , scientific, SHA, skylighting, skylighting-core, split, stdenv - , syb, tagsoup, temporary, texmath, text, text-conversions, time - , unicode-transforms, unix, unordered-containers, vector, xml - , zip-archive, zlib - }: - mkDerivation { - pname = "pandoc"; - version = "2.9.1.1"; - sha256 = "9d21c5efe2074f9b3097a20e0798de9d8b89a86a1ce04a307f476c7b4aa3816d"; - configureFlags = [ "-fhttps" "-f-trypandoc" ]; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson aeson-pretty attoparsec base base64-bytestring binary - blaze-html blaze-markup bytestring case-insensitive cmark-gfm - containers data-default deepseq directory doclayout doctemplates - emojis exceptions filepath Glob haddock-library hslua - hslua-module-system hslua-module-text HsYAML HTTP http-client - http-client-tls http-types ipynb jira-wiki-markup JuicyPixels mtl - network network-uri pandoc-types parsec process random safe - scientific SHA skylighting skylighting-core split syb tagsoup - temporary texmath text text-conversions time unicode-transforms - unix unordered-containers vector xml zip-archive zlib - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - postInstall = '' - mkdir -p $out/share/man/man1 - mv "man/"*.1 $out/share/man/man1/ - ''; - homepage = "https://pandoc.org"; - description = "Conversion between markup formats"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "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, rfc5051, safe, setenv, split, stdenv, syb - , tagsoup, text, time, unordered-containers, vector, xml-conduit - , yaml - }: - mkDerivation { - pname = "pandoc-citeproc"; - version = "0.16.4.1"; - sha256 = "bd726878595ca66376c9536addc81a19bbab8f3517d41aa72165582dd0336dc9"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/pandoc-citeproc"; - description = "Supports using pandoc with citeproc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pandoc-csv2table" = callPackage - ({ mkDerivation, base, csv, pandoc, pandoc-types, stdenv, text }: - mkDerivation { - pname = "pandoc-csv2table"; - version = "1.0.8"; - sha256 = "eb11a1cf4bc32fad31e7457fa93b1c2580fb6f9372f618851ad195ce8453c069"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base csv pandoc pandoc-types text ]; - executableHaskellDepends = [ base csv pandoc pandoc-types ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/baig/pandoc-csv2table-filter"; - description = "Convert CSV to Pandoc Table Markdown"; - license = stdenv.lib.licenses.mit; - }) {}; - "pandoc-plot" = callPackage - ({ mkDerivation, base, containers, data-default-class, deepseq - , directory, filepath, hashable, mtl, open-browser - , optparse-applicative, pandoc, pandoc-types, parallel-io - , shakespeare, stdenv, template-haskell, temporary, text, turtle - , typed-process, yaml - }: - mkDerivation { - pname = "pandoc-plot"; - version = "0.2.1.0"; - sha256 = "6bf8dda47b6f7c5b62de11a2821fd19e343dde7ae1560ef80ebdf5ba0c8aaae0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers data-default-class directory filepath hashable mtl - pandoc pandoc-types parallel-io shakespeare temporary text turtle - typed-process yaml - ]; - executableHaskellDepends = [ - base data-default-class deepseq directory filepath open-browser - optparse-applicative pandoc pandoc-types template-haskell temporary - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LaurentRDC/pandoc-plot#readme"; - description = "A Pandoc filter to include figures generated from code blocks using your plotting toolkit of choice"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-pyplot" = callPackage - ({ mkDerivation, base, containers, data-default-class, deepseq - , directory, filepath, hashable, mtl, open-browser - , optparse-applicative, pandoc, pandoc-types, shakespeare, stdenv - , template-haskell, temporary, text, typed-process, yaml - }: - mkDerivation { - pname = "pandoc-pyplot"; - version = "2.3.0.1"; - sha256 = "0ad47fc098156469e8aa8a99ccf0b2479d2dc24c476992c0e10ae361b70bee4a"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LaurentRDC/pandoc-pyplot#readme"; - description = "A Pandoc filter to include figures generated from Python code blocks"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "pandoc-types" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , ghc-prim, QuickCheck, stdenv, syb, text, transformers - }: - mkDerivation { - pname = "pandoc-types"; - version = "1.20"; - sha256 = "aac716bcf493e0cd53428fa8cd892fdd7af3a6184145c25543bf6fe8b94fe873"; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq ghc-prim QuickCheck syb - text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://pandoc.org/"; - description = "Types for representing a structured document"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "papillon" = callPackage - ({ mkDerivation, base, bytestring, directory, filepath, monads-tf - , stdenv, template-haskell, transformers - }: - mkDerivation { - pname = "papillon"; - version = "0.1.1.1"; - sha256 = "86283454bd4c7b4ee424a83097b23db6f8b1d896277c44b1a4f94388b61901fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring monads-tf template-haskell transformers - ]; - executableHaskellDepends = [ - base directory filepath monads-tf template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/papillon"; - description = "packrat parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel" = callPackage - ({ mkDerivation, array, base, containers, deepseq, ghc-prim, stdenv - }: - mkDerivation { - pname = "parallel"; - version = "3.2.2.0"; - sha256 = "170453a71a2a8b31cca63125533f7771d7debeb639700bdabdd779c34d8a6ef6"; - revision = "1"; - editedCabalFile = "0a3kn7arck8f2gwm8cwfkplsw4q9v9j6ifbhj1l3bmclmkwcckcj"; - libraryHaskellDepends = [ array base containers deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Parallel programming library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parallel-io" = callPackage - ({ mkDerivation, base, containers, extensible-exceptions, random - , stdenv - }: - mkDerivation { - pname = "parallel-io"; - version = "0.3.3"; - sha256 = "3a14c02b9b8b7c72577eb90a8dd72de75d99192def87d7aa79545ee4d6e80645"; - revision = "2"; - editedCabalFile = "0mggzni708nzxlsjbibdzf03s3b5lnqj2zi1hnbh1rd4j4jr07ym"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers extensible-exceptions random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://batterseapower.github.com/parallel-io"; - description = "Combinators for executing IO actions in parallel on a thread pool"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "paripari" = callPackage - ({ mkDerivation, base, bytestring, parser-combinators, stdenv, text - }: - mkDerivation { - pname = "paripari"; - version = "0.6.0.1"; - sha256 = "26cc3ba2a3826e455805f6cf04dfd2f2a1971bd4362b8bbfc2f46a2f1acf02c5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring parser-combinators text - ]; - executableHaskellDepends = [ - base bytestring parser-combinators text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/paripari#readme"; - description = "Parser combinators with fast-path and slower fallback for error reporting"; - license = stdenv.lib.licenses.mit; - }) {}; - "parseargs" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "parseargs"; - version = "0.2.0.9"; - sha256 = "3c469ddcee3a63ef790d88f676dcf99b9d90b8815112f18c17febafc9e8025a9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/BartMassey/parseargs"; - description = "Parse command-line arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec" = callPackage - ({ mkDerivation, base, bytestring, mtl, stdenv, text }: - mkDerivation { - pname = "parsec"; - version = "3.1.14.0"; - sha256 = "c72c92e07ee1d2ec0a423b89fdc11e0863725675f3c2d5621509d9cb84545c8c"; - libraryHaskellDepends = [ base bytestring mtl text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/parsec"; - description = "Monadic parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-class" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-class"; - version = "1.0.0.0"; - sha256 = "029c4ec5e6b0efd0505f1051c29c02060ddab3018b9aef4c4ae96a99f58e1773"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/parsec-class"; - description = "Class of types that can be constructed from their text representation"; - license = stdenv.lib.licenses.mit; - }) {}; - "parsec-numbers" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numbers"; - version = "0.1.0"; - sha256 = "77019a4817712f6bfc61c9d148b680579955eb40d286f7766f7b0a90c726febf"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - description = "Utilities for parsing numbers from strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsec-numeric" = callPackage - ({ mkDerivation, base, parsec, stdenv }: - mkDerivation { - pname = "parsec-numeric"; - version = "0.1.0.0"; - sha256 = "7bdd9ae4aa63695e3072c73d99b85ef1572ffe9f5a07621edaa9515393a6e52f"; - libraryHaskellDepends = [ base parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrewRademacher/parsec-numeric"; - description = "Parsec combinators for parsing Haskell numeric types"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "parser-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "parser-combinators"; - version = "1.2.1"; - sha256 = "03162e40cde50253529fa452165b681d5064d03ad07992800702156adfb6254d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Lightweight package providing commonly useful parser combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parser-combinators-tests" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "parser-combinators-tests"; - version = "1.2.1"; - sha256 = "a86ba485c7ba19013bddb5f1ad87e38d4e04ebaea303637c6c414d79a58ac447"; - isLibrary = false; - isExecutable = false; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/parser-combinators"; - description = "Test suite of parser-combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "parsers" = callPackage - ({ mkDerivation, attoparsec, base, base-orphans, binary, charset - , containers, mtl, parsec, scientific, semigroups, stdenv, text - , transformers, unordered-containers - }: - mkDerivation { - pname = "parsers"; - version = "0.12.10"; - sha256 = "17b91f1318ca54679395b382a056df633fdb44fbb962eca66b1787f957af1a6c"; - libraryHaskellDepends = [ - attoparsec base base-orphans binary charset containers mtl parsec - scientific semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/parsers/"; - description = "Parsing combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "partial-handler" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "partial-handler"; - version = "1.0.3"; - sha256 = "94c72af024417ec04e3d94b5b57c7bfeb8b48acb8444e7c0fe0764ff1139c131"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/partial-handler"; - description = "A composable exception handler"; - license = stdenv.lib.licenses.mit; - }) {}; - "partial-isomorphisms" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "partial-isomorphisms"; - version = "0.2.2.1"; - sha256 = "4c551fa69119e87de1ba0ec7b854f6ed13fb2fe2768db4afff2f8468f0f4a164"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.informatik.uni-marburg.de/~rendel/unparse"; - description = "Partial isomorphisms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "password" = callPackage - ({ mkDerivation, base, scrypt, stdenv, text }: - mkDerivation { - pname = "password"; - version = "1.0.0.0"; - sha256 = "0cd07f914d36724cf082d42e0aae9d9363aff5c114d93a95a5e09d26917a2f22"; - libraryHaskellDepends = [ base scrypt text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/password/password#readme"; - description = "plain-text password and hashed password datatypes and functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "password-instances" = callPackage - ({ mkDerivation, aeson, base, http-api-data, password, persistent - , stdenv - }: - mkDerivation { - pname = "password-instances"; - version = "1.0.0.0"; - sha256 = "21d1baff6e4cfb980dcaf8f2d68e86c8d70b6b6ca790285fdd9fc403848c0745"; - libraryHaskellDepends = [ - aeson base http-api-data password persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/password/password-instances#readme"; - description = "typeclass instances for password package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path" = callPackage - ({ mkDerivation, aeson, base, deepseq, exceptions, filepath - , hashable, stdenv, template-haskell, text - }: - mkDerivation { - pname = "path"; - version = "0.7.0"; - sha256 = "b328d285381ce00607444c96cf6d1bf4aa30e8dcb8e82017e5a33636abf487b6"; - revision = "1"; - editedCabalFile = "0ph5qs50lm8ac58v8df0mmivqfilb1wz14568q06aws6gwj9qqpi"; - libraryHaskellDepends = [ - aeson base deepseq exceptions filepath hashable template-haskell - text - ]; - doHaddock = false; - doCheck = false; - description = "Support for well-typed paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-extra" = callPackage - ({ mkDerivation, attoparsec, base, path, stdenv, text }: - mkDerivation { - pname = "path-extra"; - version = "0.2.0"; - sha256 = "eb08be914e718762cad0e1fc7588201258bd8637c486990791e5b816f7a8043a"; - libraryHaskellDepends = [ attoparsec base path text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/path-extra#readme"; - description = "URLs without host information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-io" = callPackage - ({ mkDerivation, base, containers, directory, dlist, exceptions - , filepath, path, stdenv, temporary, time, transformers - , unix-compat - }: - mkDerivation { - pname = "path-io"; - version = "1.6.0"; - sha256 = "73e420ad029626182ad56c200640500e67fdb40b939c6e6e2a15363879ef8d41"; - revision = "1"; - editedCabalFile = "1kwrkpmwmar8nwaar02m3kfy24vl3kzm0m3iq0d4ryd84a6a0dax"; - libraryHaskellDepends = [ - base containers directory dlist exceptions filepath path temporary - time transformers unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/path-io"; - description = "Interface to ‘directory’ package for users of ‘path’"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "path-pieces" = callPackage - ({ mkDerivation, base, stdenv, text, time }: - mkDerivation { - pname = "path-pieces"; - version = "0.2.1"; - sha256 = "080bd49f53e20597ca3e5962e0c279a3422345f5b088840a30a751cd76d4a36f"; - revision = "1"; - editedCabalFile = "0p7wsphh513s8l5d62lzgbhk2l1h6kj5y7bc27qqjsry9g8ah4y7"; - libraryHaskellDepends = [ base text time ]; - doHaddock = false; - doCheck = false; - description = "Components of paths"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathtype" = callPackage - ({ mkDerivation, base, deepseq, directory, QuickCheck, semigroups - , stdenv, tagged, time, transformers, utility-ht - }: - mkDerivation { - pname = "pathtype"; - version = "0.8.1"; - sha256 = "d5e6dc557dcf53e97cc2f7f6d6ee30992920e3ea074042b6ac11f74f2792340f"; - configureFlags = [ "-f-old-time" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base deepseq directory QuickCheck semigroups tagged time - transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pathtype/"; - description = "Type-safe replacement for System.FilePath etc"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pathwalk" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv, transformers }: - mkDerivation { - pname = "pathwalk"; - version = "0.3.1.2"; - sha256 = "76e0d0646a3133a062dbae4e9d37d59e71d6328706bb178552a93800e4550e91"; - libraryHaskellDepends = [ base directory filepath transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Xe/pathwalk"; - description = "Path walking utilities for Haskell programs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pattern-arrows" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "pattern-arrows"; - version = "0.0.2"; - sha256 = "6fc2d972e72785d727d2b68e1f82ef94a2c93cedbc00e6a4cdc03498825c078f"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://blog.functorial.com/posts/2013-10-27-Pretty-Printing-Arrows.html"; - description = "Arrows for Pretty Printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "pcg-random" = callPackage - ({ mkDerivation, base, bytestring, Cabal, cabal-doctest, entropy - , primitive, random, stdenv - }: - mkDerivation { - pname = "pcg-random"; - version = "0.1.3.6"; - sha256 = "085012ff6a319ac9d4f69b1c62ea6fe1d69e723f30200cfe5d521d2058b41dd5"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base bytestring entropy primitive random - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/cchalmers/pcg-random"; - description = "Haskell bindings to the PCG random number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pcre-heavy" = callPackage - ({ mkDerivation, base, base-compat, bytestring, pcre-light - , semigroups, stdenv, string-conversions, template-haskell - }: - mkDerivation { - pname = "pcre-heavy"; - version = "1.0.0.2"; - sha256 = "8a5cf697b7683127812450cef57d0d74ac5c1117ec80618d10509642f793cbd1"; - revision = "1"; - editedCabalFile = "14pprgwxkiaji3rqhsm0fv454wic6qxm7vy4a475yigadb1vz1ls"; - libraryHaskellDepends = [ - base base-compat bytestring pcre-light semigroups - string-conversions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/myfreeweb/pcre-heavy"; - description = "A regexp (regex) library on top of pcre-light you can actually use"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "pcre-light" = callPackage - ({ mkDerivation, base, bytestring, pcre, stdenv }: - mkDerivation { - pname = "pcre-light"; - version = "0.4.1.0"; - sha256 = "16f6bfaa320bba91cd0c1a502d871c1c7a3a2de2d58dfaa2d90dba6558d51b53"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/pcre-light"; - description = "Portable regex library for Perl 5 compatible regular expressions"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "pcre-utils" = callPackage - ({ mkDerivation, array, attoparsec, base, bytestring, mtl - , regex-pcre-builtin, stdenv, vector - }: - mkDerivation { - pname = "pcre-utils"; - version = "0.1.8.1.1"; - sha256 = "1f2a80ca63308e182542534866a844efaf880deac4145213bf1c83a560586df4"; - libraryHaskellDepends = [ - array attoparsec base bytestring mtl regex-pcre-builtin vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bartavelle/pcre-utils"; - description = "Perl-like substitute and split for PCRE regexps"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pdfinfo" = callPackage - ({ mkDerivation, base, mtl, old-locale, process-extras, stdenv - , text, time, time-locale-compat - }: - mkDerivation { - pname = "pdfinfo"; - version = "1.5.4"; - sha256 = "9a6a1f7d8ab0a5e8f7f8276da070ccddec140d6b2549b084042159b639230911"; - libraryHaskellDepends = [ - base mtl old-locale process-extras text time time-locale-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chrisdone/pdfinfo"; - description = "Wrapper around the pdfinfo command"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "peano" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "peano"; - version = "0.1.0.1"; - sha256 = "31fdd23993a76155738224a7b230a1a6fcfde091b2fbc945df4cb54068eeec7b"; - revision = "2"; - editedCabalFile = "10b0vjc7lnfkscg2c8hhqbvf1xdvgbr3njrs9b4ick91n44vjbhk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Peano numbers"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "pem" = callPackage - ({ mkDerivation, base, basement, bytestring, memory, stdenv }: - mkDerivation { - pname = "pem"; - version = "0.2.4"; - sha256 = "770c4c1b9cd24b3db7f511f8a48404a0d098999e28573c3743a8a296bb96f8d4"; - libraryHaskellDepends = [ base basement bytestring memory ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-pem"; - description = "Privacy Enhanced Mail (PEM) format reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "percent-format" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "percent-format"; - version = "0.0.1"; - sha256 = "7530a64ba6f1ac2b59bdc325f3a8a6f0006b4a24dc2cd86eb2b41ab46d460c09"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/percent-format#readme"; - description = "simple printf-style string formatting"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "perfect-hash-generator" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, data-ordlist - , directory, filepath, hashable, optparse-applicative, random - , stdenv, text, unordered-containers, vector - }: - mkDerivation { - pname = "perfect-hash-generator"; - version = "0.2.0.6"; - sha256 = "df727611ca45994fc40e3e37ebae783a892f3b46db95897ba2df876e65f7b110"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-ordlist directory filepath - hashable text unordered-containers vector - ]; - executableHaskellDepends = [ - base binary bytestring containers hashable optparse-applicative - random text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kostmo/perfect-hash-generator#readme"; - description = "Perfect minimal hashing implementation in native Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "perfect-vector-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, primitive, random, stdenv - , vector - }: - mkDerivation { - pname = "perfect-vector-shuffle"; - version = "0.1.1.1"; - sha256 = "c017bfd1794cc6c2c28dea260327a329f6a557a1d410e5da7ea0d1b435d991fc"; - revision = "1"; - editedCabalFile = "1pnxrzncwi5qmmyjimjdjhgh65n9kxs663b356rnpdf7brc5bxa0"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base MonadRandom primitive random vector - ]; - executableHaskellDepends = [ - base MonadRandom primitive random vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Boarders/perfect-vector-shuffle"; - description = "Library for performing vector shuffles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "persist"; - version = "0.1.1.4"; - sha256 = "a4f507229a2831a87813f11d1bdf720bf1b5cb7f15a2c2b28660f08f5da1253c"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/persist"; - description = "Minimal serialization library with focus on performance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistable-record" = callPackage - ({ mkDerivation, array, base, containers, dlist, names-th - , product-isomorphic, stdenv, template-haskell, th-data-compat - , transformers - }: - mkDerivation { - pname = "persistable-record"; - version = "0.6.0.4"; - sha256 = "6d3abe73d61cf691bb1b5a412fa8a6d8fcc5cb3070176041ad8953b63ca5f8f9"; - libraryHaskellDepends = [ - array base containers dlist names-th product-isomorphic - template-haskell th-data-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Binding between SQL database values and haskell records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , blaze-html, bytestring, conduit, containers, fast-logger - , http-api-data, monad-logger, mtl, path-pieces, resource-pool - , resourcet, scientific, silently, stdenv, template-haskell, text - , time, transformers, unliftio, unliftio-core, unordered-containers - , vector - }: - mkDerivation { - pname = "persistent"; - version = "2.10.5"; - sha256 = "f24bb7e0f2bbdc3ac7a6f5dd732027be8e498af52aea5ab85fef5e99fda12ef7"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring blaze-html bytestring - conduit containers fast-logger http-api-data monad-logger mtl - path-pieces resource-pool resourcet scientific silently - template-haskell text time transformers unliftio unliftio-core - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, multi-backend data serialization"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-mysql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, mysql, mysql-simple, persistent - , resource-pool, resourcet, stdenv, text, transformers - , unliftio-core - }: - mkDerivation { - pname = "persistent-mysql"; - version = "2.10.2.2"; - sha256 = "cb2de55c2dc7f12f95ecc145b70d6b89a8e427b98e589e451cbbe16fc7313dac"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - mysql mysql-simple persistent resource-pool resourcet text - transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using MySQL database server"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-pagination" = callPackage - ({ mkDerivation, base, conduit, esqueleto, foldl, microlens, mtl - , persistent, stdenv - }: - mkDerivation { - pname = "persistent-pagination"; - version = "0.1.1.1"; - sha256 = "b84cffbf30ff35a2c46aca46d22f5da7d4448c014e10ff032da27721bbf53d0f"; - libraryHaskellDepends = [ - base conduit esqueleto foldl microlens mtl persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/persistent-pagination#readme"; - description = "Efficient and correct pagination for persistent or esqueleto queries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "persistent-postgresql" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring, conduit - , containers, monad-logger, persistent, postgresql-libpq - , postgresql-simple, resource-pool, resourcet, stdenv, text, time - , transformers, unliftio-core - }: - mkDerivation { - pname = "persistent-postgresql"; - version = "2.10.1.2"; - sha256 = "8beef5071271c6bdfcb66929435c349808bfebef15b9e105bffb65650204f6e0"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring conduit containers monad-logger - persistent postgresql-libpq postgresql-simple resource-pool - resourcet text time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using postgresql"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-qq" = callPackage - ({ mkDerivation, base, haskell-src-meta, mtl, persistent, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "persistent-qq"; - version = "2.9.1.1"; - sha256 = "1a7f25adb21bc95bcd9e2f12928afb3169d28dfa9ef3323d2439cb5470a6ef99"; - libraryHaskellDepends = [ - base haskell-src-meta mtl persistent template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/persistent#readme"; - description = "Provides a quasi-quoter for raw SQL for persistent"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-sqlite" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, containers - , microlens-th, monad-logger, persistent, resource-pool, resourcet - , sqlite, stdenv, text, time, transformers, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "persistent-sqlite"; - version = "2.10.6.1"; - sha256 = "070da09621f04c9afe6916512ba01c8f17162c5fc82dcd22d777227d3476df68"; - configureFlags = [ "-fsystemlib" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring conduit containers microlens-th monad-logger - persistent resource-pool resourcet text time transformers - unliftio-core unordered-containers - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Backend for the persistent library using sqlite3"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) sqlite;}; - "persistent-template" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, http-api-data - , monad-control, monad-logger, path-pieces, persistent, stdenv - , template-haskell, text, th-lift-instances, transformers - , unordered-containers - }: - mkDerivation { - pname = "persistent-template"; - version = "2.8.2.1"; - sha256 = "325bc0596095553c44b0af9358d9b846dfc5954aac4c876e9829516282b169f0"; - libraryHaskellDepends = [ - aeson base bytestring containers http-api-data monad-control - monad-logger path-pieces persistent template-haskell text - th-lift-instances transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Type-safe, non-relational, multi-backend persistence"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-test" = callPackage - ({ mkDerivation, aeson, base, blaze-html, bytestring, conduit - , containers, exceptions, hspec, hspec-expectations, HUnit - , monad-control, monad-logger, path-pieces, persistent - , persistent-template, QuickCheck, quickcheck-instances, random - , resourcet, stdenv, text, time, transformers, transformers-base - , unliftio, unliftio-core, unordered-containers - }: - mkDerivation { - pname = "persistent-test"; - version = "2.0.3.1"; - sha256 = "bb691981fe90ac2979ff9fe92e57fb822d0006c99abc6a5c5572100b3c2b5885"; - libraryHaskellDepends = [ - aeson base blaze-html bytestring conduit containers exceptions - hspec hspec-expectations HUnit monad-control monad-logger - path-pieces persistent persistent-template QuickCheck - quickcheck-instances random resourcet text time transformers - transformers-base unliftio unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/persistent"; - description = "Tests for Persistent"; - license = stdenv.lib.licenses.mit; - }) {}; - "persistent-typed-db" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit, http-api-data - , monad-logger, path-pieces, persistent, persistent-template - , resource-pool, resourcet, stdenv, template-haskell, text - , transformers - }: - mkDerivation { - pname = "persistent-typed-db"; - version = "0.1.0.0"; - sha256 = "db9b8ffd61798e037cae455cf8149e010dc90befce885b9539434fb24d139f72"; - libraryHaskellDepends = [ - aeson base bytestring conduit http-api-data monad-logger - path-pieces persistent persistent-template resource-pool resourcet - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/parsonsmatt/persistent-typed-db#readme"; - description = "Type safe access to multiple database schemata"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pg-harness-client" = callPackage - ({ mkDerivation, base, bytestring, HTTP, stdenv }: - mkDerivation { - pname = "pg-harness-client"; - version = "0.6.0"; - sha256 = "d0624036ffa888edd9b5073a3c485400ef1057497f1748f5084c03818bcaf819"; - libraryHaskellDepends = [ base bytestring HTTP ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/BardurArantsson/pg-harness"; - description = "Client library for pg-harness-server"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "pg-transact" = callPackage - ({ mkDerivation, base, bytestring, exceptions, monad-control - , postgresql-simple, stdenv, transformers - }: - mkDerivation { - pname = "pg-transact"; - version = "0.3.1.1"; - sha256 = "8d5d61ebafdcb8e94d563e74bc9646519e45a2fddf327a708b0a59e5160c20fc"; - libraryHaskellDepends = [ - base bytestring exceptions monad-control postgresql-simple - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/pg-transact#readme"; - description = "A postgresql-simple transaction monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pgp-wordlist" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text, vector - }: - mkDerivation { - pname = "pgp-wordlist"; - version = "0.1.0.3"; - sha256 = "ef3b560276981def53abc01cbe3cb4d0bece8eaa8a210ee890729ee500c4e695"; - libraryHaskellDepends = [ base bytestring containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/quchen/pgp-wordlist"; - description = "Translate between binary data and a human-readable collection of words"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "phantom-state" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "phantom-state"; - version = "0.2.1.2"; - sha256 = "f978ef98e810e9a9e53f1479340ba7a28f80a64aba431322959cbf8c620c3811"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Phantom State Transformer. Like State Monad, but without values."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pid1" = callPackage - ({ mkDerivation, base, directory, process, stdenv, unix }: - mkDerivation { - pname = "pid1"; - version = "0.1.2.0"; - sha256 = "9e97bf9b4b6ffd6a9b706cc6d5fadd8089cd37d2b8763111bd743104db267f76"; - revision = "1"; - editedCabalFile = "11yg5pjci1d6p5ml0ic4vqn70vjx8vvhqs20rahgfqhh8palkyw9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/pid1#readme"; - description = "Do signal handling and orphan reaping for Unix PID1 init processes"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes" = callPackage - ({ mkDerivation, base, exceptions, mmorph, mtl, semigroups, stdenv - , transformers, void - }: - mkDerivation { - pname = "pipes"; - version = "4.3.13"; - sha256 = "76ba4f2832dae70b5f8d97e16fadd766c097f9bcd96b3a9abec0c5e24aee03b2"; - libraryHaskellDepends = [ - base exceptions mmorph mtl semigroups transformers void - ]; - doHaddock = false; - doCheck = false; - description = "Compositional pipelines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-aeson" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-aeson"; - version = "0.4.1.8"; - sha256 = "350411f492fefa8d5a2554e7521d22b7ee88bacbea9d27c0d22468f6355ebe75"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring pipes pipes-attoparsec - pipes-bytestring pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-aeson"; - description = "Encode and decode JSON streams using Aeson and Pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes, pipes-parse - , stdenv, text, transformers - }: - mkDerivation { - pname = "pipes-attoparsec"; - version = "0.5.1.5"; - sha256 = "fe9eb446289dbc4c4acdde39620877b885417990d9774f622fa9d1daa591cafd"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-parse text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-attoparsec"; - description = "Attoparsec and Pipes integration"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-binary" = callPackage - ({ mkDerivation, base, binary, bytestring, ghc-prim, pipes - , pipes-bytestring, pipes-parse, stdenv, transformers - }: - mkDerivation { - pname = "pipes-binary"; - version = "0.4.2"; - sha256 = "f659d9fd4c816b65abe14a67eb86f7605d15ab5bca5514b25fa6fd82a23064e8"; - libraryHaskellDepends = [ - base binary bytestring ghc-prim pipes pipes-bytestring pipes-parse - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/pipes-binary"; - description = "Encode and decode binary streams using the pipes and binary libraries"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-bytestring" = callPackage - ({ mkDerivation, base, bytestring, pipes, pipes-group, pipes-parse - , stdenv, stringsearch, transformers - }: - mkDerivation { - pname = "pipes-bytestring"; - version = "2.1.6"; - sha256 = "b1dc370680f3671759010caace183bce683d0481bd2c0e3f4906b78ac8623c18"; - libraryHaskellDepends = [ - base bytestring pipes pipes-group pipes-parse stringsearch - transformers - ]; - doHaddock = false; - doCheck = false; - description = "ByteString support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-concurrency" = callPackage - ({ mkDerivation, async, base, contravariant, pipes, semigroups - , stdenv, stm, void - }: - mkDerivation { - pname = "pipes-concurrency"; - version = "2.0.12"; - sha256 = "4343c67710e2fcd8987c537389773358150559bf06e86d96b1097c15ae81589d"; - revision = "2"; - editedCabalFile = "1c06nypirrd76jg5y508517smxh3izy98y6kj89k79kbpi5rncbj"; - libraryHaskellDepends = [ - async base contravariant pipes semigroups stm void - ]; - doHaddock = false; - doCheck = false; - description = "Concurrency for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-csv" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, cassava, pipes - , stdenv, unordered-containers, vector - }: - mkDerivation { - pname = "pipes-csv"; - version = "1.4.3"; - sha256 = "9485f5ddd56ec9bb10d26cdf2b5b67754726e36b167652b11cb0a42acbda68b3"; - libraryHaskellDepends = [ - base blaze-builder bytestring cassava pipes unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - description = "Fast, streaming csv parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "pipes-extras" = callPackage - ({ mkDerivation, base, foldl, lens, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-extras"; - version = "1.0.15"; - sha256 = "02a9633ac912fd48e9a5ca0e6b48a6e9541ce59d11243096ca6af6b25701cbb3"; - revision = "1"; - editedCabalFile = "0xrd5zwkr1c7lswzi91gxl3ndra8y9g2b4j00sszyy3w187a2zwi"; - libraryHaskellDepends = [ base foldl lens pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Extra utilities for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-fastx" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, pipes - , pipes-attoparsec, pipes-bytestring, stdenv - }: - mkDerivation { - pname = "pipes-fastx"; - version = "0.3.0.0"; - sha256 = "31264ba760bae1df3170a7d8da32f3e3fcb289545a33f369a94732e55e08ba75"; - libraryHaskellDepends = [ - attoparsec base bytestring pipes pipes-attoparsec pipes-bytestring - ]; - doHaddock = false; - doCheck = false; - description = "Streaming parsers for Fasta and Fastq"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-group" = callPackage - ({ mkDerivation, base, free, pipes, pipes-parse, stdenv - , transformers - }: - mkDerivation { - pname = "pipes-group"; - version = "1.0.12"; - sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7"; - revision = "1"; - editedCabalFile = "0ws99n692c9km68n9y3x0b5bqdg3b47sva04nx9a4xdqr8p5akps"; - libraryHaskellDepends = [ - base free pipes pipes-parse transformers - ]; - doHaddock = false; - doCheck = false; - description = "Group streams into substreams"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-http" = callPackage - ({ mkDerivation, base, bytestring, http-client, http-client-tls - , pipes, stdenv - }: - mkDerivation { - pname = "pipes-http"; - version = "1.0.6"; - sha256 = "a231fb08dfac54c1fac7a0c805f1b6c6e60a380021bb5722b508d6b36e4ba700"; - libraryHaskellDepends = [ - base bytestring http-client http-client-tls pipes - ]; - doHaddock = false; - doCheck = false; - description = "HTTP client with pipes interface"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-ordered-zip" = callPackage - ({ mkDerivation, base, pipes, pipes-safe, stdenv }: - mkDerivation { - pname = "pipes-ordered-zip"; - version = "1.1.0"; - sha256 = "4ab36773676178bbe31903b27d0dad52255d8269611ddae9b3fd28c2a0c740bb"; - libraryHaskellDepends = [ base pipes pipes-safe ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/githubuser/pipes-ordered-zip#readme"; - description = "merge two ordered Producers into a new Producer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-parse" = callPackage - ({ mkDerivation, base, pipes, stdenv, transformers }: - mkDerivation { - pname = "pipes-parse"; - version = "3.0.8"; - sha256 = "d28f831b2c8229cca567ee95570787d2dd3f5cfcff3b3c44ee308360a8c107a9"; - libraryHaskellDepends = [ base pipes transformers ]; - doHaddock = false; - doCheck = false; - description = "Parsing infrastructure for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-random" = callPackage - ({ mkDerivation, base, mwc-random, pipes, stdenv, vector }: - mkDerivation { - pname = "pipes-random"; - version = "1.0.0.5"; - sha256 = "b3ec59bde4d004db2130097c7d981e3fdaf3c63a0ba7e903da33673d3b034bf7"; - libraryHaskellDepends = [ base mwc-random pipes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fosskers/pipes-random"; - description = "Producers for handling randomness"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-safe" = callPackage - ({ mkDerivation, base, containers, exceptions, monad-control, mtl - , pipes, primitive, stdenv, transformers, transformers-base - }: - mkDerivation { - pname = "pipes-safe"; - version = "2.3.2"; - sha256 = "0c7b58bff49902319d9183f606e2a5a36d46298dcbbefd05b5bc43654571a682"; - libraryHaskellDepends = [ - base containers exceptions monad-control mtl pipes primitive - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - description = "Safety for the pipes ecosystem"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pipes-wai" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types, pipes - , stdenv, transformers, wai - }: - mkDerivation { - pname = "pipes-wai"; - version = "3.2.0"; - sha256 = "04a670df140c12b64f6f0d04b3c5571527f144ee429e7030bb62ec8785056d2a"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types pipes transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/iand675/pipes-wai"; - description = "A port of wai-conduit for the pipes ecosystem"; - license = stdenv.lib.licenses.mit; - }) {}; - "pkcs10" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, cryptonite, pem, stdenv, x509 - }: - mkDerivation { - pname = "pkcs10"; - version = "0.2.0.0"; - sha256 = "896e923f67bac4c7f0e48c9afca60f9ef5178e00fca9f179e8fdae3c12476294"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring cryptonite pem - x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fcomb/pkcs10-hs#readme"; - description = "PKCS#10 library"; - license = stdenv.lib.licenses.asl20; - }) {}; - "placeholders" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "placeholders"; - version = "0.1"; - sha256 = "652a78553dcaf6e11b4cd8f0e60010b32da299fbe57721df4bf9157e852d0346"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ahammar/placeholders"; - description = "Placeholders for use while developing Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "planb-token-introspection" = callPackage - ({ mkDerivation, aeson, aeson-casing, base, bytestring, containers - , http-client, http-client-tls, http-types, mtl, safe-exceptions - , stdenv, text, transformers - }: - mkDerivation { - pname = "planb-token-introspection"; - version = "0.1.4.0"; - sha256 = "e7fa0eccf6449c53bc0d682df9dd2cc0beda28230b79f104f8d8ac1574dff265"; - libraryHaskellDepends = [ - aeson aeson-casing base bytestring containers http-client - http-client-tls http-types mtl safe-exceptions text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/planb-token-introspection#readme"; - description = "Token Introspection for PlanB"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "plotlyhs" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , lucid, microlens, microlens-th, stdenv, text, time - }: - mkDerivation { - pname = "plotlyhs"; - version = "0.2.1"; - sha256 = "c95ed42c789d26165183c2cbb4e8a44065478cad0a80053ac8e6fa2a84c7ecb4"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring lucid microlens - microlens-th text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diffusionkinetics/open/plotlyhs"; - description = "Haskell bindings to Plotly.js"; - license = stdenv.lib.licenses.mit; - }) {}; - "pointed" = callPackage - ({ mkDerivation, base, comonad, containers, data-default-class - , hashable, kan-extensions, semigroupoids, semigroups, stdenv, stm - , tagged, transformers, transformers-compat, unordered-containers - }: - mkDerivation { - pname = "pointed"; - version = "5.0.1"; - sha256 = "b94635a5c8779238501a9156015422ce2fb4d5efd45d68999e8cbe2ecc5121dd"; - revision = "2"; - editedCabalFile = "00m4f6rgxa3qa72j3jzpg6rrd9k9n4ll2idxlyybil3lxd63r80w"; - libraryHaskellDepends = [ - base comonad containers data-default-class hashable kan-extensions - semigroupoids semigroups stm tagged transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/pointed/"; - description = "Pointed and copointed data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointedlist" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "pointedlist"; - version = "0.6.1"; - sha256 = "743cb0f89cbb128f8aa24c4519b262b561bf2cd607f83e94f9241e8af1cfba9b"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - description = "A zipper-like comonad which works as a list, tracking a position"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pointless-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "pointless-fun"; - version = "1.1.0.6"; - sha256 = "d05c59dac408a81766d676da2fb98025e75e0c3d0a07bdb458759d5c41e3b054"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Some common point-free combinators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poll" = callPackage - ({ mkDerivation, base, enumset, stdenv, utility-ht }: - mkDerivation { - pname = "poll"; - version = "0.0.0.1"; - sha256 = "b9fe87fe1b4d3ecb2ad3c1c290e231b0c93d498f0d318f67018a1dde97a0ed29"; - libraryHaskellDepends = [ base enumset utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Bindings to poll.h"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly" = callPackage - ({ mkDerivation, base, deepseq, primitive, semirings, stdenv - , vector, vector-algorithms - }: - mkDerivation { - pname = "poly"; - version = "0.3.3.0"; - sha256 = "565d079e1958c10ee36448822d253dc4fb48ba660cc1733cf3fa46e7bf3d47c2"; - revision = "1"; - editedCabalFile = "0iv4363iq22hkwrkgsijgv8ykvj26q895rsbzrrzkydblf4psra9"; - libraryHaskellDepends = [ - base deepseq primitive semirings vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/poly#readme"; - description = "Polynomials"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "poly-arity" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "poly-arity"; - version = "0.1.0"; - sha256 = "cb10a644fe04de8e703942f4bd0d97c4df0f9e3915d33a494994e85830cfdd29"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Tools for working with functions of undetermined arity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "polynomials-bernstein" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "polynomials-bernstein"; - version = "1.1.2"; - sha256 = "6950f2e791533a40e7e41ff98679f680f27c7b66258b57871027bf0e5adc7062"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - description = "A solver for systems of polynomial equations in bernstein form"; - license = "GPL"; - }) {}; - "polyparse" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "polyparse"; - version = "1.13"; - sha256 = "1c4c72980e1e5a4f07fea65ca08b2399581d2a6aa21eb1078f7ad286c279707b"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~malcolm/polyparse/"; - description = "A variety of alternative parser combinator libraries"; - license = "LGPL"; - }) {}; - "polysemy" = callPackage - ({ mkDerivation, async, base, Cabal, cabal-doctest, containers - , first-class-families, loopbreaker, mtl, stdenv, stm, syb - , template-haskell, th-abstraction, transformers, type-errors - , type-errors-pretty, unagi-chan - }: - mkDerivation { - pname = "polysemy"; - version = "1.2.3.0"; - sha256 = "c34f5934729332fce736409ab2ebc9a12bca013adc02216e215cea5fe798606d"; - revision = "2"; - editedCabalFile = "0dzmkna6jb2im9kdslp90z6ynk2qzzg2j495i3y933ywdavvci93"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - async base containers first-class-families loopbreaker mtl stm syb - template-haskell th-abstraction transformers type-errors - type-errors-pretty unagi-chan - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/polysemy#readme"; - description = "Higher-order, low-boilerplate, zero-cost free monads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pooled-io" = callPackage - ({ mkDerivation, base, concurrent-split, containers, deepseq - , stdenv, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "pooled-io"; - version = "0.0.2.2"; - sha256 = "3a5b51356c2c0844ac085d9ad073851d46426a09ffb59bcbfb8e072de4bd1fbd"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base concurrent-split containers deepseq transformers unsafe - utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/pooled-io/"; - description = "Run jobs on a limited number of threads and support data dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "port-utils" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "port-utils"; - version = "0.2.1.0"; - sha256 = "b6f830946a9daa829bb14dc7f105f28ae2cfa2ee8540af8550e3c975ac7117de"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/port-utils#readme"; - description = "Utilities for creating and waiting on ports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "posix-paths" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "posix-paths"; - version = "0.2.1.6"; - sha256 = "7239746716761bfc268b60348c5da3c2cf098fe2583f365096a6bef10f637e45"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - description = "POSIX filepath/directory functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "possibly" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "possibly"; - version = "1.0.0.0"; - sha256 = "52cd989873c966faffe60d0fe41a0222cb4dccc50313f9c9ed61a0d09db5ea22"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/enum-text#readme"; - description = "type Possibly a = Either String a"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "post-mess-age" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "post-mess-age"; - version = "0.2.1.0"; - sha256 = "d0f69ab1cb130a9f8bb54cd1f3b0167184af885fedba89ff32fec8e54e95d64c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Send messages to a handle concurrently without getting them mixed"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgres-options" = callPackage - ({ mkDerivation, base, bytestring, generic-monoid, split, stdenv - , uri-bytestring - }: - mkDerivation { - pname = "postgres-options"; - version = "0.2.0.0"; - sha256 = "c45f459abcc797d0707c1931301434037acdfada33e47c843f219cf35609d9b5"; - libraryHaskellDepends = [ - base bytestring generic-monoid split uri-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/postgres-options#readme"; - description = "An Options type representing options for postgres connections"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "postgresql-binary" = callPackage - ({ mkDerivation, aeson, base, base-prelude, binary-parser - , bytestring, bytestring-strict-builder, containers, loch-th - , network-ip, placeholders, scientific, stdenv, text, time - , transformers, unordered-containers, uuid, vector - }: - mkDerivation { - pname = "postgresql-binary"; - version = "0.12.2"; - sha256 = "68af247669bdb9303e40d4efd5f8a57f3f6e328050f665df0f3790f010e570fe"; - libraryHaskellDepends = [ - aeson base base-prelude binary-parser bytestring - bytestring-strict-builder containers loch-th network-ip - placeholders scientific text time transformers unordered-containers - uuid vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/postgresql-binary"; - description = "Encoders and decoders for the PostgreSQL's binary format"; - license = stdenv.lib.licenses.mit; - }) {}; - "postgresql-libpq" = callPackage - ({ mkDerivation, base, bytestring, Cabal, postgresql, stdenv, unix - }: - mkDerivation { - pname = "postgresql-libpq"; - version = "0.9.4.2"; - sha256 = "cea053c79ef1505c30518db7b9fb2ee68c9e2915d48b22f01f8eb9a9b49f06f9"; - revision = "1"; - editedCabalFile = "0hilyfb2gjh471ia2g8mwjs56ykrgl0qd06vpigwhc493ia7a9mv"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring unix ]; - librarySystemDepends = [ postgresql ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/postgresql-libpq"; - description = "low-level binding to libpq"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) postgresql;}; - "postgresql-orm" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , bytestring-builder, directory, filepath, ghc-prim - , haskell-src-exts, mtl, old-locale, postgresql-simple, process - , stdenv, temporary, text, time, transformers, unix - , unordered-containers, vector - }: - mkDerivation { - pname = "postgresql-orm"; - version = "0.5.1"; - sha256 = "a3507e5ccdb8712dbd8c228b706ce6303f4c0794d4d48fd8a683f4ce7cd10a3b"; - 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 ]; - doHaddock = false; - doCheck = false; - description = "An ORM (Object Relational Mapping) and migrations DSL for PostgreSQL"; - license = "GPL"; - }) {}; - "postgresql-simple" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring - , bytestring-builder, case-insensitive, containers, hashable, Only - , postgresql-libpq, scientific, stdenv, template-haskell, text - , time, transformers, uuid-types, vector - }: - mkDerivation { - pname = "postgresql-simple"; - version = "0.6.2"; - sha256 = "fbfaf2b326d5d43798f60b25862a9ac5006c0074fe295ba523fb55443a75f396"; - revision = "2"; - editedCabalFile = "1rlawj79mfff915bz5fr62g5ig4pfh77m30xrq8q71s6ql0ly4bj"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring bytestring-builder - case-insensitive containers hashable Only postgresql-libpq - scientific template-haskell text time transformers uuid-types - vector - ]; - doHaddock = false; - doCheck = false; - description = "Mid-Level PostgreSQL client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pptable" = callPackage - ({ mkDerivation, base, boxes, containers, generic-deriving, pretty - , stdenv, syb, vector - }: - mkDerivation { - pname = "pptable"; - version = "0.3.0.0"; - sha256 = "98b7ff404eceaad834b16187af44db37324d3bfaa631347794bb0f28a6dd9317"; - revision = "1"; - editedCabalFile = "0c1srvgwyczbfnw3zw5pbsjqgxifq9yb1h60w3aq91q7iamrvdgb"; - libraryHaskellDepends = [ - base boxes containers generic-deriving pretty syb vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/gdevanla/pptable#readme"; - description = "Pretty Print containers in a tabular format"; - license = stdenv.lib.licenses.mit; - }) {}; - "pqueue" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "pqueue"; - version = "1.4.1.2"; - sha256 = "d2aaacbe069a5dac61cee677c68eb34d74afa09c59d90d43e2fa07a6c5869fec"; - revision = "1"; - editedCabalFile = "1la186z2np3nv06p0485xwg342gyjp7a2ikg73qs7mbg086352zs"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Reliable, persistent, fast priority queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prefix-units" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prefix-units"; - version = "0.2.0"; - sha256 = "050abdf827a5bd014a2628b195fbd59bb226020612c99e86a082ac1c8274e384"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iustin/prefix-units"; - description = "A basic library for SI/binary prefix units"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-compat" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-compat"; - version = "0.0.0.2"; - sha256 = "c1250f8e9a9f134f89292a31067958dc7eec2871abc1e7631a0bf3324b0360d7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Provide Prelude and Data.List with fixed content across GHC versions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prelude-safeenum" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "prelude-safeenum"; - version = "0.1.1.2"; - sha256 = "d4f9f195d31198fa1a5e1edfb50684971cc5dc2695bf38c1e7e2dabdce329727"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "A redefinition of the Prelude's Enum class in order to render it safe"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-class" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "pretty-class"; - version = "1.0.1.1"; - sha256 = "558d1b506ff58afb0a5fb9d85ea93a94687cc1aabcc5a112a6ee4375a7b8aee1"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ddssff/pretty-class"; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-hex" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "pretty-hex"; - version = "1.1"; - sha256 = "27c78f299151a9a844f4a2c0f629fb99160901e78f78a688cb088bd532501731"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "A library for hex dumps of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-show" = callPackage - ({ mkDerivation, array, base, filepath, ghc-prim, happy - , haskell-lexer, pretty, stdenv, text - }: - mkDerivation { - pname = "pretty-show"; - version = "1.9.5"; - sha256 = "b095bebb79951d2e25a543a591844fb638165672d7b95d325844611297ba423f"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - array base filepath ghc-prim haskell-lexer pretty text - ]; - libraryToolDepends = [ happy ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.github.com/yav/pretty-show"; - description = "Tools for working with derived `Show` instances and generic inspection of values"; - license = stdenv.lib.licenses.mit; - }) {}; - "pretty-simple" = callPackage - ({ mkDerivation, ansi-terminal, base, Cabal, cabal-doctest - , containers, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "pretty-simple"; - version = "3.2.1.0"; - sha256 = "c653e82be7934ae47d1816a9be500d8e18fd2a7d49e5c46eba0f1f2facdb9605"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal base containers mtl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/pretty-simple"; - description = "pretty printer for data types with a 'Show' instance"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-sop" = callPackage - ({ mkDerivation, base, generics-sop, pretty-show, stdenv }: - mkDerivation { - pname = "pretty-sop"; - version = "0.2.0.3"; - sha256 = "bedb878698d798f4d4367fd2fd8f6c3a69cb33e41c17364274233f3c175f7e83"; - libraryHaskellDepends = [ base generics-sop pretty-show ]; - doHaddock = false; - doCheck = false; - description = "A generic pretty-printer using generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pretty-types" = callPackage - ({ mkDerivation, base, mtl, stdenv, tagged }: - mkDerivation { - pname = "pretty-types"; - version = "0.3.0.1"; - sha256 = "fb6580d80155c78ba7734b36e8bff2f0a39d287f1ba8efcfd93cc5f6c7f4b319"; - libraryHaskellDepends = [ base mtl tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/pretty-types#readme"; - description = "A small pretty printing DSL for complex types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyclass" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "prettyclass"; - version = "1.0.0.0"; - sha256 = "e537446e7a346e5e0872ed8281db2bb0220c737f10757848c901da1399548986"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - description = "Pretty printing class similar to Show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prettyprinter" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "prettyprinter"; - version = "1.6.0"; - sha256 = "fdaa85aeaff852c3d96f1ac2a323bc1dd96e0061185d11cdc4d1cdb269f5f2f5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "A modern, easy to use, well-documented, extensible pretty-printer"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-ansi-terminal" = callPackage - ({ mkDerivation, ansi-terminal, base, prettyprinter, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-ansi-terminal"; - version = "1.1.1.2"; - sha256 = "d3e0b420df2904ae1ef23daf9bbb6de2c1fbbee056b779fc2cebe303cedf4641"; - libraryHaskellDepends = [ ansi-terminal base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "ANSI terminal backend for the »prettyprinter« package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-annotated-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-annotated-wl-pprint"; - version = "1"; - sha256 = "2c259bac999d75b071a077f218a433c070783e9f40b67796e31a776fefbaf57e"; - revision = "3"; - editedCabalFile = "0vzi7id60pfj35xp61akzvfx9x6py45r5b8343i48ljpir91rvgw"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the annotated-wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-ansi-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, prettyprinter-ansi-terminal - , stdenv, text - }: - mkDerivation { - pname = "prettyprinter-compat-ansi-wl-pprint"; - version = "1.0.1"; - sha256 = "012d6bb711da25cc38260f4d00d26c24e52547a0ca53b0f6459fd06e5b93f73f"; - revision = "1"; - editedCabalFile = "0rzvap56ygygzs95091ipmcdc7n76sczc2dk88g4nr7zskb2nf1k"; - libraryHaskellDepends = [ - base prettyprinter prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Drop-in compatibility package to migrate from »ansi-wl-pprint« to »prettyprinter«"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-compat-wl-pprint" = callPackage - ({ mkDerivation, base, prettyprinter, stdenv, text }: - mkDerivation { - pname = "prettyprinter-compat-wl-pprint"; - version = "1.0.0.1"; - sha256 = "75221f5064e69eead5807a62894e8b5aa768f979c7f8fb75d0e1b2a15345529e"; - revision = "3"; - editedCabalFile = "0cb1i1hmr6wl8lacy3w822h273lapqhp537snxgbmhf9xvfckbpr"; - libraryHaskellDepends = [ base prettyprinter text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Prettyprinter compatibility module for previous users of the wl-pprint package"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "prettyprinter-convert-ansi-wl-pprint" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, prettyprinter - , prettyprinter-ansi-terminal, stdenv, text - }: - mkDerivation { - pname = "prettyprinter-convert-ansi-wl-pprint"; - version = "1.1"; - sha256 = "b8982d38776249d3d29a4ede426a27a02f7cbb6843722b5ec8ede18d032fa60c"; - revision = "1"; - editedCabalFile = "1c4zcscmvq0vbdgnp7n0avv8si5jshl4kw2qd1lqmhr28kj8x45f"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base prettyprinter - prettyprinter-ansi-terminal text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/quchen/prettyprinter"; - description = "Converter from »ansi-wl-pprint« documents to »prettyprinter«-based ones"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "primes" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "primes"; - version = "0.2.1.0"; - sha256 = "74d66558fb638ea4d31eae2fe1a294cb5a9d64491314305d74a11d93f277c65b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sebfisch/primes"; - description = "Efficient, purely functional generation of prime numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "primitive"; - version = "0.7.0.0"; - sha256 = "786a44fea328caf704b762ebc887e9e8476c4378fdf3a06c94e86ef1878d1576"; - revision = "1"; - editedCabalFile = "1g10dsdadv8sy9mhhwx4jknzshvxc4qx6z9lmgqy7060prlbqnn4"; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/primitive"; - description = "Primitive memory-related operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-addr" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-addr"; - version = "0.1.0.2"; - sha256 = "4281c3a429bc03ab2940d072a6cbd63948bdf2607561456d972ba3ca4db9211b"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/primitive-addr"; - description = "Addresses to unmanaged memory"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-extras" = callPackage - ({ mkDerivation, base, bytestring, cereal, deferred-folds, focus - , foldl, list-t, primitive, primitive-unlifted, profunctors, stdenv - , vector - }: - mkDerivation { - pname = "primitive-extras"; - version = "0.8"; - sha256 = "9988b7eb6d9e90f31258bee0966c1c364cde98df339a8ce1816d7141d03a6b3c"; - libraryHaskellDepends = [ - base bytestring cereal deferred-folds focus foldl list-t primitive - primitive-unlifted profunctors vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/metrix-ai/primitive-extras"; - description = "Extras for the \"primitive\" library"; - license = stdenv.lib.licenses.mit; - }) {}; - "primitive-offset" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-offset"; - version = "0.2.0.0"; - sha256 = "b15e7de9ebf36ec12b4e2fac2a2c3cefd2b99afa76231fbd0b5cf5d03f6d572b"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/primitive-offset"; - description = "Types for offsets into unboxed arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-unaligned" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "primitive-unaligned"; - version = "0.1.1.1"; - sha256 = "14322b85b3cd12221cc15de323dee8f7cefe65bab647b3d00cfde4969a216ab8"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-primitive/primitive-unaligned"; - description = "Unaligned access to primitive arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "primitive-unlifted" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, text-short }: - mkDerivation { - pname = "primitive-unlifted"; - version = "0.1.3.0"; - sha256 = "30f2cf8fe9968217b95a471194341206a6697f611b2af3c8e9a1eca6b362fae0"; - libraryHaskellDepends = [ base bytestring primitive text-short ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-primitive/primitive-unlifted"; - description = "Primitive GHC types with unlifted types inside"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "print-console-colors" = callPackage - ({ mkDerivation, ansi-terminal, base, stdenv }: - mkDerivation { - pname = "print-console-colors"; - version = "0.1.0.0"; - sha256 = "0849e3de1139d5438a5ecfff82e42fe85d59cd430ddb1baf4909ab86eca2a18b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ ansi-terminal base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/print-console-colors#readme"; - description = "Print all ANSI console colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "process-extras" = callPackage - ({ mkDerivation, base, bytestring, data-default, deepseq - , generic-deriving, ListLike, mtl, process, stdenv, text - }: - mkDerivation { - pname = "process-extras"; - version = "0.7.4"; - sha256 = "293e75f849254ce0ce0d7fa659681917e07a557c602505a2f9e20777467e984e"; - libraryHaskellDepends = [ - base bytestring data-default deepseq generic-deriving ListLike mtl - process text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/seereason/process-extras"; - description = "Process extras"; - license = stdenv.lib.licenses.mit; - }) {}; - "product-isomorphic" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, th-data-compat }: - mkDerivation { - pname = "product-isomorphic"; - version = "0.0.3.3"; - sha256 = "1ef93a2cacbaf1fb2ae713f2d0d869593d4a5b8605eff38108877cbbfb51c1bb"; - libraryHaskellDepends = [ base template-haskell th-data-compat ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-product-isomorphic"; - description = "Weaken applicative functor on products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "product-profunctors" = callPackage - ({ mkDerivation, base, bifunctors, contravariant, profunctors - , stdenv, tagged, template-haskell - }: - mkDerivation { - pname = "product-profunctors"; - version = "0.10.0.0"; - sha256 = "ad8d7687c2eee4bcd2f3925a74f53d743c9f678b80be2a523221039004d51a68"; - revision = "3"; - editedCabalFile = "09czbjfn7kwg18726401dhlpkd5gibkk96wzczn9lngpl730jhm9"; - libraryHaskellDepends = [ - base bifunctors contravariant profunctors tagged template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tomjaguarpaw/product-profunctors"; - description = "product-profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profiterole" = callPackage - ({ mkDerivation, base, containers, directory, extra, filepath - , ghc-prof, hashable, scientific, stdenv, text - }: - mkDerivation { - pname = "profiterole"; - version = "0.1"; - sha256 = "c688d8c4f04e7a674832b39add365cee8eb99ae83643a849529e2ec56a46d2f1"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base containers directory extra filepath ghc-prof hashable - scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/profiterole#readme"; - description = "Restructure GHC profile reports"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "profunctors" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, comonad - , contravariant, distributive, stdenv, tagged, transformers - }: - mkDerivation { - pname = "profunctors"; - version = "5.5.1"; - sha256 = "1d3741957d3187c033342e0b9ca3ba302e936c69bb402b89e4b1c60ae1d9b15a"; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad contravariant distributive - tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/profunctors/"; - description = "Profunctors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "project-template" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, conduit - , conduit-extra, containers, directory, filepath, mtl, resourcet - , stdenv, text, transformers - }: - mkDerivation { - pname = "project-template"; - version = "0.2.0.1"; - sha256 = "eb52496fa7448f5fed445525c05327b31a45282fc1d0a772c7022a9809e7c9dc"; - revision = "1"; - editedCabalFile = "0lq3sqnq0nr0gbvgzp0lqdl3j3mqdmdlf8xsw0j3pjh581xj3k0a"; - libraryHaskellDepends = [ - base base64-bytestring bytestring conduit conduit-extra containers - directory filepath mtl resourcet text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-ide"; - description = "Specify Haskell project templates and generate files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "projectroot" = callPackage - ({ mkDerivation, base, directory, stdenv }: - mkDerivation { - pname = "projectroot"; - version = "0.2.0.1"; - sha256 = "53753086543ed199cf6f0d76852660f5d74c0874bfdee21c0f4e0d845b7e1ab8"; - libraryHaskellDepends = [ base directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-projectroot"; - description = "Bindings to the projectroot C logic"; - license = stdenv.lib.licenses.mit; - }) {}; - "prometheus-client" = callPackage - ({ mkDerivation, atomic-primops, base, bytestring, clock - , containers, deepseq, exceptions, mtl, stdenv, stm, text - , transformers, transformers-compat, utf8-string - }: - mkDerivation { - pname = "prometheus-client"; - version = "1.0.0"; - sha256 = "279e415720adb45a0ca67af18029c7b9e2ea0a34ec79b7278ed8e20e135b3344"; - libraryHaskellDepends = [ - atomic-primops base bytestring clock containers deepseq exceptions - mtl stm text transformers transformers-compat utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/prometheus-haskell"; - description = "Haskell client library for http://prometheus.io."; - license = stdenv.lib.licenses.asl20; - }) {}; - "promises" = callPackage - ({ mkDerivation, base, primitive, stdenv }: - mkDerivation { - pname = "promises"; - version = "0.3"; - sha256 = "bf7c901915c122e7ab270f4c90cf02e83a703bf78f246948dc2452dcd294f260"; - libraryHaskellDepends = [ base primitive ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/promises/"; - description = "Lazy demand-driven promises"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "prompt" = callPackage - ({ mkDerivation, base, base-compat, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "prompt"; - version = "0.1.1.2"; - sha256 = "67b5711ef4c650747645b6d9de16a8bb04e04d1c2e4d39e3a8d4099873a151f2"; - libraryHaskellDepends = [ - base base-compat mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/prompt"; - description = "Monad (and transformer) for deferred-effect pure prompt-response queries"; - license = stdenv.lib.licenses.mit; - }) {}; - "prospect" = callPackage - ({ mkDerivation, base, deepseq, free, kan-extensions, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "prospect"; - version = "0.1.0.0"; - sha256 = "6ffae759fb5d81786342686c5544601a6bbaa74a7ca7f7c1a3ab4ebbc7846de7"; - libraryHaskellDepends = [ - base deepseq free kan-extensions mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/prospect#readme"; - description = "Explore continuations with trepidation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , lens-family, parsec, pretty, primitive, profunctors, stdenv - , tagged, text, transformers, vector - }: - mkDerivation { - pname = "proto-lens"; - version = "0.6.0.0"; - sha256 = "a6b33f04b192e20a011e5ec8a204833162900fbb27172efb135deeded02a524c"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim lens-family parsec - pretty primitive profunctors tagged text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "A lens-based implementation of protocol buffers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-arbitrary" = callPackage - ({ mkDerivation, base, bytestring, containers, lens-family - , proto-lens, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "proto-lens-arbitrary"; - version = "0.1.2.8"; - sha256 = "8300c8281395b0a60f77073c0477822d5a008a18c2d5c15e29645bd92817ba4a"; - libraryHaskellDepends = [ - base bytestring containers lens-family proto-lens QuickCheck text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Arbitrary instances for proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-optparse" = callPackage - ({ mkDerivation, base, optparse-applicative, proto-lens, stdenv - , text - }: - mkDerivation { - pname = "proto-lens-optparse"; - version = "0.1.1.6"; - sha256 = "980c8bcd9b19a7cd4824be422bf3054e69caa91acd1d1adef08b2d5cfacfbb80"; - libraryHaskellDepends = [ - base optparse-applicative proto-lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Adapting proto-lens to optparse-applicative ReadMs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protobuf-types" = callPackage - ({ mkDerivation, base, Cabal, lens-family, proto-lens - , proto-lens-protoc, proto-lens-runtime, proto-lens-setup, protobuf - , stdenv, text - }: - mkDerivation { - pname = "proto-lens-protobuf-types"; - version = "0.6.0.0"; - sha256 = "8755e75a30a24c0bcf0c8b9e85d4952537bbe2ec2513c2324e65fbccd346cdd6"; - setupHaskellDepends = [ base Cabal proto-lens-setup ]; - libraryHaskellDepends = [ - base lens-family proto-lens proto-lens-runtime text - ]; - libraryToolDepends = [ proto-lens-protoc protobuf ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Basic protocol buffer message types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-protoc" = callPackage - ({ mkDerivation, base, bytestring, containers, filepath, ghc - , ghc-paths, ghc-source-gen, lens-family, pretty, proto-lens - , proto-lens-runtime, protobuf, stdenv, text - }: - mkDerivation { - pname = "proto-lens-protoc"; - version = "0.6.0.0"; - sha256 = "b946740b94c8d300cd8e278ded9045905ef1985824cef6b81af0d79b119927be"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base filepath ]; - libraryToolDepends = [ protobuf ]; - executableHaskellDepends = [ - base bytestring containers filepath ghc ghc-paths ghc-source-gen - lens-family pretty proto-lens proto-lens-runtime text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Protocol buffer compiler for the proto-lens library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-runtime" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, filepath - , lens-family, proto-lens, stdenv, text, vector - }: - mkDerivation { - pname = "proto-lens-runtime"; - version = "0.6.0.0"; - sha256 = "96f17141f5927f28388ec5ff5937419c1698a1e1cbdbb4f1272d44843051ae73"; - libraryHaskellDepends = [ - base bytestring containers deepseq filepath lens-family proto-lens - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "proto-lens-setup" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, deepseq - , directory, filepath, process, proto-lens-protoc, stdenv - , temporary, text - }: - mkDerivation { - pname = "proto-lens-setup"; - version = "0.4.0.3"; - sha256 = "6de1bc3fe35db61445ae80700583b99874e4fe03ccb14ad9cd0134927ab726b6"; - libraryHaskellDepends = [ - base bytestring Cabal containers deepseq directory filepath process - proto-lens-protoc temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/google/proto-lens#readme"; - description = "Cabal support for codegen with proto-lens"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protobuf-simple" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , data-binary-ieee754, directory, filepath, mtl, parsec, split - , stdenv, text - }: - mkDerivation { - pname = "protobuf-simple"; - version = "0.1.1.0"; - sha256 = "9029d395f099aa7ce510a9e0eb0b2c21e5b4ecaa2b242d5a1753de6b93abcdc4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers data-binary-ieee754 mtl text - ]; - executableHaskellDepends = [ - base containers directory filepath mtl parsec split text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sru-systems/protobuf-simple"; - description = "Simple Protocol Buffers library (proto2)"; - license = stdenv.lib.licenses.mit; - }) {}; - "protocol-radius" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, cryptonite - , dlist, memory, stdenv, template-haskell, text, transformers - }: - mkDerivation { - pname = "protocol-radius"; - version = "0.0.1.1"; - sha256 = "49982332f18246c9f46dc8f9500dcbd92a445d17124b4acd084568c14ac6a131"; - libraryHaskellDepends = [ - base bytestring cereal containers cryptonite dlist memory - template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - description = "parser and printer for radius protocol packet"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protocol-radius-test" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers - , protocol-radius, QuickCheck, quickcheck-simple, stdenv - , transformers - }: - mkDerivation { - pname = "protocol-radius-test"; - version = "0.1.0.1"; - sha256 = "f51eb0bc2921036cc924b1e0ae42f8fb2488907c80b7bcff35461db913b1d792"; - libraryHaskellDepends = [ - base bytestring cereal containers protocol-radius QuickCheck - quickcheck-simple transformers - ]; - doHaddock = false; - doCheck = false; - description = "testsuit of protocol-radius haskell package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "protolude" = callPackage - ({ mkDerivation, array, async, base, bytestring, containers - , deepseq, ghc-prim, hashable, mtl, mtl-compat, stdenv, stm, text - , transformers, transformers-compat - }: - mkDerivation { - pname = "protolude"; - version = "0.2.4"; - sha256 = "1192210b90b409f0541cfd5b2a57e30f1156309900b5a4a4aeb3d9d55d90796e"; - libraryHaskellDepends = [ - array async base bytestring containers deepseq ghc-prim hashable - mtl mtl-compat stm text transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/protolude"; - description = "A small prelude"; - license = stdenv.lib.licenses.mit; - }) {}; - "proxied" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "proxied"; - version = "0.3.1"; - sha256 = "996894e00af70c715a208a09824a38c001963762f3715cecec8ac4f2fef6ac51"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/proxied"; - description = "Make functions consume Proxy instead of undefined"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "psqueues" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "psqueues"; - version = "0.2.7.2"; - sha256 = "26263b555d943f9b18bbebda6a090848fdba3c1b403a9b7c848f6bac99e893f9"; - revision = "1"; - editedCabalFile = "0d0mm3c8x31dasfzp1884r2irkm3c9irvvbahjzfr1bzzxfb7vyv"; - libraryHaskellDepends = [ base deepseq ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - description = "Pure priority search queues"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "publicsuffix" = callPackage - ({ mkDerivation, base, filepath, stdenv, template-haskell }: - mkDerivation { - pname = "publicsuffix"; - version = "0.20191003"; - sha256 = "a7c3f8903051bf6ba6790ab65cf5d8373a8fab10c5665613e223ed21a69039ae"; - libraryHaskellDepends = [ base filepath template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/publicsuffix-haskell/"; - description = "The publicsuffix list exposed as proper Haskell types"; - license = stdenv.lib.licenses.mit; - }) {}; - "pulse-simple" = callPackage - ({ mkDerivation, base, bytestring, libpulseaudio, stdenv }: - mkDerivation { - pname = "pulse-simple"; - version = "0.1.14"; - sha256 = "84429d8b05f34be7f34cca59f361ededbc8c82e0c27f4acb8a155750ba6541ab"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ libpulseaudio ]; - doHaddock = false; - doCheck = false; - description = "binding to Simple API of pulseaudio"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) libpulseaudio;}; - "pureMD5" = callPackage - ({ mkDerivation, base, binary, bytestring, cereal, crypto-api - , stdenv, tagged - }: - mkDerivation { - pname = "pureMD5"; - version = "2.1.3"; - sha256 = "bef3358a5e3a45b649860a5792f052e2f927c0492a7056cf64425116c8a7b17d"; - libraryHaskellDepends = [ - base binary bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - description = "A Haskell-only implementation of the MD5 digest (hash) algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "purescript-bridge" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, lens, mtl, stdenv, text, transformers - }: - mkDerivation { - pname = "purescript-bridge"; - version = "0.13.0.0"; - sha256 = "2b1a6bbc0e1c155b20bb02356821185c7661d15cc8042ddfe12725eef2065149"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving lens mtl text - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Generate PureScript data types from Haskell data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "pushbullet-types" = callPackage - ({ mkDerivation, aeson, base, http-api-data, microlens - , microlens-th, scientific, stdenv, text, time - , unordered-containers - }: - mkDerivation { - pname = "pushbullet-types"; - version = "0.4.1.0"; - sha256 = "6461a2cf5ff0b74f7caaf295ca7601922e9527f5bc9f37e3fbc6325026b5c85b"; - libraryHaskellDepends = [ - aeson base http-api-data microlens microlens-th scientific text - time unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "Datatypes used by the Pushbullet APIs"; - license = stdenv.lib.licenses.mit; - }) {}; - "pusher-http-haskell" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , cryptonite, hashable, http-client, http-types, memory, stdenv - , text, time, transformers, unordered-containers, vector - }: - mkDerivation { - pname = "pusher-http-haskell"; - version = "1.5.1.11"; - sha256 = "588f74023b0e4cbbaa23284ad133e055debfa8c2deecfd7e50f31d4a89e1260b"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring cryptonite hashable - http-client http-types memory text time transformers - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/WillSewell/pusher-http-haskell"; - description = "Haskell client library for the Pusher HTTP API"; - license = stdenv.lib.licenses.mit; - }) {}; - "qchas" = callPackage - ({ mkDerivation, base, hmatrix, linear, random, stdenv }: - mkDerivation { - pname = "qchas"; - version = "1.1.0.1"; - sha256 = "a9f340d1a6d4f5f24f713b1105e4ec8bba0c24609dcef3fd95f104594232263d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base hmatrix linear random ]; - executableHaskellDepends = [ base hmatrix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ardeleanasm/qchas#readme"; - description = "A library for implementing Quantum Algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "qm-interpolated-string" = callPackage - ({ mkDerivation, base, bytestring, haskell-src-meta, stdenv - , template-haskell, text - }: - mkDerivation { - pname = "qm-interpolated-string"; - version = "0.3.0.0"; - sha256 = "e86b337d1531e75d448f7ab9101f8703b19fa5bc3a94c7ea5c26accd31d12baf"; - libraryHaskellDepends = [ - base bytestring haskell-src-meta template-haskell text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/unclechu/haskell-qm-interpolated-string"; - description = "Implementation of interpolated multiline strings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "qrcode-core" = callPackage - ({ mkDerivation, base, binary, bytestring, case-insensitive - , containers, dlist, primitive, stdenv, text, vector - }: - mkDerivation { - pname = "qrcode-core"; - version = "0.9.2"; - sha256 = "fe56ac16900741260e3074b6957c89e3e3cd49bbfbcd83d338150e5b8c0a429d"; - libraryHaskellDepends = [ - base binary bytestring case-insensitive containers dlist primitive - text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qrcode#readme"; - description = "QR code library in pure Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "qrcode-juicypixels" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, JuicyPixels - , qrcode-core, stdenv, text, vector - }: - mkDerivation { - pname = "qrcode-juicypixels"; - version = "0.8.0"; - sha256 = "930f73206ef1e6c43caebd31f2df0c086b52458d056a148bbe42c0e91f729291"; - libraryHaskellDepends = [ - base base64-bytestring bytestring JuicyPixels qrcode-core text - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/alexkazik/qrcode#readme"; - description = "Converts a qrcode-core image to JuicyPixels"; - license = stdenv.lib.licenses.mit; - }) {}; - "quadratic-irrational" = callPackage - ({ mkDerivation, arithmoi, base, containers, stdenv, transformers - }: - mkDerivation { - pname = "quadratic-irrational"; - version = "0.1.0"; - sha256 = "fe7517151e86d16107c33a261cc0543443d34016ef83bd09878e2bb67bdccf4d"; - libraryHaskellDepends = [ arithmoi base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ion1/quadratic-irrational"; - description = "An implementation of quadratic irrationals"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-arbitrary-adt" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-arbitrary-adt"; - version = "0.3.1.0"; - sha256 = "5c4a2e20366def76ba851211ac554e9a0f60535efcd0940606e4d410c27a45b9"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/plow-technologies/quickcheck-arbitrary-adt#readme"; - description = "Generic typeclasses for generating arbitrary ADTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-assertions" = callPackage - ({ mkDerivation, base, ieee754, pretty-show, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-assertions"; - version = "0.3.0"; - sha256 = "9b0328a788dcac0824a7d7496ab403eef04170551255c9e58fb6e2e319a9cacf"; - libraryHaskellDepends = [ base ieee754 pretty-show QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/quickcheck-assertions"; - description = "HUnit like assertions for QuickCheck"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "quickcheck-classes" = callPackage - ({ mkDerivation, aeson, base, base-orphans, bifunctors, containers - , contravariant, fail, primitive, primitive-addr, QuickCheck - , quickcheck-classes-base, semigroupoids, semigroups, semirings - , stdenv, tagged, transformers, vector - }: - mkDerivation { - pname = "quickcheck-classes"; - version = "0.6.4.0"; - sha256 = "8f5b65ea3055f1ef0149c245ba1ff67b57fe6b149dead2aeb3d2bc98dcac9d61"; - libraryHaskellDepends = [ - aeson base base-orphans bifunctors containers contravariant fail - primitive primitive-addr QuickCheck quickcheck-classes-base - semigroupoids semigroups semirings tagged transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/quickcheck-classes#readme"; - description = "QuickCheck common typeclasses"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-classes-base" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, containers - , contravariant, fail, QuickCheck, semigroups, stdenv, tagged - , transformers - }: - mkDerivation { - pname = "quickcheck-classes-base"; - version = "0.6.0.0"; - sha256 = "dd8ff2296c4385bf9657de6816cbefd5dcfe7317887f08fa0b8508ef465e72a4"; - libraryHaskellDepends = [ - base base-orphans bifunctors containers contravariant fail - QuickCheck semigroups tagged transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/quickcheck-classes#readme"; - description = "QuickCheck common typeclasses from `base`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-instances" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring - , case-insensitive, containers, hashable, old-time, QuickCheck - , scientific, splitmix, stdenv, tagged, text, time, time-compat - , transformers, transformers-compat, unordered-containers - , uuid-types, vector - }: - mkDerivation { - pname = "quickcheck-instances"; - version = "0.3.22"; - sha256 = "5d65bf81895b7af2d36f105d0b3afa5600b0bce0a14809c93d7ca87672ca5a91"; - revision = "2"; - editedCabalFile = "1ia5fjhpg7rz793552v88gv2iqx7hl9mi2g09m0llasy1cpzc9jr"; - libraryHaskellDepends = [ - array base base-compat bytestring case-insensitive containers - hashable old-time QuickCheck scientific splitmix tagged text time - time-compat transformers transformers-compat unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/qc-instances"; - description = "Common quickcheck instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-io" = callPackage - ({ mkDerivation, base, HUnit, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-io"; - version = "0.2.0"; - sha256 = "fb779119d79fe08ff4d502fb6869a70c9a8d5fd8ae0959f605c3c937efd96422"; - libraryHaskellDepends = [ base HUnit QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/quickcheck-io#readme"; - description = "Use HUnit assertions as QuickCheck properties"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-simple" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-simple"; - version = "0.1.1.1"; - sha256 = "51358328e5d3ea20dcb668e971e07bc7c8451cade47e930c68e3a6718317032a"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - description = "Test properties and default-mains for QuickCheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "quickcheck-special" = callPackage - ({ mkDerivation, base, QuickCheck, special-values, stdenv }: - mkDerivation { - pname = "quickcheck-special"; - version = "0.1.0.6"; - sha256 = "9573898509bd30613bdf59338a5754251081420c59fb658727973e2e837f1cb6"; - revision = "1"; - editedCabalFile = "1whwmij115vw0qwkzlkc4z4yhj7iwwqjhf5aaxn5np0gh2gzihb3"; - libraryHaskellDepends = [ base QuickCheck special-values ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/quickcheck-special#readme"; - description = "Edge cases and special values for QuickCheck Arbitrary instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-text" = callPackage - ({ mkDerivation, base, binary, bytestring, QuickCheck, stdenv, text - }: - mkDerivation { - pname = "quickcheck-text"; - version = "0.1.2.1"; - sha256 = "4442fdb8ae6cd469c04957d34fee46039c9dc0ddce23ce6050babe6826d0ab09"; - libraryHaskellDepends = [ base binary bytestring QuickCheck text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/olorin/quickcheck-text"; - description = "Alternative arbitrary instance for Text"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-transformer" = callPackage - ({ mkDerivation, base, QuickCheck, random, stdenv, transformers }: - mkDerivation { - pname = "quickcheck-transformer"; - version = "0.3.1"; - sha256 = "d4818954d0538cf2b1c94f3a5c489d63cfc5dc684fe83d50bdb73871df0976c9"; - libraryHaskellDepends = [ base QuickCheck random transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/quickcheck-transformer/"; - description = "A GenT monad transformer for QuickCheck library"; - license = stdenv.lib.licenses.mit; - }) {}; - "quickcheck-unicode" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv }: - mkDerivation { - pname = "quickcheck-unicode"; - version = "1.0.1.0"; - sha256 = "132005ea7edff35e95139c36232a70698cd0f4f4d79dfaa4e66fbcf557d08368"; - libraryHaskellDepends = [ base QuickCheck ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/quickcheck-unicode"; - description = "Generator and shrink functions for testing Unicode-related software"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "radius" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptonite, iproute - , memory, stdenv - }: - mkDerivation { - pname = "radius"; - version = "0.6.1.0"; - sha256 = "bebd5ec73e85f11427a4e1040bbac695ef9bc947db2c23e2c85ddbcb31dd2260"; - libraryHaskellDepends = [ - base binary bytestring cryptonite iproute memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/RADIUS"; - description = "Remote Authentication Dial In User Service (RADIUS)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbow" = callPackage - ({ mkDerivation, base, bytestring, lens, stdenv, terminfo, text }: - mkDerivation { - pname = "rainbow"; - version = "0.34.2.2"; - sha256 = "8e56c1a03a0b2b3e30d67fd7607aa4f93a841e17aa8c4e526ceed464229ba5e7"; - libraryHaskellDepends = [ base bytestring lens terminfo text ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbow"; - description = "Print text to terminal with colors and effects"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rainbox" = callPackage - ({ mkDerivation, base, bytestring, containers, lens, rainbow - , stdenv, text - }: - mkDerivation { - pname = "rainbox"; - version = "0.24.4.0"; - sha256 = "9fdb48707a562cdc4931fcac21e320e891053ff6aead44803909d37d3f16a38c"; - libraryHaskellDepends = [ - base bytestring containers lens rainbow text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/massysett/rainbox"; - description = "Two-dimensional box pretty printing, with colors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ral" = callPackage - ({ mkDerivation, adjunctions, base, bin, deepseq, distributive, fin - , hashable, QuickCheck, semigroupoids, stdenv - }: - mkDerivation { - pname = "ral"; - version = "0.1"; - sha256 = "048cf2b5b394229503bdd748c93cc19650b4223d01e11e954b373f7595c21241"; - libraryHaskellDepends = [ - adjunctions base bin deepseq distributive fin hashable QuickCheck - semigroupoids - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Random access lists"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "ramus" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "ramus"; - version = "0.1.2"; - sha256 = "dcddddc416e79c401604565b7297a945f814edeed056fb3b897eda5f4f0b794e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NickSeagull/ramus#readme"; - description = "Elm signal system for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rando" = callPackage - ({ mkDerivation, base, stdenv, tf-random, vector }: - mkDerivation { - pname = "rando"; - version = "0.0.0.4"; - sha256 = "8eb8f4a5498ede50c468b74b04f9931cbcd6b4e6b03cf8dd56ad0b84c8ad7cb3"; - libraryHaskellDepends = [ base tf-random vector ]; - doHaddock = false; - doCheck = false; - description = "Easy-to-use randomness for livecoding"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "random" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "random"; - version = "1.1"; - sha256 = "b718a41057e25a3a71df693ab0fe2263d492e759679b3c2fea6ea33b171d3a5a"; - revision = "1"; - editedCabalFile = "1pv5d7bm2rgap7llp5vjsplrg048gvf0226y0v19gpvdsx7n4rvv"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "random number library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-bytestring" = callPackage - ({ mkDerivation, base, bytestring, mwc-random, pcg-random, stdenv - }: - mkDerivation { - pname = "random-bytestring"; - version = "0.1.3.2"; - sha256 = "dcab3f6f32a83abd19ce1bddd8f7a7b31a4fb3bf126a58e472f71eafc36ab29a"; - libraryHaskellDepends = [ base bytestring mwc-random pcg-random ]; - doHaddock = false; - doCheck = false; - homepage = "https://www.github.com/larskuhtz/random-bytestring"; - description = "Efficient generation of random bytestrings"; - license = stdenv.lib.licenses.mit; - }) {}; - "random-shuffle" = callPackage - ({ mkDerivation, base, MonadRandom, random, stdenv }: - mkDerivation { - pname = "random-shuffle"; - version = "0.0.4"; - sha256 = "52704411f040fd0bf2361dad162e35dc13caa6535b2e4908d3513c00a95d0615"; - libraryHaskellDepends = [ base MonadRandom random ]; - doHaddock = false; - doCheck = false; - description = "Random shuffle implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "random-tree" = callPackage - ({ mkDerivation, base, containers, lens, MonadRandom, mtl, random - , random-shuffle, stdenv, transformers, tree-fun - }: - mkDerivation { - pname = "random-tree"; - version = "0.6.0.5"; - sha256 = "2b604e7ce184e2c877fac63dbac1df3060cdc023427b8eb5844106a826591cc2"; - libraryHaskellDepends = [ - base containers lens MonadRandom mtl random random-shuffle - transformers tree-fun - ]; - doHaddock = false; - doCheck = false; - description = "Create random trees"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "range" = callPackage - ({ mkDerivation, base, free, parsec, stdenv }: - mkDerivation { - pname = "range"; - version = "0.3.0.2"; - sha256 = "13c8f168b584637a5a1a389ef34e986ff10a0fe4f486d320a8fc8949e82a6b4f"; - libraryHaskellDepends = [ base free parsec ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/robertmassaioli/range"; - description = "An efficient and versatile range library"; - license = stdenv.lib.licenses.mit; - }) {}; - "range-set-list" = callPackage - ({ mkDerivation, base, containers, deepseq, hashable, stdenv }: - mkDerivation { - pname = "range-set-list"; - version = "0.1.3.1"; - sha256 = "12e8d9cb99a2847da32934ed7f44a5acedaa59d8fa19eff0f46aa77921460c55"; - libraryHaskellDepends = [ base containers deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/range-set-list#readme"; - description = "Memory efficient sets with ranges of elements"; - license = stdenv.lib.licenses.mit; - }) {}; - "rank1dynamic" = callPackage - ({ mkDerivation, base, binary, stdenv }: - mkDerivation { - pname = "rank1dynamic"; - version = "0.4.0"; - sha256 = "3c424bfe52b7d4766fd66ea34c204cf920b146455711d8d10d580ca6c175ab1d"; - revision = "1"; - editedCabalFile = "1idh1iz15pzdhrhy19584i9ahz41ijbmf56wbb2wns2kipy6w9lr"; - libraryHaskellDepends = [ base binary ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-distributed.github.com"; - description = "Like Data.Dynamic/Data.Typeable but with support for rank-1 polymorphic types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rank2classes" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, distributive, stdenv - , template-haskell, transformers - }: - mkDerivation { - pname = "rank2classes"; - version = "1.3.2.1"; - sha256 = "44a414398cf9dd67fd9795680268bdb7307eadfa1dd52c92c67a0e89899e02ea"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base distributive template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blamario/grampa/tree/master/rank2classes"; - description = "standard type constructor class hierarchy, only with methods of rank 2 types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rasterific-svg" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, directory - , filepath, FontyFruity, JuicyPixels, lens, linear, mtl - , optparse-applicative, primitive, Rasterific, scientific, stdenv - , svg-tree, text, transformers, vector - }: - mkDerivation { - pname = "rasterific-svg"; - version = "0.3.3.2"; - sha256 = "02db61c98e6e550824e8d9813efe5e97293843e39e1c00e88837061b61a017c4"; - revision = "1"; - editedCabalFile = "19i9wlk951d85dqnmbgrnz0fg4xcw7cbv9cs2h8b440lycj3p4cv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers directory filepath FontyFruity - JuicyPixels lens linear mtl primitive Rasterific scientific - svg-tree text transformers vector - ]; - executableHaskellDepends = [ - base bytestring directory filepath FontyFruity JuicyPixels - optparse-applicative Rasterific svg-tree - ]; - doHaddock = false; - doCheck = false; - description = "SVG renderer based on Rasterific"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ratel" = callPackage - ({ mkDerivation, aeson, base, bytestring, case-insensitive - , containers, http-client, http-client-tls, http-types, stdenv - , text, uuid - }: - mkDerivation { - pname = "ratel"; - version = "1.0.9"; - sha256 = "abcc51c2fa35622e7e3deb04e444c3dc7f0d601d848f03ef401cdd25a13a96cf"; - libraryHaskellDepends = [ - aeson base bytestring case-insensitive containers http-client - http-client-tls http-types text uuid - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel#readme"; - description = "Notify Honeybadger about exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "ratel-wai" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, containers - , http-client, ratel, stdenv, wai - }: - mkDerivation { - pname = "ratel-wai"; - version = "1.1.1"; - sha256 = "c93fbdf724f1c6291ec7263f2864f93a7ec360db08025d825db8c8f34284ebe2"; - libraryHaskellDepends = [ - base bytestring case-insensitive containers http-client ratel wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/ratel-wai#readme"; - description = "Notify Honeybadger about exceptions via a WAI middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "rattle" = callPackage - ({ mkDerivation, base, bytestring, cryptohash-sha256, deepseq - , directory, extra, filepath, hashable, shake, stdenv, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "rattle"; - version = "0.1"; - sha256 = "19620782a25e354c032f9e9afc125ed30c70fea466fb9745b2374588292a2a83"; - revision = "1"; - editedCabalFile = "1ppli9l28b4pg6h57kx7vvy0wqacn4vx86bvrgjcwwlvlir49scw"; - libraryHaskellDepends = [ - base bytestring cryptohash-sha256 deepseq directory extra filepath - hashable shake time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/rattle#readme"; - description = "Forward build system, with caching and speculation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "raw-strings-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "raw-strings-qq"; - version = "1.1"; - sha256 = "2e011ec26aeaa53ab43c30b7d9b5b0f661f24b4ebef8884c12c571353c0fbed3"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/23Skidoo/raw-strings-qq"; - description = "Raw string literals for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rawfilepath" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unix }: - mkDerivation { - pname = "rawfilepath"; - version = "0.2.4"; - sha256 = "cbb01b49f7ff0271a8c6e4124f93515e6cdabf9581278594e19dd916b6bd5bd3"; - libraryHaskellDepends = [ base bytestring unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xtendo-org/rawfilepath#readme"; - description = "Use RawFilePath instead of FilePath"; - license = stdenv.lib.licenses.asl20; - }) {}; - "rawstring-qm" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "rawstring-qm"; - version = "0.2.3.0"; - sha256 = "11a177bb7d685fb6a98390630196bd544e877b7460648e61a2905c21a71268fe"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tolysz/rawstring-qm"; - description = "Simple raw string quotation and dictionary interpolation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rcu" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest, fail - , ghc-prim, parallel, primitive, stdenv, transformers - }: - mkDerivation { - pname = "rcu"; - version = "0.2.4"; - sha256 = "79bde4bee706392004070bebceef0cf11d67823065ac9d7fbf57f4b40c7d86fe"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base fail ghc-prim parallel primitive transformers - ]; - executableHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/rcu/"; - description = "Read-Copy-Update for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rdf" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, deepseq, dlist, fgl - , stdenv, text, transformers - }: - mkDerivation { - pname = "rdf"; - version = "0.1.0.3"; - sha256 = "5a7443a97abb283e1b1cd83c4fc6fd447f6a289390ea3410de76c84ef2dfd72f"; - revision = "1"; - editedCabalFile = "0x5zdjbyrpap5qs40yl0m96fcgy11f6s5r3v0n8n5904cxa5sqy3"; - libraryHaskellDepends = [ - attoparsec base bytestring deepseq dlist fgl text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/traviswhitaker/rdf"; - description = "Representation and Incremental Processing of RDF Data"; - license = stdenv.lib.licenses.mit; - }) {}; - "rdtsc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "rdtsc"; - version = "1.3.0.1"; - sha256 = "54c9a925f68d6c60b405e92f9d3bd9ebfc25cce0c72d2313a6c7e1b7cc2ed950"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mgrabmueller/rdtsc"; - description = "Binding for the rdtsc machine instruction"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "re2" = callPackage - ({ mkDerivation, base, bytestring, re2, stdenv, vector }: - mkDerivation { - pname = "re2"; - version = "0.3"; - sha256 = "cb223e3717838dcd501d4758e0348e6eff6978318f62053cf7dd3286ef5b996a"; - libraryHaskellDepends = [ base bytestring vector ]; - librarySystemDepends = [ re2 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rblaze/haskell-re2#readme"; - description = "Bindings to the re2 regular expression library"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) re2;}; - "read-editor" = callPackage - ({ mkDerivation, base, directory, process, stdenv }: - mkDerivation { - pname = "read-editor"; - version = "0.1.0.2"; - sha256 = "ed8aeca86823fbaf11a0a543fd106c9c3abe65216ea974ed56050cbebf777085"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yamadapc/haskell-read-editor"; - description = "Opens a temporary file on the system's EDITOR and returns the resulting edits"; - license = stdenv.lib.licenses.mit; - }) {}; - "read-env-var" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers }: - mkDerivation { - pname = "read-env-var"; - version = "1.0.0.0"; - sha256 = "03f3c8176fc08ce838ae772f13991258e2b496712cc71edb1a00336e7ce0b75c"; - libraryHaskellDepends = [ base exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/read-env-var#readme"; - description = "Functions for safely reading environment variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "readable" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "readable"; - version = "0.3.1"; - sha256 = "703037ad2cca4d6d42ba23e2758d1911cd82e3e922c4078076c273231e4b43c9"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mightybyte/readable"; - description = "Reading from Text and ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reanimate-svg" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "reanimate-svg"; - version = "0.9.4.0"; - sha256 = "8409092eaef40e4bb6a9cecc0206d7b5bf561b25ea6d08bb4b2114e86c67b44a"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rebase" = callPackage - ({ mkDerivation, base, base-prelude, bifunctors, bytestring - , comonad, containers, contravariant, contravariant-extras, deepseq - , dlist, either, fail, hashable, mtl, profunctors, scientific - , selective, semigroupoids, semigroups, stdenv, stm, text, time - , transformers, unordered-containers, uuid, vector, void - }: - mkDerivation { - pname = "rebase"; - version = "1.4.1"; - sha256 = "2c2329f794f8c7f303a340acb69eb377aee9a6ec5aea289aa1f0e53fbb86db8d"; - libraryHaskellDepends = [ - base base-prelude bifunctors bytestring comonad containers - contravariant contravariant-extras deepseq dlist either fail - hashable mtl profunctors scientific selective semigroupoids - semigroups stm text time transformers unordered-containers uuid - vector void - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rebase"; - description = "A more progressive alternative to the \"base\" package"; - license = stdenv.lib.licenses.mit; - }) {}; - "record-dot-preprocessor" = callPackage - ({ mkDerivation, base, extra, ghc, stdenv, uniplate }: - mkDerivation { - pname = "record-dot-preprocessor"; - version = "0.2.2"; - sha256 = "9cdfab5b9fb4e8c1b2053e7a56274d14c79a2a2deef3cc69ee493d007f43aae7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base extra ghc uniplate ]; - executableHaskellDepends = [ base extra ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-dot-preprocessor#readme"; - description = "Preprocessor to allow record.field syntax"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "record-hasfield" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "record-hasfield"; - version = "1.0"; - sha256 = "523d2f5ffcbc54881fb3318411a095ae4ac6ec48e36cd6aecf90486a89849eca"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/record-hasfield#readme"; - description = "A version of GHC.Records as available in future GHCs."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "records-sop" = callPackage - ({ mkDerivation, base, deepseq, generics-sop, ghc-prim, stdenv }: - mkDerivation { - pname = "records-sop"; - version = "0.1.0.3"; - sha256 = "4581dc60889928f4ab1f493cbe6362b7a3854785b8e305d5c4bc444dbe591388"; - libraryHaskellDepends = [ base deepseq generics-sop ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Record subtyping and record utilities with generics-sop"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "recursion-schemes" = callPackage - ({ mkDerivation, base, base-orphans, comonad, free, stdenv - , template-haskell, th-abstraction, transformers - }: - mkDerivation { - pname = "recursion-schemes"; - version = "5.1.3"; - sha256 = "b21736e54b1d5fb0149624e95f2d8d8fd3413bb0972eda6a70e5753d3c9f1528"; - revision = "2"; - editedCabalFile = "01q18gplv5k328qf74innnx2z2p15pg5nc6sikxq6fkkw4v3rkyb"; - libraryHaskellDepends = [ - base base-orphans comonad free template-haskell th-abstraction - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/recursion-schemes/"; - description = "Representing common recursion patterns as higher-order functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "reducers" = callPackage - ({ mkDerivation, array, base, bytestring, containers, fingertree - , hashable, semigroupoids, semigroups, stdenv, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "reducers"; - version = "3.12.3"; - sha256 = "7186733767405984c1eda96b18908f458b379f116a1589cd66f4319fe8458e27"; - revision = "1"; - editedCabalFile = "1v0r75wkaahxdv4y0sqgcikvgwymiz12fa8nkk59n1g4x9nng9wb"; - libraryHaskellDepends = [ - array base bytestring containers fingertree hashable semigroupoids - semigroups text transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reducers/"; - description = "Semigroups, specialized containers and a general map/reduce framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ref-fd" = callPackage - ({ mkDerivation, base, stdenv, stm, transformers }: - mkDerivation { - pname = "ref-fd"; - version = "0.4.0.2"; - sha256 = "881779f2910dc77778dd8e3ed6bf19b2451f363e7b47713d8bf4b9b0d9c955b1"; - libraryHaskellDepends = [ base stm transformers ]; - doHaddock = false; - doCheck = false; - description = "A type class for monads with references using functional dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "refact" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "refact"; - version = "0.3.0.2"; - sha256 = "0ad029727797c8ca5d179c7abf1bfc135d86a7d72cf93785ee12ad243aeb1f6c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Specify refactorings to perform with apply-refact"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reflection" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "reflection"; - version = "2.1.5"; - sha256 = "272ee9bffb722047067296a34f68d7450e3f6abfbe62eed02a9cef20ed212977"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/reflection"; - description = "Reifies arbitrary terms into types that can be reflected back into terms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex" = callPackage - ({ mkDerivation, array, base, base-compat, bytestring, containers - , hashable, regex-base, regex-pcre-builtin, regex-tdfa, stdenv - , template-haskell, text, time, time-locale-compat, transformers - , unordered-containers, utf8-string - }: - mkDerivation { - pname = "regex"; - version = "1.1.0.0"; - sha256 = "1d291cd8c7668899bd606b35c94e2188e2858b2944ff571abf058ec98a7f1d0a"; - libraryHaskellDepends = [ - array base base-compat bytestring containers hashable regex-base - regex-pcre-builtin regex-tdfa template-haskell text time - time-locale-compat transformers unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-applicative" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "regex-applicative"; - version = "0.3.3.1"; - sha256 = "8f064fc23b58fcdd0ef3ce9e2597d877a86bec1770f2b877cb3057b54bb70a5c"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/regex-applicative"; - description = "Regex-based parsing with applicative interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "regex-base" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, stdenv - , text - }: - mkDerivation { - pname = "regex-base"; - version = "0.94.0.0"; - sha256 = "c41f82f5fc1157c961a4cbdc0cd5561e5aa44f339ce6e706d978d97e0ca6b914"; - libraryHaskellDepends = [ - array base bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://wiki.haskell.org/Regular_expressions"; - description = "Common \"Text.Regex.*\" API for Regex matching"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat" = callPackage - ({ mkDerivation, array, base, regex-base, regex-posix, stdenv }: - mkDerivation { - pname = "regex-compat"; - version = "0.95.2.0"; - sha256 = "1fc90e476fc30ced2404fac04433ec422463210a32b49f739864e1ebf2278406"; - libraryHaskellDepends = [ array base regex-base regex-posix ]; - doHaddock = false; - doCheck = false; - description = "Replaces/Enhances \"Text.Regex\""; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-compat-tdfa" = callPackage - ({ mkDerivation, array, base, regex-base, regex-tdfa, stdenv }: - mkDerivation { - pname = "regex-compat-tdfa"; - version = "0.95.1.4"; - sha256 = "4fa38ed24ae390eeffe6eef04bbe632d7ecd02b9123729e976e7420f927520dd"; - libraryHaskellDepends = [ array base regex-base regex-tdfa ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/shelarcy/regex-compat-tdfa"; - description = "Unicode Support version of Text.Regex, using regex-tdfa"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-pcre" = callPackage - ({ mkDerivation, array, base, bytestring, containers, pcre - , regex-base, stdenv - }: - mkDerivation { - pname = "regex-pcre"; - version = "0.95.0.0"; - sha256 = "16ad6f10de3b14a4020075b3db64d2ca0c585d94013420418ddd4abd0836c75a"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - libraryPkgconfigDepends = [ pcre ]; - doHaddock = false; - doCheck = false; - description = "PCRE Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) pcre;}; - "regex-pcre-builtin" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv, text - }: - mkDerivation { - pname = "regex-pcre-builtin"; - version = "0.95.1.1.8.43"; - sha256 = "4d3b108482982c6f188b740bcb4959d39c47bf05955fcb17068a5c9916d171aa"; - libraryHaskellDepends = [ - array base bytestring containers regex-base text - ]; - doHaddock = false; - doCheck = false; - description = "PCRE Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-posix" = callPackage - ({ mkDerivation, array, base, bytestring, containers, regex-base - , stdenv - }: - mkDerivation { - pname = "regex-posix"; - version = "0.96.0.0"; - sha256 = "251300f1a6bb2e91abb8bf513a21981f8fab79c98a65acea2bb6d6a524414521"; - libraryHaskellDepends = [ - array base bytestring containers regex-base - ]; - doHaddock = false; - doCheck = false; - description = "POSIX Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-tdfa" = callPackage - ({ mkDerivation, array, base, bytestring, containers, mtl, parsec - , regex-base, stdenv, text - }: - mkDerivation { - pname = "regex-tdfa"; - version = "1.3.1.0"; - sha256 = "15c376783d397b3b9933cf35980808feddde273bd6f2445babbccb2f76a42ec0"; - libraryHaskellDepends = [ - array base bytestring containers mtl parsec regex-base text - ]; - doHaddock = false; - doCheck = false; - description = "Pure Haskell Tagged DFA Backend for \"Text.Regex\" (regex-base)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "regex-with-pcre" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, regex - , regex-base, regex-pcre-builtin, regex-tdfa, stdenv - , template-haskell, text, transformers, unordered-containers - }: - mkDerivation { - pname = "regex-with-pcre"; - version = "1.1.0.0"; - sha256 = "5d5d2e468820777054cb532333cddf340fc82b45076d17288a6072abcd0898a3"; - libraryHaskellDepends = [ - base base-compat bytestring containers regex regex-base - regex-pcre-builtin regex-tdfa template-haskell text transformers - unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://regex.uk"; - description = "Toolkit for regex-base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "reinterpret-cast" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "reinterpret-cast"; - version = "0.1.0"; - sha256 = "5654622c904b42c62f2473c64624715dbd458ea00209ed9ab39396eabc1353e4"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/reinterpret-cast"; - description = "Memory reinterpretation casts for Float/Double and Word32/Word64"; - license = stdenv.lib.licenses.mit; - }) {}; - "relapse" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv }: - mkDerivation { - pname = "relapse"; - version = "1.0.0.0"; - sha256 = "65c68af5e3d18e67bd6f81ab62ea9cc271d8283d876f7baf1c4ee64515a9aa19"; - libraryHaskellDepends = [ attoparsec base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/iostat/relapse#readme"; - description = "Sensible RLP encoding"; - license = stdenv.lib.licenses.mit; - }) {}; - "relational-query" = callPackage - ({ mkDerivation, array, base, bytestring, containers, dlist - , names-th, persistable-record, product-isomorphic, sql-words - , stdenv, template-haskell, text, th-reify-compat, time - , time-locale-compat, transformers - }: - mkDerivation { - pname = "relational-query"; - version = "0.12.2.2"; - sha256 = "5bfe69ee23fe71602d6696c3fd8ff4a19519b58f564aa8396b1fb2c20c67c81c"; - libraryHaskellDepends = [ - array base bytestring containers dlist names-th persistable-record - product-isomorphic sql-words template-haskell text th-reify-compat - time time-locale-compat transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Typeful, Modular, Relational, algebraic query engine"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relational-schemas" = callPackage - ({ mkDerivation, base, bytestring, containers, relational-query - , stdenv, template-haskell, time - }: - mkDerivation { - pname = "relational-schemas"; - version = "0.1.7.0"; - sha256 = "0b8dcab7fcde1b87aa06566f7e07a01cdb5d74edca7b178606a31c2cb5b00ffa"; - libraryHaskellDepends = [ - base bytestring containers relational-query template-haskell time - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "RDBMSs' schema templates for relational-query"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "relude" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, mtl, stdenv, stm, text, transformers - , unordered-containers - }: - mkDerivation { - pname = "relude"; - version = "0.6.0.0"; - sha256 = "2c3a24a8e7b8143386bfec276046387300f66d5de523a0e3d653a50d4d0eae45"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable mtl stm text - transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/relude"; - description = "Custom prelude from Kowainik"; - license = stdenv.lib.licenses.mit; - }) {}; - "renderable" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, transformers - }: - mkDerivation { - pname = "renderable"; - version = "0.2.0.1"; - sha256 = "d1ea5a8d2da8913700c326c3e757c8c4c8a87f1353125bbc9ea372729e04b6c5"; - libraryHaskellDepends = [ base containers hashable transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/schell/renderable"; - description = "An API for managing renderable resources"; - license = stdenv.lib.licenses.mit; - }) {}; - "replace-attoparsec" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, stdenv, text }: - mkDerivation { - pname = "replace-attoparsec"; - version = "1.2.0.0"; - sha256 = "5e4d2711207d1467956d4621cb45991608c5aece4d4abdc269c45ab8491c6e2c"; - libraryHaskellDepends = [ attoparsec base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jamesdbrock/replace-attoparsec"; - description = "Find, replace, and edit text patterns with Attoparsec parsers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "replace-megaparsec" = callPackage - ({ mkDerivation, base, bytestring, megaparsec, stdenv, text }: - mkDerivation { - pname = "replace-megaparsec"; - version = "1.2.0.0"; - sha256 = "f430ac256fba8c08ab2cc9a8798f494f443840422f2c23827c8deca949c73169"; - libraryHaskellDepends = [ base bytestring megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jamesdbrock/replace-megaparsec"; - description = "Find, replace, and edit text patterns with Megaparsec parsers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "repline" = callPackage - ({ mkDerivation, base, containers, exceptions, haskeline, mtl - , process, stdenv - }: - mkDerivation { - pname = "repline"; - version = "0.2.2.0"; - sha256 = "a191edc3fd5ade0035e17792bf98cdf54eeedc4293b02209da250959806bc519"; - revision = "1"; - editedCabalFile = "1x4f1cbn9ylg82h853mqhm0sda6lz76ssk45d0x842pjbn3y46xx"; - libraryHaskellDepends = [ - base containers exceptions haskeline mtl process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sdiehl/repline"; - description = "Haskeline wrapper for GHCi-like REPL interfaces"; - license = stdenv.lib.licenses.mit; - }) {}; - "req" = callPackage - ({ mkDerivation, aeson, authenticate-oauth, base, blaze-builder - , bytestring, case-insensitive, connection, http-api-data - , http-client, http-client-tls, http-types, modern-uri - , monad-control, mtl, retry, stdenv, text, time, transformers - , transformers-base - }: - mkDerivation { - pname = "req"; - version = "3.0.0"; - sha256 = "284c3d15b94d8d65e39cec60bbf70b2a6a472c32a2004233c982538e52a48a7d"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson authenticate-oauth base blaze-builder bytestring - case-insensitive connection http-api-data http-client - http-client-tls http-types modern-uri monad-control mtl retry text - time transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req"; - description = "Easy-to-use, type-safe, expandable, high-level HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "req-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-client, req - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "req-conduit"; - version = "1.0.0"; - sha256 = "1da764e4bdc5454aef3d79cff2d72c9fa393a8d049ab14c3ba2be77325d96ba4"; - revision = "6"; - editedCabalFile = "0wmzf62r5jawlccbndvsrr6cj4r0bdl4mqqwcnxz412cdq71w8hz"; - libraryHaskellDepends = [ - base bytestring conduit http-client req resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/req-conduit"; - description = "Conduit helpers for the req HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rerebase" = callPackage - ({ mkDerivation, rebase, stdenv }: - mkDerivation { - pname = "rerebase"; - version = "1.4.1"; - sha256 = "35f63d24f6b02bb310ce264f7ff175925dd5ff3f363d65a9536e068022bf43a5"; - libraryHaskellDepends = [ rebase ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/rerebase"; - description = "Reexports from \"base\" with a bunch of other standard libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "resource-pool" = callPackage - ({ mkDerivation, base, hashable, monad-control, stdenv, stm, time - , transformers, transformers-base, vector - }: - mkDerivation { - pname = "resource-pool"; - version = "0.2.3.2"; - sha256 = "8627eea2bea8824af2723646e74e2af0c73f583dd0c496c9fd242cd9d242bc12"; - libraryHaskellDepends = [ - base hashable monad-control stm time transformers transformers-base - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bos/pool"; - description = "A high-performance striped resource pooling implementation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "resourcet" = callPackage - ({ mkDerivation, base, containers, exceptions, mtl, primitive - , stdenv, transformers, unliftio-core - }: - mkDerivation { - pname = "resourcet"; - version = "1.2.2"; - sha256 = "1323425aba3827479eb3588efaf7608b12a083327d64ec814f02863c3673cbe5"; - libraryHaskellDepends = [ - base containers exceptions mtl primitive transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/conduit"; - description = "Deterministic allocation and freeing of scarce resources"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "result" = callPackage - ({ mkDerivation, base, bifunctors, keys, mtl, stdenv, transformers - }: - mkDerivation { - pname = "result"; - version = "0.2.6.0"; - sha256 = "f526d97cdab851f24e215e346f6d54d3a504a6ac5d9264f580c4f72d606178c5"; - libraryHaskellDepends = [ base bifunctors keys mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/srijs/haskell-result"; - description = "Encode success or at least one error"; - license = stdenv.lib.licenses.mit; - }) {}; - "rethinkdb-client-driver" = callPackage - ({ mkDerivation, aeson, base, binary, bytestring, containers - , hashable, mtl, network, old-locale, scientific, stdenv, stm - , template-haskell, text, time, unordered-containers, vector - }: - mkDerivation { - pname = "rethinkdb-client-driver"; - version = "0.0.25"; - sha256 = "0f9dc156cd61b866b847b1b1a60a2345b4b5556b8b75a9e8499b0514e7f98996"; - revision = "4"; - editedCabalFile = "1fjavc5gmz15za1yzj4b23gd50b2jj83l0d5pc2kmz8f6bs5nx9f"; - libraryHaskellDepends = [ - aeson base binary bytestring containers hashable mtl network - old-locale scientific stm template-haskell text time - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/wereHamster/rethinkdb-client-driver"; - description = "Client driver for RethinkDB"; - license = stdenv.lib.licenses.mit; - }) {}; - "retry" = callPackage - ({ mkDerivation, base, exceptions, ghc-prim, random, stdenv - , transformers - }: - mkDerivation { - pname = "retry"; - version = "0.8.1.0"; - sha256 = "b29521112dafdd91a64e71fec9656a23542fc820c4acadf3dae15565501e600a"; - libraryHaskellDepends = [ - base exceptions ghc-prim random transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/Soostone/retry"; - description = "Retry combinators for monadic actions that may fail"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rev-state" = callPackage - ({ mkDerivation, base, mtl, stdenv }: - mkDerivation { - pname = "rev-state"; - version = "0.1.2"; - sha256 = "ee070e39d7f7d673593e2f356ab317bc2fdd0d8a283f8316c0e5b5adbdf0f919"; - revision = "2"; - editedCabalFile = "0dfiwf4808vjhayv7xr058rzwl6jmsmhzy03mk48m9kmlqibk3fy"; - libraryHaskellDepends = [ base mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/rev-state#readme"; - description = "Reverse State monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rfc1751" = callPackage - ({ mkDerivation, base, bytestring, cereal, stdenv, vector }: - mkDerivation { - pname = "rfc1751"; - version = "0.1.2"; - sha256 = "a345e81625ffbdf3d3dc1723d322133108a5fd9ba17fbfae6e954046cd2b9aca"; - libraryHaskellDepends = [ base bytestring cereal vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xenog/rfc1751.git#readme"; - description = "RFC-1751 library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "rfc5051" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "rfc5051"; - version = "0.1.0.4"; - sha256 = "615daa230eabc781eff1d3ce94c42fc5ba6188dbeb115a233328454b02c1b3d3"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bytestring containers ]; - doHaddock = false; - doCheck = false; - description = "Simple unicode collation as per RFC5051"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rigel-viz" = callPackage - ({ mkDerivation, aeson, base, bytestring, colour, containers - , stdenv, text - }: - mkDerivation { - pname = "rigel-viz"; - version = "0.2.0.0"; - sha256 = "ba972f5ed4fde34b3d6185f311666cec93ec5618f047c28a09c5e9683d34cc7c"; - libraryHaskellDepends = [ - aeson base bytestring colour containers text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/rigel-viz"; - description = "A mid-level wrapper for vega-lite"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rio" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, directory - , exceptions, filepath, hashable, microlens, mtl, primitive - , process, stdenv, text, time, typed-process, unix, unliftio - , unliftio-core, unordered-containers, vector - }: - mkDerivation { - pname = "rio"; - version = "0.1.13.0"; - sha256 = "95750d0df4bc3c609df74e59854126ee8e0359edcfd25b75715e8542265d59cb"; - libraryHaskellDepends = [ - base bytestring containers deepseq directory exceptions filepath - hashable microlens mtl primitive process text time typed-process - unix unliftio unliftio-core unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "A standard library for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-orphans" = callPackage - ({ mkDerivation, base, exceptions, fast-logger, monad-control - , monad-logger, resourcet, rio, stdenv, transformers-base - }: - mkDerivation { - pname = "rio-orphans"; - version = "0.1.1.0"; - sha256 = "7e8d2c6df6e7afdbca5b344c6e57c754e2d6b9c0cfb4f00e1df88dad1bd48b4e"; - libraryHaskellDepends = [ - base exceptions fast-logger monad-control monad-logger resourcet - rio transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/rio#readme"; - description = "Orphan instances for the RIO type in the rio package"; - license = stdenv.lib.licenses.mit; - }) {}; - "rio-prettyprint" = callPackage - ({ mkDerivation, aeson, annotated-wl-pprint, ansi-terminal, array - , base, Cabal, colour, mtl, path, rio, stdenv, text - }: - mkDerivation { - pname = "rio-prettyprint"; - version = "0.1.0.0"; - sha256 = "15e4ddc5268f033cfad89ddd023d4157c7dc5784004aa40d232581380e6b1459"; - revision = "2"; - editedCabalFile = "1hvhjqy7kfk7fglx1rw8axscy0dfzqwd1564awnwdhvmf8silkkn"; - libraryHaskellDepends = [ - aeson annotated-wl-pprint ansi-terminal array base Cabal colour mtl - path rio text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/commercialhaskell/stack#readme"; - description = "Pretty-printing for RIO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "roc-id" = callPackage - ({ mkDerivation, base, MonadRandom, Only, stdenv, text - , vector-sized - }: - mkDerivation { - pname = "roc-id"; - version = "0.1.0.0"; - sha256 = "3144d7edc22fc5816b38fa356811417125572d062e07d23d8319466c68868429"; - libraryHaskellDepends = [ - base MonadRandom Only text vector-sized - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonathanknowles/roc-id#readme"; - description = "Implementation of the ROC National ID standard"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rocksdb-haskell" = callPackage - ({ mkDerivation, base, binary, bytestring, data-default, directory - , filepath, resourcet, rocksdb, stdenv, transformers - }: - mkDerivation { - pname = "rocksdb-haskell"; - version = "1.0.1"; - sha256 = "b8407c933f503c2e21578a558b829288917f0f6f5ff7c32229cf5b11abed4dff"; - libraryHaskellDepends = [ - base binary bytestring data-default directory filepath resourcet - transformers - ]; - librarySystemDepends = [ rocksdb ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/serokell/rocksdb-haskell"; - description = "Haskell bindings to RocksDB"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) rocksdb;}; - "rocksdb-query" = callPackage - ({ mkDerivation, base, bytestring, cereal, conduit, resourcet - , rocksdb-haskell, stdenv, unliftio - }: - mkDerivation { - pname = "rocksdb-query"; - version = "0.3.1"; - sha256 = "0e6c0d7e1df6e0da1378871b87adce3403df7915419e76f4d2f996d58b23541c"; - libraryHaskellDepends = [ - base bytestring cereal conduit resourcet rocksdb-haskell unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jprupp/rocksdb-query#readme"; - description = "RocksDB database querying library for Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "roles" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "roles"; - version = "0.2.0.0"; - sha256 = "e29d2f31b21b2d8ce3507e17211e70a61d2e434a8e19f80b2e4898bdabac34a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/matt-noonan/roles/"; - description = "Composable class-based roles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rope-utf16-splay" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "rope-utf16-splay"; - version = "0.3.1.0"; - sha256 = "cbf878098355441ed7be445466fcb72d45390073a298b37649d762de2a7f8cc6"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ollef/rope-utf16-splay"; - description = "Ropes optimised for updating using UTF-16 code units and row/column pairs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rosezipper" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "rosezipper"; - version = "0.2"; - sha256 = "6cab4f1c192cc3b8b0a9eb11a32780d235020a539a0e91125eed5ec590bad7bc"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "Generic zipper implementation for Data.Tree"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rot13" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "rot13"; - version = "0.2.0.1"; - sha256 = "e026d418cc6a1ce83ba11e811387e62ad49ffb1cbd6ae7f58b72fd179fccd4dc"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kvanberendonck/codec-rot13"; - description = "Fast ROT13 cipher for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "rpmbuild-order" = callPackage - ({ mkDerivation, base, bytestring, Cabal, containers, directory - , fgl, filepath, optparse-applicative, process, simple-cmd-args - , stdenv - }: - mkDerivation { - pname = "rpmbuild-order"; - version = "0.3"; - sha256 = "9982a02c70a921a5356fefb7b4ef8fb9583e095c9f7975d398ab1c1e9a0dacf0"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal containers directory fgl filepath - optparse-applicative process simple-cmd-args - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/rpmbuild-order"; - description = "Order RPM packages by dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "run-st" = callPackage - ({ mkDerivation, base, primitive, primitive-unlifted, stdenv }: - mkDerivation { - pname = "run-st"; - version = "0.1.1.0"; - sha256 = "6eb78090904ca63ce54e753853b0951475363abbe3d1977b053e0bb179472e86"; - libraryHaskellDepends = [ base primitive primitive-unlifted ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/run-st"; - description = "runST without boxing penalty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "runmemo" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "runmemo"; - version = "1.0.0.1"; - sha256 = "ba5ef3177f8fe5f443808e44f62d03b23ac19bbef7f708e40532031a3505d689"; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/runmemo"; - description = "A simple memoization helper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe"; - version = "0.3.18"; - sha256 = "d7775be28af83beeee2fa8921201c6b93358ba6a23a2967d53e5f382a9ec0fed"; - revision = "1"; - editedCabalFile = "0zr1di94nbvs6848g1ng6azl7nwm7454kjig2c7gcf9sp4q7z8ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/safe#readme"; - description = "Library of safe (exception free) functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-exceptions" = callPackage - ({ mkDerivation, base, deepseq, exceptions, stdenv, transformers }: - mkDerivation { - pname = "safe-exceptions"; - version = "0.1.7.0"; - sha256 = "18cddc587b52b6faa0287fb6ad6c964d1562571ea2c8ff57a194dd54b5fba069"; - revision = "5"; - editedCabalFile = "0yghh99yg24pzhzrflvgi4ip56ln7a56871pl3q70sm8rszy8vbr"; - libraryHaskellDepends = [ base deepseq exceptions transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/safe-exceptions#readme"; - description = "Safe, consistent, and easy exception handling"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-exceptions-checked" = callPackage - ({ mkDerivation, base, deepseq, safe-exceptions, stdenv - , transformers - }: - mkDerivation { - pname = "safe-exceptions-checked"; - version = "0.1.0"; - sha256 = "d807552b828de308d80805f65ee41f3e25571506b10e6b28b0b81de4aec0ca3f"; - revision = "3"; - editedCabalFile = "004id0k46j545zvkldfcv5qjgxzl35brm9h6fq72y43b9hl2y55f"; - libraryHaskellDepends = [ - base deepseq safe-exceptions transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/safe-exceptions-checked#readme"; - description = "Safe, checked exceptions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safe-foldable" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "safe-foldable"; - version = "0.1.0.0"; - sha256 = "ca7f2ecc0e799c239df8ce56e8592fb8b8264c229ab4e1c66e0f821d299007d1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tejon/safe-foldable#readme"; - description = "Safe wrappers for null-partial Foldable operations"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, dlist - , hashable, scientific, stdenv, tasty, tasty-hunit - , tasty-quickcheck, text, time, unordered-containers, uuid-types - , vector - }: - mkDerivation { - pname = "safe-json"; - version = "1.1.0"; - sha256 = "1c1e240ff52aff236e7246e19df5adaad278d81f5991875429c73dc69a70faa3"; - libraryHaskellDepends = [ - aeson base bytestring containers dlist hashable scientific tasty - tasty-hunit tasty-quickcheck text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Vlix/safe-json#readme"; - description = "Automatic JSON format versioning"; - license = stdenv.lib.licenses.mit; - }) {}; - "safe-money" = callPackage - ({ mkDerivation, base, binary, constraints, deepseq, hashable - , QuickCheck, stdenv, text, vector-space - }: - mkDerivation { - pname = "safe-money"; - version = "0.9"; - sha256 = "ee6810cc3f67da59d9300b3baa1c90f9a9d6876d0f563a070a9f3ddcbcbe7d30"; - libraryHaskellDepends = [ - base binary constraints deepseq hashable QuickCheck text - vector-space - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/safe-money"; - description = "Type-safe and lossless encoding and manipulation of money, fiat currencies, crypto currencies and precious metals"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "safecopy" = callPackage - ({ mkDerivation, array, base, bytestring, cereal, containers - , generic-data, old-time, stdenv, template-haskell, text, time - , transformers, vector - }: - mkDerivation { - pname = "safecopy"; - version = "0.10.2"; - sha256 = "f329c5a4f57f7be4c15d962f73eedb3da0d8b251414329700260e25df1111275"; - libraryHaskellDepends = [ - array base bytestring cereal containers generic-data old-time - template-haskell text time transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/acid-state/safecopy"; - description = "Binary serialization with version control"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "safeio" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, exceptions, filepath, resourcet, stdenv, unix - }: - mkDerivation { - pname = "safeio"; - version = "0.0.5.0"; - sha256 = "d5799b6a6cd36e8f5442d991ed3a2076b10e0e3131269a2090b8c9c5c001e311"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory exceptions - filepath resourcet unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/safeio#readme"; - description = "Write output to disk atomically"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default - , directory, dlist, exceptions, filepath, hashable, heaps - , megaparsec, mtl, scientific, stdenv, text, time, unliftio-core - , unordered-containers - }: - mkDerivation { - pname = "salak"; - version = "0.3.5.3"; - sha256 = "4b805722457e5ffeacd8eaef0c97b636aa335993af870e5d36ea9bd7e516df4c"; - revision = "1"; - editedCabalFile = "138c763crbfipcb9ss1lk3wx3482nm2v4zbm3k88h6jszxhmxvav"; - libraryHaskellDepends = [ - base bytestring containers data-default directory dlist exceptions - filepath hashable heaps megaparsec mtl scientific text time - unliftio-core unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration (re)Loader and Parser"; - license = stdenv.lib.licenses.mit; - }) {}; - "salak-yaml" = callPackage - ({ mkDerivation, base, conduit, libyaml, salak, stdenv, text }: - mkDerivation { - pname = "salak-yaml"; - version = "0.3.5.3"; - sha256 = "0000a908b36da9e393233e85d47346b9f5c04c4709bbe68a45b92d541ae58c1f"; - libraryHaskellDepends = [ base conduit libyaml salak text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/salak#readme"; - description = "Configuration Loader for yaml"; - license = stdenv.lib.licenses.mit; - }) {}; - "saltine" = callPackage - ({ mkDerivation, base, bytestring, libsodium, profunctors, stdenv - }: - mkDerivation { - pname = "saltine"; - version = "0.1.0.2"; - sha256 = "fd989db905f3e1d742b9fcb9501d6483ffa82620e287cf51b62e0d6d2caaa308"; - libraryHaskellDepends = [ base bytestring profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - doHaddock = false; - doCheck = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) libsodium;}; - "salve" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "salve"; - version = "1.0.8"; - sha256 = "5593d10dfe3ce177cf9037338a2ca80923f796c7a8cd70cc062b32c66cf4ecc1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/salve#readme"; - description = "Semantic version numbers and constraints"; - license = stdenv.lib.licenses.mit; - }) {}; - "sample-frame" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, storable-record }: - mkDerivation { - pname = "sample-frame"; - version = "0.0.3"; - sha256 = "5baf301a4f7b2d52e6b9b9c06b10afd3938de0be6d09736d0188616cd9027247"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base QuickCheck storable-record ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Handling of samples in an (audio) signal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sample-frame-np" = callPackage - ({ mkDerivation, base, numeric-prelude, sample-frame, stdenv }: - mkDerivation { - pname = "sample-frame-np"; - version = "0.0.4.1"; - sha256 = "b1db7621b07503f5fe49390bf1e1b4257c49f4760d617121a23d845278f93624"; - libraryHaskellDepends = [ base numeric-prelude sample-frame ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Synthesizer"; - description = "Orphan instances for types from sample-frame and numericprelude"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sampling" = callPackage - ({ mkDerivation, base, containers, foldl, mwc-random, primitive - , stdenv, vector - }: - mkDerivation { - pname = "sampling"; - version = "0.3.3"; - sha256 = "c8bedc93d61e6b1939f6802d7e21003e9e36abdd6f21a9651179d4d82aa00e0d"; - revision = "1"; - editedCabalFile = "168k8ykppa8pikfxy1gmby63kfzr833vswh8wcchz8li9vkd4w2h"; - libraryHaskellDepends = [ - base containers foldl mwc-random primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtobin/sampling"; - description = "Sample values from collections"; - license = stdenv.lib.licenses.mit; - }) {}; - "say" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, transformers }: - mkDerivation { - pname = "say"; - version = "0.1.0.1"; - sha256 = "f639656fc21925c45f3f55769b9fb7a90699e943376a725e215a5deea473b3e4"; - libraryHaskellDepends = [ base bytestring text transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/say#readme"; - description = "Send textual messages to a Handle in a thread-friendly way"; - license = stdenv.lib.licenses.mit; - }) {}; - "sbp" = callPackage - ({ mkDerivation, aeson, aeson-pretty, array, base - , base64-bytestring, basic-prelude, binary, binary-conduit - , bytestring, cmdargs, conduit, conduit-extra, data-binary-ieee754 - , lens, lens-aeson, monad-loops, resourcet, stdenv - , template-haskell, text, time, yaml - }: - mkDerivation { - pname = "sbp"; - version = "2.6.3"; - sha256 = "316e4c2301fece2db29ffc5cbca45c00f4d20539b1a5c14e20b43c3a8ee2a20d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson array base base64-bytestring basic-prelude binary bytestring - data-binary-ieee754 lens lens-aeson monad-loops template-haskell - text - ]; - executableHaskellDepends = [ - aeson aeson-pretty base basic-prelude binary-conduit bytestring - cmdargs conduit conduit-extra resourcet time yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/swift-nav/libsbp"; - description = "SwiftNav's SBP Library"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "scalpel" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-default - , http-client, http-client-tls, scalpel-core, stdenv, tagsoup, text - }: - mkDerivation { - pname = "scalpel"; - version = "0.6.1"; - sha256 = "06eacef7ea7a057005cb9d5b2d61dd73151d7708ccfe5e10de4133aca8fe0933"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-default http-client - http-client-tls scalpel-core tagsoup text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scalpel-core" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, fail - , pointedlist, regex-base, regex-tdfa, stdenv, tagsoup, text - , vector - }: - mkDerivation { - pname = "scalpel-core"; - version = "0.6.1"; - sha256 = "d6bb86efd623ca54d094e88aa31d30cc2f3f2693aad7e38794f9157d0b002fa5"; - libraryHaskellDepends = [ - base bytestring containers data-default fail pointedlist regex-base - regex-tdfa tagsoup text vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fimad/scalpel"; - description = "A high level web scraping library for Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "scanf" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "scanf"; - version = "0.1.0.0"; - sha256 = "5675132f172ab4ed460f440df21e203c09457c2fff34fb6a389129a9da78c375"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/scanf#readme"; - description = "Easy and type-safe format strings for parsing and printing"; - license = stdenv.lib.licenses.mit; - }) {}; - "scanner" = callPackage - ({ mkDerivation, base, bytestring, fail, stdenv }: - mkDerivation { - pname = "scanner"; - version = "0.3.1"; - sha256 = "53205f5a7dcb7a0547c9394ddb28a6eeb181627f006b875bfc08a88c498218d6"; - libraryHaskellDepends = [ base bytestring fail ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Yuras/scanner"; - description = "Fast non-backtracking incremental combinator parsing for bytestrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scheduler" = callPackage - ({ mkDerivation, atomic-primops, base, Cabal, cabal-doctest - , deepseq, exceptions, primitive, stdenv, unliftio-core - }: - mkDerivation { - pname = "scheduler"; - version = "1.4.2.1"; - sha256 = "2cf09ecf8350a74a0a66c603b26b358e30d894aab151f7ee9b874a3dcf00951c"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - atomic-primops base deepseq exceptions primitive unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/lehins/haskell-scheduler"; - description = "Work stealing scheduler"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scientific" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, deepseq - , hashable, integer-gmp, integer-logarithms, primitive, stdenv - , text - }: - mkDerivation { - pname = "scientific"; - version = "0.3.6.2"; - sha256 = "278d0afc87450254f8a76eab21b5583af63954efc9b74844a17a21a68013140f"; - libraryHaskellDepends = [ - base binary bytestring containers deepseq hashable integer-gmp - integer-logarithms primitive text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/scientific"; - description = "Numbers represented using scientific notation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scotty" = callPackage - ({ mkDerivation, aeson, base, blaze-builder, bytestring - , case-insensitive, data-default-class, exceptions, fail - , http-types, monad-control, mtl, nats, network, regex-compat - , stdenv, text, transformers, transformers-base - , transformers-compat, wai, wai-extra, warp - }: - mkDerivation { - pname = "scotty"; - version = "0.11.5"; - sha256 = "6f3be75e2fed8b7c7d655a96788fe385629ded5196316158d814a0f9873cd2df"; - libraryHaskellDepends = [ - aeson base blaze-builder bytestring case-insensitive - data-default-class exceptions fail http-types monad-control mtl - nats network regex-compat text transformers transformers-base - transformers-compat wai wai-extra warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/scotty"; - description = "Haskell web framework inspired by Ruby's Sinatra, using WAI and Warp"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "scrypt" = callPackage - ({ mkDerivation, base, base64-bytestring, bytestring, entropy - , stdenv - }: - mkDerivation { - pname = "scrypt"; - version = "0.5.0"; - sha256 = "3ec0a622393e2a4dbbce4c899602c848d924f8516688491b1162331b7093d9b2"; - libraryHaskellDepends = [ - base base64-bytestring bytestring entropy - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/informatikr/scrypt"; - description = "Stronger password hashing via sequential memory-hard functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sdl2" = callPackage - ({ mkDerivation, base, bytestring, exceptions, linear, SDL2 - , StateVar, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "sdl2"; - version = "2.5.0.0"; - sha256 = "883bcc6967194ca2a5d69067b85efccf7f6ba40e7237d4371bab94d6a04766f4"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring exceptions linear StateVar text transformers vector - ]; - librarySystemDepends = [ SDL2 ]; - libraryPkgconfigDepends = [ SDL2 ]; - doHaddock = false; - doCheck = false; - description = "Both high- and low-level bindings to the SDL library (version 2.0.6+)."; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2;}; - "sdl2-gfx" = callPackage - ({ mkDerivation, base, bytestring, lifted-base, linear - , monad-control, SDL2, sdl2, SDL2_gfx, stdenv, template-haskell - , text, transformers, vector - }: - mkDerivation { - pname = "sdl2-gfx"; - version = "0.2"; - sha256 = "8c1e10b7a675d782cd650820c75c4ef9225718ad6aaa3f8db02e869b7720c50d"; - revision = "1"; - editedCabalFile = "1gdasf1rq7gszfhin521cni8bxfzanvssznfi8m2fkgwz6ichhpv"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring lifted-base linear monad-control sdl2 - template-haskell text transformers vector - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_gfx ]; - executableHaskellDepends = [ base linear sdl2 vector ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_gfx"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_gfx;}; - "sdl2-image" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_image, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-image"; - version = "2.0.0"; - sha256 = "399742b2b7e64fe4e58c9d8a44ad29b2c355589233535238f8c9b371de6c26df"; - revision = "1"; - editedCabalFile = "0471p3d1ws5n7r072xgk38n3vzs6ijjkmpv1r05vxn6qninlnq6m"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_image ]; - executableHaskellDepends = [ base sdl2 text ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_image"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_image;}; - "sdl2-mixer" = callPackage - ({ mkDerivation, base, bytestring, data-default-class, lifted-base - , monad-control, sdl2, SDL2_mixer, stdenv, template-haskell, vector - }: - mkDerivation { - pname = "sdl2-mixer"; - version = "1.1.0"; - sha256 = "0f4c15a1bda7b265923278641d686756292fc2a8f1c5ced7f98916cc98df0acd"; - revision = "1"; - editedCabalFile = "06h708gbvl5z590p6fn10ck6yxjzyjjbmvk6mxcwgygbj76sw2f8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring data-default-class lifted-base monad-control sdl2 - template-haskell vector - ]; - librarySystemDepends = [ SDL2_mixer ]; - libraryPkgconfigDepends = [ SDL2_mixer ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_mixer"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2_mixer;}; - "sdl2-ttf" = callPackage - ({ mkDerivation, base, bytestring, SDL2, sdl2, SDL2_ttf, stdenv - , template-haskell, text, transformers - }: - mkDerivation { - pname = "sdl2-ttf"; - version = "2.1.0"; - sha256 = "c7656fe923e618d3919d47ac753451b08e6d709372380e15bd3d75b39f2c80f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring sdl2 template-haskell text transformers - ]; - libraryPkgconfigDepends = [ SDL2 SDL2_ttf ]; - doHaddock = false; - doCheck = false; - description = "Bindings to SDL2_ttf"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) SDL2; inherit (pkgs) SDL2_ttf;}; - "search-algorithms" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "search-algorithms"; - version = "0.3.1"; - sha256 = "9be6f03ff407e115d4d6101dd7da529a560a9b85c723031fb549507466bd03a0"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/devonhollowood/search-algorithms#readme"; - description = "Common graph search algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "secp256k1-haskell" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cereal - , deepseq, entropy, hashable, libsecp256k1, QuickCheck, stdenv - , string-conversions - }: - mkDerivation { - pname = "secp256k1-haskell"; - version = "0.1.8"; - sha256 = "530e371bce0b615b77779cfb78afba30ca06e6add59a0cacad99134e377bb57a"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cereal deepseq entropy hashable - QuickCheck string-conversions - ]; - libraryPkgconfigDepends = [ libsecp256k1 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskoin/secp256k1-haskell#readme"; - description = "Bindings for secp256k1 library from Bitcoin Core"; - license = stdenv.lib.licenses.publicDomain; - }) {inherit (pkgs) libsecp256k1;}; - "securemem" = callPackage - ({ mkDerivation, base, byteable, bytestring, ghc-prim, memory - , stdenv - }: - mkDerivation { - pname = "securemem"; - version = "0.1.10"; - sha256 = "32895a4748508da58207b4867266601af6259b7109af80bbf5d2e9e598e016a6"; - libraryHaskellDepends = [ - base byteable bytestring ghc-prim memory - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/hs-securemem"; - description = "abstraction to an auto scrubbing and const time eq, memory chunk"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "selda" = callPackage - ({ mkDerivation, base, bytestring, containers, exceptions, mtl - , random, stdenv, text, time, uuid-types - }: - mkDerivation { - pname = "selda"; - version = "0.5.1.0"; - sha256 = "f465dab0199994d77cd060c7d37631709ec593a537c063f901051b8e5f73a7bd"; - libraryHaskellDepends = [ - base bytestring containers exceptions mtl random text time - uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "Multi-backend, high-level EDSL for interacting with SQL databases"; - license = stdenv.lib.licenses.mit; - }) {}; - "selda-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, selda, stdenv, text }: - mkDerivation { - pname = "selda-json"; - version = "0.1.1.0"; - sha256 = "88061090d899eb831c72d39de21d6311ab1219e89188f641c777daf22b2622aa"; - libraryHaskellDepends = [ aeson base bytestring selda text ]; - doHaddock = false; - doCheck = false; - homepage = "https://selda.link"; - description = "JSON support for the Selda database library"; - license = stdenv.lib.licenses.mit; - }) {}; - "selective" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "selective"; - version = "0.3"; - sha256 = "5a09a2a2f15f3d55eab33d177bbd71c83137d6e507ced208b951c50053c2b48c"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snowleopard/selective"; - description = "Selective applicative functors"; - license = stdenv.lib.licenses.mit; - }) {}; - "semialign" = callPackage - ({ mkDerivation, base, base-compat, containers, hashable - , semigroupoids, stdenv, tagged, these, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "semialign"; - version = "1.1"; - sha256 = "f3e218bf7fb3ea8145dbf1051e3460e99a0d4064f0e76238595f996858e287d8"; - libraryHaskellDepends = [ - base base-compat containers hashable semigroupoids tagged these - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Align and Zip type-classes from the common Semialign ancestor"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semialign-indexed" = callPackage - ({ mkDerivation, base, containers, hashable, lens, semialign - , stdenv, these, unordered-containers, vector - }: - mkDerivation { - pname = "semialign-indexed"; - version = "1.1"; - sha256 = "60f1dd3df6b1b1bf6d835209f55d4deedf0587a26a236e0a54c8a4c9a1abcaac"; - libraryHaskellDepends = [ - base containers hashable lens semialign these unordered-containers - vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "SemialignWithIndex, i.e. izipWith and ialignWith"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semialign-optics" = callPackage - ({ mkDerivation, base, containers, hashable, optics-extra - , semialign, stdenv, these, unordered-containers, vector - }: - mkDerivation { - pname = "semialign-optics"; - version = "1.1"; - sha256 = "3e95b5f241c65a1124955492a8febf01cd02dc01b2a02a8bb7b66918a65dd1b9"; - libraryHaskellDepends = [ - base containers hashable optics-extra semialign these - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "SemialignWithIndex, i.e. izipWith and ialignWith"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoid-extras" = callPackage - ({ mkDerivation, base, profunctors, semigroupoids, stdenv }: - mkDerivation { - pname = "semigroupoid-extras"; - version = "5"; - sha256 = "102e33b55cc3b15a1b714825a3703f3fc2bb09d8038404af442d35c0ac0c3832"; - libraryHaskellDepends = [ base profunctors semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoid-extras"; - description = "Semigroupoids that depend on PolyKinds"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroupoids" = callPackage - ({ mkDerivation, base, base-orphans, bifunctors, Cabal - , cabal-doctest, comonad, containers, contravariant, distributive - , hashable, stdenv, tagged, template-haskell, transformers - , transformers-compat, unordered-containers - }: - mkDerivation { - pname = "semigroupoids"; - version = "5.3.4"; - sha256 = "00d2e48973c3ab0a5d52616728ed63d0509454c8328148f698720014d7c58964"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-orphans bifunctors comonad containers contravariant - distributive hashable tagged template-haskell transformers - transformers-compat unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroupoids"; - description = "Semigroupoids: Category sans id"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semigroups" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semigroups"; - version = "0.18.5"; - sha256 = "ab2a96af6e81e31b909c37ba65f436f1493dbf387cfe0de10b6586270c4ce29d"; - revision = "1"; - editedCabalFile = "1inqcxrzzs8xz60pvbmznyi6g6xwzpxv7p6dqlcwariz31grzvs1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/semigroups/"; - description = "Anything that associates"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semiring-simple" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "semiring-simple"; - version = "1.0.0.1"; - sha256 = "c08d1b533f4559fc55119f563a6cf3d74ad7c6f5916c2efe00b50d2a5169fd28"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A module for dealing with semirings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semirings" = callPackage - ({ mkDerivation, base, containers, hashable, integer-gmp, stdenv - , unordered-containers - }: - mkDerivation { - pname = "semirings"; - version = "0.5.2"; - sha256 = "5fb7a7e81a8d0268d30dad06f9bb6d734a9fe9c8a6603e9387391117df80ffe4"; - libraryHaskellDepends = [ - base containers hashable integer-gmp unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/chessai/semirings"; - description = "two monoids as one, in holy haskimony"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "semver" = callPackage - ({ mkDerivation, attoparsec, base, deepseq, hashable, stdenv, text - }: - mkDerivation { - pname = "semver"; - version = "0.3.4"; - sha256 = "42dbdacb08f30ac8bf2f014981cb080737f793b89d57626cb7e2ab8c3d768e6b"; - libraryHaskellDepends = [ attoparsec base deepseq hashable text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/semver"; - description = "Representation, manipulation, and de/serialisation of Semantic Versions"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv }: - mkDerivation { - pname = "sendfile"; - version = "0.7.11.1"; - sha256 = "e0e6c45e73578d2d7139e23a965937ac4514e5d310613607bfd4afd1abd50825"; - libraryHaskellDepends = [ base bytestring network ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/stepcut/sendfile"; - description = "A portable sendfile library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "seqalign" = callPackage - ({ mkDerivation, base, bytestring, stdenv, vector }: - mkDerivation { - pname = "seqalign"; - version = "0.2.0.4"; - sha256 = "4ea194658d865890157d3df882ed21b0c089cdff7f80ea613ae25c5f3d744305"; - libraryHaskellDepends = [ base bytestring vector ]; - doHaddock = false; - doCheck = false; - description = "Sequence Alignment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sequence-formats" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, errors - , exceptions, foldl, lens-family, pipes, pipes-attoparsec - , pipes-bytestring, pipes-safe, stdenv, transformers, vector - }: - mkDerivation { - pname = "sequence-formats"; - version = "1.4.1"; - sha256 = "c30e71ea46cca8b073bd96c35532c8a178dbaed909cf0b4209fa23a9eec6c284"; - libraryHaskellDepends = [ - attoparsec base bytestring containers errors exceptions foldl - lens-family pipes pipes-attoparsec pipes-bytestring pipes-safe - transformers vector - ]; - doHaddock = false; - doCheck = false; - description = "A package with basic parsing utilities for several Bioinformatic data formats"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "sequenceTools" = callPackage - ({ mkDerivation, ansi-wl-pprint, base, bytestring, foldl - , lens-family, optparse-applicative, pipes, pipes-group - , pipes-ordered-zip, pipes-safe, random, rio, sequence-formats - , split, stdenv, vector - }: - mkDerivation { - pname = "sequenceTools"; - version = "1.4.0.5"; - sha256 = "38991171b75af5dd5a86ec70e53d61dc7da2e6bea8dfeae3404a2e10db20911b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring optparse-applicative pipes random sequence-formats - vector - ]; - executableHaskellDepends = [ - ansi-wl-pprint base bytestring foldl lens-family - optparse-applicative pipes pipes-group pipes-ordered-zip pipes-safe - random rio sequence-formats split vector - ]; - doHaddock = false; - doCheck = false; - description = "A package with tools for processing DNA sequencing data"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "serf" = callPackage - ({ mkDerivation, attoparsec, base, conduit, conduit-extra, mtl - , operational, process, resourcet, stdenv, text - }: - mkDerivation { - pname = "serf"; - version = "0.1.1.0"; - sha256 = "d6c9c6ddf99a2119c6686732caf9f04ef8e9c4df5519a8bbd4ac7f5531d4c067"; - libraryHaskellDepends = [ - attoparsec base conduit conduit-extra mtl operational process - resourcet text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/sanetracker/serf"; - description = "Interact with Serf via Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "serialise" = callPackage - ({ mkDerivation, array, base, bytestring, cborg, containers - , ghc-prim, half, hashable, primitive, stdenv, text, time - , unordered-containers, vector - }: - mkDerivation { - pname = "serialise"; - version = "0.2.2.0"; - sha256 = "33bcbb7b3796cf8a4615eadc29f7e382c2dc50d94c62b4825a73ed0687eea19e"; - libraryHaskellDepends = [ - array base bytestring cborg containers ghc-prim half hashable - primitive text time unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/well-typed/cborg"; - description = "A binary serialisation library for Haskell values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base-compat, bifunctors - , bytestring, Cabal, cabal-doctest, case-insensitive, deepseq - , http-api-data, http-media, http-types, mmorph, mtl, network-uri - , QuickCheck, singleton-bool, stdenv, string-conversions, tagged - , text, transformers, vault - }: - mkDerivation { - pname = "servant"; - version = "0.16.2"; - sha256 = "d6fcd5a7ebb9776edad295ec44c6179daad95b6696b02611a4d5af45a70ff47b"; - revision = "1"; - editedCabalFile = "0v913vjklgwyfbn7k2v70943gy4i8ja3y6crpyrg5llxkb81jpbc"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson attoparsec base base-compat bifunctors bytestring - case-insensitive deepseq http-api-data http-media http-types mmorph - mtl network-uri QuickCheck singleton-bool string-conversions tagged - text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "A family of combinators for defining webservices APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-JuicyPixels" = callPackage - ({ mkDerivation, base, bytestring, http-media, JuicyPixels, servant - , servant-server, stdenv, wai, warp - }: - mkDerivation { - pname = "servant-JuicyPixels"; - version = "0.3.0.5"; - sha256 = "9d563ad9ec2cbb46667c2fa87157e788732cd2bdf873882622fdfa8ebe591dd2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-media JuicyPixels servant - ]; - executableHaskellDepends = [ - base JuicyPixels servant servant-server wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tvh/servant-JuicyPixels"; - description = "Servant support for JuicyPixels"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-blaze" = callPackage - ({ mkDerivation, base, blaze-html, http-media, servant, stdenv }: - mkDerivation { - pname = "servant-blaze"; - version = "0.9"; - sha256 = "79981f35382b8dc0bd0492a1362f6bbb3e77ff72649cc09ab513c5530dbbd6dd"; - revision = "3"; - editedCabalFile = "0pn9ca2jmx71clz0j9nlz1lwmr2xv39zqfda10al11am9mc4j8n4"; - libraryHaskellDepends = [ base blaze-html http-media servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Blaze-html support for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-cassava" = callPackage - ({ mkDerivation, base, base-compat, bytestring, cassava, http-media - , servant, stdenv, vector - }: - mkDerivation { - pname = "servant-cassava"; - version = "0.10"; - sha256 = "9b2c5d906f3a4bb2767b2ce91f12a74e24adceadd296220b5d7216c5e1f3560e"; - revision = "7"; - editedCabalFile = "0n4nbm0axa9qd805jb3gja2p2fiwvhjpvdi5rhlwh4shm9crppcy"; - libraryHaskellDepends = [ - base base-compat bytestring cassava http-media servant vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant CSV content-type for cassava"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions" = callPackage - ({ mkDerivation, base, bytestring, http-types, servant - , servant-checked-exceptions-core, servant-client - , servant-client-core, servant-server, stdenv, wai, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions"; - version = "2.2.0.0"; - sha256 = "70156713a8a612469efc074dd26d3a4d91fcdc9425d1a96dc214343165b60bea"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring http-types servant servant-checked-exceptions-core - servant-client servant-client-core servant-server wai world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-checked-exceptions-core" = callPackage - ({ mkDerivation, aeson, base, bytestring, contravariant, http-media - , http-types, mtl, profunctors, servant, servant-docs, stdenv - , tagged, text, transformers, world-peace - }: - mkDerivation { - pname = "servant-checked-exceptions-core"; - version = "2.2.0.0"; - sha256 = "ccf46e9b9e91f7b3eee0c1f32c1a4e09fb00ba89ea5d06aef4c019d9349f2ac7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring contravariant http-media http-types mtl - profunctors servant servant-docs tagged text transformers - world-peace - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-checked-exceptions"; - description = "Checked exceptions for Servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client" = callPackage - ({ mkDerivation, base, base-compat, bytestring, containers, deepseq - , exceptions, http-client, http-media, http-types, kan-extensions - , monad-control, mtl, semigroupoids, servant, servant-client-core - , stdenv, stm, text, time, transformers, transformers-base - , transformers-compat - }: - mkDerivation { - pname = "servant-client"; - version = "0.16.0.1"; - sha256 = "0c517cff5b672fdc1d7dd7d4fa282f6827fc0cb2e0f89622d7a897da56e0d9f0"; - libraryHaskellDepends = [ - base base-compat bytestring containers deepseq exceptions - http-client http-media http-types kan-extensions monad-control mtl - semigroupoids servant servant-client-core stm text time - transformers transformers-base transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Automatic derivation of querying functions for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-client-core" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, containers, deepseq, exceptions, free, http-media - , http-types, network-uri, safe, servant, stdenv, template-haskell - , text, transformers - }: - mkDerivation { - pname = "servant-client-core"; - version = "0.16"; - sha256 = "bf8d750ba21fef9772387d0d03e35acac51093ea9ab031c8951c2af38f4a7b33"; - revision = "2"; - editedCabalFile = "172diqnz0ddvlfznfjk0k1l02f1mb11i1dkzr6rizdmhb66qpqil"; - libraryHaskellDepends = [ - aeson base base-compat base64-bytestring bytestring containers - deepseq exceptions free http-media http-types network-uri safe - servant template-haskell text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Core functionality and class for client function generation for servant APIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, mtl, resourcet, servant - , stdenv, unliftio-core - }: - mkDerivation { - pname = "servant-conduit"; - version = "0.15"; - sha256 = "dfd115301f29fd517cab6805211b8d10d4bdcf1cc5eb399aebb9124d199ef656"; - revision = "3"; - editedCabalFile = "0adximf4hg3bf7d9mkcjdsp5klg787ryb1hy3j49fg39l1rszac4"; - libraryHaskellDepends = [ - base bytestring conduit mtl resourcet servant unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-docs" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , case-insensitive, hashable, http-media, http-types, lens, servant - , stdenv, string-conversions, text, universe-base - , unordered-containers - }: - mkDerivation { - pname = "servant-docs"; - version = "0.11.4"; - sha256 = "0de0ea23739e41b411941a4ceb0721bad217a939c1e37a833991f75a4ace65fc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring case-insensitive - hashable http-media http-types lens servant string-conversions text - universe-base unordered-containers - ]; - executableHaskellDepends = [ - aeson base lens servant string-conversions text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "generate API docs for your servant webservice"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-foreign" = callPackage - ({ mkDerivation, base, base-compat, http-types, lens, servant - , stdenv, text - }: - mkDerivation { - pname = "servant-foreign"; - version = "0.15"; - sha256 = "f1197f1319a735b37c5fdd991556bf34b780a9b87d0e57d936a42ae6734bbd73"; - revision = "2"; - editedCabalFile = "0axz78g0vhasq5cvqg1lq0b2qanmb768f1bvzbfx58rn6arwflnj"; - libraryHaskellDepends = [ - base base-compat http-types lens servant text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Helpers for generating clients for servant APIs in any programming language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-js" = callPackage - ({ mkDerivation, base, base-compat, charset, lens, servant - , servant-foreign, stdenv, text - }: - mkDerivation { - pname = "servant-js"; - version = "0.9.4.1"; - sha256 = "8d8c43203f44d6debdf36e95b95bcfe995f3aebf95e75d35022f097c40b39a00"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat charset lens servant servant-foreign text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Automatically derive javascript functions to query servant webservices"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-lucid" = callPackage - ({ mkDerivation, base, http-media, lucid, servant, stdenv, text }: - mkDerivation { - pname = "servant-lucid"; - version = "0.9"; - sha256 = "6e3d6528a624a9b07c8f20359cfdf2392a7c4ec950b042abf56c802623e355f5"; - revision = "3"; - editedCabalFile = "10j29y9zjflh88csvn7zi4pm8jr9dxsglin94wypjrhcwy7yj1ic"; - libraryHaskellDepends = [ base http-media lucid servant text ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Servant support for lucid"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-machines" = callPackage - ({ mkDerivation, base, bytestring, machines, mtl, servant, stdenv - }: - mkDerivation { - pname = "servant-machines"; - version = "0.15"; - sha256 = "b18cc998c70adb9fc084942f184a2a6c44f6fc2eb830869a1a706ebeb706ec8c"; - revision = "4"; - editedCabalFile = "1p8ld4cxwsirlwz5ihrz6fyxbary4llxsnby42vjnhl19gylhdmk"; - libraryHaskellDepends = [ base bytestring machines mtl servant ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for machines"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-mock" = callPackage - ({ mkDerivation, aeson, base, base-compat, bytestring, http-types - , QuickCheck, servant, servant-server, stdenv, transformers, wai - , warp - }: - mkDerivation { - pname = "servant-mock"; - version = "0.8.5"; - sha256 = "ae547026ddc5d15bec0af9ea9324954f88dd605cae0775c81c45b1723dc77b81"; - revision = "3"; - editedCabalFile = "1137vz9xm8iwj6x8h1q1yify6c1lahy0dxj6hpbhgi4s3mqkhm2g"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base base-compat bytestring http-types QuickCheck servant - servant-server transformers wai - ]; - executableHaskellDepends = [ - aeson base QuickCheck servant-server warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell-servant.readthedocs.org/"; - description = "Derive a mock server for free from your servant API types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-pipes" = callPackage - ({ mkDerivation, base, bytestring, monad-control, mtl, pipes - , pipes-safe, servant, stdenv - }: - mkDerivation { - pname = "servant-pipes"; - version = "0.15.1"; - sha256 = "7e65ff5733a86d3a395cfc400ed0162b765fa2248e6bfa4f08b4a9d3913b56e4"; - revision = "1"; - editedCabalFile = "0xm07qxw0szffm8krbvj2kdflwlx2ixlhp5scaj3fhwivycyayvg"; - libraryHaskellDepends = [ - base bytestring monad-control mtl pipes pipes-safe servant - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "Servant Stream support for pipes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-purescript" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, directory - , filepath, http-types, lens, mainland-pretty, purescript-bridge - , servant, servant-foreign, servant-server, servant-subscriber - , stdenv, text - }: - mkDerivation { - pname = "servant-purescript"; - version = "0.9.0.4"; - sha256 = "d167d58e005900303751877bf0f104b2f68ba5a810294735841b92ff1504001e"; - libraryHaskellDepends = [ - aeson base bytestring containers directory filepath http-types lens - mainland-pretty purescript-bridge servant servant-foreign - servant-server servant-subscriber text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/eskimor/servant-purescript#readme"; - description = "Generate PureScript accessor functions for you servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-rawm" = callPackage - ({ mkDerivation, base, bytestring, filepath, http-client - , http-media, http-types, lens, resourcet, servant-client - , servant-client-core, servant-docs, servant-server, stdenv, wai - , wai-app-static - }: - mkDerivation { - pname = "servant-rawm"; - version = "0.3.2.0"; - sha256 = "2d90c1f6a284673ed28fc617170f191f5ed2f45ffd14e61fe49c575a7f426d04"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring filepath http-client http-media http-types lens - resourcet servant-client servant-client-core servant-docs - servant-server wai wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-rawm"; - description = "Embed a raw 'Application' in a Servant API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-server" = callPackage - ({ mkDerivation, aeson, base, base-compat, base64-bytestring - , bytestring, Cabal, cabal-doctest, containers, exceptions - , filepath, http-api-data, http-media, http-types, monad-control - , mtl, network, network-uri, resourcet, servant, stdenv - , string-conversions, tagged, text, transformers, transformers-base - , wai, wai-app-static, warp, word8 - }: - mkDerivation { - pname = "servant-server"; - version = "0.16.2"; - sha256 = "002d8cdcd64fea4623b86fe29e4954b36e8ec159ec78684e5ce59c5f9e7c93d0"; - revision = "1"; - editedCabalFile = "017aw6wyhi5g7zkk59yj44r1n02zzin2w9wdskwqys7iqkvnvczn"; - isLibrary = true; - isExecutable = true; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat base64-bytestring bytestring containers exceptions - filepath http-api-data http-media http-types monad-control mtl - network network-uri resourcet servant string-conversions tagged - text transformers transformers-base wai wai-app-static word8 - ]; - executableHaskellDepends = [ - aeson base base-compat servant text wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://docs.servant.dev/"; - description = "A family of combinators for defining webservices APIs and serving them"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-static-th" = callPackage - ({ mkDerivation, base, blaze-html, bytestring, containers - , directory, filepath, http-media, semigroups, servant - , servant-blaze, servant-server, stdenv, template-haskell, text - }: - mkDerivation { - pname = "servant-static-th"; - version = "0.2.2.1"; - sha256 = "35d3c1d24fece75c43d6063b3beba6ef37aa34241304761543be5430e2d32596"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html bytestring containers directory filepath http-media - semigroups servant servant-blaze servant-server template-haskell - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/servant-static-th"; - description = "Embed a directory of static files in your Servant server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "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, stdenv, stm, text, time, transformers, wai - , wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-subscriber"; - version = "0.6.0.3"; - sha256 = "11c7b5daa07dbf525c83f866f3f702108ea97e346cb734458e49046babc436c0"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/eskimor/servant-subscriber#readme"; - description = "When REST is not enough ..."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat, bytestring - , Cabal, cabal-doctest, hspec, http-media - , insert-ordered-containers, lens, QuickCheck, servant - , singleton-bool, stdenv, swagger2, text, unordered-containers - }: - mkDerivation { - pname = "servant-swagger"; - version = "1.1.7.1"; - sha256 = "8d46b4bb8cc1fa178aa8ffcb54d194a959d7f6b1bce1d039c24634bd8addb26d"; - revision = "2"; - editedCabalFile = "0ij93pd7lsq39grglhfrdjrg21bxigmhavy51xilg6rrpnfcj2wv"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat bytestring hspec http-media - insert-ordered-containers lens QuickCheck servant singleton-bool - swagger2 text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger"; - description = "Generate a Swagger/OpenAPI/OAS 2.0 specification for your servant API."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui"; - version = "0.3.4.3.23.11"; - sha256 = "0a4a0aea76b303b6594a07d4514bb23b60c8e7593daac40036d8fc4d0e34d967"; - revision = "2"; - editedCabalFile = "1wmxiihiwjkzwqqj2996fqmixz6jblj5gh43p7dxbww3g9fdz8qi"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-core" = callPackage - ({ mkDerivation, base, blaze-markup, bytestring, http-media - , servant, servant-blaze, servant-server, stdenv, swagger2, text - , transformers, transformers-compat, wai-app-static - }: - mkDerivation { - pname = "servant-swagger-ui-core"; - version = "0.3.3"; - sha256 = "03724a312f08d9f59893cf8a55be719219c0490bdd3fc0f83359ca459995ed3e"; - revision = "3"; - editedCabalFile = "0yx3q7y533v61ca4bm4wi8h7chbghj2rz92b330a544w7ac8il0p"; - libraryHaskellDepends = [ - base blaze-markup bytestring http-media servant servant-blaze - servant-server swagger2 text transformers transformers-compat - wai-app-static - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui core components"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-swagger-ui-redoc" = callPackage - ({ mkDerivation, base, bytestring, file-embed-lzma, servant - , servant-server, servant-swagger-ui-core, stdenv, swagger2, text - }: - mkDerivation { - pname = "servant-swagger-ui-redoc"; - version = "0.3.3.1.22.3"; - sha256 = "fbdf5282db9851d2d752842a3748348f7d21d372f1e99083723b090703ccf32f"; - revision = "2"; - editedCabalFile = "195vfc3871l1clk85kzxjvz1zr986lbvgy26fazfkfsn032s74c6"; - libraryHaskellDepends = [ - base bytestring file-embed-lzma servant servant-server - servant-swagger-ui-core swagger2 text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-swagger-ui"; - description = "Servant swagger ui: ReDoc theme"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-websockets" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, conduit - , exceptions, monad-control, resourcet, servant-server, stdenv - , text, wai, wai-websockets, warp, websockets - }: - mkDerivation { - pname = "servant-websockets"; - version = "2.0.0"; - sha256 = "c4262b5d5a01a692d8d9ca4abd735abe1ce7288ac456f5e819b5c358adbe43f7"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson async base bytestring conduit exceptions monad-control - resourcet servant-server text wai wai-websockets warp websockets - ]; - executableHaskellDepends = [ - aeson base conduit servant-server text wai warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/moesenle/servant-websockets#readme"; - description = "Small library providing WebSocket endpoints for servant"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "servant-yaml" = callPackage - ({ mkDerivation, base, bytestring, http-media, servant, stdenv - , yaml - }: - mkDerivation { - pname = "servant-yaml"; - version = "0.1.0.1"; - sha256 = "01547419509cd0424885146734c08acede329a660022f534ac9b19cc685bf601"; - revision = "4"; - editedCabalFile = "0k9jg3vf0p1332243mji4lzm3lk3frsmxxlz6lgg68rwh3baz6f0"; - libraryHaskellDepends = [ - base bytestring http-media servant yaml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-servant/servant-yaml#readme"; - description = "Servant support for yaml"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "serversession" = callPackage - ({ mkDerivation, aeson, base, base64-bytestring, bytestring - , data-default, hashable, nonce, path-pieces, stdenv, text, time - , transformers, unordered-containers - }: - mkDerivation { - pname = "serversession"; - version = "1.0.1"; - sha256 = "3ffbefd87017e8d46fbbe380f59e24672aa9c06b999da5f9ae0b052094d94822"; - libraryHaskellDepends = [ - aeson base base64-bytestring bytestring data-default hashable nonce - path-pieces text time transformers unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "Secure, modular server-side sessions"; - license = stdenv.lib.licenses.mit; - }) {}; - "serversession-frontend-wai" = callPackage - ({ mkDerivation, base, bytestring, cookie, data-default - , path-pieces, serversession, stdenv, text, time, transformers - , unordered-containers, vault, wai, wai-session - }: - mkDerivation { - pname = "serversession-frontend-wai"; - version = "1.0"; - sha256 = "0b48130e3d3915dc46ec2392984e7862d066f6ddd454127a98b0c21c2574b167"; - libraryHaskellDepends = [ - base bytestring cookie data-default path-pieces serversession text - time transformers unordered-containers vault wai wai-session - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/serversession"; - description = "wai-session bindings for serversession"; - license = stdenv.lib.licenses.mit; - }) {}; - "ses-html" = callPackage - ({ mkDerivation, base, base64-bytestring, blaze-html, byteable - , bytestring, cryptohash, HsOpenSSL, http-streams, stdenv, tagsoup - , time - }: - mkDerivation { - pname = "ses-html"; - version = "0.4.0.0"; - sha256 = "cff76ee03b538e69a3d107cd63d577210cf0f9879d470bf55519e887e2a8a08f"; - libraryHaskellDepends = [ - base base64-bytestring blaze-html byteable bytestring cryptohash - HsOpenSSL http-streams tagsoup time - ]; - doHaddock = false; - doCheck = false; - description = "Send HTML formatted emails using Amazon's SES REST API with blaze"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "set-cover" = callPackage - ({ mkDerivation, array, base, containers, enummapset, non-empty - , prelude-compat, psqueues, semigroups, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "set-cover"; - version = "0.1"; - sha256 = "6b86f8fd0f55f04e96d03eb57d1f6fb0a4399ffbdba406d9ed73c165037b2dfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base containers enummapset non-empty prelude-compat psqueues - semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/set-cover/"; - description = "Solve exact set cover problems like Sudoku, 8 Queens, Soma Cube, Tetris Cube"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "setenv" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "setenv"; - version = "0.1.1.3"; - sha256 = "e358df39afc03d5a39e2ec650652d845c85c80cc98fe331654deafb4767ecb32"; - revision = "1"; - editedCabalFile = "0ny4g3kjys0hqg41mnwrsymy1bwhl8l169kis4y4fa58sb06m4f5"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - description = "A cross-platform library for setting environment variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "setlocale" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "setlocale"; - version = "1.0.0.9"; - sha256 = "3bb386f705fc918615b288f55422ce6c14f087ff36e554cbafb9ffab9dea66a1"; - revision = "1"; - editedCabalFile = "01i087l8v129q90jf09khaw5p4iqix5s17gzgfz2pbi030zhb82h"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/Kritzefitz/haskell-setlocale"; - description = "Haskell bindings to setlocale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shake" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, directory - , extra, file-embed, filepath, filepattern, hashable, heaps - , js-dgtable, js-flot, js-jquery, primitive, process, random - , stdenv, template-haskell, time, transformers, unix - , unordered-containers, utf8-string - }: - mkDerivation { - pname = "shake"; - version = "0.18.4"; - sha256 = "2026a70828333d1527098f757f47ec1978e2b151e2810113d0e116339cd1ef6e"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base binary bytestring deepseq directory extra filepath filepattern - hashable heaps js-dgtable js-flot js-jquery primitive process - random time transformers unix unordered-containers utf8-string - ]; - executableHaskellDepends = [ - base binary bytestring deepseq directory extra file-embed filepath - filepattern hashable heaps js-dgtable js-flot js-jquery primitive - process random template-haskell time transformers unix - unordered-containers utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://shakebuild.com"; - description = "Build system library, like Make, but more accurate dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shakespeare" = callPackage - ({ mkDerivation, aeson, base, blaze-html, blaze-markup, bytestring - , containers, directory, exceptions, ghc-prim, parsec, process - , scientific, stdenv, template-haskell, text, time, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "shakespeare"; - version = "2.0.24"; - sha256 = "03f2f202be187a5aaa835c49cfdcacf6fe8b6241ab48f89e76cef7b355c1f3ba"; - libraryHaskellDepends = [ - aeson base blaze-html blaze-markup bytestring containers directory - exceptions ghc-prim parsec process scientific template-haskell text - time transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/shakespearean-templates"; - description = "A toolkit for making compile-time interpolated templates"; - license = stdenv.lib.licenses.mit; - }) {}; - "shared-memory" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "shared-memory"; - version = "0.2.0.0"; - sha256 = "266739418194429f0e3a316decd28bf15ae8cc4ce2e1e19c523dc92b3f023abc"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nh2/shared-memory"; - description = "POSIX shared memory"; - license = stdenv.lib.licenses.mit; - }) {}; - "shell-conduit" = callPackage - ({ mkDerivation, async, base, bytestring, conduit, conduit-extra - , directory, filepath, monads-tf, process, resourcet, semigroups - , split, stdenv, template-haskell, text, transformers, unix - , unliftio - }: - mkDerivation { - pname = "shell-conduit"; - version = "4.7.0"; - sha256 = "6f31c5b6fb46219c4da575b4405f1a5af51eed1f22073d315df80c8a40ddbe30"; - libraryHaskellDepends = [ - async base bytestring conduit conduit-extra directory filepath - monads-tf process resourcet semigroups split template-haskell text - transformers unix unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/shell-conduit"; - description = "Write shell scripts with Conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-escape" = callPackage - ({ mkDerivation, base, binary, bytestring, containers, stdenv - , vector - }: - mkDerivation { - pname = "shell-escape"; - version = "0.2.0"; - sha256 = "e23c9ba94a27e45430cb39e6bb236557e789d24129257c3def377f441b2cba4a"; - libraryHaskellDepends = [ - base binary bytestring containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/shell-escape"; - description = "Shell escaping library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shell-utility" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "shell-utility"; - version = "0.0"; - sha256 = "7a41108e667337a3a59b63e2b5f079f61b3513c559f385d992b552dab74064e8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/shell-utility/"; - description = "Utility functions for writing command-line programs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "shellmet" = callPackage - ({ mkDerivation, base, markdown-unlit, process, stdenv, text }: - mkDerivation { - pname = "shellmet"; - version = "0.0.3.0"; - sha256 = "897c1c7c9b57a7d626b5a3976fab348e232f38b01989796253316b3811fd69c4"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base process text ]; - executableHaskellDepends = [ base text ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/shellmet"; - description = "Out of the shell solution for scripting in Haskell"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "shelltestrunner" = callPackage - ({ mkDerivation, base, cmdargs, Diff, directory, filemanip - , filepath, HUnit, parsec, pretty-show, process, regex-tdfa, safe - , stdenv, test-framework, test-framework-hunit, utf8-string - }: - mkDerivation { - pname = "shelltestrunner"; - version = "1.9"; - sha256 = "cbc4358d447e32babe4572cda0d530c648cc4c67805f9f88002999c717feb3a8"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base cmdargs Diff directory filemanip filepath HUnit parsec - pretty-show process regex-tdfa safe test-framework - test-framework-hunit utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/simonmichael/shelltestrunner"; - description = "Easy, repeatable testing of CLI programs/commands"; - license = "GPL"; - }) {}; - "shelly" = callPackage - ({ mkDerivation, async, base, bytestring, containers, directory - , enclosed-exceptions, exceptions, filepath, lifted-async - , lifted-base, monad-control, mtl, process, stdenv, text, time - , transformers, transformers-base, unix, unix-compat - }: - mkDerivation { - pname = "shelly"; - version = "1.9.0"; - sha256 = "5eb5fd4fc105e218cef6cfa10971d299ad660324e6a6006b8cccc31edf39aace"; - revision = "1"; - editedCabalFile = "0827p6wq8j92svrvmx02gdk961xx42g1ng4j6g7nflrfks9hw0zf"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base bytestring containers directory enclosed-exceptions - exceptions filepath lifted-async lifted-base monad-control mtl - process text time transformers transformers-base unix unix-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/Shelly.hs"; - description = "shell-like (systems) programming in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "should-not-typecheck" = callPackage - ({ mkDerivation, base, deepseq, HUnit, stdenv }: - mkDerivation { - pname = "should-not-typecheck"; - version = "2.1.0"; - sha256 = "f538ac70ce07679bc2e6c1651db82a86866664ab995665fdc78e6cb12bd8d591"; - libraryHaskellDepends = [ base deepseq HUnit ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/CRogers/should-not-typecheck"; - description = "A HUnit/hspec assertion library to verify that an expression does not typecheck"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "show-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "show-combinators"; - version = "0.1.1.0"; - sha256 = "d53abf2b289a3075555f1ede76f5beba0fadce352cd94efbad610bc1eb76020a"; - revision = "1"; - editedCabalFile = "1zr6xw4fvgx187yiqy7n0r9mnasyv1hxg2q9xzw3lmsf4z3xz6y7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/show-combinators#readme"; - description = "Combinators to write Show instances"; - license = stdenv.lib.licenses.mit; - }) {}; - "siggy-chardust" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "siggy-chardust"; - version = "1.0.0"; - sha256 = "9f730c3cc04ea629e0b655bfff66f83e146eb3b9f0908d5dc00b4c558d5f5a43"; - revision = "1"; - editedCabalFile = "1lknm1jr6h5qpixc727aj3zbmj4ia21r9lb8gzj50iildgmfk33b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/blockscope/flare-timing/tree/master/siggy-chardust#readme"; - description = "Rounding rationals to significant digits and decimal places"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "signal" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "signal"; - version = "0.1.0.4"; - sha256 = "c4bfdd92b75347e02759c1a7d75963fbc7052e948ec96e25299ca5262e5d76e5"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base unix ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pmlodawski/signal"; - description = "Multiplatform signal support for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "silently" = callPackage - ({ mkDerivation, base, deepseq, directory, stdenv }: - mkDerivation { - pname = "silently"; - version = "1.2.5.1"; - sha256 = "7fc9baf6f47ffc082e7e05c9dade1451bdee06a0c4e2d882e8e0b692f50bfad1"; - libraryHaskellDepends = [ base deepseq directory ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hspec/silently"; - description = "Prevent or capture writing to stdout and other handles"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-affine-space" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "simple-affine-space"; - version = "0.1"; - sha256 = "d0227cb8f6b82c17a2e9c0902ef80baccc871730f0abee7443c1bb41ed269e09"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Yampa"; - description = "A simple library for affine and vector spaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cabal" = callPackage - ({ mkDerivation, base, Cabal, directory, filepath, stdenv }: - mkDerivation { - pname = "simple-cabal"; - version = "0.1.1"; - sha256 = "7b1e7c36da8910a439b3e80efd1c25834b415b1ad8a35169fa109776f44cd684"; - libraryHaskellDepends = [ base Cabal directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cabal"; - description = "Cabal file wrapper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd" = callPackage - ({ mkDerivation, base, directory, filepath, process, stdenv, unix - }: - mkDerivation { - pname = "simple-cmd"; - version = "0.2.1"; - sha256 = "5ac384f6c8608f4276efa8336dd134d3935b358deab826efb2c30e93bb8665ac"; - libraryHaskellDepends = [ base directory filepath process unix ]; - doHaddock = false; - doCheck = false; - description = "Simple String-based process commands"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-cmd-args" = callPackage - ({ mkDerivation, base, optparse-applicative, stdenv }: - mkDerivation { - pname = "simple-cmd-args"; - version = "0.1.4"; - sha256 = "913f7f1ac48f38de8f2b898ded00c53319adbec4fcbe9275b63061a0a86a6b0b"; - libraryHaskellDepends = [ base optparse-applicative ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/juhp/simple-cmd-args"; - description = "Simple command args parsing and execution"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-log" = callPackage - ({ mkDerivation, async, base, base-unicode-symbols, containers - , data-default, deepseq, directory, exceptions, filepath, hformat - , microlens, microlens-platform, mmorph, mtl, SafeSemaphore, stdenv - , text, time, transformers - }: - mkDerivation { - pname = "simple-log"; - version = "0.9.12"; - sha256 = "5c1074229a41ee2c2b1d6eb7036a82927e6585e9ef81d8c6e721fac497566880"; - libraryHaskellDepends = [ - async base base-unicode-symbols containers data-default deepseq - directory exceptions filepath hformat microlens microlens-platform - mmorph mtl SafeSemaphore text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mvoidex/simple-log"; - description = "Simple log for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-reflect" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "simple-reflect"; - version = "0.3.3"; - sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions"; - description = "Simple reflection of expressions containing variables"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-sendfile" = callPackage - ({ mkDerivation, base, bytestring, network, stdenv, unix }: - mkDerivation { - pname = "simple-sendfile"; - version = "0.2.30"; - sha256 = "b6864d2b3c62ff8ea23fa24e9e26f751bfe5253c8efb1f1e4fee2ba91d065284"; - libraryHaskellDepends = [ base bytestring network unix ]; - doHaddock = false; - doCheck = false; - description = "Cross platform library for the sendfile system call"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simple-templates" = callPackage - ({ mkDerivation, aeson, attoparsec, base, scientific, stdenv, text - , unordered-containers, vector - }: - mkDerivation { - pname = "simple-templates"; - version = "0.9.0.0"; - sha256 = "aac13b08fa89ecec8e329678cfff580fed6abd49ff913835cebb1592bd0e4827"; - libraryHaskellDepends = [ - aeson attoparsec base scientific text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://simple.cx"; - description = "A basic template language for the Simple web framework"; - license = stdenv.lib.licenses.lgpl3; - }) {}; - "simple-vec3" = callPackage - ({ mkDerivation, base, QuickCheck, stdenv, vector }: - mkDerivation { - pname = "simple-vec3"; - version = "0.6"; - sha256 = "1062808e3c440999d4d8ed13703191782fc6f57874ddc76836122267691f80ef"; - libraryHaskellDepends = [ base QuickCheck vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dzhus/simple-vec3#readme"; - description = "Three-dimensional vectors of doubles with basic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "simplest-sqlite" = callPackage - ({ mkDerivation, base, bytestring, exception-hierarchy, sqlite - , stdenv, template-haskell, text - }: - mkDerivation { - pname = "simplest-sqlite"; - version = "0.1.0.2"; - sha256 = "b7c21964200da4550f8ee1d038357fd4453c0b559bdcdfd45cad26c788039a0b"; - libraryHaskellDepends = [ - base bytestring exception-hierarchy template-haskell text - ]; - librarySystemDepends = [ sqlite ]; - doHaddock = false; - doCheck = false; - homepage = "comming soon"; - description = "Simplest SQLite3 binding"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sqlite;}; - "simplistic-generics" = callPackage - ({ mkDerivation, base, comonad, kind-apply, stdenv }: - mkDerivation { - pname = "simplistic-generics"; - version = "0.1.0.0"; - sha256 = "3278c2e18573a70514b89c21464cb8567c26e850c643de93f0e2a6dc4815e087"; - libraryHaskellDepends = [ base comonad kind-apply ]; - doHaddock = false; - doCheck = false; - description = "Generic programming without too many type classes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "since" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "since"; - version = "0.0.0"; - sha256 = "7aa713c0fc0b2a748c9b5ddc413b918f77335e45b56d3968100428a42cdfc1ff"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/since#readme"; - description = "Get the number of seconds since the last invocation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-bool" = callPackage - ({ mkDerivation, base, dec, stdenv }: - mkDerivation { - pname = "singleton-bool"; - version = "0.1.5"; - sha256 = "405dd57dea92857c04f539c3394894c40c8103ea0c4f3f0fdbfbd8acccde899f"; - revision = "1"; - editedCabalFile = "1g2dchvp5clg3hfdrp7hf5pbl9kcyhqhnqxqxd7n861nfd661wqd"; - libraryHaskellDepends = [ base dec ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/singleton-bool#readme"; - description = "Type level booleans"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singleton-nats" = callPackage - ({ mkDerivation, base, singletons, stdenv }: - mkDerivation { - pname = "singleton-nats"; - version = "0.4.3"; - sha256 = "f16b3a490bf8e4de566392a51430185b5d1ebdc5bc760c921703d5af9be14576"; - libraryHaskellDepends = [ base singletons ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AndrasKovacs/singleton-nats"; - description = "Unary natural numbers relying on the singletons infrastructure"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "singletons" = callPackage - ({ mkDerivation, base, Cabal, containers, directory, filepath - , ghc-boot-th, mtl, pretty, stdenv, syb, template-haskell, text - , th-desugar, transformers - }: - mkDerivation { - pname = "singletons"; - version = "2.6"; - sha256 = "bea771f7017ad35413215cbbd275a19c3d2a338c92e37b0bb64402385cb886d1"; - setupHaskellDepends = [ base Cabal directory filepath ]; - libraryHaskellDepends = [ - base containers ghc-boot-th mtl pretty syb template-haskell text - th-desugar transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/goldfirere/singletons"; - description = "A framework for generating singleton types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "siphash" = callPackage - ({ mkDerivation, base, bytestring, cpu, stdenv }: - mkDerivation { - pname = "siphash"; - version = "1.0.3"; - sha256 = "cf81ce41c6ca40c4fec9add5dcebc161cb2d31f522f9ad727df23d30ac6a05f3"; - revision = "1"; - editedCabalFile = "1q2dy0ywngm9iv7k6d9gnf860m9hpf62q5qvdzmxw5s629gk4afn"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base bytestring cpu ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-siphash"; - description = "siphash: a fast short input PRF"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sitemap-gen" = callPackage - ({ mkDerivation, base, stdenv, text, time, xmlgen }: - mkDerivation { - pname = "sitemap-gen"; - version = "0.1.0.0"; - sha256 = "1f7cb16fc3ea547e3320fecb35900804de032cce6f7d8c94ad26c6d0a33f0837"; - libraryHaskellDepends = [ base text time xmlgen ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/prikhi/sitemap-gen#readme"; - description = "Generate XML Sitemaps & Sitemap Indexes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "size-based" = callPackage - ({ mkDerivation, base, dictionary-sharing, stdenv, template-haskell - , testing-type-modifiers - }: - mkDerivation { - pname = "size-based"; - version = "0.1.2.0"; - sha256 = "779ff6c45476d20ffd2ad7327b44cefaaf0436ed89f43b2967761c0b58a4151a"; - revision = "1"; - editedCabalFile = "0kax1ypjyglkn6iff1x4yz12y7f2n249m95xvdhrc63hsa4xlcqv"; - libraryHaskellDepends = [ - base dictionary-sharing template-haskell testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - description = "Sized functors, for size-based enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skein" = callPackage - ({ mkDerivation, base, bytestring, cereal, crypto-api, stdenv - , tagged - }: - mkDerivation { - pname = "skein"; - version = "1.0.9.4"; - sha256 = "f882ca0cc5ed336ef898fb3c89579e392900259296b2320edf968b9fc16cb8c9"; - libraryHaskellDepends = [ - base bytestring cereal crypto-api tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meteficha/skein"; - description = "Skein, a family of cryptographic hash functions. Includes Skein-MAC as well."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "skip-var" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "skip-var"; - version = "0.1.1.0"; - sha256 = "bfbce57abd47c9c892f734b5c7d2bccad90fa5f8f8a6d4747cca15d2a493d41e"; - revision = "1"; - editedCabalFile = "0vl2y19l7xhlq08f91ggycj4imfdxvkj2fsaz8ifc0waxk3q7ja8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dtaskoff/skip-var#readme"; - description = "Skip variables"; - license = stdenv.lib.licenses.mit; - }) {}; - "skylighting" = callPackage - ({ mkDerivation, base, binary, bytestring, containers - , skylighting-core, stdenv - }: - mkDerivation { - pname = "skylighting"; - version = "0.8.3.2"; - sha256 = "02ab0b416e489d07fe149ba25d358f016911a1cdcab004f00fd7916cccdf6b0e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary bytestring containers skylighting-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "skylighting-core" = callPackage - ({ mkDerivation, aeson, ansi-terminal, attoparsec, base - , base64-bytestring, binary, blaze-html, bytestring - , case-insensitive, colour, containers, directory, filepath, hxt - , mtl, regex-pcre-builtin, safe, stdenv, text, transformers - , utf8-string - }: - mkDerivation { - pname = "skylighting-core"; - version = "0.8.3.2"; - sha256 = "3297d191a6561943f0e625c9290d35b9cc2fa8252adbb2216127ee891dc38112"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal attoparsec base base64-bytestring binary - blaze-html bytestring case-insensitive colour containers directory - filepath hxt mtl regex-pcre-builtin safe text transformers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jgm/skylighting"; - description = "syntax highlighting library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "slist" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "slist"; - version = "0.1.0.0"; - sha256 = "8e2361302053f29b207e88d313a3f5f74992f12e590f2fed09e55d9c36f26c7b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vrom911/slist"; - description = "Sized list"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "small-bytearray-builder" = callPackage - ({ mkDerivation, base, byteslice, bytestring, natural-arithmetic - , primitive, primitive-offset, primitive-unlifted, run-st, stdenv - , text-short, wide-word - }: - mkDerivation { - pname = "small-bytearray-builder"; - version = "0.3.2.0"; - sha256 = "ab7398efcebb2b380d47c9348463f934891c831f157d2f5b5be4d738f78b53db"; - libraryHaskellDepends = [ - base byteslice bytestring natural-arithmetic primitive - primitive-offset primitive-unlifted run-st text-short wide-word - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/byteverse/small-bytearray-builder"; - description = "Serialize to a small byte arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smallcheck" = callPackage - ({ mkDerivation, base, ghc-prim, logict, mtl, pretty, stdenv }: - mkDerivation { - pname = "smallcheck"; - version = "1.1.5"; - sha256 = "9020e67895a57bde02d7df2c0af06a4c769eff56d48b6a830f6d803df891aea4"; - libraryHaskellDepends = [ base ghc-prim logict mtl pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "A property-based testing library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "smoothie" = callPackage - ({ mkDerivation, aeson, base, linear, stdenv, text, vector }: - mkDerivation { - pname = "smoothie"; - version = "0.4.2.9"; - sha256 = "d3cafbc34a5d03363ddd41e59bd681168cd2d0aa8be4678db9ae1904ad202a4f"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ aeson base linear text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/smoothie"; - description = "Smooth curves via several interpolation modes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-blaze" = callPackage - ({ mkDerivation, base, blaze-html, snap-core, stdenv }: - mkDerivation { - pname = "snap-blaze"; - version = "0.2.1.5"; - sha256 = "b36e35bd4ba3087b3de92702e488ba6570675719243b5dbdf4eae0b819988841"; - libraryHaskellDepends = [ base blaze-html snap-core ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jaspervdj/snap-blaze"; - description = "blaze-html integration for Snap"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-core" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, bytestring-builder - , case-insensitive, containers, directory, filepath, hashable - , HUnit, io-streams, lifted-base, monad-control, mtl, network - , network-uri, old-locale, random, readable, regex-posix, stdenv - , text, time, transformers, transformers-base, unix-compat - , unordered-containers, vector - }: - mkDerivation { - pname = "snap-core"; - version = "1.0.4.1"; - sha256 = "c0b177d47fcee1923d08bdba5b5f975d54e5e495ca666be5cc617aa71776b5a5"; - libraryHaskellDepends = [ - attoparsec base bytestring bytestring-builder case-insensitive - containers directory filepath hashable HUnit io-streams lifted-base - monad-control mtl network network-uri old-locale random readable - regex-posix text time transformers transformers-base unix-compat - unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "Snap: A Haskell Web Framework (core interfaces and types)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snap-server" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , bytestring-builder, case-insensitive, clock, containers, filepath - , HsOpenSSL, io-streams, io-streams-haproxy, lifted-base, mtl - , network, old-locale, openssl-streams, snap-core, stdenv, text - , time, unix, unix-compat, vector - }: - mkDerivation { - pname = "snap-server"; - version = "1.1.1.1"; - sha256 = "450b651e0123307b1f438d9c2960ae773029f170d13139d85bd9527079398453"; - revision = "3"; - editedCabalFile = "1xma33r1by1q79qqbb70lwf4d846qlqs0f22rzrd3cdzkzcf9qf5"; - configureFlags = [ "-fopenssl" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring bytestring-builder - case-insensitive clock containers filepath HsOpenSSL io-streams - io-streams-haproxy lifted-base mtl network old-locale - openssl-streams snap-core text time unix unix-compat vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://snapframework.com/"; - description = "A web server for the Snap Framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "snowflake" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "snowflake"; - version = "0.1.1.1"; - sha256 = "f156ca321ae17033fe1cbe7e676fea403136198e1c3a132924a080cd3145cddd"; - revision = "1"; - editedCabalFile = "1y5v3nsin8iyxvh0abfhs7ma75p5zjvha0lp41801pdiikacfzha"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - description = "A loose port of Twitter Snowflake to Haskell. Generates arbitrary precision, unique, time-sortable identifiers."; - license = stdenv.lib.licenses.asl20; - }) {}; - "soap" = callPackage - ({ mkDerivation, base, bytestring, conduit, configurator - , data-default, exceptions, http-client, http-types, iconv, mtl - , resourcet, stdenv, text, unordered-containers, xml-conduit - , xml-conduit-writer, xml-types - }: - mkDerivation { - pname = "soap"; - version = "0.2.3.6"; - sha256 = "cdfc8ee01d3adb0334521a954e32e64f52a3e404fb469679e39904d4ed52b176"; - libraryHaskellDepends = [ - base bytestring conduit configurator data-default exceptions - http-client http-types iconv mtl resourcet text - unordered-containers xml-conduit xml-conduit-writer xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "SOAP client tools"; - license = stdenv.lib.licenses.mit; - }) {}; - "soap-tls" = callPackage - ({ mkDerivation, base, configurator, connection, data-default - , http-client, http-client-tls, soap, stdenv, text, tls, x509 - , x509-store, x509-validation - }: - mkDerivation { - pname = "soap-tls"; - version = "0.1.1.4"; - sha256 = "ce8b33cd4bb2cc60093df4de231967edd789fd9da44a261a539a221116853a14"; - revision = "1"; - editedCabalFile = "11djy824gaw3cbsvphq263hxjrn1b3v5p1kdivsvlyn7q9bgvms9"; - libraryHaskellDepends = [ - base configurator connection data-default http-client - http-client-tls soap text tls x509 x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/haskell-soap"; - description = "TLS-enabled SOAP transport (using tls package)"; - license = stdenv.lib.licenses.mit; - }) {}; - "socks" = callPackage - ({ mkDerivation, base, basement, bytestring, cereal, network - , stdenv - }: - mkDerivation { - pname = "socks"; - version = "0.6.1"; - sha256 = "734447558bb061ce768f53a0df1f2401902c6bee396cc96ce627edd986ef6a73"; - libraryHaskellDepends = [ - base basement bytestring cereal network - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-socks"; - description = "Socks proxy (ver 5)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "some" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "some"; - version = "1.0.1"; - sha256 = "31ce29bf7d4849d6852d2f8947de0302d18fcfb95e6d01118b5533c975dfb78d"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/some"; - description = "Existential type: Some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sop-core" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sop-core"; - version = "0.5.0.0"; - sha256 = "ff8f3d787a444a4628fb3111c444608b1a901d80f759108ec96e68f2406ef88b"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "True Sums of Products"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sort" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sort"; - version = "1.0.0.0"; - sha256 = "cee3894879cb4b2150331eca96d5d27f51a6114bcb082d1d8dded55881f5770d"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdornan/sort"; - description = "A Haskell sorting toolkit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sorted-list" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "sorted-list"; - version = "0.2.1.0"; - sha256 = "b4e476157cf0df745eb3c39921357ffb2bf411cd169e755e99536031e07c5ef4"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Daniel-Diaz/sorted-list/blob/master/README.md"; - description = "Type-enforced sorted lists and related functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sourcemap" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, process - , stdenv, text, unordered-containers, utf8-string - }: - mkDerivation { - pname = "sourcemap"; - version = "0.1.6"; - sha256 = "b9a04cccb4fe7eea8b37a2eaf2bc776eae5640038ab76fb948c5a3ea09a9ce7a"; - revision = "1"; - editedCabalFile = "1f7q44ar6qfip8fsllg43jyn7r15ifn2r0vz32cbmx0sb0d38dax"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring process text unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of source maps as proposed by Google and Mozilla"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sox" = callPackage - ({ mkDerivation, base, containers, explicit-exception - , extensible-exceptions, process, sample-frame, semigroups, stdenv - , transformers, unix, utility-ht - }: - mkDerivation { - pname = "sox"; - version = "0.2.3.1"; - sha256 = "70a6ab47d1e16271332574667dd30f77eefb331a6e7dda4e959f48ac3359aa45"; - libraryHaskellDepends = [ - base containers explicit-exception extensible-exceptions process - sample-frame semigroups transformers unix utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Play, write, read, convert audio signals using Sox"; - license = "GPL"; - }) {}; - "soxlib" = callPackage - ({ mkDerivation, base, bytestring, explicit-exception - , extensible-exceptions, sample-frame, sox, stdenv, storablevector - , transformers, utility-ht - }: - mkDerivation { - pname = "soxlib"; - version = "0.0.3.1"; - sha256 = "cde9c76515588257fddece108376537bcda7698d0107bf0386b968ea5189ec38"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring explicit-exception extensible-exceptions - sample-frame storablevector transformers utility-ht - ]; - libraryPkgconfigDepends = [ sox ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Sox"; - description = "Write, read, convert audio signals using libsox"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) sox;}; - "sparse-linear-algebra" = callPackage - ({ mkDerivation, base, containers, exceptions, hspec, mtl - , primitive, QuickCheck, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "sparse-linear-algebra"; - version = "0.3.1"; - sha256 = "c762778b2e45bdba24336be58375871963d4c2ad76cb03c548f0fe0b72f3dcc9"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base containers exceptions hspec mtl primitive QuickCheck - transformers vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/sparse-linear-algebra"; - description = "Numerical computing in native Haskell"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "sparse-tensor" = callPackage - ({ mkDerivation, ad, base, bytestring, Cabal, cereal, containers - , deepseq, ghc-typelits-knownnat, ghc-typelits-natnormalise - , hmatrix, parallel, stdenv, tf-random, zlib - }: - mkDerivation { - pname = "sparse-tensor"; - version = "0.2.1.2"; - sha256 = "24617970865220d09e0649758d7e91cc05f4a98d486593264b5d047a14057866"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ - ad base bytestring cereal containers deepseq ghc-typelits-knownnat - ghc-typelits-natnormalise hmatrix parallel tf-random zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/TobiReinhart/sparse-tensor#readme"; - description = "typesafe tensor algebra library"; - license = stdenv.lib.licenses.mit; - }) {}; - "spatial-math" = callPackage - ({ mkDerivation, base, binary, cereal, ghc-prim, lens, linear - , stdenv, TypeCompose - }: - mkDerivation { - pname = "spatial-math"; - version = "0.5.0.1"; - sha256 = "c91cf29157c2a3425f40afdd6fb763f2fc4299eb4c32725ac64d2ba568c2a410"; - libraryHaskellDepends = [ - base binary cereal ghc-prim lens linear TypeCompose - ]; - doHaddock = false; - doCheck = false; - description = "3d math including quaternions/euler angles/dcms and utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "special-values" = callPackage - ({ mkDerivation, base, bytestring, ieee754, scientific, stdenv - , text - }: - mkDerivation { - pname = "special-values"; - version = "0.1.0.0"; - sha256 = "3c14dd1304dacc8e54c2dcf95ebb3bb74b172b5409b9b45352108a4698e06dce"; - libraryHaskellDepends = [ - base bytestring ieee754 scientific text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/special-values#readme"; - description = "Typeclass providing special values"; - license = stdenv.lib.licenses.mit; - }) {}; - "speculate" = callPackage - ({ mkDerivation, base, cmdargs, containers, express, leancheck - , stdenv - }: - mkDerivation { - pname = "speculate"; - version = "0.4.1"; - sha256 = "16266f8882f3e7d5a8eab51a5779fcfa57ae497f479f60f7dd6271fee334d2bb"; - libraryHaskellDepends = [ - base cmdargs containers express leancheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/speculate#readme"; - description = "discovery of properties about Haskell functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "speedy-slice" = callPackage - ({ mkDerivation, base, kan-extensions, lens, mcmc-types - , mwc-probability, pipes, primitive, stdenv, transformers - }: - mkDerivation { - pname = "speedy-slice"; - version = "0.3.0"; - sha256 = "efbf8a10b681b940078f70fb9aca43fec8ba436c82f3faf719bbe495ba152899"; - libraryHaskellDepends = [ - base kan-extensions lens mcmc-types mwc-probability pipes primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jtobin/speedy-slice"; - description = "Speedy slice sampling"; - license = stdenv.lib.licenses.mit; - }) {}; - "splice" = callPackage - ({ mkDerivation, base, network, stdenv }: - mkDerivation { - pname = "splice"; - version = "0.6.1.1"; - sha256 = "81fabe6652571f0dbf6b8904bd782daaeccc9d89d40f77b15dff46b7499d4e53"; - libraryHaskellDepends = [ base network ]; - doHaddock = false; - doCheck = false; - homepage = "http://corsis.github.com/splice/"; - description = "Cross-platform Socket to Socket Data Splicing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "split" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "split"; - version = "0.2.3.3"; - sha256 = "1dcd674f7c5f276f33300f5fd59e49d1ac6fc92ae949fd06a0f6d3e9d9ac1413"; - revision = "2"; - editedCabalFile = "1c8bcssxq5rkxkixgms6w6x6lzf4n7cxk6cx6av1dp3lixdy9j34"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Combinator library for splitting lists"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "splitmix" = callPackage - ({ mkDerivation, base, deepseq, random, stdenv, time }: - mkDerivation { - pname = "splitmix"; - version = "0.0.3"; - sha256 = "fce462557f490c6c3d264ca70ef98a2c644ba341a71e6ee9f87ee7f3e7ab0acc"; - revision = "1"; - editedCabalFile = "178d81ksnmgppbd09ci53r88iyacn3phy55v5i4ybfz5d8rfjpa5"; - libraryHaskellDepends = [ base deepseq random time ]; - doHaddock = false; - doCheck = false; - description = "Fast Splittable PRNG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spoon" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "spoon"; - version = "0.3.1"; - sha256 = "b9b350b6730e34c246bbf7e228a86b3d4925b52c95542f7676d719ef2a9881d4"; - revision = "1"; - editedCabalFile = "09s5jjcsg4g4qxchq9g2l4i9d5zh3rixpkbiysqcgl69kj8mwv74"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - description = "Catch errors thrown from pure computations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "spreadsheet" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "spreadsheet"; - version = "0.1.3.8"; - sha256 = "646716e795f3cd82f0277ffb672eca26a03f6897d85da3c267ee04cf4dc4a765"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Spreadsheet"; - description = "Read and write spreadsheets from and to CSV files in a lazy way"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sql-words" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sql-words"; - version = "0.1.6.3"; - sha256 = "2575bd23b81d8cfb792ef78ab8bef70c6b2d74d9309b07be8573e7df0a7ae687"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "SQL keywords data constructors into OverloadedString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "srcloc" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "srcloc"; - version = "0.5.1.2"; - sha256 = "069edbce6bb72e0771cece3aa5a6b67b9e0b0bd0148e9404842fa43035fec06e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mainland/srcloc"; - description = "Data types for managing source code locations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stache" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, deepseq - , directory, filepath, megaparsec, mtl, stdenv, template-haskell - , text, unordered-containers, vector - }: - mkDerivation { - pname = "stache"; - version = "2.1.0"; - sha256 = "734f94a3732ec018056e57c60ad9ace04455d091eafbd0a7f0b19e7e0d8164e0"; - revision = "2"; - editedCabalFile = "0vzby2q8qp6z74ighqalw05b94821cl9w6dbwy4hkgd67pc38nph"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring containers deepseq directory filepath - megaparsec mtl template-haskell text unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/stackbuilders/stache"; - description = "Mustache templates for Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "starter" = callPackage - ({ mkDerivation, base, fsnotify, stdenv }: - mkDerivation { - pname = "starter"; - version = "0.3.0"; - sha256 = "fd569cd27cfd62fb9d3e544e222450ec2734c44a3293994f35a26af982ce3d93"; - libraryHaskellDepends = [ base fsnotify ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rkaippully/starter#readme"; - description = "Develop applications without restarts"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "stateref" = callPackage - ({ mkDerivation, base, mtl, stdenv, stm }: - mkDerivation { - pname = "stateref"; - version = "0.3"; - sha256 = "7dd390aab346ca877cde1217d5b62145cdfa6f9390e3b7a53c9296229ee1b741"; - libraryHaskellDepends = [ base mtl stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~mokus/stateref/"; - description = "Abstraction for things that work like IORef"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "statestack" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "statestack"; - version = "0.3"; - sha256 = "dabe7a383bb8770e0fee546f79cb629a38902bf14ca02ddf3b492148c2681ead"; - libraryHaskellDepends = [ - base mtl transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - description = "Simple State-like monad transformer with saveable and restorable state"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "statistics" = callPackage - ({ mkDerivation, aeson, async, base, base-orphans, binary - , data-default-class, deepseq, dense-linear-algebra, math-functions - , monad-par, mwc-random, primitive, stdenv, vector - , vector-algorithms, vector-binary-instances, vector-th-unbox - }: - mkDerivation { - pname = "statistics"; - version = "0.15.2.0"; - sha256 = "c496dbb8767a65ea3c352fd08ce1918200a0cc9d8f8b5f262aebbb43dee22a49"; - libraryHaskellDepends = [ - aeson async base base-orphans binary data-default-class deepseq - dense-linear-algebra math-functions monad-par mwc-random primitive - vector vector-algorithms vector-binary-instances vector-th-unbox - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/statistics"; - description = "A library of statistical types, data, and functions"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "stb-image-redux" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "stb-image-redux"; - version = "0.2.1.3"; - sha256 = "24da421150f269ebb6679d7ea2c18dcea5cd253b3e27bf4bded656e7e90eb507"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typedrat/stb-image-redux#readme"; - description = "Image loading and writing microlibrary"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "step-function" = callPackage - ({ mkDerivation, base, base-compat-batteries, containers, deepseq - , QuickCheck, stdenv - }: - mkDerivation { - pname = "step-function"; - version = "0.2"; - sha256 = "d260fcb72bd3afe3c2b0a80f3f3a5c7afae63d98138d137a80ed8ba131fee7d5"; - revision = "3"; - editedCabalFile = "0aa7x22n5ylvryd7bm1j9s12k5xcp9fp5fz9qy03hjicxzlhm07a"; - libraryHaskellDepends = [ - base base-compat-batteries containers deepseq QuickCheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jonpetterbergman/step-function"; - description = "Staircase functions or piecewise constant functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-chans" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "stm-chans"; - version = "3.0.0.4"; - sha256 = "2344fc5bfa33d565bad7b009fc0e2c5a7a595060ba149c661f44419fc0d54738"; - revision = "1"; - editedCabalFile = "0v9axxcfszqdmf3dhjxy34ybh22x3r5c48mdnbvjh5i5lp7g7vp2"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Additional types of channels for STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-conduit" = callPackage - ({ mkDerivation, async, base, cereal, cereal-conduit, conduit - , conduit-extra, directory, exceptions, monad-loops, resourcet - , stdenv, stm, stm-chans, transformers, unliftio - }: - mkDerivation { - pname = "stm-conduit"; - version = "4.0.1"; - sha256 = "e80e5be72a4564fa45e1e27f91c0984e12d2a736d0ceb9594350d573efee1442"; - libraryHaskellDepends = [ - async base cereal cereal-conduit conduit conduit-extra directory - exceptions monad-loops resourcet stm stm-chans transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cgaebel/stm-conduit"; - description = "Introduces conduits to channels, and promotes using conduits concurrently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-containers" = callPackage - ({ mkDerivation, base, deferred-folds, focus, hashable, list-t - , stdenv, stm-hamt, transformers - }: - mkDerivation { - pname = "stm-containers"; - version = "1.1.0.4"; - sha256 = "d43346bfadbe5ccc33c0903a7dfbce8f48657184176fcefa11174ff9d2269655"; - libraryHaskellDepends = [ - base deferred-folds focus hashable list-t stm-hamt transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-containers"; - description = "Containers for STM"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-delay" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-delay"; - version = "0.1.1.1"; - sha256 = "b132581aac47e6cba6a1691a485e1700fbb047c02b7e1e43ae9bbd8476108a32"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/joeyadams/haskell-stm-delay"; - description = "Updatable one-shot timer polled with STM"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-extras" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-extras"; - version = "0.1.0.3"; - sha256 = "88210a157d5a5a2c3bd10b3b9f0ead9bef91f47ecfe6fd56deca058c7270b75e"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/louispan/stm-extras#readme"; - description = "Extra STM functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stm-hamt" = callPackage - ({ mkDerivation, base, deferred-folds, focus, hashable, list-t - , primitive, primitive-extras, stdenv, transformers - }: - mkDerivation { - pname = "stm-hamt"; - version = "1.2.0.4"; - sha256 = "b28e0e19577249c9a078c1d9a29d31ba1954b59e50a074ceb2afa2f27e889f42"; - libraryHaskellDepends = [ - base deferred-folds focus hashable list-t primitive - primitive-extras transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/stm-hamt"; - description = "STM-specialised Hash Array Mapped Trie"; - license = stdenv.lib.licenses.mit; - }) {}; - "stm-split" = callPackage - ({ mkDerivation, base, stdenv, stm }: - mkDerivation { - pname = "stm-split"; - version = "0.0.2.1"; - sha256 = "e8e687268c86a6b635e7ee08415f31921d4a46eed267fe573a57981ec00d8419"; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - description = "TMVars, TVars and TChans with distinguished input and output side"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stopwatch" = callPackage - ({ mkDerivation, base, clock, stdenv, transformers }: - mkDerivation { - pname = "stopwatch"; - version = "0.1.0.6"; - sha256 = "5018769e91e551086bc96457da44faa3a03b4470a55212505102bc09518174bf"; - libraryHaskellDepends = [ base clock transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/stopwatch"; - description = "A simple stopwatch utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-complex" = callPackage - ({ mkDerivation, base, base-orphans, stdenv }: - mkDerivation { - pname = "storable-complex"; - version = "0.2.3.0"; - sha256 = "9af499b2b19b2f173f97db37f843938efd2c59c30285e436564aefd2aa5bdc3a"; - libraryHaskellDepends = [ base base-orphans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cartazio/storable-complex"; - description = "Storable instance for Complex"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-record" = callPackage - ({ mkDerivation, base, semigroups, stdenv, transformers, utility-ht - }: - mkDerivation { - pname = "storable-record"; - version = "0.0.4"; - sha256 = "ceffb2f08d8abc37e338ad924b264c230d5e54ecccaf1c22802c3107ea0c5a42"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-record/"; - description = "Elegant definition of Storable instances for records"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storable-tuple" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, storable-record - , utility-ht - }: - mkDerivation { - pname = "storable-tuple"; - version = "0.0.3.3"; - sha256 = "dcfac049527a45c386c80a7c40ec211455b83d74311af88fa686063b5f87df35"; - libraryHaskellDepends = [ - base base-orphans storable-record utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/storable-tuple/"; - description = "Storable instance for pairs and triples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "storablevector" = callPackage - ({ mkDerivation, base, deepseq, non-negative, QuickCheck - , semigroups, stdenv, syb, transformers, unsafe, utility-ht - }: - mkDerivation { - pname = "storablevector"; - version = "0.2.13"; - sha256 = "f83742d572aca9431f8ee6325d29169bc630beb2d8ab1957f7165abed138b9fe"; - libraryHaskellDepends = [ - base deepseq non-negative QuickCheck semigroups syb transformers - unsafe utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Storable_Vector"; - description = "Fast, packed, strict storable arrays with a list interface like ByteString"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stratosphere" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, bytestring, containers - , hashable, lens, stdenv, template-haskell, text - , unordered-containers - }: - mkDerivation { - pname = "stratosphere"; - version = "0.48.0"; - sha256 = "c2358c208134a58a10c2fe23257d6dc81efae8aae4fd39b20d3029a79c17dfbc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson aeson-pretty base bytestring containers hashable lens - template-haskell text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/frontrowed/stratosphere#readme"; - description = "EDSL for AWS CloudFormation"; - license = stdenv.lib.licenses.mit; - }) {}; - "streaming" = callPackage - ({ mkDerivation, base, containers, ghc-prim, mmorph, mtl, stdenv - , transformers, transformers-base - }: - mkDerivation { - pname = "streaming"; - version = "0.2.3.0"; - sha256 = "b4008eee1fcee6a9f63d0d31eebefd6cf72731fab65d943831338c3961fafd62"; - libraryHaskellDepends = [ - base containers ghc-prim mmorph mtl transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-streaming/streaming"; - description = "an elementary streaming prelude and general stream type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streaming-commons" = callPackage - ({ mkDerivation, array, async, base, bytestring, directory, network - , process, random, stdenv, stm, text, transformers, unix, zlib - }: - mkDerivation { - pname = "streaming-commons"; - version = "0.2.1.2"; - sha256 = "ea2a6d4b2dfabe8cdf3b4e0a29db9b14170f59d3554b70e0377779867efcfc16"; - libraryHaskellDepends = [ - array async base bytestring directory network process random stm - text transformers unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/streaming-commons"; - description = "Common lower-level functions needed by various streaming data libraries"; - license = stdenv.lib.licenses.mit; - }) {}; - "streamly" = callPackage - ({ mkDerivation, atomic-primops, base, containers, deepseq - , directory, exceptions, ghc-prim, heaps, lockfree-queue - , monad-control, mtl, network, stdenv, transformers - , transformers-base - }: - mkDerivation { - pname = "streamly"; - version = "0.7.0"; - sha256 = "70dd89ff13a05dd493697065c061e2a195088224f8caf4788b0dae007db32eed"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - atomic-primops base containers deepseq directory exceptions - ghc-prim heaps lockfree-queue monad-control mtl network - transformers transformers-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/composewell/streamly"; - description = "Beautiful Streaming, Concurrent and Reactive Composition"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "streams" = callPackage - ({ mkDerivation, adjunctions, base, comonad, distributive - , semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "streams"; - version = "3.3"; - sha256 = "2933f80d6a83fed326af5588b0cce93985b07233359c311bd69c5bac19954e40"; - libraryHaskellDepends = [ - adjunctions base comonad distributive semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/streams/issues"; - description = "Various Haskell 2010 stream comonads"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict" = callPackage - ({ mkDerivation, array, base, stdenv }: - mkDerivation { - pname = "strict"; - version = "0.3.2"; - sha256 = "2cd35a67938db635a87617d9576d5df0158b581e8e5694f07487c0f4b1549221"; - libraryHaskellDepends = [ array base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cse.unsw.edu.au/~rl/code/strict.html"; - description = "Strict data types and String IO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-base-types" = callPackage - ({ mkDerivation, aeson, base, bifunctors, binary, deepseq, ghc-prim - , hashable, lens, QuickCheck, stdenv, strict - }: - mkDerivation { - pname = "strict-base-types"; - version = "0.6.1"; - sha256 = "f8866a3acc7d61f1fbffc2823c24d35b4f63f90612bf0c63292f3d25a3dc307a"; - libraryHaskellDepends = [ - aeson base bifunctors binary deepseq ghc-prim hashable lens - QuickCheck strict - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/meiersi/strict-base-types"; - description = "Strict variants of the types provided in base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-concurrency" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "strict-concurrency"; - version = "0.2.4.3"; - sha256 = "02d934ec5053d3d42031798e5a3cd25547ccde5973d562f9fc943d635d9956c0"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ygale/strict-concurrency"; - description = "Strict concurrency abstractions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "strict-list" = callPackage - ({ mkDerivation, base, hashable, semigroupoids, stdenv }: - mkDerivation { - pname = "strict-list"; - version = "0.1.5"; - sha256 = "ba7338766ba5fbb4069b748e5bdce12866379c32f1ab1c6015d45dbd1010bb1a"; - libraryHaskellDepends = [ base hashable semigroupoids ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/strict-list"; - description = "Strict linked list"; - license = stdenv.lib.licenses.mit; - }) {}; - "string-class" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tagged, text }: - mkDerivation { - pname = "string-class"; - version = "0.1.7.0"; - sha256 = "8e5b00563ec2a62120036ab5e06cade5eb7ff8c9caa86f42213c66be39900be8"; - libraryHaskellDepends = [ base bytestring tagged text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/string-class/string-class"; - description = "String class library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-combinators" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "string-combinators"; - version = "0.6.0.5"; - sha256 = "94914abfbd7d17051edab4bc9927c191fd05a652d9ef3cf259b5d0e0ca177e1e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/string-combinators"; - description = "Polymorphic functions to build and combine stringlike values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conv" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "string-conv"; - version = "0.1.2"; - sha256 = "f259a03e6f296af19a71c07ab9a98a38661dfe40679f360f8e371334ea226039"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/string-conv"; - description = "Standardized conversion between string types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-conversions" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-conversions"; - version = "0.4.0.1"; - sha256 = "46bcce6d9ce62c558b7658a75d9c6a62f7259d6b0473d011d8078234ad6a1994"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/soenkehahn/string-conversions#readme"; - description = "Simplifies dealing with different types for strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "string-qq" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "string-qq"; - version = "0.0.4"; - sha256 = "c85b9c1e27596ea8e765e4b630b7be53c331c51b680ad46cc2d248d3099fdd71"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "QuasiQuoter for non-interpolated strings, texts and bytestrings"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "string-transform" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, utf8-string }: - mkDerivation { - pname = "string-transform"; - version = "1.1.1"; - sha256 = "1caeff34b02cd860ae1740629ae97f7df8458bb7ab6a83e3b15c124b513e5e21"; - libraryHaskellDepends = [ base bytestring text utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/string-transform#readme"; - description = "simple and easy haskell string transform wrapper"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringbuilder" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "stringbuilder"; - version = "0.5.1"; - sha256 = "d878bdc4da806dbce5ab684ef13d2634c17c15b991d0ed3bb25a331eba6603ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "A writer monad for multi-line string literals"; - license = stdenv.lib.licenses.mit; - }) {}; - "stringsearch" = callPackage - ({ mkDerivation, array, base, bytestring, containers, stdenv }: - mkDerivation { - pname = "stringsearch"; - version = "0.3.6.6"; - sha256 = "295f1971920bc52263d8275d7054ad223a7e1aefe75533f9887735c9644ffe4a"; - revision = "1"; - editedCabalFile = "0z5pz5dccapz9k39r2zmf056m0x2m2lj3jahhnw3mfxlmps07378"; - libraryHaskellDepends = [ array base bytestring containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dafis/stringsearch"; - description = "Fast searching, splitting and replacing of ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stripe-concepts" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "stripe-concepts"; - version = "1.0.2.0"; - sha256 = "533c36aa753911836705b4d52cac94ed868008bdf5ca51fb6373a08dea251729"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Types for the Stripe API"; - license = stdenv.lib.licenses.mit; - }) {}; - "stripe-signature" = callPackage - ({ mkDerivation, base, base16-bytestring, bytestring, cryptonite - , memory, stdenv, stripe-concepts, text - }: - mkDerivation { - pname = "stripe-signature"; - version = "1.0.0.1"; - sha256 = "362b681d6ef90bc6ab90affd2fa29634015416d91c9c2f1c8ab70eb369e0afd0"; - libraryHaskellDepends = [ - base base16-bytestring bytestring cryptonite memory stripe-concepts - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/typeclasses/stripe"; - description = "Verification of Stripe webhook signatures"; - license = stdenv.lib.licenses.mit; - }) {}; - "strive" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, gpolyline - , http-client, http-client-tls, http-types, stdenv - , template-haskell, text, time, transformers - }: - mkDerivation { - pname = "strive"; - version = "5.0.9"; - sha256 = "e2a961ed1f282d9fcb660ddc3a9a9bae06d3ac8f35ac964f38836450498e4280"; - libraryHaskellDepends = [ - aeson base bytestring data-default gpolyline http-client - http-client-tls http-types template-haskell text time transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/strive#readme"; - description = "A client for the Strava V3 API"; - license = stdenv.lib.licenses.mit; - }) {}; - "structs" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, deepseq, ghc-prim - , primitive, stdenv, template-haskell - }: - mkDerivation { - pname = "structs"; - version = "0.1.3"; - sha256 = "990a88c234205eccfb802b7a6d8cb73080abef27335bb12d9cf92faf29211cf9"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base deepseq ghc-prim primitive template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/structs/"; - description = "Strict GC'd imperative object-oriented programming with cheap pointers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "structured-cli" = callPackage - ({ mkDerivation, base, data-default, haskeline, mtl, split, stdenv - , transformers - }: - mkDerivation { - pname = "structured-cli"; - version = "2.5.2.0"; - sha256 = "40157b7a14b2564d9e4cdc55b703a7838231bdf50bede9ba1d6d9c87fd13076b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base data-default haskeline mtl split transformers - ]; - executableHaskellDepends = [ base data-default mtl split ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/codemonkeylabs/structured-cli#readme"; - description = "Application library for building interactive console CLIs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "stylish-haskell" = callPackage - ({ mkDerivation, aeson, base, bytestring, Cabal, containers - , directory, file-embed, filepath, haskell-src-exts, HsYAML - , HsYAML-aeson, mtl, optparse-applicative, semigroups, stdenv - , strict, syb - }: - mkDerivation { - pname = "stylish-haskell"; - version = "0.10.0.0"; - sha256 = "a6f03c52097cda0447d7dea7fc5b01895b79ad14792178e4e7eb3c675dc12be6"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring Cabal containers directory file-embed - filepath haskell-src-exts HsYAML HsYAML-aeson mtl semigroups syb - ]; - executableHaskellDepends = [ - aeson base bytestring Cabal containers directory file-embed - filepath haskell-src-exts HsYAML HsYAML-aeson mtl - optparse-applicative strict syb - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jaspervdj/stylish-haskell"; - description = "Haskell code prettifier"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "sum-type-boilerplate" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "sum-type-boilerplate"; - version = "0.1.1"; - sha256 = "3169da14c604e19afdcbf721ef1749b9486618ba23bbec14e86ae9862bf0ab9f"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jdreaver/sum-type-boilerplate#readme"; - description = "Library for reducing the boilerplate involved with sum types"; - license = stdenv.lib.licenses.mit; - }) {}; - "sundown" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "sundown"; - version = "0.6"; - sha256 = "cb9b7e98138311375148ffe0fa4c4b04eb7a9f8ec2ae13a674d465e5d71db027"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bitonic/sundown"; - description = "Bindings to the sundown markdown library"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "superbuffer" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "superbuffer"; - version = "0.3.1.1"; - sha256 = "d7a5fb5478731deab80f89233e4f85511949c04b96ad6284f99f16c5c4166c78"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/superbuffer#readme"; - description = "Efficiently build a bytestring from smaller chunks"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-builder" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, hashable, stdenv - , text, unordered-containers - }: - mkDerivation { - pname = "svg-builder"; - version = "0.1.1"; - sha256 = "4fd0e3f2cbc5601fc69e7eab41588cbfa1150dc508d9d86bf5f3d393880382cc"; - revision = "2"; - editedCabalFile = "100nmkgcm1ncv4mkr1xcsa7bb3z6zx0lfayk8innd4hm62xsvhj3"; - libraryHaskellDepends = [ - base blaze-builder bytestring hashable text unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/diagrams/svg-builder.git"; - description = "DSL for building SVG"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "svg-tree" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers - , JuicyPixels, lens, linear, mtl, scientific, stdenv, text - , transformers, vector, xml - }: - mkDerivation { - pname = "svg-tree"; - version = "0.6.2.4"; - sha256 = "4ce471e3c3378587360c2e3de055267991b88d846e858bcc3135b4ea0c171ac2"; - libraryHaskellDepends = [ - attoparsec base bytestring containers JuicyPixels lens linear mtl - scientific text transformers vector xml - ]; - doHaddock = false; - doCheck = false; - description = "SVG file loader and serializer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "swagger" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text, time - , transformers - }: - mkDerivation { - pname = "swagger"; - version = "0.3.0"; - sha256 = "c7144fb22a0d223eb2463a896200936eab665dc01f39affc103d2ee6a38f54d0"; - libraryHaskellDepends = [ - aeson base bytestring text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "Implementation of swagger data model"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "swagger2" = callPackage - ({ mkDerivation, aeson, aeson-pretty, base, base-compat-batteries - , bytestring, Cabal, cabal-doctest, containers, cookie - , generics-sop, hashable, http-media, insert-ordered-containers - , lens, mtl, network, optics-core, optics-th, QuickCheck - , scientific, stdenv, template-haskell, text, time, transformers - , transformers-compat, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "swagger2"; - version = "2.5"; - sha256 = "0e3bd29c2c611c52eae20c8fced5fccb24fcc21116afd8f31ee4ab664621927b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - aeson aeson-pretty base base-compat-batteries bytestring containers - cookie generics-sop hashable http-media insert-ordered-containers - lens mtl network optics-core optics-th QuickCheck scientific - template-haskell text time transformers transformers-compat - unordered-containers uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/GetShopTV/swagger2"; - description = "Swagger 2.0 data model"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "syb" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "syb"; - version = "0.7.1"; - sha256 = "e04a9c7ae48d9fe25e9b7a064f7122d39c710753544511e15df7a6e87fdfe700"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB"; - description = "Scrap Your Boilerplate"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symbol" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv }: - mkDerivation { - pname = "symbol"; - version = "0.2.4"; - sha256 = "d074a7741f6ce0f2a604e4467c1c46e1acc2b707db107b3458395e646a9b8831"; - revision = "2"; - editedCabalFile = "0jdbaap11pkgb6m98v57k7qnx62pqxy7pa2i7293ywa4q305qgm1"; - libraryHaskellDepends = [ base containers deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.cs.drexel.edu/~mainland/"; - description = "A 'Symbol' type for fast symbol comparison"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "symengine" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "symengine"; - version = "0.1.2.0"; - sha256 = "0a59f76a924686ae84b1873c8783eb80f6e4092c90f3c971340053c1e6ca82f4"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/symengine/symengine.hs#readme"; - description = "SymEngine symbolic mathematics engine for Haskell"; - license = stdenv.lib.licenses.mit; - }) {}; - "sysinfo" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "sysinfo"; - version = "0.1.1"; - sha256 = "46db40f2d186956547cca98f5583b28828a2b50255fbd404272c381db64dca29"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/sysinfo#readme"; - description = "Haskell Interface for getting overall system statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "system-argv0" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text }: - mkDerivation { - pname = "system-argv0"; - version = "0.1.1"; - sha256 = "6d51da9d2157be14a83f8dca3e9d4196d420e667cd685effb8d7b39185cf4ec6"; - libraryHaskellDepends = [ base bytestring system-filepath text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-filesystem/"; - description = "Get argv[0] as a FilePath"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-fileio" = callPackage - ({ mkDerivation, base, bytestring, stdenv, system-filepath, text - , time, unix - }: - mkDerivation { - pname = "system-fileio"; - version = "0.3.16.4"; - sha256 = "34e58b88a19a69ff1a559e211af6edb596e33ee1b1d5f44490febf325c78c6c7"; - libraryHaskellDepends = [ - base bytestring system-filepath text time unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "Consistent filesystem interaction across GHC versions (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-filepath" = callPackage - ({ mkDerivation, base, bytestring, Cabal, deepseq, stdenv, text }: - mkDerivation { - pname = "system-filepath"; - version = "0.4.14"; - sha256 = "1656ce3c0d585650784ceb3f794748286e19fb635f557e7b29b0897f8956d993"; - revision = "1"; - editedCabalFile = "18llfvisghrn9w9yfgacqn51gs50a0lngah3bmg852h0swj7vkp8"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base bytestring deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/haskell-filesystem"; - description = "High-level, byte-based file and directory path manipulations (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "system-info" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "system-info"; - version = "0.5.1"; - sha256 = "a4d2d8b9256e5a285c0df74a7849e581aaf1fa6856aff8dedb683d20161c4481"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ChaosGroup/system-info#readme"; - description = "Get the name of the operating system"; - license = stdenv.lib.licenses.mit; - }) {}; - "tabular" = callPackage - ({ mkDerivation, base, csv, html, mtl, stdenv }: - mkDerivation { - pname = "tabular"; - version = "0.2.2.7"; - sha256 = "13f8da12108dafcf3194eb6bf25febf0081c7e4734f66d2d4aeee899f3c14ffb"; - libraryHaskellDepends = [ base csv html mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/kowey/tabular"; - description = "Two-dimensional data tables with rendering functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagchup" = callPackage - ({ mkDerivation, base, bytestring, containers, data-accessor - , explicit-exception, non-empty, stdenv, transformers, utility-ht - , xml-basic - }: - mkDerivation { - pname = "tagchup"; - version = "0.4.1.1"; - sha256 = "e5b4ee185f30a64d854fb02291f7bdf60f8846f1fcc3d67ebc6ab1f61e74ee88"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers data-accessor explicit-exception - non-empty transformers utility-ht xml-basic - ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/tagchup/"; - description = "alternative package for processing of tag soups"; - license = "GPL"; - }) {}; - "tagged" = callPackage - ({ mkDerivation, base, deepseq, stdenv, template-haskell - , transformers - }: - mkDerivation { - pname = "tagged"; - version = "0.8.6"; - sha256 = "ad16def0884cf6f05ae1ae8e90192cf9d8d9673fa264b249499bd9e4fac791dd"; - revision = "2"; - editedCabalFile = "1y8z8hmm846z7h3wqncpi0d4zhsnkwf08q0wchivkjw8di7ahz0z"; - libraryHaskellDepends = [ - base deepseq template-haskell transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged"; - description = "Haskell 98 phantom types to avoid unsafely passing dummy arguments"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-binary" = callPackage - ({ mkDerivation, base, base-compat, binary, bytestring, pureMD5 - , stdenv - }: - mkDerivation { - pname = "tagged-binary"; - version = "0.2.0.1"; - sha256 = "72cfaa0995838dfb7f0cda897175c469d6b7aef6fd396fc56abc70194b0f645b"; - libraryHaskellDepends = [ - base base-compat binary bytestring pureMD5 - ]; - doHaddock = false; - doCheck = false; - description = "Provides tools for serializing data tagged with type information"; - license = stdenv.lib.licenses.mit; - }) {}; - "tagged-identity" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers }: - mkDerivation { - pname = "tagged-identity"; - version = "0.1.3"; - sha256 = "2cec62a7aac67cae90003e811eda26bfcf3c297b9987e548c0d54cc6b653b2d8"; - libraryHaskellDepends = [ base mtl transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/tagged-identity"; - description = "Trivial monad transformer that allows identical monad stacks have different types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagged-transformer" = callPackage - ({ mkDerivation, base, comonad, contravariant, distributive - , exceptions, mtl, reflection, semigroupoids, stdenv, tagged - }: - mkDerivation { - pname = "tagged-transformer"; - version = "0.8.1"; - sha256 = "a0ff6121e852c78f6428e583c18e90e3bf899f59a529fb2076236e1146eedcb9"; - libraryHaskellDepends = [ - base comonad contravariant distributive exceptions mtl reflection - semigroupoids tagged - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/tagged-transformer"; - description = "Monad transformer carrying an extra phantom type tag"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagshare" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tagshare"; - version = "0.0"; - sha256 = "d2314bae2e6820700f2a61db9c9f7976e1b53547a49cdd3352bdf29ac3856ce0"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "TagShare - explicit sharing with tags"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tagsoup" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv, text }: - mkDerivation { - pname = "tagsoup"; - version = "0.14.8"; - sha256 = "ba7e5500d853d29f0675b90655b7fdd032a4a7eee82a56e7ee3ef9949fe93ad5"; - libraryHaskellDepends = [ base bytestring containers text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/tagsoup#readme"; - description = "Parsing and extracting information from (possibly malformed) HTML/XML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tao" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tao"; - version = "1.0.0"; - sha256 = "0b0a1e9606b15eb3bd334eaaf09f01a52f5cb086e5947959116d1d4409541a47"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Type-level assertion operators"; - license = stdenv.lib.licenses.mit; - }) {}; - "tao-example" = callPackage - ({ mkDerivation, base, stdenv, tao }: - mkDerivation { - pname = "tao-example"; - version = "1.0.0"; - sha256 = "65de395b78e922d95ce7badf6588c00c6d01ea5c14b33c062cde19229f4b00b2"; - libraryHaskellDepends = [ base tao ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jship/tao#readme"; - description = "Example usage of the tao package"; - license = stdenv.lib.licenses.mit; - }) {}; - "tar" = callPackage - ({ mkDerivation, array, base, bytestring, containers, deepseq - , directory, filepath, stdenv, time - }: - mkDerivation { - pname = "tar"; - version = "0.5.1.1"; - sha256 = "b384449f62b2b0aa3e6d2cb1004b8060b01f21ec93e7b63e7af6d8fad8a9f1de"; - revision = "1"; - editedCabalFile = "1ni8zym7k6f1hg6wfvnnf3xcs2ar3z8xaabkgjg8q329arjcm8wp"; - configureFlags = [ "-f-old-time" ]; - libraryHaskellDepends = [ - array base bytestring containers deepseq directory filepath time - ]; - doHaddock = false; - doCheck = false; - description = "Reading, writing and manipulating \".tar\" archive files."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tar-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, conduit-combinators - , directory, filepath, safe-exceptions, stdenv, text, unix - }: - mkDerivation { - pname = "tar-conduit"; - version = "0.3.2"; - sha256 = "004578db7088e7ad53e23f8a293d739314698f0ec421ffad7be101e13c1cf62d"; - libraryHaskellDepends = [ - base bytestring conduit conduit-combinators directory filepath - safe-exceptions text unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/tar-conduit#readme"; - description = "Extract and create tar files using conduit for streaming"; - license = stdenv.lib.licenses.mit; - }) {}; - "tardis" = callPackage - ({ mkDerivation, base, mmorph, mtl, stdenv }: - mkDerivation { - pname = "tardis"; - version = "0.4.1.0"; - sha256 = "e672abadd75055c2372d722c98058f7f3403fcca18258565d1cdd8e0dc25a5d9"; - revision = "1"; - editedCabalFile = "1wp6vp90g19hv8r2l83ava7qxf0933gb7ni2zgyfa66vlvxvhibv"; - libraryHaskellDepends = [ base mmorph mtl ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/tardis"; - description = "Bidirectional state monad transformer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty" = callPackage - ({ mkDerivation, ansi-terminal, async, base, clock, containers, mtl - , optparse-applicative, stdenv, stm, tagged, unbounded-delays, unix - , wcwidth - }: - mkDerivation { - pname = "tasty"; - version = "1.2.3"; - sha256 = "8ca107abc12a476cfbc84f516f30a614c81be315903f910bc681137eb702f662"; - libraryHaskellDepends = [ - ansi-terminal async base clock containers mtl optparse-applicative - stm tagged unbounded-delays unix wcwidth - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "Modern and extensible testing framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-ant-xml" = callPackage - ({ mkDerivation, base, containers, directory, filepath - , generic-deriving, ghc-prim, mtl, stdenv, stm, tagged, tasty - , transformers, xml - }: - mkDerivation { - pname = "tasty-ant-xml"; - version = "1.1.6"; - sha256 = "1c17899e3870922113bbfbf50e33b24478b53cae85dc76906a2de57c03bd188f"; - libraryHaskellDepends = [ - base containers directory filepath generic-deriving ghc-prim mtl - stm tagged tasty transformers xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-ant-xml"; - description = "Render tasty output to XML for Jenkins"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-dejafu" = callPackage - ({ mkDerivation, base, dejafu, random, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-dejafu"; - version = "2.0.0.1"; - sha256 = "3face0f15baf33e55d1ecef336bf262cd70f84696e1925f8863378f642fe8fa5"; - libraryHaskellDepends = [ base dejafu random tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/barrucadu/dejafu"; - description = "Deja Fu support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-discover" = callPackage - ({ mkDerivation, base, containers, directory, filepath, Glob - , stdenv - }: - mkDerivation { - pname = "tasty-discover"; - version = "4.2.1"; - sha256 = "be6c5b384614a592fb056e2e4f7806416aa37f114db77d0f8986938ba7cc1d3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers directory filepath Glob - ]; - executableHaskellDepends = [ - base containers directory filepath Glob - ]; - doHaddock = false; - doCheck = false; - homepage = "http://git.coop/lwm/tasty-discover"; - description = "Test discovery for the tasty framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-expected-failure" = callPackage - ({ mkDerivation, base, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-expected-failure"; - version = "0.11.1.2"; - sha256 = "1689d91bf02994858bdaa7fdad0944eebfa8ea27744da9bae48cea59c36caf9c"; - libraryHaskellDepends = [ base tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nomeata/tasty-expected-failure"; - description = "Mark tasty tests as failure expected"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-golden" = callPackage - ({ mkDerivation, async, base, bytestring, containers, deepseq - , directory, filepath, mtl, optparse-applicative, process, stdenv - , tagged, tasty, temporary - }: - mkDerivation { - pname = "tasty-golden"; - version = "2.3.2"; - sha256 = "04103d2a2fd6acc8f66b67d943060e88a2ea36b799502bf3e76c2726a15c714c"; - libraryHaskellDepends = [ - async base bytestring containers deepseq directory filepath mtl - optparse-applicative process tagged tasty temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty-golden"; - description = "Golden tests support for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-hedgehog" = callPackage - ({ mkDerivation, base, hedgehog, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-hedgehog"; - version = "1.0.0.2"; - sha256 = "65538f7371f5ccf52c232a4723d931dd0278ea49bf478c2abe50c3bc4c1d5bef"; - libraryHaskellDepends = [ base hedgehog tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/tasty-hedgehog"; - description = "Integration for tasty and hedgehog"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hspec" = callPackage - ({ mkDerivation, base, hspec, hspec-core, QuickCheck, stdenv, tasty - , tasty-quickcheck, tasty-smallcheck - }: - mkDerivation { - pname = "tasty-hspec"; - version = "1.1.5.1"; - sha256 = "fe889ec0f7b3991c46a07d9ff9cf09608a73a18f434a7480d2a09c79e56f3345"; - revision = "4"; - editedCabalFile = "1yppwhs2r2rlwrzli9ccv5ldgl95h5p7pqhsr898r3das6daf6sk"; - libraryHaskellDepends = [ - base hspec hspec-core QuickCheck tasty tasty-quickcheck - tasty-smallcheck - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mitchellwrosen/tasty-hspec"; - description = "Hspec support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-hunit" = callPackage - ({ mkDerivation, base, call-stack, stdenv, tasty }: - mkDerivation { - pname = "tasty-hunit"; - version = "0.10.0.2"; - sha256 = "4823c85efe15f36e1d71867aaa6cdcdff3ef39f97492321e9bb8a30c742f6ef7"; - libraryHaskellDepends = [ base call-stack tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "HUnit support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-kat" = callPackage - ({ mkDerivation, base, bytestring, stdenv, tasty }: - mkDerivation { - pname = "tasty-kat"; - version = "0.0.3"; - sha256 = "a72501f0f77db372648566bbba1dd1d6d0d0c975b42238875d663313e9a5db93"; - libraryHaskellDepends = [ base bytestring tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/vincenthz/tasty-kat"; - description = "Known Answer Tests (KAT) framework for tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, tasty }: - mkDerivation { - pname = "tasty-leancheck"; - version = "0.0.1"; - sha256 = "2791628bf9698aee88c9e1b07ff2f910510664cdc44e2a30c805c2026888d31a"; - libraryHaskellDepends = [ base leancheck tasty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/tasty-leancheck#readme"; - description = "LeanCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-lua" = callPackage - ({ mkDerivation, base, bytestring, file-embed, hslua, stdenv, tasty - , text - }: - mkDerivation { - pname = "tasty-lua"; - version = "0.2.2"; - sha256 = "fb21bb6ffd2f30d0733df18ee11664204e73e49f214196a952f11b999d6be554"; - libraryHaskellDepends = [ - base bytestring file-embed hslua tasty text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hslua/tasty-lua"; - description = "Write tests in Lua, integrate into tasty"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-program" = callPackage - ({ mkDerivation, base, deepseq, directory, filepath, process - , stdenv, tasty - }: - mkDerivation { - pname = "tasty-program"; - version = "1.0.5"; - sha256 = "4cb255ad5f037029cc6ae244fffdfb0ed7c65a4b0575d98ec61c067d6f5829c4"; - libraryHaskellDepends = [ - base deepseq directory filepath process tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jstolarek/tasty-program"; - description = "Use tasty framework to test whether a program executes correctly"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-quickcheck" = callPackage - ({ mkDerivation, base, optparse-applicative, QuickCheck, random - , stdenv, tagged, tasty - }: - mkDerivation { - pname = "tasty-quickcheck"; - version = "0.10.1"; - sha256 = "50d77092005ffd605177322d8d049994cbd8091dc0b56774d8cce6ba4bdb9b4c"; - revision = "1"; - editedCabalFile = "1ms8ph2vp8x1icqiw468zlpsj4pii7xjm6g3k6ikkcy7cx3vnv4s"; - libraryHaskellDepends = [ - base optparse-applicative QuickCheck random tagged tasty - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/tasty"; - description = "QuickCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-rerun" = callPackage - ({ mkDerivation, base, containers, mtl, optparse-applicative, split - , stdenv, stm, tagged, tasty, transformers - }: - mkDerivation { - pname = "tasty-rerun"; - version = "1.1.17"; - sha256 = "4de14995fdc3bbd0a9e5cf57ca239a4b198cfe54e5989a517c009c6967762a42"; - libraryHaskellDepends = [ - base containers mtl optparse-applicative split stm tagged tasty - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ocharles/tasty-rerun"; - description = "Rerun only tests which failed in a previous test run"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tasty-silver" = callPackage - ({ mkDerivation, ansi-terminal, async, base, bytestring, containers - , deepseq, directory, filepath, mtl, optparse-applicative, process - , process-extras, regex-tdfa, semigroups, stdenv, stm, tagged - , tasty, temporary, text - }: - mkDerivation { - pname = "tasty-silver"; - version = "3.1.13"; - sha256 = "da5d755276652b75aa2f8876f2b62f81bfa368f12c17dbd018dcd2cde4eba9e9"; - libraryHaskellDepends = [ - ansi-terminal async base bytestring containers deepseq directory - filepath mtl optparse-applicative process process-extras regex-tdfa - semigroups stm tagged tasty temporary text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phile314/tasty-silver"; - description = "A fancy test runner, including support for golden tests"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-smallcheck" = callPackage - ({ mkDerivation, async, base, smallcheck, stdenv, tagged, tasty }: - mkDerivation { - pname = "tasty-smallcheck"; - version = "0.8.1"; - sha256 = "314ba7acdb7793730e7677f553a72dd6a4a8f9a45ff3e931cd7d384affb3c6d8"; - libraryHaskellDepends = [ async base smallcheck tagged tasty ]; - doHaddock = false; - doCheck = false; - homepage = "http://documentup.com/feuerbach/tasty"; - description = "SmallCheck support for the Tasty test framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "tasty-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, stdenv, tasty - , template-haskell - }: - mkDerivation { - pname = "tasty-th"; - version = "0.1.7"; - sha256 = "435aac8f317e2f8cb1aa96fb3f7c9003c1ac28e6d3ca4c3c23f5142178de512c"; - libraryHaskellDepends = [ - base haskell-src-exts tasty template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/tasty-th"; - description = "Automatic tasty test case discovery using TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tce-conf" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "tce-conf"; - version = "1.3"; - sha256 = "b051843bb941ed137242edfcfb28b1c15083951272fe292e82c140c9e1ad26a2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - executableHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/dino/tce-conf"; - description = "Very simple config file reading"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tdigest" = callPackage - ({ mkDerivation, base, base-compat, binary, Cabal, cabal-doctest - , deepseq, reducers, semigroupoids, stdenv, transformers, vector - , vector-algorithms - }: - mkDerivation { - pname = "tdigest"; - version = "0.2.1"; - sha256 = "d46e38067c4d064f3c9c77219f570ba4e9dbbd7273a5edc4860610cde4afb84e"; - revision = "4"; - editedCabalFile = "0830zzgbf5xffa1yqwcvy4xm1wzzydvy5wmy3sqk3a5n85v295by"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base base-compat binary deepseq reducers semigroupoids transformers - vector vector-algorithms - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/futurice/haskell-tdigest#readme"; - description = "On-line accumulation of rank-based statistics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "template-haskell-compat-v0208" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "template-haskell-compat-v0208"; - version = "0.1.2.1"; - sha256 = "06b0928ad61902236e1115c9f1b8ebcbe07756362767685adf5f1969c80f15b1"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/template-haskell-compat-v0208"; - description = "A backwards compatibility layer for Template Haskell newer than 2.8"; - license = stdenv.lib.licenses.mit; - }) {}; - "temporary" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary"; - version = "1.2.1.1"; - sha256 = "55772471e59529f4bde9555f6abb21d19a611c7d70b13befe114dc1a0ecb00f3"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-rc" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, stdenv - , transformers, unix - }: - mkDerivation { - pname = "temporary-rc"; - version = "1.2.0.3"; - sha256 = "1a4f8dd65f7db92316a68ef64c3518873799115babce92ef9869103d318011db"; - libraryHaskellDepends = [ - base directory exceptions filepath transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/feuerbach/temporary"; - description = "Portable temporary file and directory support for Windows and Unix, based on code from Cabal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "temporary-resourcet" = callPackage - ({ mkDerivation, base, directory, exceptions, filepath, resourcet - , stdenv, transformers, unix - }: - mkDerivation { - pname = "temporary-resourcet"; - version = "0.1.0.1"; - sha256 = "e0406f6834690ffa3a0b9727302a5ae928cbdc1eb42431a15daaac498fcaee71"; - libraryHaskellDepends = [ - base directory exceptions filepath resourcet transformers unix - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/ttuegel/temporary-resourcet"; - description = "Portable temporary files and directories with automatic deletion"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tensorflow-test" = callPackage - ({ mkDerivation, base, HUnit, stdenv, vector }: - mkDerivation { - pname = "tensorflow-test"; - version = "0.1.0.0"; - sha256 = "378217dde895daf6599a8d3fb07ed59de5e2d8024958277558faca190bb44afc"; - libraryHaskellDepends = [ base HUnit vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tensorflow/haskell#readme"; - description = "Some common functions for test suites"; - license = stdenv.lib.licenses.asl20; - }) {}; - "tensors" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "tensors"; - version = "0.1.4"; - sha256 = "d65d2c0dc7c6c90357c892b42dc13f853c95b96270e4b5afb3d717d42f1a38f2"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leptonyu/tensors#readme"; - description = "Tensor in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-progress-bar" = callPackage - ({ mkDerivation, base, deepseq, stdenv, terminal-size, text, time - }: - mkDerivation { - pname = "terminal-progress-bar"; - version = "0.4.1"; - sha256 = "a61ca10c92cacc712dbbe28881dc23f41cc139760b7b2eef66bd0faa60ea5e24"; - libraryHaskellDepends = [ base deepseq terminal-size text time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/roelvandijk/terminal-progress-bar"; - description = "A progress bar in the terminal"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "terminal-size" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "terminal-size"; - version = "0.3.2.1"; - sha256 = "b5c23e964756bc13914649a67d63233f59ad0a813abe7cadeb2fc9d586dc9658"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Get terminal window height and width"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework" = callPackage - ({ mkDerivation, ansi-terminal, ansi-wl-pprint, base, containers - , hostname, old-locale, random, regex-posix, stdenv, time, xml - }: - mkDerivation { - pname = "test-framework"; - version = "0.8.2.0"; - sha256 = "f5aec7a15dbcb39e951bcf6502606fd99d751197b5510f41706899aa7e660ac2"; - revision = "5"; - editedCabalFile = "18g92ajx3ghznd6k3ihj22ln29n676ailzwx3k0f1kj3bmpilnh6"; - libraryHaskellDepends = [ - ansi-terminal ansi-wl-pprint base containers hostname old-locale - random regex-posix time xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "Framework for running and organising tests, with HUnit and QuickCheck support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-hunit" = callPackage - ({ mkDerivation, base, extensible-exceptions, HUnit, stdenv - , test-framework - }: - mkDerivation { - pname = "test-framework-hunit"; - version = "0.3.0.2"; - sha256 = "95cb8ee02a850b164bfdabdf4dbc839d621361f3ac770ad21ea43a8bde360bf8"; - revision = "3"; - editedCabalFile = "0i9mlalv7cl1iq43ld5myrnpszq5rxmd79hk495dcb08rglhgl3z"; - libraryHaskellDepends = [ - base extensible-exceptions HUnit test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "https://batterseapower.github.io/test-framework/"; - description = "HUnit support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-leancheck" = callPackage - ({ mkDerivation, base, leancheck, stdenv, test-framework }: - mkDerivation { - pname = "test-framework-leancheck"; - version = "0.0.1"; - sha256 = "236c4c2e6b647c5eb84aeda94a949d50341999825d1a9372f195218137609f2f"; - libraryHaskellDepends = [ base leancheck test-framework ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rudymatela/test-framework-leancheck#readme"; - description = "LeanCheck support for test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-quickcheck2" = callPackage - ({ mkDerivation, base, extensible-exceptions, QuickCheck, random - , stdenv, test-framework - }: - mkDerivation { - pname = "test-framework-quickcheck2"; - version = "0.3.0.5"; - sha256 = "c9f678d4ec30599172eb887031f0bce2012b532daeb713836bd912bff64eee59"; - revision = "1"; - editedCabalFile = "1vmpk70h1594h9s216d3ngkb399fpny1d3sh4gg0vrc75p4as68d"; - libraryHaskellDepends = [ - base extensible-exceptions QuickCheck random test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://haskell.github.io/test-framework/"; - description = "QuickCheck-2 support for the test-framework package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-smallcheck" = callPackage - ({ mkDerivation, base, smallcheck, stdenv, test-framework - , transformers - }: - mkDerivation { - pname = "test-framework-smallcheck"; - version = "0.2"; - sha256 = "6081c4f35967b0d0cb92ac09a915fa9e2da01c401266b20ce18793fbc2bceff6"; - libraryHaskellDepends = [ - base smallcheck test-framework transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/smallcheck"; - description = "Support for SmallCheck tests in test-framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "test-framework-th" = callPackage - ({ mkDerivation, base, haskell-src-exts, language-haskell-extract - , regex-posix, stdenv, template-haskell, test-framework - }: - mkDerivation { - pname = "test-framework-th"; - version = "0.2.4"; - sha256 = "8b780d9e3edd8d91e24f72d9fa1f80420e52959428ad7c22d0694901a43f9c8a"; - libraryHaskellDepends = [ - base haskell-src-exts language-haskell-extract regex-posix - template-haskell test-framework - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/finnsson/test-generator"; - description = "Automagically generate the HUnit- and Quickcheck-bulk-code using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-feat" = callPackage - ({ mkDerivation, base, QuickCheck, size-based, stdenv - , testing-type-modifiers - }: - mkDerivation { - pname = "testing-feat"; - version = "1.1.0.0"; - sha256 = "1904d31ddce611474e8c836582efbca1ae7d1c7dc76083cf4300e8e0eeff58ec"; - libraryHaskellDepends = [ - base QuickCheck size-based testing-type-modifiers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/JonasDuregard/testing-feat"; - description = "Functional Enumeration of Algebraic Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "testing-type-modifiers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "testing-type-modifiers"; - version = "0.1.0.1"; - sha256 = "050bdade2c6f0122b1a04a3833ab7eea2399ffda8258bca6d93ba6614bb202f2"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Data type modifiers for property based testing"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "texmath" = callPackage - ({ mkDerivation, base, containers, mtl, pandoc-types, parsec - , stdenv, syb, text, xml - }: - mkDerivation { - pname = "texmath"; - version = "0.12"; - sha256 = "5e1915a87774428733575cd47ce1f4050a70ab30c8518238e320036e877a8125"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers mtl pandoc-types parsec syb text xml - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/texmath"; - description = "Conversion between formats used to represent mathematics"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "text-binary" = callPackage - ({ mkDerivation, base, binary, stdenv, text }: - mkDerivation { - pname = "text-binary"; - version = "0.2.1.1"; - sha256 = "b697b2bd09080643d4686705c779122129638904870df5c1d41c8fc72f08f4a1"; - libraryHaskellDepends = [ base binary text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kawu/text-binary"; - description = "Binary instances for text types"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "text-builder" = callPackage - ({ mkDerivation, base, bytestring, deferred-folds, stdenv, text - , transformers - }: - mkDerivation { - pname = "text-builder"; - version = "0.6.6.1"; - sha256 = "b5fa52a4a33bc6ba727996607ccdff0c35b951d1d522e786c96e59f16dafd20d"; - libraryHaskellDepends = [ - base bytestring deferred-folds text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/text-builder"; - description = "An efficient strict text builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "text-conversions" = callPackage - ({ mkDerivation, base, base16-bytestring, base64-bytestring - , bytestring, errors, stdenv, text - }: - mkDerivation { - pname = "text-conversions"; - version = "0.3.0"; - sha256 = "1756be2f6b515fea9e00b383c00d1ee851f8b25ddbc2901dd6be27d9b6292c21"; - libraryHaskellDepends = [ - base base16-bytestring base64-bytestring bytestring errors text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cjdev/text-conversions#readme"; - description = "Safe conversions between textual types"; - license = stdenv.lib.licenses.isc; - }) {}; - "text-icu" = callPackage - ({ mkDerivation, base, bytestring, deepseq, icu, stdenv, text }: - mkDerivation { - pname = "text-icu"; - version = "0.7.0.1"; - sha256 = "e2764c2749033706eed5b9fb3cda11177ad15cdf11912028f551eca39a2c7f78"; - libraryHaskellDepends = [ base bytestring deepseq text ]; - librarySystemDepends = [ icu ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/text-icu"; - description = "Bindings to the ICU library"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) icu;}; - "text-latin1" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, data-checked - , hashable, semigroups, stdenv, text - }: - mkDerivation { - pname = "text-latin1"; - version = "0.3.1"; - sha256 = "6c7482ae0cfde06fe6ad8f0e6ea6b0d082d27a075370b5c018c31e53aad9abf3"; - libraryHaskellDepends = [ - base bytestring case-insensitive data-checked hashable semigroups - text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-latin1"; - description = "Latin-1 (including ASCII) utility functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-ldap" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, containers, dlist - , memory, stdenv, transformers - }: - mkDerivation { - pname = "text-ldap"; - version = "0.1.1.13"; - sha256 = "ec174c30333548e21b045554329e6332d54bc355d96e0951ea3ea524463a2a34"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - attoparsec base bytestring containers dlist memory transformers - ]; - executableHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - description = "Parser and Printer for LDAP text data stream"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-manipulate" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "text-manipulate"; - version = "0.2.0.1"; - sha256 = "e0e9c71d9b1cfb7d3bca3d0a500d939b3efc6684515c0d7bd685503aa4f49d2f"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/brendanhay/text-manipulate"; - description = "Case conversion, word boundary manipulation, and textual subjugation"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "text-metrics" = callPackage - ({ mkDerivation, base, containers, stdenv, text, vector }: - mkDerivation { - pname = "text-metrics"; - version = "0.3.0"; - sha256 = "3874af74060e35f01702640b353ac2180d93bb5d292a204e0ee3cadd26efbfa2"; - revision = "4"; - editedCabalFile = "017drxq9x56b345d8w5m8xdsi1zzs0z16pbdx8j35cd1lsnh3kf1"; - libraryHaskellDepends = [ base containers text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/text-metrics"; - description = "Calculate various string metrics efficiently"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-postgresql" = callPackage - ({ mkDerivation, base, dlist, stdenv, transformers - , transformers-compat - }: - mkDerivation { - pname = "text-postgresql"; - version = "0.0.3.1"; - sha256 = "c6e26888d2751b78e3102747d0bccedeee4002a1eb6c76dd1fe6c3836b5082e8"; - libraryHaskellDepends = [ - base dlist transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "http://khibino.github.io/haskell-relational-record/"; - description = "Parser and Printer of PostgreSQL extended types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-printer" = callPackage - ({ mkDerivation, base, bytestring, pretty, semigroups, stdenv, text - , text-latin1 - }: - mkDerivation { - pname = "text-printer"; - version = "0.5.0.1"; - sha256 = "58a7680fc75a058ef8a03a6d519d5266f204bae2eb30021663de135a1c31b518"; - libraryHaskellDepends = [ - base bytestring pretty semigroups text text-latin1 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/text-printer"; - description = "Abstract interface for text builders/printers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-region" = callPackage - ({ mkDerivation, aeson, base, base-unicode-symbols, bytestring - , groups, lens, stdenv, text - }: - mkDerivation { - pname = "text-region"; - version = "0.3.1.0"; - sha256 = "a74cac02ae5b3c37d09d415f2440a2ea1977145b962b3e291c6484d7cffac5ff"; - revision = "1"; - editedCabalFile = "1z5l1hv8sc4ida5s4r03ihak612lrq0rf7sdfkw7gf05f67c622p"; - libraryHaskellDepends = [ - aeson base base-unicode-symbols bytestring groups lens text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvoidex/text-region"; - description = "Marking text regions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-short" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, ghc-prim - , hashable, stdenv, text - }: - mkDerivation { - pname = "text-short"; - version = "0.1.3"; - sha256 = "bf5b9fedb7d0301e8fdf33e3223d10ca940e9e72c18bac135be80b6016edd977"; - revision = "1"; - editedCabalFile = "0lb4papn54fbgjdqj4ladaf5q12dhlwkg5z2vc5qxlh35x82sw4a"; - libraryHaskellDepends = [ - base binary bytestring deepseq ghc-prim hashable text - ]; - doHaddock = false; - doCheck = false; - description = "Memory-efficient representation of Unicode text strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show" = callPackage - ({ mkDerivation, array, base, base-compat-batteries, bifunctors - , bytestring, bytestring-builder, containers, generic-deriving - , ghc-boot-th, ghc-prim, integer-gmp, stdenv, template-haskell - , text, th-abstraction, th-lift, transformers, transformers-compat - }: - mkDerivation { - pname = "text-show"; - version = "3.8.4"; - sha256 = "784931caf17cca9c802c6d3b7bde5c39104766913c5625a4ecf683ebb2202a0e"; - libraryHaskellDepends = [ - array base base-compat-batteries bifunctors bytestring - bytestring-builder containers generic-deriving ghc-boot-th ghc-prim - integer-gmp template-haskell text th-abstraction th-lift - transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show"; - description = "Efficient conversion of values into Text"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-show-instances" = callPackage - ({ mkDerivation, base, base-compat-batteries, bifunctors, binary - , containers, directory, ghc-boot-th, haskeline, hpc, old-locale - , old-time, pretty, random, semigroups, stdenv, tagged - , template-haskell, terminfo, text, text-short, text-show, time - , transformers, transformers-compat, unix, unordered-containers - , vector, xhtml - }: - mkDerivation { - pname = "text-show-instances"; - version = "3.8.3"; - sha256 = "ad549ae8614843558f7cc44ee6d054ae9950c9ac45d349b18cc97d3e6e196387"; - revision = "1"; - editedCabalFile = "104r5k4h4sdf69frpc0pr8jijk4v9dalw9c18yib653bwjw0ypl4"; - libraryHaskellDepends = [ - base base-compat-batteries bifunctors binary containers directory - ghc-boot-th haskeline hpc old-locale old-time pretty random - semigroups tagged template-haskell terminfo text text-short - text-show time transformers transformers-compat unix - unordered-containers vector xhtml - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/RyanGlScott/text-show-instances"; - description = "Additional instances for text-show"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "text-zipper" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text, vector }: - mkDerivation { - pname = "text-zipper"; - version = "0.10.1"; - sha256 = "9afaeb93d55b0bb6d0d6f495e3ff0789a60d0dee57fb6103f52e4c05ae64b14b"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base deepseq text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/text-zipper/"; - description = "A text editor zipper library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "textlocal" = callPackage - ({ mkDerivation, aeson, base, bytestring, http-client - , http-client-tls, http-conduit, stdenv, text, unix-time - }: - mkDerivation { - pname = "textlocal"; - version = "0.1.0.5"; - sha256 = "8954ff6270c9920fc390be6b9f398975ea06dd6808a411cbf8fa5fb4a9cf3087"; - libraryHaskellDepends = [ - aeson base bytestring http-client http-client-tls http-conduit text - unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/just-chow/textlocal"; - description = "Haskell wrapper for textlocal SMS gateway"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tf-random" = callPackage - ({ mkDerivation, base, primitive, random, stdenv, time }: - mkDerivation { - pname = "tf-random"; - version = "0.5"; - sha256 = "2e30cec027b313c9e1794d326635d8fc5f79b6bf6e7580ab4b00186dadc88510"; - libraryHaskellDepends = [ base primitive random time ]; - doHaddock = false; - doCheck = false; - description = "High-quality splittable pseudorandom number generator"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tfp" = callPackage - ({ mkDerivation, base, stdenv, utility-ht }: - mkDerivation { - pname = "tfp"; - version = "1.0.1.1"; - sha256 = "71b494920377cfd1c58f220e5d8862c1f2c0d2b1ce529352f2fde20428a96ce2"; - libraryHaskellDepends = [ base utility-ht ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Type_arithmetic"; - description = "Type-level integers, booleans, lists using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-abstraction" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv - , template-haskell - }: - mkDerivation { - pname = "th-abstraction"; - version = "0.3.1.0"; - sha256 = "4b9e1bcc6ec3d897fb09c3d7fa2f37f0672d5370e0e3e49809886da81fe001b9"; - revision = "1"; - editedCabalFile = "1c0sy614vfcdvshn0z09nzfiq89v5if31yvvpxzrivrdy9gf912s"; - libraryHaskellDepends = [ - base containers ghc-prim template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/glguy/th-abstraction"; - description = "Nicer interface for reified information about data types"; - license = stdenv.lib.licenses.isc; - }) {}; - "th-data-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-data-compat"; - version = "0.1.0.0"; - sha256 = "5d5213f9950e035b49541f6e4d37449ad2f6dfc127d8deb507c6badf576ba50d"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Compatibility for data definition template of TH"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-desugar" = callPackage - ({ mkDerivation, base, containers, fail, ghc-prim, mtl - , ordered-containers, semigroups, stdenv, syb, template-haskell - , th-abstraction, th-lift, th-orphans, transformers-compat - }: - mkDerivation { - pname = "th-desugar"; - version = "1.10"; - sha256 = "1bf5b113be50afbb416fb7c8540091ba68d5c5fb78693a490db45f8a8f207bbc"; - libraryHaskellDepends = [ - base containers fail ghc-prim mtl ordered-containers semigroups syb - template-haskell th-abstraction th-lift th-orphans - transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/goldfirere/th-desugar"; - description = "Functions to desugar Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-expand-syns" = callPackage - ({ mkDerivation, base, containers, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-expand-syns"; - version = "0.4.5.0"; - sha256 = "5e909e674bc6311d4a8c2376df1e5bda2d8ecde8d79ec8d3d51f59c5bc779cdc"; - libraryHaskellDepends = [ base containers syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanielSchuessler/th-expand-syns"; - description = "Expands type synonyms in Template Haskell ASTs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-extras" = callPackage - ({ mkDerivation, base, stdenv, syb, template-haskell }: - mkDerivation { - pname = "th-extras"; - version = "0.0.0.4"; - sha256 = "8feff450aaf28ec4f08c45a5656c62879861a8e7f45591cb367d5351ddc3fbed"; - libraryHaskellDepends = [ base syb template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mokus0/th-extras"; - description = "A grab bag of functions for use with Template Haskell"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "th-lift" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, template-haskell - , th-abstraction - }: - mkDerivation { - pname = "th-lift"; - version = "0.8.1"; - sha256 = "3fa1f4193794d8d6dc7864e20a2f89ab268c321a4b3d254fd38282619f8e5ed7"; - libraryHaskellDepends = [ - base ghc-prim template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/RyanGlScott/th-lift"; - description = "Derive Template Haskell's Lift class for datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-lift-instances" = callPackage - ({ mkDerivation, base, bytestring, containers, stdenv - , template-haskell, text, th-lift, transformers, vector - }: - mkDerivation { - pname = "th-lift-instances"; - version = "0.1.14"; - sha256 = "e87c194c9aa85576ba32dd7f7c70b8c182a3089d9c3107c9e5c448b6ad242b64"; - libraryHaskellDepends = [ - base bytestring containers template-haskell text th-lift - transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/bennofs/th-lift-instances/"; - description = "Lift instances for template-haskell for common data types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-orphans" = callPackage - ({ mkDerivation, base, mtl, stdenv, template-haskell, th-lift - , th-lift-instances, th-reify-many - }: - mkDerivation { - pname = "th-orphans"; - version = "0.13.9"; - sha256 = "3f3c6bead037cb11faf633b3938d1af2c6b11399e8353b72e80d9eb3b57e41f6"; - revision = "1"; - editedCabalFile = "100gpi0np50vxlapyl6d05w8ss9l2gqacn28i228hsvhvrxxwjdy"; - libraryHaskellDepends = [ - base mtl template-haskell th-lift th-lift-instances th-reify-many - ]; - doHaddock = false; - doCheck = false; - description = "Orphan instances for TH datatypes"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-printf" = callPackage - ({ mkDerivation, base, charset, containers, dlist - , integer-logarithms, microlens-platform, mtl, parsec, semigroups - , stdenv, template-haskell, text, th-lift, transformers - }: - mkDerivation { - pname = "th-printf"; - version = "0.7"; - sha256 = "ea2bc2ab17961188fcf69221cbfab0b420dbe1fddcef072bb47789ca34e034b9"; - libraryHaskellDepends = [ - base charset containers dlist integer-logarithms microlens-platform - mtl parsec semigroups template-haskell text th-lift transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/pikajude/th-printf#readme"; - description = "Quasiquoters for printf"; - license = stdenv.lib.licenses.mit; - }) {}; - "th-reify-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-reify-compat"; - version = "0.0.1.5"; - sha256 = "af1b2e7e39e029d8c9a20efdd7b49d4d15616ac360adddc7a09560b9a223359c"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/khibino/haskell-th-reify-compat/"; - description = "Compatibility for the result type of TH reify"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-reify-many" = callPackage - ({ mkDerivation, base, containers, mtl, safe, stdenv - , template-haskell, th-expand-syns - }: - mkDerivation { - pname = "th-reify-many"; - version = "0.1.9"; - sha256 = "f889dd029d5ab191ace99fe595f363c60314d536e61c8c58f6167f1a9d29ae43"; - libraryHaskellDepends = [ - base containers mtl safe template-haskell th-expand-syns - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mgsloan/th-reify-many"; - description = "Recurseively reify template haskell datatype info"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "th-strict-compat" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "th-strict-compat"; - version = "0.1.0.1"; - sha256 = "c3fad31e4b657047d8dd248803e2206c6a5b7375e22d3940714d0cc42d93aa4a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/igrep/th-strict-compat"; - description = "Compatibility shim for Bang and Strict in Template Haskell"; - license = stdenv.lib.licenses.asl20; - }) {}; - "th-test-utils" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "th-test-utils"; - version = "1.0.1"; - sha256 = "9d75fd38252cceac121e38c18645ef14d799332739432d18a836f0ac3e917de1"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/LeapYear/th-test-utils#readme"; - description = "Utility functions for testing Template Haskell code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "these" = callPackage - ({ mkDerivation, aeson, assoc, base, base-compat, binary, deepseq - , hashable, QuickCheck, semigroupoids, stdenv, unordered-containers - }: - mkDerivation { - pname = "these"; - version = "1.0.1"; - sha256 = "79cc1ee35d268c5871f585681c649daded2ffe5fc657c3db87a9b2f38a8917cc"; - revision = "1"; - editedCabalFile = "0923r86fnmgpx0msm68aszirh2n19nn5bccgjxfh2146jw4z7w3z"; - libraryHaskellDepends = [ - aeson assoc base base-compat binary deepseq hashable QuickCheck - semigroupoids unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "An either-or-both data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "these-lens" = callPackage - ({ mkDerivation, base, base-compat, lens, stdenv, these }: - mkDerivation { - pname = "these-lens"; - version = "1"; - sha256 = "feb020128788dfc515164190bb051f7f1034eca90de9e82caf253d8b47f09490"; - revision = "1"; - editedCabalFile = "1lrpq5a8ldddmsi7ckaqinamn2f7kkijq5jq05yzdx818b2563wn"; - libraryHaskellDepends = [ base base-compat lens these ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Lenses for These"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "these-optics" = callPackage - ({ mkDerivation, base, optics-core, stdenv, these }: - mkDerivation { - pname = "these-optics"; - version = "1"; - sha256 = "273ec7881aef36ce5571cfde6c389b7e8c9ae5e08d78eb5633b074c9fef4ba3e"; - revision = "2"; - editedCabalFile = "04iahn4y52qj3q99r20zp0cgj764m7k073jmkf66qf819133afl8"; - libraryHaskellDepends = [ base optics-core these ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isomorphism/these"; - description = "Optics for These"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "thread-hierarchy" = callPackage - ({ mkDerivation, base, containers, stdenv, stm }: - mkDerivation { - pname = "thread-hierarchy"; - version = "0.3.0.1"; - sha256 = "8181448452c759b660f6d7c8775fd99479ccc382cd291460903b15574e5d5c34"; - libraryHaskellDepends = [ base containers stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/thread-hierarchy#readme"; - description = "Simple Haskel thread management in hierarchical manner"; - license = stdenv.lib.licenses.mit; - }) {}; - "thread-local-storage" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "thread-local-storage"; - version = "0.2"; - sha256 = "d648e01631189036a386d91de22f2b862e830ad0625b1f6096b347974f465294"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/rrnewton/thread-local-storage"; - description = "Several options for thread-local-storage (TLS) in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threads" = callPackage - ({ mkDerivation, base, Cabal, stdenv, stm }: - mkDerivation { - pname = "threads"; - version = "0.5.1.6"; - sha256 = "139ac3c067fcbb392b5b9c2feaa98184b75ebe7f2e580726eea6ce812d94562e"; - setupHaskellDepends = [ base Cabal ]; - libraryHaskellDepends = [ base stm ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/threads"; - description = "Fork threads and wait for their result"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "threepenny-gui" = callPackage - ({ mkDerivation, aeson, async, base, bytestring, containers - , data-default, deepseq, exceptions, file-embed, filepath, hashable - , safe, snap-core, snap-server, stdenv, stm, template-haskell, text - , transformers, unordered-containers, vault, vector, websockets - , websockets-snap - }: - mkDerivation { - pname = "threepenny-gui"; - version = "0.8.3.1"; - sha256 = "5497dcfa3328de5bd834f7440df863ddb56c70652c69f8fce7dfada995b75522"; - isLibrary = true; - isExecutable = true; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson async base bytestring containers data-default deepseq - exceptions file-embed filepath hashable safe snap-core snap-server - stm template-haskell text transformers unordered-containers vault - vector websockets websockets-snap - ]; - doHaddock = false; - doCheck = false; - homepage = "http://wiki.haskell.org/Threepenny-gui"; - description = "GUI framework that uses the web browser as a display"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throttle-io-stream" = callPackage - ({ mkDerivation, async, base, clock, stdenv, stm, stm-chans }: - mkDerivation { - pname = "throttle-io-stream"; - version = "0.2.0.1"; - sha256 = "e897a869062bcb4bcef372cfcf2a1e86699647fab8c721cfb22dbe6c47cf2c8e"; - libraryHaskellDepends = [ async base clock stm stm-chans ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/throttle-io-stream#readme"; - description = "Throttler between arbitrary IO producer and consumer functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "throwable-exceptions" = callPackage - ({ mkDerivation, base, safe-exceptions, stdenv, template-haskell }: - mkDerivation { - pname = "throwable-exceptions"; - version = "0.1.0.9"; - sha256 = "3ab23c1dd24036a5d1229bed2b140ef50259e365e74c97face9d837c50c769a9"; - libraryHaskellDepends = [ base safe-exceptions template-haskell ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aiya000/hs-throwable-exceptions#README.md"; - description = "throwable-exceptions gives the easy way to throw exceptions"; - license = stdenv.lib.licenses.mit; - }) {}; - "thyme" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, containers - , cpphs, deepseq, mtl, old-locale, profunctors, QuickCheck, random - , stdenv, text, time, vector, vector-space, vector-th-unbox - }: - mkDerivation { - pname = "thyme"; - version = "0.3.5.5"; - sha256 = "84c6701fb7b40841d22582202382c362fd9e0d6e5f1c959b7e0f2f91a85c796c"; - libraryHaskellDepends = [ - aeson attoparsec base bytestring containers deepseq mtl old-locale - profunctors QuickCheck random text time vector vector-space - vector-th-unbox - ]; - libraryToolDepends = [ cpphs ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/liyang/thyme"; - description = "A faster time library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tidal" = callPackage - ({ mkDerivation, base, bifunctors, bytestring, clock, colour - , containers, deepseq, hosc, mwc-random, network, parsec, primitive - , random, stdenv, text, transformers, vector - }: - mkDerivation { - pname = "tidal"; - version = "1.4.7"; - sha256 = "53f1da6f272231ab3b926a8eacefc9139e760f559084ed3b4f9669e117b96607"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bifunctors bytestring clock colour containers deepseq hosc - mwc-random network parsec primitive random text transformers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://tidalcycles.org/"; - description = "Pattern language for improvised music"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tile" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tile"; - version = "0.3.0.0"; - sha256 = "15ed186360bea0bfc64dd4e6fc27b4e4aed9ba2cc344f1d8ea69687933cc65f0"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/caneroj1/tile#readme"; - description = "Slippy map tile functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-compat" = callPackage - ({ mkDerivation, base, base-orphans, deepseq, stdenv, time }: - mkDerivation { - pname = "time-compat"; - version = "1.9.2.2"; - sha256 = "a268613385d359274edf48fb2dad4af29874f58486b2d5625e3b95a371066a17"; - revision = "2"; - editedCabalFile = "1i94pch4zj713gxcrlb09airbh3hqqs7cscjjfkxk9lixkk6iwnc"; - libraryHaskellDepends = [ base base-orphans deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-compat"; - description = "Compatibility package for time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-lens" = callPackage - ({ mkDerivation, base, data-lens-light, stdenv, time }: - mkDerivation { - pname = "time-lens"; - version = "0.4.0.2"; - sha256 = "d8cbb8fcb79867d4a5fe6bc024d0badd68fad8986f6cdc1161b0f41afa49d01e"; - libraryHaskellDepends = [ base data-lens-light time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/feuerbach/time-lens"; - description = "Lens-based interface to Data.Time data structures"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-compat" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-compat"; - version = "0.1.1.5"; - sha256 = "07ff1566de7d851423a843b2de385442319348c621d4f779b3d365ce91ac502c"; - configureFlags = [ "-f-old-locale" ]; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/khibino/haskell-time-locale-compat"; - description = "Compatibile module for time-format locale"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "time-locale-vietnamese" = callPackage - ({ mkDerivation, base, stdenv, time }: - mkDerivation { - pname = "time-locale-vietnamese"; - version = "1.0.0.0"; - sha256 = "96062db31c2a858c20c8e3eb10aaff93e87f6514f335c14d0243429a7f730b76"; - libraryHaskellDepends = [ base time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tungd/time-locale-vietnamese#readme"; - description = "Vietnamese locale for date and time format"; - license = stdenv.lib.licenses.asl20; - }) {}; - "time-manager" = callPackage - ({ mkDerivation, auto-update, base, stdenv }: - mkDerivation { - pname = "time-manager"; - version = "0.0.0"; - sha256 = "90a616ed20b2119bb64f78f84230b6798cde22a35e87bc8d9ee08cdf1d90fcdb"; - libraryHaskellDepends = [ auto-update base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Scalable timer"; - license = stdenv.lib.licenses.mit; - }) {}; - "time-parsers" = callPackage - ({ mkDerivation, base, parsers, stdenv, template-haskell, time }: - mkDerivation { - pname = "time-parsers"; - version = "0.1.2.1"; - sha256 = "bbf133bd986e79664560f42f2a36b7ad2e89c1095316029e7d6b228412355380"; - revision = "1"; - editedCabalFile = "00063s6a75sy9fjg5507yix0wizdfx5vangn3yfmfvh3wgw8yj8c"; - libraryHaskellDepends = [ base parsers template-haskell time ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/time-parsers#readme"; - description = "Parsers for types in `time`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timeit" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "timeit"; - version = "2.0"; - sha256 = "a14df4e578db371e5c609f0784209144545f9cae90026d24a3398042f7c591ea"; - revision = "1"; - editedCabalFile = "0d4vjg48xyqjmydnjqjxica0zr30vgb91b3vv75cig686ikpjmq7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/merijn/timeit"; - description = "Time monadic computations with an IO base"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timelens" = callPackage - ({ mkDerivation, base, lens, stdenv, time }: - mkDerivation { - pname = "timelens"; - version = "0.2.0.2"; - sha256 = "f4e6fa016ec37f79c96a62cff174929f04152831c308ab1f9a797f5b5674a764"; - libraryHaskellDepends = [ base lens time ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.github.com/massysett/timelens"; - description = "Lenses for the time package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timerep" = callPackage - ({ mkDerivation, attoparsec, base, monoid-subclasses, stdenv, text - , time - }: - mkDerivation { - pname = "timerep"; - version = "2.0.0.2"; - sha256 = "1d4e417f3ca08921941c16791680e13b66fb1844d94759068846ede78c965339"; - libraryHaskellDepends = [ - attoparsec base monoid-subclasses text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HugoDaniel/timerep"; - description = "Parse and display time according to some RFCs (RFC3339, RFC2822, RFC822)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-olson" = callPackage - ({ mkDerivation, base, binary, bytestring, extensible-exceptions - , stdenv, time, timezone-series - }: - mkDerivation { - pname = "timezone-olson"; - version = "0.1.9"; - sha256 = "32230509029bcf9e1bd95b5ad7ee69b8b0250cffc4bb8f2df88a651b3af74b15"; - libraryHaskellDepends = [ - base binary bytestring extensible-exceptions time timezone-series - ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "A pure Haskell parser and renderer for binary Olson timezone files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "timezone-series" = callPackage - ({ mkDerivation, base, deepseq, stdenv, time }: - mkDerivation { - pname = "timezone-series"; - version = "0.1.9"; - sha256 = "e5d35df5dc2408803120602b0a66ed63439e36b38dd0895f3e2159fcbd7d9cae"; - libraryHaskellDepends = [ base deepseq time ]; - doHaddock = false; - doCheck = false; - homepage = "http://projects.haskell.org/time-ng/"; - description = "Enhanced timezone handling for Data.Time"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tinylog" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , fast-logger, stdenv, text, transformers, unix-time - }: - mkDerivation { - pname = "tinylog"; - version = "0.15.0"; - sha256 = "cb71164ce47af991babc9837e3e86c4f9d4e0cac1440f56faa71f4497af58d5f"; - libraryHaskellDepends = [ - base bytestring containers double-conversion fast-logger text - transformers unix-time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/tinylog/"; - description = "Simplistic logging using fast-logger"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "titlecase" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "titlecase"; - version = "1.0.1"; - sha256 = "e7731c29509d2b41b1d94b89484edffa10b86689a755c4019617a6c9485e49cc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/peti/titlecase#readme"; - description = "Convert English Words to Title Case"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tldr" = callPackage - ({ mkDerivation, ansi-terminal, base, bytestring, cmark, containers - , directory, filepath, optparse-applicative, semigroups, stdenv - , text, typed-process - }: - mkDerivation { - pname = "tldr"; - version = "0.6.2"; - sha256 = "3f18b484a913d5d89822286664821fa64c31c4534fe246270054b95bd447a88e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-terminal base bytestring cmark text - ]; - executableHaskellDepends = [ - base containers directory filepath optparse-applicative semigroups - typed-process - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/tldr-hs#readme"; - description = "Haskell tldr client"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, async, base, bytestring - , cereal, cryptonite, data-default-class, hourglass, memory, mtl - , network, stdenv, transformers, x509, x509-store, x509-validation - }: - mkDerivation { - pname = "tls"; - version = "1.5.3"; - sha256 = "0c9c4af3ec46fe6633aa22155d44a79d521fa8cfe14ec6ee40af053a53e34a9c"; - libraryHaskellDepends = [ - asn1-encoding asn1-types async base bytestring cereal cryptonite - data-default-class hourglass memory mtl network transformers x509 - x509-store x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "TLS/SSL protocol native implementation (Server and Client)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-debug" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, pem, stdenv, tls, tls-session-manager, x509, x509-store - , x509-system, x509-validation - }: - mkDerivation { - pname = "tls-debug"; - version = "0.4.8"; - sha256 = "74633188747b117762b9c6e7b6df9ac0e536a1adf93de3836733cb50c194def4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring cryptonite data-default-class network pem tls - tls-session-manager x509 x509-store x509-system x509-validation - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-tls"; - description = "Set of programs for TLS testing and debugging"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tls-session-manager" = callPackage - ({ mkDerivation, auto-update, base, basement, bytestring, clock - , memory, psqueues, stdenv, tls - }: - mkDerivation { - pname = "tls-session-manager"; - version = "0.0.4"; - sha256 = "ba207f79b4536a65625063106c621e8bafc0dc7928bd9273270e19f36d59938c"; - libraryHaskellDepends = [ - auto-update base basement bytestring clock memory psqueues tls - ]; - doHaddock = false; - doCheck = false; - description = "In-memory TLS session manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapchan" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapchan"; - version = "0.0.3"; - sha256 = "e86db4c2e6cdd373b0cbe91e01d2a223c95d5d36930f5a6c484c1586ae5011e0"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/tmapchan#readme"; - description = "An insert-ordered multimap (indexed FIFO) which consumes values as you lookup"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmapmvar" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, stm - , unordered-containers - }: - mkDerivation { - pname = "tmapmvar"; - version = "0.0.4"; - sha256 = "a6e58cfd8bed77c9ec6122d26db79b3d16f139c977a255bd336fe3c53822b4e3"; - libraryHaskellDepends = [ - base containers hashable stm unordered-containers - ]; - doHaddock = false; - doCheck = false; - description = "A single-entity stateful Map in STM, similar to tmapchan"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tmp-postgres" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, base64-bytestring - , bytestring, containers, cryptohash-sha1, deepseq, directory - , generic-monoid, port-utils, postgres-options, postgresql-simple - , process, stdenv, stm, temporary, transformers, unix - }: - mkDerivation { - pname = "tmp-postgres"; - version = "1.34.1.0"; - sha256 = "98514428edaf527cc464cb9a30df89c6168c858e039ab1baf8293471196c3ba2"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - ansi-wl-pprint async base base64-bytestring bytestring containers - cryptohash-sha1 deepseq directory generic-monoid port-utils - postgres-options postgresql-simple process stm temporary - transformers unix - ]; - executableHaskellDepends = [ - async base directory postgres-options postgresql-simple process - temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jfischoff/tmp-postgres#readme"; - description = "Start and stop a temporary postgres"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tomland" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, hashable - , markdown-unlit, megaparsec, mtl, parser-combinators, stdenv, text - , time, transformers, unordered-containers - }: - mkDerivation { - pname = "tomland"; - version = "1.2.1.0"; - sha256 = "1e1fa9b59d064f757731e6a91f6c87e06312c72e6b9cfcee859f0afec7acfc2f"; - revision = "1"; - editedCabalFile = "00lb4ivrqrj5yqnfz5ji3vjaa284img9xhkjvrzc291bs83vl4kr"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring containers deepseq hashable megaparsec mtl - parser-combinators text time transformers unordered-containers - ]; - executableHaskellDepends = [ - base containers hashable text time unordered-containers - ]; - executableToolDepends = [ markdown-unlit ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/tomland"; - description = "Bidirectional TOML serialization"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "tonalude" = callPackage - ({ mkDerivation, base, bytestring, rio, stdenv, unliftio }: - mkDerivation { - pname = "tonalude"; - version = "0.1.1.0"; - sha256 = "5aa0ce5f89d5e7568e303f1ba41ca998ba05fbf94c17eb42fb01d3e65b601018"; - libraryHaskellDepends = [ base bytestring rio unliftio ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tonatona-project/tonatona#readme"; - description = "A standard library for Tonatona framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "topograph" = callPackage - ({ mkDerivation, base, base-compat, base-orphans, containers - , stdenv, vector - }: - mkDerivation { - pname = "topograph"; - version = "1"; - sha256 = "a7a95e00518d1c52dcf5261b0be4776012122032fdbdeae0bdf41ce38a92a76e"; - revision = "2"; - editedCabalFile = "0sci2p1spsh7as4n7mp1hb4pwiq4wd69p60c71kwx56wpwiglp9i"; - libraryHaskellDepends = [ - base base-compat base-orphans containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/topograph"; - description = "Directed acyclic graphs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "torsor" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "torsor"; - version = "0.1"; - sha256 = "75a3f53a08b9333613a16c5e98f12a069a1c1a360dc3c2abf7b47522acb06d9c"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/andrewthad/torsor#readme"; - description = "Torsor Typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tostring" = callPackage - ({ mkDerivation, base, case-insensitive, stdenv, text, utf8-string - }: - mkDerivation { - pname = "tostring"; - version = "0.2.1.1"; - sha256 = "efa700d44aec57c82be60c0eabd610f62f2df0d9b06cf41b5fc35a2b77502531"; - libraryHaskellDepends = [ base case-insensitive text utf8-string ]; - doHaddock = false; - doCheck = false; - description = "The ToString class"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tracing" = callPackage - ({ mkDerivation, aeson, base, base16-bytestring, bytestring - , case-insensitive, containers, http-client, ip, mtl, network - , random, stdenv, stm, text, time, transformers, unliftio - }: - mkDerivation { - pname = "tracing"; - version = "0.0.4.0"; - sha256 = "4be2c266499f6dc494e548ebe75c84aa19d43f14202513a0f652fb5573821ad0"; - libraryHaskellDepends = [ - aeson base base16-bytestring bytestring case-insensitive containers - http-client ip mtl network random stm text time transformers - unliftio - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtth/tracing"; - description = "Distributed tracing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transaction" = callPackage - ({ mkDerivation, base, mono-traversable, stdenv }: - mkDerivation { - pname = "transaction"; - version = "0.1.1.3"; - sha256 = "d264b1324726e70aceafdc2fa7eef1c863c527c69486a967116dee29aa23c0c5"; - libraryHaskellDepends = [ base mono-traversable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/haskell-transaction#readme"; - description = "Monadic representation of transactions"; - license = stdenv.lib.licenses.mit; - }) {}; - "transformers-base" = callPackage - ({ mkDerivation, base, base-orphans, stdenv, stm, transformers - , transformers-compat - }: - mkDerivation { - pname = "transformers-base"; - version = "0.4.5.2"; - sha256 = "d0c80c63fdce6a077dd8eda4f1ff289b85578703a3f1272e141d400fe23245e8"; - libraryHaskellDepends = [ - base base-orphans stm transformers transformers-compat - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/transformers-base"; - description = "Lift computations from the bottom of a transformer stack"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-bifunctors" = callPackage - ({ mkDerivation, base, mmorph, stdenv, transformers }: - mkDerivation { - pname = "transformers-bifunctors"; - version = "0.1"; - sha256 = "3c25d3d76361f62b4c7c37d4bc4b7497af691d000fcd8e5fe9cbb3544d284807"; - revision = "1"; - editedCabalFile = "1vjyk2ldwfi2pkvk79p37ii5xgg1399kxqhkq3l4wvag4j5p4afs"; - libraryHaskellDepends = [ base mmorph transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jacobstanley/transformers-bifunctors"; - description = "Bifunctors over monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-compat" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv, transformers }: - mkDerivation { - pname = "transformers-compat"; - version = "0.6.5"; - sha256 = "da67cf11515da751b32a8ce6e96549f7268f7c435769ad19dc9766b69774620b"; - configureFlags = [ "-ffive-three" ]; - libraryHaskellDepends = [ base ghc-prim transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/transformers-compat/"; - description = "A small compatibility shim for the transformers library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "transformers-fix" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "transformers-fix"; - version = "1.0"; - sha256 = "65d1fff36b844d8ac22d47eb47e2c7e9d7ece54fafeeca4d4e38a08910be4a09"; - revision = "1"; - editedCabalFile = "126gyjr8jp42md6nblx7c0kan97jgsakvsf2vzv2pj828ax1icrs"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/thumphries/transformers-fix"; - description = "Monad transformer for evaluating to a fixpoint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "traverse-with-class" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, transformers }: - mkDerivation { - pname = "traverse-with-class"; - version = "1.0.1.0"; - sha256 = "d69b371265f20ecd6c72e3643036f835dc8b654516d2a5e496fabaae4f0ad1fa"; - libraryHaskellDepends = [ base template-haskell transformers ]; - doHaddock = false; - doCheck = false; - description = "Generic applicative traversals"; - license = stdenv.lib.licenses.mit; - }) {}; - "tree-diff" = callPackage - ({ mkDerivation, aeson, ansi-terminal, ansi-wl-pprint, base - , base-compat, bytestring, bytestring-builder, containers, hashable - , parsec, parsers, pretty, QuickCheck, scientific, stdenv, tagged - , text, time, unordered-containers, uuid-types, vector - }: - mkDerivation { - pname = "tree-diff"; - version = "0.1"; - sha256 = "e3d901ad6f3e2732f07e0dafcafb27bef2f2cadec46bf9c9a5c95e60f1b2a684"; - revision = "2"; - editedCabalFile = "081fcdkps3sc1pcfbcxs5f1ifnpx8hsk9ms2gafd793lia6whfsk"; - libraryHaskellDepends = [ - aeson ansi-terminal ansi-wl-pprint base base-compat bytestring - bytestring-builder containers hashable parsec parsers pretty - QuickCheck scientific tagged text time unordered-containers - uuid-types vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/tree-diff"; - description = "Diffing of (expression) trees"; - license = stdenv.lib.licenses.gpl2Plus; - }) {}; - "tree-fun" = callPackage - ({ mkDerivation, base, containers, mtl, stdenv }: - mkDerivation { - pname = "tree-fun"; - version = "0.8.1.0"; - sha256 = "2ae925f198e9700dedbf809c2b77086fef32f58b4a4adb6c398dca49f4d56f1f"; - libraryHaskellDepends = [ base containers mtl ]; - doHaddock = false; - doCheck = false; - description = "Library for functions pertaining to tree exploration and manipulation"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "trifecta" = callPackage - ({ mkDerivation, ansi-terminal, array, base, blaze-builder - , blaze-html, blaze-markup, bytestring, Cabal, cabal-doctest - , charset, comonad, containers, deepseq, fingertree, ghc-prim - , hashable, lens, mtl, parsers, prettyprinter - , prettyprinter-ansi-terminal, profunctors, reducers, semigroups - , stdenv, transformers, unordered-containers, utf8-string - }: - mkDerivation { - pname = "trifecta"; - version = "2.1"; - sha256 = "7a25c6b07b6ca4c6465b9f888444183cd1eab54d2890272010150df7a911233b"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - ansi-terminal array base blaze-builder blaze-html blaze-markup - bytestring charset comonad containers deepseq fingertree ghc-prim - hashable lens mtl parsers prettyprinter prettyprinter-ansi-terminal - profunctors reducers semigroups transformers unordered-containers - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/trifecta/"; - description = "A modern parser combinator library with convenient diagnostics"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "triplesec" = callPackage - ({ mkDerivation, base, cryptonite, memory, mtl, stdenv - , transformers - }: - mkDerivation { - pname = "triplesec"; - version = "0.2.2.1"; - sha256 = "3ab7ff8bc630fbdd3d479e993d67853dacfc2967a2ca46b8bb7ee9387158d971"; - libraryHaskellDepends = [ - base cryptonite memory mtl transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/SamProtas/hs-triplesec"; - description = "TripleSec is a simple, triple-paranoid, symmetric encryption library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "trivial-constraint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "trivial-constraint"; - version = "0.6.0.0"; - sha256 = "e527a3f98b2d32ea8453bc2b29510b7c48c1076b4061168ef8b8d07a28f51178"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/leftaroundabout/trivial-constraint"; - description = "Constraints that any type, resp. no type fulfills"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tsv2csv" = callPackage - ({ mkDerivation, base, HUnit, split, stdenv }: - mkDerivation { - pname = "tsv2csv"; - version = "0.1.0.2"; - sha256 = "2c082f8bac93a5d47e312148493d0b8f078e2e0d0e919caa0fa24cab63dd3397"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base HUnit split ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Convert tsv to csv"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttc" = callPackage - ({ mkDerivation, base, bytestring, stdenv, template-haskell, text - }: - mkDerivation { - pname = "ttc"; - version = "0.2.0.0"; - sha256 = "477713e7a13358a9eb39b2dc4b25ebf89fb4f276aaae6fde23c7ecd4c07583ee"; - libraryHaskellDepends = [ base bytestring template-haskell text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ExtremaIS/ttc-haskell#readme"; - description = "Textual Type Classes"; - license = stdenv.lib.licenses.mit; - }) {}; - "ttl-hashtables" = callPackage - ({ mkDerivation, base, clock, containers, data-default, failable - , hashable, hashtables, mtl, stdenv, transformers - }: - mkDerivation { - pname = "ttl-hashtables"; - version = "1.4.1.0"; - sha256 = "d20d7aefb98a617fefaf9178c0a3d23620625800598054f2d7be36e8cafa7cf8"; - revision = "1"; - editedCabalFile = "0ghzp5kqk5a6831kxfizsnjjcaflinqb26l4d5vjwk7763jad195"; - libraryHaskellDepends = [ - base clock containers data-default failable hashable hashtables mtl - transformers - ]; - doHaddock = false; - doCheck = false; - description = "Extends hashtables so that entries added can be expired after a TTL"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "ttrie" = callPackage - ({ mkDerivation, atomic-primops, base, hashable, primitive, stdenv - , stm - }: - mkDerivation { - pname = "ttrie"; - version = "0.1.2.1"; - sha256 = "50444fe989559a0b16120df72765321ffd9de2fd97c943104513d894f21f4a68"; - libraryHaskellDepends = [ - atomic-primops base hashable primitive stm - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/mcschroeder/ttrie"; - description = "Contention-free STM hash map"; - license = stdenv.lib.licenses.mit; - }) {}; - "tuple" = callPackage - ({ mkDerivation, base, OneTuple, stdenv }: - mkDerivation { - pname = "tuple"; - version = "0.3.0.2"; - sha256 = "2fcb068ffafbe64170e02094a363f83d1725f44f8af963d9dad943a592e89624"; - libraryHaskellDepends = [ base OneTuple ]; - doHaddock = false; - doCheck = false; - description = "Various functions on tuples"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuple-sop" = callPackage - ({ mkDerivation, base, generics-sop, stdenv }: - mkDerivation { - pname = "tuple-sop"; - version = "0.3.1.0"; - sha256 = "f6e18d0f444993c959eaa7d1aca87993c779b929260b1c6dd823715d3e736043"; - libraryHaskellDepends = [ base generics-sop ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Ferdinand-vW/tuple-sop#readme"; - description = "functions on n-ary tuples using generics-sop"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "tuple-th" = callPackage - ({ mkDerivation, base, containers, stdenv, template-haskell }: - mkDerivation { - pname = "tuple-th"; - version = "0.2.5"; - sha256 = "56ea37dcede07b5cf5385108540ae626db163f9df0387583d3c7afdaf72634d7"; - libraryHaskellDepends = [ base containers template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Generate (non-recursive) utility functions for tuples of statically known size"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "tuples-homogenous-h98" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "tuples-homogenous-h98"; - version = "0.1.1.0"; - sha256 = "025afc8f0fe9c92fb43cebedfa6a764f744d3dc3a3d52935d0a01bc80d111f3a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ppetr/tuples-homogenous-h98"; - description = "Wrappers for n-ary tuples with Traversable and Applicative/Monad instances"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "turtle" = callPackage - ({ mkDerivation, ansi-wl-pprint, async, base, bytestring, clock - , containers, directory, exceptions, foldl, hostname, managed - , optional-args, optparse-applicative, process, semigroups, stdenv - , stm, streaming-commons, system-fileio, system-filepath, temporary - , text, time, transformers, unix, unix-compat - }: - mkDerivation { - pname = "turtle"; - version = "1.5.16"; - sha256 = "5616e6d6c184fbe77e695f99f6f22c52072b80dce4a6e68974f51aaa5fd18c98"; - libraryHaskellDepends = [ - ansi-wl-pprint async base bytestring clock containers directory - exceptions foldl hostname managed optional-args - optparse-applicative process semigroups stm streaming-commons - system-fileio system-filepath temporary text time transformers unix - unix-compat - ]; - doHaddock = false; - doCheck = false; - description = "Shell programming, Haskell-style"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-equality" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-equality"; - version = "1"; - sha256 = "4728b502a211454ef682a10d7a3e817c22d06ba509df114bb267ef9d43a08ce8"; - revision = "1"; - editedCabalFile = "13lsff17dxz852f5bhjz8d1by704rzvwr67qqfc5dz5s7xc28qyk"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hesselink/type-equality"; - description = "Data.Type.Equality compat package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-errors" = callPackage - ({ mkDerivation, base, first-class-families, stdenv, syb - , template-haskell, th-abstraction - }: - mkDerivation { - pname = "type-errors"; - version = "0.2.0.0"; - sha256 = "174d509c30ec806117a244add923fee578ba5f3505b0156f4e03a32023892eb4"; - libraryHaskellDepends = [ - base first-class-families syb template-haskell th-abstraction - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/isovector/type-errors#readme"; - description = "Tools for writing better type errors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-errors-pretty" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-errors-pretty"; - version = "0.0.1.0"; - sha256 = "b466d66ec26441a05052ed9f57ab1ac7b6818daff11e8e667aaf2a5cf516e7f6"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/chshersh/type-errors-pretty"; - description = "Combinators for writing pretty type errors easily"; - license = stdenv.lib.licenses.mpl20; - }) {}; - "type-fun" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-fun"; - version = "0.1.1"; - sha256 = "df5ec7428a101235df46c0b819a9ab3562d1d27991cc3b04303643952c555da1"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/s9gf4ult/type-fun"; - description = "Collection of widely reimplemented type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-hint" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-hint"; - version = "0.1"; - sha256 = "1161cdbf4b4b43c2953ee60438e948737604193e1bfe2c880ff178538faa99b9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mvv/type-hint"; - description = "Guide type inference with proxy values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-integers" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-integers"; - version = "0.0.1"; - sha256 = "118be3a4b3ab65bb1d31220738079013bd14fc77db674a9a1577f5582ffcc7ba"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mtesseract/type-level-integers"; - description = "Provides integers lifted to the type level"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-level-kv-list" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "type-level-kv-list"; - version = "1.1.0"; - sha256 = "4ff032e59108edc7dd27309ac0ee8987cc41ffba695d9699700bd37c6e7f7d73"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/arowM/type-level-kv-list#readme"; - description = "A module for hash map like object with type level keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-level-numbers" = callPackage - ({ mkDerivation, base, stdenv, template-haskell }: - mkDerivation { - pname = "type-level-numbers"; - version = "0.1.1.1"; - sha256 = "5b56ef5f6e0b6476b9aba46055c3919e67823cbc1b87ed8e6ed70113b1f2318a"; - libraryHaskellDepends = [ base template-haskell ]; - doHaddock = false; - doCheck = false; - description = "Type level numbers implemented using type families"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-map" = callPackage - ({ mkDerivation, base, containers, ghc-prim, stdenv, vector }: - mkDerivation { - pname = "type-map"; - version = "0.1.6.0"; - sha256 = "25d7ff6ceda7eb4f9aa95a1a4d8463fc71f88d019ca0d1410ecff2df56a1537d"; - libraryHaskellDepends = [ base containers ghc-prim vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Lysxia/type-map"; - description = "Type-indexed maps"; - license = stdenv.lib.licenses.mit; - }) {}; - "type-of-html" = callPackage - ({ mkDerivation, base, bytestring, containers, double-conversion - , ghc-prim, stdenv, text - }: - mkDerivation { - pname = "type-of-html"; - version = "1.5.1.0"; - sha256 = "4cc45bb6258ffe5c932d9ed7f25883adc6f6fdde345de774ccd665e3e4037f91"; - libraryHaskellDepends = [ - base bytestring containers double-conversion ghc-prim text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html"; - description = "High performance type driven html generation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-of-html-static" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, type-of-html }: - mkDerivation { - pname = "type-of-html-static"; - version = "0.1.0.2"; - sha256 = "29b3d951eed5498e8011db25996660a5aa0895e1e25fc12da7522fdae74f6200"; - libraryHaskellDepends = [ base template-haskell type-of-html ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/knupfer/type-of-html-static"; - description = "Optimize static parts of type-of-html"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-operators" = callPackage - ({ mkDerivation, base, ghc-prim, stdenv }: - mkDerivation { - pname = "type-operators"; - version = "0.2.0.0"; - sha256 = "9250be034d38b1412f530b92814b5de9ad189e97b5f0120b42955f9995dba3b2"; - libraryHaskellDepends = [ base ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Shou/type-operators#readme"; - description = "Various type-level operators"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "type-spec" = callPackage - ({ mkDerivation, base, pretty, stdenv }: - mkDerivation { - pname = "type-spec"; - version = "0.4.0.0"; - sha256 = "b8eb5e12f4979dd3e2ea7c0edca60e31a7f4fbaab35d7dd44e9b5d5bf783247d"; - libraryHaskellDepends = [ base pretty ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sheyll/type-spec#readme"; - description = "Type Level Specification by Example"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typed-process" = callPackage - ({ mkDerivation, async, base, bytestring, process, stdenv, stm - , transformers, unliftio-core - }: - mkDerivation { - pname = "typed-process"; - version = "0.2.6.0"; - sha256 = "31a2a81f33463fedc33cc519ad5b9679787e648fe2ec7efcdebd7d54bdbbc2b1"; - libraryHaskellDepends = [ - async base bytestring process stm transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://haskell-lang.org/library/typed-process"; - description = "Run external processes, with strong typing of streams"; - license = stdenv.lib.licenses.mit; - }) {}; - "typenums" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "typenums"; - version = "0.1.2.1"; - sha256 = "c6b4e083e664ecea40be2555f24c2e8b322b4f32a4a434e6514fecd6d6d6991b"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/adituv/typenums#readme"; - description = "Type level numbers using existing Nat functionality"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "typerep-map" = callPackage - ({ mkDerivation, base, containers, deepseq, ghc-prim, primitive - , stdenv, vector - }: - mkDerivation { - pname = "typerep-map"; - version = "0.3.2"; - sha256 = "60bdbc337e34b446a7c126bc99dfe9ae0089500fd435c6967f38ca548184e768"; - revision = "3"; - editedCabalFile = "032y3parcz7ffmsqichmshczk7zxkg66dciwvr5d7fznqvy3sg1s"; - libraryHaskellDepends = [ - base containers deepseq ghc-prim primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kowainik/typerep-map"; - description = "Efficient implementation of a dependent map with types as keys"; - license = stdenv.lib.licenses.mit; - }) {}; - "tzdata" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, stdenv - , vector - }: - mkDerivation { - pname = "tzdata"; - version = "0.1.20190911.0"; - sha256 = "699108b493b13f50b7e299da00e2f2251f6885da851cb68a183daf1e00c1d594"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring containers deepseq vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nilcons/haskell-tzdata"; - description = "Time zone database (as files and as a module)"; - license = stdenv.lib.licenses.asl20; - }) {}; - "ua-parser" = callPackage - ({ mkDerivation, aeson, base, bytestring, data-default, file-embed - , pcre-light, stdenv, text, yaml - }: - mkDerivation { - pname = "ua-parser"; - version = "0.7.5.1"; - sha256 = "1fcc39a99b9ad7eb2ddb2194ea84def35860078c0344531e2715dc2b819e3424"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson base bytestring data-default file-embed pcre-light text yaml - ]; - doHaddock = false; - doCheck = false; - description = "A library for parsing User-Agent strings, official Haskell port of ua-parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uglymemo" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "uglymemo"; - version = "0.1.0.1"; - sha256 = "fe89ef49c0cb15867c58815b050b33f17d394d4c48a9b7240a39780a5a79b847"; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - description = "A simple (but internally ugly) memoization function"; - license = stdenv.lib.licenses.publicDomain; - }) {}; - "unagi-chan" = callPackage - ({ mkDerivation, atomic-primops, base, ghc-prim, primitive, stdenv - }: - mkDerivation { - pname = "unagi-chan"; - version = "0.4.1.3"; - sha256 = "e232e525881eb05f0c20b5a4e53150a3063351e5d94917c6f55934477a9ad695"; - libraryHaskellDepends = [ atomic-primops base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - description = "Fast concurrent queues with a Chan-like API, and more"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unbounded-delays" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unbounded-delays"; - version = "0.1.1.0"; - sha256 = "8aa7f7d10a8d0073518804db76c3ef4c313359994ef175122341b0bce07329c7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/basvandijk/unbounded-delays"; - description = "Unbounded thread delays and timeouts"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxed-ref" = callPackage - ({ mkDerivation, base, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "unboxed-ref"; - version = "0.4.0.0"; - sha256 = "64eba8d550035a3a90cf9179e52f79877b426f0a6337cc216fdef45fcbb8773f"; - libraryHaskellDepends = [ base ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/unboxed-ref"; - description = "Fast unboxed references for ST and IO monad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unboxing-vector" = callPackage - ({ mkDerivation, base, deepseq, mono-traversable, primitive, stdenv - , vector - }: - mkDerivation { - pname = "unboxing-vector"; - version = "0.1.1.0"; - sha256 = "48425b2780d84b0489a8bc95778768730248bf04dc4624155525b6bcff2b4d44"; - libraryHaskellDepends = [ - base deepseq mono-traversable primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minoki/unboxing-vector#readme"; - description = "A newtype-friendly variant of unboxed vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uncertain" = callPackage - ({ mkDerivation, ad, base, base-compat, containers, free - , mwc-random, primitive, stdenv, transformers - }: - mkDerivation { - pname = "uncertain"; - version = "0.3.1.0"; - sha256 = "6f67855ed4799e0c3465dfaef062b637efc61fbea40ebc44ced163028a996ff2"; - libraryHaskellDepends = [ - ad base base-compat containers free mwc-random primitive - transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mstksg/uncertain"; - description = "Manipulating numbers with inherent experimental/measurement uncertainty"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unconstrained" = callPackage - ({ mkDerivation, stdenv }: - mkDerivation { - pname = "unconstrained"; - version = "0.1.0.2"; - sha256 = "d2717a66a0232ce454740f45c74645af5ef052e23ba81195ce6c3a06a10e010d"; - doHaddock = false; - doCheck = false; - description = "Null constraint"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv }: - mkDerivation { - pname = "unicode"; - version = "0.0.1.1"; - sha256 = "6fdbaa2f45e191c4226b305b4f56a1c43149eb4e253b0a3ebf80ab77e9b5f8c1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unicode/"; - description = "Construct and transform unicode characters"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-show" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unicode-show"; - version = "0.1.0.4"; - sha256 = "31d138f4c5634ce7357d3aa7e02ed28dad828ab64897ec46852ae8d3ccb61b95"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/haskell-jp/unicode-show#readme"; - description = "print and show in unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unicode-transforms" = callPackage - ({ mkDerivation, base, bitarray, bytestring, stdenv, text }: - mkDerivation { - pname = "unicode-transforms"; - version = "0.3.6"; - sha256 = "8326d001c463893a81fcfb431e3cc50c652fab041e9a37e284c445adfd667aaa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bitarray bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/unicode-transforms"; - description = "Unicode normalization"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unification-fd" = callPackage - ({ mkDerivation, base, containers, logict, mtl, stdenv }: - mkDerivation { - pname = "unification-fd"; - version = "0.10.0.1"; - sha256 = "5bf46760e6db104c57f915322b32744f7604323281f5c7dd20185f905fb51996"; - libraryHaskellDepends = [ base containers logict mtl ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Simple generic unification algorithms"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "union-find" = callPackage - ({ mkDerivation, base, containers, stdenv, transformers }: - mkDerivation { - pname = "union-find"; - version = "0.2"; - sha256 = "e6c2682bb8c06e8c43e360f45658d0eea17209cce84953e2a7d2f0240591f0ec"; - revision = "1"; - editedCabalFile = "13cwjh03n82sgshbk4fdlvhc0pb3v979sdcdrpvnpjdqmvcprs92"; - libraryHaskellDepends = [ base containers transformers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/nominolo/union-find"; - description = "Efficient union and equivalence testing of sets"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniplate" = callPackage - ({ mkDerivation, base, containers, hashable, stdenv, syb - , unordered-containers - }: - mkDerivation { - pname = "uniplate"; - version = "1.6.12"; - sha256 = "fcc60bc6b3f6e925f611646db90e6db9f05286a9363405f844df1dc15572a8b7"; - revision = "1"; - editedCabalFile = "0gsrs2mk58jg3x36dyzxi4y46isd5p6q0rd6m9l834h5r7ds6a54"; - libraryHaskellDepends = [ - base containers hashable syb unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://community.haskell.org/~ndm/uniplate/"; - description = "Help writing simple, concise and fast generic operations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniprot-kb" = callPackage - ({ mkDerivation, attoparsec, base, stdenv, text }: - mkDerivation { - pname = "uniprot-kb"; - version = "0.1.2.0"; - sha256 = "d40c80522f9e70e6fe97234f362e503736ae9f520f1e10e9ab249a5cad750642"; - revision = "4"; - editedCabalFile = "1g4qds20lwsbn5hqrgbhb4yd5w5vx2gkw47mjvxr8z8nj20g2pii"; - libraryHaskellDepends = [ attoparsec base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/biocad/uniprot-kb#readme"; - description = "UniProt-KB format parser"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uniq-deep" = callPackage - ({ mkDerivation, base, bytestring, stdenv, unordered-containers }: - mkDerivation { - pname = "uniq-deep"; - version = "1.2.0"; - sha256 = "dd123a011a49573a92825a1f69d8bf241bcbed1eb85db0876d3c514b2bc00fe4"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ncaq/uniq-deep#readme"; - description = "uniq-deep"; - license = stdenv.lib.licenses.mit; - }) {}; - "unique" = callPackage - ({ mkDerivation, base, ghc-prim, hashable, stdenv }: - mkDerivation { - pname = "unique"; - version = "0"; - sha256 = "e3fb171b7b1787683863934df0fc082fb47c0da6972bb1839c2ee8ceb64a0a90"; - revision = "2"; - editedCabalFile = "0ydjjd6j7gr4mibky6j5rqwhy9frvfii0sr4g8shaxnph3y0kb6b"; - libraryHaskellDepends = [ base ghc-prim hashable ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/unique/"; - description = "Fully concurrent unique identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unique-logic" = callPackage - ({ mkDerivation, base, explicit-exception, stdenv, transformers - , utility-ht - }: - mkDerivation { - pname = "unique-logic"; - version = "0.4"; - sha256 = "1209ab415264c97030f5ddae5f6bc5171abf0f7dd93b7b807446c65dcf03ea53"; - libraryHaskellDepends = [ - base explicit-exception transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unique-logic/"; - description = "Solve simple simultaneous equations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unique-logic-tf" = callPackage - ({ mkDerivation, base, containers, data-ref, semigroups, stdenv - , transformers, utility-ht - }: - mkDerivation { - pname = "unique-logic-tf"; - version = "0.5.1"; - sha256 = "8b818cb19dea8ed6fbdd21795b76f3fa0dcc4416bcf5ceb4c7d6f179ea945028"; - libraryHaskellDepends = [ - base containers data-ref semigroups transformers utility-ht - ]; - doHaddock = false; - doCheck = false; - homepage = "http://hub.darcs.net/thielema/unique-logic-tf/"; - description = "Solve simple simultaneous equations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unit-constraint" = callPackage - ({ mkDerivation, base, constraints, stdenv }: - mkDerivation { - pname = "unit-constraint"; - version = "0.0.0"; - sha256 = "446de8480016c9db75676445477b5ce1ff5c6d486d6708c55b06de7cbd845e59"; - libraryHaskellDepends = [ base constraints ]; - doHaddock = false; - doCheck = false; - description = "Extremely simple typeclass"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe" = callPackage - ({ mkDerivation, stdenv, universe-base, universe-instances-extended - , universe-reverse-instances, universe-some - }: - mkDerivation { - pname = "universe"; - version = "1.2"; - sha256 = "1a1364e9b48a726c67d4a9308764e509a8e0605b614977f6eb74ae77072a0f51"; - libraryHaskellDepends = [ - universe-base universe-instances-extended - universe-reverse-instances universe-some - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-base" = callPackage - ({ mkDerivation, base, containers, stdenv, tagged, transformers }: - mkDerivation { - pname = "universe-base"; - version = "1.1.1"; - sha256 = "1ded30b31b1abbc7621bdb0086ba0d91c1920157e87a4abeb4f2fcf9f3f6dea8"; - revision = "1"; - editedCabalFile = "1l6vxapfjhm5mb6w25ah8sl78hdw1ia5s18cf40lm0vzb6ip4bkk"; - libraryHaskellDepends = [ base containers tagged transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "A class for finite and recursively enumerable types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-base" = callPackage - ({ mkDerivation, base, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-base"; - version = "1.1"; - sha256 = "8bb1190ef89af0ba09c354b0512fefd61f44c10a805c509550a975f68febe49d"; - revision = "1"; - editedCabalFile = "0hjrjjl6v5q9f7cmxhrdxfdk1l86im0b8anxkpgrry7s8q998979"; - libraryHaskellDepends = [ base universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the base package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-extended" = callPackage - ({ mkDerivation, adjunctions, base, comonad, containers - , contravariant, stdenv, universe-base - }: - mkDerivation { - pname = "universe-instances-extended"; - version = "1.1.1"; - sha256 = "102a1f8af4706719da85736ffd7abf8e52b74bf9bfcdd452a33e339905a6f3de"; - libraryHaskellDepends = [ - adjunctions base comonad containers contravariant universe-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from selected extra packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-instances-trans" = callPackage - ({ mkDerivation, base, stdenv, universe-base }: - mkDerivation { - pname = "universe-instances-trans"; - version = "1.1"; - sha256 = "c6aef59a7c5387c7b19efaa4f0af4d3543c9fa37f14d3789c4b5bc60563ee336"; - revision = "1"; - editedCabalFile = "0pyqcg8mfw6gg7gxxd46xq3hnhcpd39g7jb9q1awcdipzq7xjrh2"; - libraryHaskellDepends = [ base universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for types from the transformers and mtl packages"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-reverse-instances" = callPackage - ({ mkDerivation, base, containers, stdenv, universe-base }: - mkDerivation { - pname = "universe-reverse-instances"; - version = "1.1"; - sha256 = "0dbb197676975bbdc6ea1fb07a6a4c79b9d165084ec25ed1800d5c6548d8b55d"; - revision = "2"; - editedCabalFile = "1ls6hss9mrdk535k9ssy4lv01gbw11pbqiikpv2m8sjmh65fjilx"; - libraryHaskellDepends = [ base containers universe-base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Instances of standard classes that are made possible by enumerations"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universe-some" = callPackage - ({ mkDerivation, base, some, stdenv, template-haskell - , th-abstraction, transformers, universe-base - }: - mkDerivation { - pname = "universe-some"; - version = "1.2"; - sha256 = "907e34010c8258543d987d28f9ee8f323151403700b07330d3bf7581cc6c37b1"; - libraryHaskellDepends = [ - base some template-haskell th-abstraction transformers - universe-base - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/dmwit/universe"; - description = "Universe instances for Some from some"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "universum" = callPackage - ({ mkDerivation, base, bytestring, containers, deepseq, ghc-prim - , hashable, microlens, microlens-mtl, mtl, safe-exceptions, stdenv - , stm, text, transformers, unordered-containers, utf8-string - , vector - }: - mkDerivation { - pname = "universum"; - version = "1.6.1"; - sha256 = "a7b6e7aa01e4b436859c4c373e9139cb26e39a6c6c73b9023255a8c22782f600"; - libraryHaskellDepends = [ - base bytestring containers deepseq ghc-prim hashable microlens - microlens-mtl mtl safe-exceptions stm text transformers - unordered-containers utf8-string vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/serokell/universum"; - description = "Custom prelude used in Serokell"; - license = stdenv.lib.licenses.mit; - }) {}; - "unix-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "unix-bytestring"; - version = "0.3.7.3"; - sha256 = "a3ec273da411988b7d9eb7317f6d84ce47f4b7fd39bdc721acd5229e7cff808c"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~wren/"; - description = "Unix/Posix-specific functions for ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-compat" = callPackage - ({ mkDerivation, base, stdenv, unix }: - mkDerivation { - pname = "unix-compat"; - version = "0.5.2"; - sha256 = "659a4e442f71505d45b0d0fb28a347aa1ac5e1f39feaea5d58e674e5d2ce0ba9"; - revision = "1"; - editedCabalFile = "1yx38asvjaxxlfs8lpbq0dwd84ynhgi7hw91rn32i1hsmz7yn22m"; - libraryHaskellDepends = [ base unix ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jacobstanley/unix-compat"; - description = "Portable POSIX-compatibility layer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unix-time" = callPackage - ({ mkDerivation, base, binary, bytestring, old-time, stdenv }: - mkDerivation { - pname = "unix-time"; - version = "0.4.7"; - sha256 = "19233f8badf921d444c6165689253d877cfed58ce08f28cad312558a9280de09"; - libraryHaskellDepends = [ base binary bytestring old-time ]; - doHaddock = false; - doCheck = false; - description = "Unix time parser/formatter and utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unliftio" = callPackage - ({ mkDerivation, async, base, bytestring, deepseq, directory - , filepath, process, stdenv, stm, time, transformers, unix - , unliftio-core - }: - mkDerivation { - pname = "unliftio"; - version = "0.2.12"; - sha256 = "8fa9f4d4cc078fd7c76914652070d06a646f83d34e51547fede4fdd7f30ffe09"; - libraryHaskellDepends = [ - async base bytestring deepseq directory filepath process stm time - transformers unix unliftio-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-core" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "unliftio-core"; - version = "0.1.2.0"; - sha256 = "24c38b3d610ca2642ed496d1de3d7b6b398ce0410aa0a15f3c7ce636ba8f7a78"; - revision = "2"; - editedCabalFile = "0jqrjjbgicx48wzcjxs1xmih48ay79rhmrz6081dldlfxynli6vz"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/unliftio/tree/master/unliftio-core#readme"; - description = "The MonadUnliftIO typeclass for unlifting monads to IO"; - license = stdenv.lib.licenses.mit; - }) {}; - "unliftio-pool" = callPackage - ({ mkDerivation, base, resource-pool, stdenv, time, transformers - , unliftio-core - }: - mkDerivation { - pname = "unliftio-pool"; - version = "0.2.1.0"; - sha256 = "bb54478ddf736783309296ffeeed694543c745d13f127f91b1e3537daa8f0f62"; - libraryHaskellDepends = [ - base resource-pool time transformers unliftio-core - ]; - doHaddock = false; - doCheck = false; - description = "Data.Pool generalized to MonadUnliftIO."; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unlit" = callPackage - ({ mkDerivation, base, directory, stdenv, text }: - mkDerivation { - pname = "unlit"; - version = "0.4.0.0"; - sha256 = "489ecde4843f1911ebdaac3099241d703bb1161f3d386e2b5143f2fd6c355515"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base directory text ]; - executableHaskellDepends = [ base directory text ]; - doHaddock = false; - doCheck = false; - description = "Tool to convert literate code between styles or to code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-containers" = callPackage - ({ mkDerivation, base, deepseq, hashable, stdenv }: - mkDerivation { - pname = "unordered-containers"; - version = "0.2.10.0"; - sha256 = "65f117bdbdea9efc75fb9fd539873de7687e005d8898bb21821020a4b383c573"; - revision = "1"; - editedCabalFile = "01727lm2spbqfn0rl89zv9zhpsmnls0kmizyckqf5nc3j9d0k6sy"; - libraryHaskellDepends = [ base deepseq hashable ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tibbe/unordered-containers"; - description = "Efficient hashing-based container types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unordered-intmap" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "unordered-intmap"; - version = "0.1.1"; - sha256 = "d8faaf0c23ed143942ba7948616c73134c78e02aa4cf252605c73fb2412876ef"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ethercrow/unordered-intmap"; - description = "A specialization of `HashMap Int v`"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "unsafe" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "unsafe"; - version = "0.0"; - sha256 = "df0a74ccf7b43956c1b5decd5580e235317d1f96a1bbd75e117fc21143ee8641"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.haskell.org/~thielema/unsafe/"; - description = "Unified interface to unsafe functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "urbit-hob" = callPackage - ({ mkDerivation, base, bytestring, murmur3, stdenv, text, vector }: - mkDerivation { - pname = "urbit-hob"; - version = "0.3.1"; - sha256 = "4b4644d556b5bb4584532b87c1db2c1ed71fef094d93253baef0e40a92f15d99"; - libraryHaskellDepends = [ base bytestring murmur3 text vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/urbit/urbit-hob"; - description = "Hoon-style atom manipulation and printing functions"; - license = stdenv.lib.licenses.mit; - }) {}; - "uri-bytestring" = callPackage - ({ mkDerivation, attoparsec, base, blaze-builder, bytestring - , containers, stdenv, template-haskell, th-lift-instances - }: - mkDerivation { - pname = "uri-bytestring"; - version = "0.3.2.2"; - sha256 = "c7d47c25c1dbeae8c80ef7f83095093177e119effa90715a55b15fcaebd8ff6a"; - libraryHaskellDepends = [ - attoparsec base blaze-builder bytestring containers - template-haskell th-lift-instances - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Soostone/uri-bytestring"; - description = "Haskell URI parsing as ByteStrings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-bytestring-aeson" = callPackage - ({ mkDerivation, aeson, base, bytestring, stdenv, text - , uri-bytestring - }: - mkDerivation { - pname = "uri-bytestring-aeson"; - version = "0.1.0.7"; - sha256 = "7e90b5eb1c65a83461e127a27ce635f2f8279eb0d0cb14823831b6dfb503ef9b"; - libraryHaskellDepends = [ - aeson base bytestring text uri-bytestring - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reactormonk/uri-bytestring-aeson"; - description = "Aeson instances for URI Bytestring"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uri-encode" = callPackage - ({ mkDerivation, base, bytestring, network-uri, stdenv, text - , utf8-string - }: - mkDerivation { - pname = "uri-encode"; - version = "1.5.0.5"; - sha256 = "e82b588aad63112d34f6bad6f1ef72489b9edebfe14f2f523dc1dabdcbe2b186"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring network-uri text utf8-string - ]; - doHaddock = false; - doCheck = false; - description = "Unicode aware uri-encoding"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "url" = callPackage - ({ mkDerivation, base, stdenv, utf8-string }: - mkDerivation { - pname = "url"; - version = "2.1.3"; - sha256 = "5af27e3f8c0a27e52d0dcb98ef06a0fdd01efe8bb21242c29432e1bc380a4f61"; - libraryHaskellDepends = [ base utf8-string ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.haskell.org/haskellwiki/Url"; - description = "A library for working with URLs"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "urlpath" = callPackage - ({ mkDerivation, attoparsec-uri, base, exceptions, mmorph - , monad-control, monad-control-aligned, monad-logger, mtl, path - , path-extra, resourcet, split, stdenv, strict, text, transformers - , transformers-base, vector - }: - mkDerivation { - pname = "urlpath"; - version = "9.0.1"; - sha256 = "2fe703a9c65fcfb12ba86bcffed22dca4c4a76fc78e1271816ae46b0f6a58e29"; - libraryHaskellDepends = [ - attoparsec-uri base exceptions mmorph monad-control - monad-control-aligned monad-logger mtl path path-extra resourcet - split strict text transformers transformers-base vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/athanclark/urlpath#readme"; - description = "Painfully simple URL deployment"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "users" = callPackage - ({ mkDerivation, aeson, base, bcrypt, path-pieces, stdenv, text - , time - }: - mkDerivation { - pname = "users"; - version = "0.5.0.0"; - sha256 = "6761ac937b0d4c13c5158239a0c51199c394facb72cc734ada90a391f01e53d4"; - revision = "1"; - editedCabalFile = "1x26g7k6kmq2vng9y5qkz82z06rs322s2y8bs9y6r4vayvg07q9v"; - libraryHaskellDepends = [ - aeson base bcrypt path-pieces text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/agrafix/users"; - description = "A library simplifying user management for web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "utf8-light" = callPackage - ({ mkDerivation, base, bytestring, ghc-prim, stdenv }: - mkDerivation { - pname = "utf8-light"; - version = "0.4.2"; - sha256 = "184c428ce7896d702da46f6f107e6873ff100dbc1af40b49b5ce87317e619e67"; - libraryHaskellDepends = [ base bytestring ghc-prim ]; - doHaddock = false; - doCheck = false; - description = "Unicode"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utf8-string" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "utf8-string"; - version = "1.0.1.1"; - sha256 = "fb0b9e3acbe0605bcd1c63e51f290a7bbbe6628dfa3294ff453e4235fbaef140"; - revision = "3"; - editedCabalFile = "02vhj5gykkqa2dyn7s6gn8is1b5fdn9xcqqvlls268g7cpv6rk38"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/glguy/utf8-string/"; - description = "Support for reading and writing UTF8 Strings"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "util" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "util"; - version = "0.1.17.0"; - sha256 = "0c9844c0814401d5f4596d66d2a1315e4f2ad28a1b9fa9ab71d1aaf86deed2f3"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - description = "Utilities"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "utility-ht" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "utility-ht"; - version = "0.0.14"; - sha256 = "69c2eee1330839cdff40fad4f68f8c7ce41ae3b46a9e1d575f589fcdcf7ceba8"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Various small helper functions for Lists, Maybes, Tuples, Functions"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid" = callPackage - ({ mkDerivation, base, binary, bytestring, cryptohash-md5 - , cryptohash-sha1, entropy, network-info, random, stdenv, text - , time, uuid-types - }: - mkDerivation { - pname = "uuid"; - version = "1.3.13"; - sha256 = "dfac808a7026217d018b408eab18facc6a85c6183be308d4ac7877e80599b027"; - revision = "3"; - editedCabalFile = "1p2srrapgx1f3zkdjjzm5g0dyfpg1h2g056la85xmpyjs77la2rq"; - libraryHaskellDepends = [ - base binary bytestring cryptohash-md5 cryptohash-sha1 entropy - network-info random text time uuid-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hvr/uuid"; - description = "For creating, comparing, parsing and printing Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "uuid-types" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, hashable - , random, stdenv, text - }: - mkDerivation { - pname = "uuid-types"; - version = "1.0.3"; - sha256 = "9276517ab24a9b06f39d6e3c33c6c2b4ace1fc2126dbc1cd9806866a6551b3fd"; - revision = "2"; - editedCabalFile = "1lmlmng4lph57cljga3r9jy2axdls5mllsb2xzcwy2a34wgidarc"; - libraryHaskellDepends = [ - base binary bytestring deepseq hashable random text - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/aslatter/uuid"; - description = "Type definitions for Universally Unique Identifiers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validation" = callPackage - ({ mkDerivation, base, bifunctors, deepseq, lens, semigroupoids - , semigroups, stdenv - }: - mkDerivation { - pname = "validation"; - version = "1.1"; - sha256 = "85a628430a0c3273b7344f47aa810ffefc638ce19deb5e00d133a032603d92a9"; - revision = "1"; - editedCabalFile = "1rrjg9z399k6pb55nv85mlr5bkmdqbjwkvl1cy7ydccdx6ks4syp"; - libraryHaskellDepends = [ - base bifunctors deepseq lens semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qfpl/validation"; - description = "A data-type like Either but with an accumulating Applicative"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "validity" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "validity"; - version = "0.9.0.2"; - sha256 = "5b449a8b1e31d2a281197fd1a5efb80b62f422fdcaa6d0e13e9be31b2e1d49a9"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity typeclass"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-aeson" = callPackage - ({ mkDerivation, aeson, base, stdenv, validity, validity-scientific - , validity-text, validity-unordered-containers, validity-vector - }: - mkDerivation { - pname = "validity-aeson"; - version = "0.2.0.2"; - sha256 = "fac03d29cf3d6f72c288111b68feb3c656574a1ac616b49f40426a9daf0e1d04"; - libraryHaskellDepends = [ - aeson base validity validity-scientific validity-text - validity-unordered-containers validity-vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for aeson"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-bytestring" = callPackage - ({ mkDerivation, base, bytestring, stdenv, validity }: - mkDerivation { - pname = "validity-bytestring"; - version = "0.4.1.0"; - sha256 = "6defe19346145230a0f41dd873767700ee10834c1ba1dfc4bfe31811e2d6d84b"; - libraryHaskellDepends = [ base bytestring validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for bytestring"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-containers" = callPackage - ({ mkDerivation, base, containers, stdenv, validity }: - mkDerivation { - pname = "validity-containers"; - version = "0.5.0.0"; - sha256 = "21f59b021cae573fec8aba69ea4b4546f82a4d753ef1614aaf0060ebdfe7332c"; - libraryHaskellDepends = [ base containers validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-path" = callPackage - ({ mkDerivation, base, filepath, path, stdenv, validity }: - mkDerivation { - pname = "validity-path"; - version = "0.4.0.0"; - sha256 = "c47ae379f817a5ecfbaabb381798ed2277e4fe07512f10998aab5840a95195b2"; - libraryHaskellDepends = [ base filepath path validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for Path"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-scientific" = callPackage - ({ mkDerivation, base, scientific, stdenv, validity }: - mkDerivation { - pname = "validity-scientific"; - version = "0.2.0.2"; - sha256 = "8132aa43307c7dcb29718b5c1ef7c2b8e0d1fb6f650c0b117b99397c34da8dc1"; - libraryHaskellDepends = [ base scientific validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for scientific"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-text" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text, validity }: - mkDerivation { - pname = "validity-text"; - version = "0.3.1.0"; - sha256 = "edd3f26e97ea07593c3995002a7ef7670f0306bfc31213f6b49ffe1a6fbc4264"; - libraryHaskellDepends = [ base bytestring text validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for text"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-time" = callPackage - ({ mkDerivation, base, stdenv, time, validity }: - mkDerivation { - pname = "validity-time"; - version = "0.2.0.2"; - sha256 = "51b24adef82f272a1060d5d0dffaa2eb1e54c0016c7dcd75631e5916df45e265"; - libraryHaskellDepends = [ base time validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for time"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-unordered-containers" = callPackage - ({ mkDerivation, base, hashable, stdenv, unordered-containers - , validity - }: - mkDerivation { - pname = "validity-unordered-containers"; - version = "0.2.0.2"; - sha256 = "50547e85c80e42a90143b816b41389cca1e0fccacd8d620a09142cf65b36181b"; - libraryHaskellDepends = [ - base hashable unordered-containers validity - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for unordered-containers"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-uuid" = callPackage - ({ mkDerivation, base, stdenv, uuid, validity }: - mkDerivation { - pname = "validity-uuid"; - version = "0.1.0.2"; - sha256 = "95dc31e68630951d6971ad5b425e88d492c7400ccd4937a42252d464d89c564c"; - libraryHaskellDepends = [ base uuid validity ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for uuid"; - license = stdenv.lib.licenses.mit; - }) {}; - "validity-vector" = callPackage - ({ mkDerivation, base, hashable, stdenv, validity, vector }: - mkDerivation { - pname = "validity-vector"; - version = "0.2.0.2"; - sha256 = "a7cc60182c9c5c25fa64d1073c1da61e79686fea6d2b2a9cf55690e61b83ce78"; - libraryHaskellDepends = [ base hashable validity vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/NorfairKing/validity#readme"; - description = "Validity instances for vector"; - license = stdenv.lib.licenses.mit; - }) {}; - "valor" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "valor"; - version = "0.1.0.0"; - sha256 = "04ce514f40ef954cdd4b45acb6b2bf6228a30e905fdce0b671df3bf789d6bae6"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/reygoch/valor#readme"; - description = "Simple general structured validation library"; - license = stdenv.lib.licenses.mit; - }) {}; - "vault" = callPackage - ({ mkDerivation, base, containers, hashable, semigroups, stdenv - , unordered-containers - }: - mkDerivation { - pname = "vault"; - version = "0.3.1.3"; - sha256 = "e70c8c1981fe49fc21a91b2aa570ecf50cca94aca24a7984ea641cbbc521b56d"; - libraryHaskellDepends = [ - base containers hashable semigroups unordered-containers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/HeinrichApfelmus/vault"; - description = "a persistent store for values of arbitrary types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vec" = callPackage - ({ mkDerivation, adjunctions, base, deepseq, distributive, fin - , hashable, QuickCheck, semigroupoids, stdenv, transformers - }: - mkDerivation { - pname = "vec"; - version = "0.3"; - sha256 = "59172984048113abbdf6daf9d98cce793c624c4413b1772d2719588ee5985264"; - libraryHaskellDepends = [ - adjunctions base deepseq distributive fin hashable QuickCheck - semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phadej/vec"; - description = "Vec: length-indexed (sized) list"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector" = callPackage - ({ mkDerivation, base, deepseq, ghc-prim, primitive, stdenv }: - mkDerivation { - pname = "vector"; - version = "0.12.0.3"; - sha256 = "b8a2bfbf9d22d34a28cde9b9e92bfb054e46797754154dd5883295c38936e5a8"; - revision = "2"; - editedCabalFile = "1kjs6jnbxziv1q0md2jiqic0r19ry8xlg7wdr8b52rz7yjyb08hl"; - libraryHaskellDepends = [ base deepseq ghc-prim primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell/vector"; - description = "Efficient Arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-algorithms" = callPackage - ({ mkDerivation, base, bytestring, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-algorithms"; - version = "0.8.0.3"; - sha256 = "1ac41f014663fd318b34a76b80e6d8f32f1629ef4996ae7304f31597a0d07387"; - libraryHaskellDepends = [ base bytestring primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/vector-algorithms/"; - description = "Efficient algorithms for vector arrays"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-binary-instances" = callPackage - ({ mkDerivation, base, binary, stdenv, vector }: - mkDerivation { - pname = "vector-binary-instances"; - version = "0.2.5.1"; - sha256 = "3945b99f8efd319c837700b7cef5163ee23e656e89227357e0b7a41d2a66c512"; - revision = "1"; - editedCabalFile = "1p7cbxdpix0rakvggnnb06kcrb787fyyqlzric6i4s3rn34547q8"; - libraryHaskellDepends = [ base binary vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/bos/vector-binary-instances"; - description = "Instances of Data.Binary for vector"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-buffer" = callPackage - ({ mkDerivation, base, deepseq, stdenv, vector }: - mkDerivation { - pname = "vector-buffer"; - version = "0.4.1"; - sha256 = "9b5a9b57488267a765d9e7a8f2aa387ee0d3153989c169952da1e1229a60fd9b"; - libraryHaskellDepends = [ base deepseq vector ]; - doHaddock = false; - doCheck = false; - description = "A buffer compatible with Data.Vector.*"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-builder" = callPackage - ({ mkDerivation, base, base-prelude, semigroups, stdenv, vector }: - mkDerivation { - pname = "vector-builder"; - version = "0.3.8"; - sha256 = "a39afd7ac50c42de77660d235017be38ef50f792b6a98212accf687445a18073"; - libraryHaskellDepends = [ base base-prelude semigroups vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nikita-volkov/vector-builder"; - description = "Vector builder"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-bytes-instances" = callPackage - ({ mkDerivation, base, bytes, stdenv, vector }: - mkDerivation { - pname = "vector-bytes-instances"; - version = "0.1.1"; - sha256 = "7666e6ff4553a97727625178a6902f8d23d8e94af5f4701b2d1a1394eaeb8c44"; - libraryHaskellDepends = [ base bytes vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/k0001/vector-bytes-instances"; - description = "Serial (from the bytes package) for Vector (from the vector package)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-instances" = callPackage - ({ mkDerivation, base, comonad, hashable, keys, pointed - , semigroupoids, semigroups, stdenv, vector - }: - mkDerivation { - pname = "vector-instances"; - version = "3.4"; - sha256 = "1b0246ef0cf8372d61d5c7840d857f49299af2304b5107510377255ed4dd5381"; - libraryHaskellDepends = [ - base comonad hashable keys pointed semigroupoids semigroups vector - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/vector-instances"; - description = "Orphan Instances for 'Data.Vector'"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-mmap" = callPackage - ({ mkDerivation, base, mmap, primitive, stdenv, vector }: - mkDerivation { - pname = "vector-mmap"; - version = "0.0.3"; - sha256 = "e539ddb02190ab5d04ba2605ac24317360919f99c332af470aafd0b78d9a868a"; - libraryHaskellDepends = [ base mmap primitive vector ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/pumpkin/vector-mmap"; - description = "Memory map immutable and mutable vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-rotcev" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-rotcev"; - version = "0.1.0.0"; - sha256 = "d278a6db3481d84cc4ba9697e33a7e9461e887bf2be347959dfbff7a2b9785ea"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/Bodigrim/rotcev"; - description = "Vectors with O(1) reverse"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-sized" = callPackage - ({ mkDerivation, adjunctions, base, binary, comonad, deepseq - , distributive, finite-typelits, hashable, indexed-list-literals - , primitive, stdenv, vector - }: - mkDerivation { - pname = "vector-sized"; - version = "1.4.0.0"; - sha256 = "c6b3f013572aa46aa1d2394b351a9da5b219ece9a87dccf3ad86217e979408e6"; - libraryHaskellDepends = [ - adjunctions base binary comonad deepseq distributive - finite-typelits hashable indexed-list-literals primitive vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/expipiplus1/vector-sized#readme"; - description = "Size tagged vectors"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-space" = callPackage - ({ mkDerivation, base, Boolean, MemoTrie, NumInstances, stdenv }: - mkDerivation { - pname = "vector-space"; - version = "0.16"; - sha256 = "0c0b2f1209f95045865b968c7aa0a25e155410b3e08cf98a6c8544e48436c79c"; - libraryHaskellDepends = [ base Boolean MemoTrie NumInstances ]; - doHaddock = false; - doCheck = false; - description = "Vector & affine spaces, linear maps, and derivatives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vector-split" = callPackage - ({ mkDerivation, base, stdenv, vector }: - mkDerivation { - pname = "vector-split"; - version = "1.0.0.2"; - sha256 = "b4aeeea50fec52e594b2d3c05aca3a112b2095d1e5238ced065cecf2d89bbd16"; - libraryHaskellDepends = [ base vector ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fhaust/vector-split"; - description = "Combinator library for splitting vectors"; - license = stdenv.lib.licenses.mit; - }) {}; - "vector-th-unbox" = callPackage - ({ mkDerivation, base, stdenv, template-haskell, vector }: - mkDerivation { - pname = "vector-th-unbox"; - version = "0.2.1.7"; - sha256 = "d125830ff3287c2d7e24989a3887987107b9140912c326e5894fb0b097c50d61"; - libraryHaskellDepends = [ base template-haskell vector ]; - doHaddock = false; - doCheck = false; - description = "Deriver for Data.Vector.Unboxed using Template Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "verbosity" = callPackage - ({ mkDerivation, base, binary, data-default-class, deepseq, dhall - , generic-lens, serialise, stdenv - }: - mkDerivation { - pname = "verbosity"; - version = "0.3.0.0"; - sha256 = "4ae2606d1d50729468a27142a03b42b640ef32e41059d1ea6cbf7bd3de9ff073"; - libraryHaskellDepends = [ - base binary data-default-class deepseq dhall generic-lens serialise - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/trskop/verbosity"; - description = "Simple enum that encodes application verbosity"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "versions" = callPackage - ({ mkDerivation, base, deepseq, hashable, megaparsec, stdenv, text - }: - mkDerivation { - pname = "versions"; - version = "3.5.3"; - sha256 = "c7820cd7f65b9cc8fec00a14f303c13745bec6f225f41dacd4438548c01e0845"; - libraryHaskellDepends = [ base deepseq hashable megaparsec text ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/fosskers/versions"; - description = "Types and parsers for software version numbers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vformat" = callPackage - ({ mkDerivation, base, containers, exceptions, stdenv - , template-haskell - }: - mkDerivation { - pname = "vformat"; - version = "0.14.1.0"; - sha256 = "c9280bd23a189aac4cf3b7a1b2eb35492ddcf0936712ff743551e3866b0ae471"; - revision = "1"; - editedCabalFile = "074y0nkygj8klkpm3rpdp7z2yj9np9y6rzhc7i62j0mykd27h8hq"; - libraryHaskellDepends = [ - base containers exceptions template-haskell - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/versioncloud/vformat#readme"; - description = "A Python str.format() like formatter"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "void" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "void"; - version = "0.7.3"; - sha256 = "53af758ddc37dc63981671e503438d02c6f64a2d8744e9bec557a894431f7317"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/void"; - description = "A Haskell 98 logically uninhabited data type"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "vty" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers - , deepseq, directory, filepath, hashable, microlens, microlens-mtl - , microlens-th, mtl, parallel, parsec, stdenv, stm, terminfo, text - , transformers, unix, utf8-string, vector - }: - mkDerivation { - pname = "vty"; - version = "5.26"; - sha256 = "9dc8fedf9431e78728cceae3116b25ec5d2c8c3089c604faa72b84dae6b63f0e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-builder bytestring containers deepseq directory filepath - hashable microlens microlens-mtl microlens-th mtl parallel parsec - stm terminfo text transformers unix utf8-string vector - ]; - executableHaskellDepends = [ - base containers microlens microlens-mtl mtl - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/vty"; - description = "A simple terminal UI library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai" = callPackage - ({ mkDerivation, base, bytestring, http-types, network, stdenv - , text, transformers, vault - }: - mkDerivation { - pname = "wai"; - version = "3.2.2.1"; - sha256 = "fef72486e3a9e01f564abfb680f6eac9b553f8195cae8ed903d960da55380815"; - libraryHaskellDepends = [ - base bytestring http-types network text transformers vault - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "Web Application Interface"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-app-static" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, cryptonite, directory, file-embed, filepath - , http-date, http-types, memory, mime-types, old-locale - , optparse-applicative, stdenv, template-haskell, text, time - , transformers, unix-compat, unordered-containers, wai, wai-extra - , warp, zlib - }: - mkDerivation { - pname = "wai-app-static"; - version = "3.1.7.1"; - sha256 = "681317b26490ad3da511c1a6beb0e08e83f7902090dbfb9ac9095d50c8926682"; - revision = "1"; - editedCabalFile = "0bkmml30rzifvb7nxddj3pxczk0kniahra19mjn0qrkzy1n5752p"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers cryptonite - directory file-embed filepath http-date http-types memory - mime-types old-locale optparse-applicative template-haskell text - time transformers unix-compat unordered-containers wai wai-extra - warp zlib - ]; - executableHaskellDepends = [ - base bytestring containers directory mime-types text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI application for static serving"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, http-types, stdenv - , transformers, wai - }: - mkDerivation { - pname = "wai-conduit"; - version = "3.0.0.4"; - sha256 = "2790093bd52892b8087c295044573c720773144f4061ccc72d6d6a617320d61f"; - libraryHaskellDepends = [ - base bytestring conduit http-types transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/wai"; - description = "conduit wrappers for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-cors" = callPackage - ({ mkDerivation, attoparsec, base, base-unicode-symbols, bytestring - , case-insensitive, http-types, mtl, stdenv, transformers, wai - }: - mkDerivation { - pname = "wai-cors"; - version = "0.2.7"; - sha256 = "2597beb56ebd7148f9755ae2661c065a6c532e0a286717061861b149a51cfb81"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - attoparsec base base-unicode-symbols bytestring case-insensitive - http-types mtl transformers wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/larskuhtz/wai-cors"; - description = "CORS for WAI"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-enforce-https" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, http-types - , network, stdenv, text, wai, warp, warp-tls - }: - mkDerivation { - pname = "wai-enforce-https"; - version = "0.0.1"; - sha256 = "bb726b6dc1e3947b6b6c070d40ac2e670d24543456c321e3e56ad5a54eb1a43e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network text wai - ]; - executableHaskellDepends = [ base http-types wai warp warp-tls ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/turboMaCk/wai-enforce-https"; - description = "Enforce HTTPS in Wai server app safely"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-eventsource" = callPackage - ({ mkDerivation, stdenv, wai }: - mkDerivation { - pname = "wai-eventsource"; - version = "3.0.0"; - sha256 = "785005f23bf9bf4e1dfaae0705472c0e3ea4c3843ff6a8625db8d1e327a6bfc0"; - libraryHaskellDepends = [ wai ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/book/web-application-interface"; - description = "WAI support for server-sent events (deprecated)"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-extra" = callPackage - ({ mkDerivation, aeson, ansi-terminal, base, base64-bytestring - , bytestring, case-insensitive, containers, cookie - , data-default-class, deepseq, directory, fast-logger, http-types - , http2, iproute, network, old-locale, resourcet, stdenv - , streaming-commons, text, time, transformers, unix, unix-compat - , vault, void, wai, wai-logger, word8, zlib - }: - mkDerivation { - pname = "wai-extra"; - version = "3.0.29"; - sha256 = "2ee8658211a22e61a3c2f2b0552919ff63921248977ad7c2d9e2802bfe7f16dc"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson ansi-terminal base base64-bytestring bytestring - case-insensitive containers cookie data-default-class deepseq - directory fast-logger http-types http2 iproute network old-locale - resourcet streaming-commons text time transformers unix unix-compat - vault void wai wai-logger word8 zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provides some basic WAI handlers and middleware"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-handler-launch" = callPackage - ({ mkDerivation, async, base, bytestring, http-types, process - , stdenv, streaming-commons, transformers, wai, warp - }: - mkDerivation { - pname = "wai-handler-launch"; - version = "3.0.3.1"; - sha256 = "55009b08ad5620decad37e7f8ee2a64457bf0f8e8116f8ac2a2f3216987fd8c5"; - libraryHaskellDepends = [ - async base bytestring http-types process streaming-commons - transformers wai warp - ]; - doHaddock = false; - doCheck = false; - description = "Launch a web app in the default browser"; - license = stdenv.lib.licenses.mit; - }) {}; - "wai-logger" = callPackage - ({ mkDerivation, base, byteorder, bytestring, Cabal, cabal-doctest - , fast-logger, http-types, network, stdenv, wai - }: - mkDerivation { - pname = "wai-logger"; - version = "2.3.6"; - sha256 = "e2fbd8c74fa0a31f9ea0faa53f4ad4e588644a34d8dfc7cc50d85c245c3c7541"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base byteorder bytestring fast-logger http-types network wai - ]; - doHaddock = false; - doCheck = false; - description = "A logging system for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-caching" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, http-types - , stdenv, wai - }: - mkDerivation { - pname = "wai-middleware-caching"; - version = "0.1.0.2"; - sha256 = "15b5fb9c92599d5ecb6a70ba40bad024488f9eca7139abe23b961ba21602d78d"; - libraryHaskellDepends = [ - base blaze-builder bytestring http-types wai - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yogsototh/wai-middleware-caching/tree/master/wai-middleware-caching#readme"; - description = "WAI Middleware to cache things"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-middleware-static" = callPackage - ({ mkDerivation, base, bytestring, containers, cryptonite - , directory, expiring-cache-map, filepath, http-types, memory - , mime-types, mtl, old-locale, semigroups, stdenv, text, time, wai - }: - mkDerivation { - pname = "wai-middleware-static"; - version = "0.8.3"; - sha256 = "d42e00db4eda497d1ea7a5024561e94849d4cf73e78fcee5d8e0a46c40f8ca50"; - libraryHaskellDepends = [ - base bytestring containers cryptonite directory expiring-cache-map - filepath http-types memory mime-types mtl old-locale semigroups - text time wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/scotty-web/wai-middleware-static"; - description = "WAI middleware that serves requests to static files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-session" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring - , bytestring-builder, containers, cookie, entropy, http-types - , StateVar, stdenv, time, transformers, vault, wai - }: - mkDerivation { - pname = "wai-session"; - version = "0.3.3"; - sha256 = "d2392702446b9af8d45b83b2ce1bbb9937024c2d65fcf943ab51a7d52c7e0053"; - libraryHaskellDepends = [ - base blaze-builder bytestring bytestring-builder containers cookie - entropy http-types StateVar time transformers vault wai - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/singpolyma/wai-session"; - description = "Flexible session middleware for WAI"; - license = "unknown"; - hydraPlatforms = stdenv.lib.platforms.none; - }) {}; - "wai-slack-middleware" = callPackage - ({ mkDerivation, aeson, base, http-client, http-types, stdenv, wai - }: - mkDerivation { - pname = "wai-slack-middleware"; - version = "0.2.0"; - sha256 = "d14482f43147e16f05c7282f5b478e76a803dc7398d73dbf6cd2d9be83695750"; - libraryHaskellDepends = [ aeson base http-client http-types wai ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/psibi/wai-slack-middleware#readme"; - description = "A Slack middleware for WAI"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wai-websockets" = callPackage - ({ mkDerivation, base, bytestring, case-insensitive, file-embed - , http-types, network, stdenv, text, transformers, wai - , wai-app-static, warp, websockets - }: - mkDerivation { - pname = "wai-websockets"; - version = "3.0.1.2"; - sha256 = "917cceb08f296d7dc6b6cafb66133ae53888b2c98b8fb2a2d7fa629d75ab5d2c"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring case-insensitive http-types network transformers - wai websockets - ]; - executableHaskellDepends = [ - base bytestring case-insensitive file-embed http-types network text - transformers wai wai-app-static warp websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "Provide a bridge between WAI and the websockets package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp" = callPackage - ({ mkDerivation, array, async, auto-update, base, bsb-http-chunked - , bytestring, case-insensitive, containers, ghc-prim, hashable - , http-date, http-types, http2, iproute, network, simple-sendfile - , stdenv, stm, streaming-commons, text, time-manager, unix - , unix-compat, vault, wai, word8, x509 - }: - mkDerivation { - pname = "warp"; - version = "3.3.9"; - sha256 = "439a45e808762ed055bdab12db8601877410860414eb629488b981ab094a68c1"; - libraryHaskellDepends = [ - array async auto-update base bsb-http-chunked bytestring - case-insensitive containers ghc-prim hashable http-date http-types - http2 iproute network simple-sendfile stm streaming-commons text - time-manager unix unix-compat vault wai word8 x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "A fast, light-weight web server for WAI applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls" = callPackage - ({ mkDerivation, base, bytestring, cryptonite, data-default-class - , network, stdenv, streaming-commons, tls, tls-session-manager, wai - , warp - }: - mkDerivation { - pname = "warp-tls"; - version = "3.2.11"; - sha256 = "0618709961cb628a545c3addc51c15949732316d792c28f2db5a4f821688c017"; - libraryHaskellDepends = [ - base bytestring cryptonite data-default-class network - streaming-commons tls tls-session-manager wai warp - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/yesodweb/wai"; - description = "HTTP over TLS support for Warp via the TLS package"; - license = stdenv.lib.licenses.mit; - }) {}; - "warp-tls-uid" = callPackage - ({ mkDerivation, base, bytestring, data-default, network, stdenv - , streaming-commons, tls, unix, wai, warp, warp-tls, x509 - }: - mkDerivation { - pname = "warp-tls-uid"; - version = "0.2.0.6"; - sha256 = "9c78b530e5ac00984233913696351132eb48e9ea2da1d1cdadde306bd6e6bb27"; - libraryHaskellDepends = [ - base bytestring data-default network streaming-commons tls unix wai - warp warp-tls x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/warp-tls-uid#readme"; - description = "set group and user id before running server"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wave" = callPackage - ({ mkDerivation, base, bytestring, cereal, containers, stdenv - , transformers - }: - mkDerivation { - pname = "wave"; - version = "0.2.0"; - sha256 = "71a6224835cfa372b9dbf60d27f6e5402663a4090bcfdbdf611d0ffc2c7f3391"; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - base bytestring cereal containers transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/wave"; - description = "Work with WAVE and RF64 files"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wcwidth" = callPackage - ({ mkDerivation, base, containers, stdenv }: - mkDerivation { - pname = "wcwidth"; - version = "0.0.2"; - sha256 = "ffc68736a3bbde3e8157710f29f4a99c0ca593c41194579c54a92c62f6c12ed8"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base containers ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/solidsnack/wcwidth/"; - description = "Native wcwidth"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webdriver" = callPackage - ({ mkDerivation, aeson, attoparsec, base, base64-bytestring - , bytestring, call-stack, data-default-class, directory - , directory-tree, exceptions, filepath, http-client, http-types - , lifted-base, monad-control, network, network-uri, scientific - , stdenv, temporary, text, time, transformers, transformers-base - , unordered-containers, vector, zip-archive - }: - mkDerivation { - pname = "webdriver"; - version = "0.9.0.1"; - sha256 = "135950889784b9d323c70ebf7ecd75b8df194489a303d85995b1fccc7549dff0"; - libraryHaskellDepends = [ - aeson attoparsec base base64-bytestring bytestring call-stack - data-default-class directory directory-tree exceptions filepath - http-client http-types lifted-base monad-control network - network-uri scientific temporary text time transformers - transformers-base unordered-containers vector zip-archive - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kallisti-dev/hs-webdriver"; - description = "a Haskell client for the Selenium WebDriver protocol"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "webex-teams-api" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bitset-word8, bytestring - , conduit, data-default, http-conduit, network-uri - , optparse-applicative, stdenv, text, utf8-string - }: - mkDerivation { - pname = "webex-teams-api"; - version = "0.2.0.0"; - sha256 = "7756e38bd54d4dae1f70e7343259438f98bf58ff484ebc1c798166904178a40b"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bitset-word8 bytestring conduit data-default - http-conduit network-uri text - ]; - executableHaskellDepends = [ - aeson base bytestring data-default http-conduit - optparse-applicative text utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "A Haskell bindings for Webex Teams API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-conduit" = callPackage - ({ mkDerivation, base, bytestring, conduit, data-default - , http-client, optparse-applicative, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-conduit"; - version = "0.2.0.0"; - sha256 = "0d7c7db689092656653d687adadeb92669b647b1d7adc2493d8ca08a87742e5d"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base conduit webex-teams-api ]; - executableHaskellDepends = [ - base bytestring conduit data-default http-client - optparse-applicative text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Conduit wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webex-teams-pipes" = callPackage - ({ mkDerivation, base, bytestring, data-default, http-client - , optparse-applicative, pipes, stdenv, text, utf8-string - , webex-teams-api - }: - mkDerivation { - pname = "webex-teams-pipes"; - version = "0.2.0.0"; - sha256 = "77fad574346613e4989997852ca5972185a6321290caa718ce081be985a33100"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base pipes webex-teams-api ]; - executableHaskellDepends = [ - base bytestring data-default http-client optparse-applicative pipes - text utf8-string webex-teams-api - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/nshimaza/webex-teams-api#readme"; - description = "Pipes wrapper of Webex Teams List API"; - license = stdenv.lib.licenses.mit; - }) {}; - "webrtc-vad" = callPackage - ({ mkDerivation, base, primitive, stdenv, vector }: - mkDerivation { - pname = "webrtc-vad"; - version = "0.1.0.3"; - sha256 = "89cc6691d314c8c2ae7801bf56e1cca0252617536af4ac94acb92ad6d560d453"; - libraryHaskellDepends = [ base primitive vector ]; - doHaddock = false; - doCheck = false; - description = "Easy voice activity detection"; - license = stdenv.lib.licenses.mit; - }) {}; - "websockets" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring, binary - , bytestring, bytestring-builder, case-insensitive, clock - , containers, entropy, network, random, SHA, stdenv - , streaming-commons, text - }: - mkDerivation { - pname = "websockets"; - version = "0.12.7.0"; - sha256 = "5f11184c6f97de4ae32e00d309a0a9bcbd829c7f099dbf5b2284ae074f035f86"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring binary bytestring - bytestring-builder case-insensitive clock containers entropy - network random SHA streaming-commons text - ]; - doHaddock = false; - doCheck = false; - homepage = "http://jaspervdj.be/websockets"; - description = "A sensible and clean way to write WebSocket-capable servers in Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "websockets-snap" = callPackage - ({ mkDerivation, base, bytestring, bytestring-builder, io-streams - , mtl, snap-core, snap-server, stdenv, websockets - }: - mkDerivation { - pname = "websockets-snap"; - version = "0.10.3.1"; - sha256 = "13afb464748b796fdb9222c07e3009d1ebeeda34e599d6b77b0bf66016fefac2"; - libraryHaskellDepends = [ - base bytestring bytestring-builder io-streams mtl snap-core - snap-server websockets - ]; - doHaddock = false; - doCheck = false; - description = "Snap integration for the websockets library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weeder" = callPackage - ({ mkDerivation, aeson, base, bytestring, cmdargs, deepseq - , directory, extra, filepath, foundation, hashable, process, stdenv - , text, unordered-containers, vector, yaml - }: - mkDerivation { - pname = "weeder"; - version = "1.0.8"; - sha256 = "26204eeabb0cdce707548b3be451b1947567b0a13bcfe28bbdd7f48340c09cfa"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson base bytestring cmdargs deepseq directory extra filepath - foundation hashable process text unordered-containers vector yaml - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ndmitchell/weeder#readme"; - description = "Detect dead code"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "weigh" = callPackage - ({ mkDerivation, base, deepseq, ghc, mtl, process, split, stdenv - , temporary - }: - mkDerivation { - pname = "weigh"; - version = "0.0.16"; - sha256 = "a92a19209b6e8999be21fed8c6ddad8cddf5b98352341b58d2c3e3ef4e96eb8e"; - libraryHaskellDepends = [ - base deepseq ghc mtl process split temporary - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fpco/weigh#readme"; - description = "Measure allocations of a Haskell functions/values"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wide-word" = callPackage - ({ mkDerivation, base, deepseq, primitive, stdenv }: - mkDerivation { - pname = "wide-word"; - version = "0.1.1.0"; - sha256 = "3c2a758048b0a29ead8170cde034bc4538e6e7e26d27f98911e9eb3773142a80"; - libraryHaskellDepends = [ base deepseq primitive ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/erikd/wide-word"; - description = "Data types for large but fixed width signed and unsigned integers"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "wikicfp-scraper" = callPackage - ({ mkDerivation, attoparsec, base, bytestring, scalpel-core, stdenv - , text, time - }: - mkDerivation { - pname = "wikicfp-scraper"; - version = "0.1.0.11"; - sha256 = "2ba40e64e5a77534dd747a75f6db2ac3c4db55a5a62d2880be2eb408e5cbdfb8"; - libraryHaskellDepends = [ - attoparsec base bytestring scalpel-core text time - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wikicfp-scraper"; - description = "Scrape WikiCFP web site"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind" = callPackage - ({ mkDerivation, base, containers, semigroups, stdenv, text - , transformers - }: - mkDerivation { - pname = "wild-bind"; - version = "0.1.2.5"; - sha256 = "095b93a0cd740052c8afee2b14cea2be7e3994693a1090016c73cb4e67f16192"; - libraryHaskellDepends = [ - base containers semigroups text transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "Dynamic key binding framework"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wild-bind-x11" = callPackage - ({ mkDerivation, base, containers, fold-debounce, mtl, semigroups - , stdenv, stm, text, transformers, wild-bind, X11 - }: - mkDerivation { - pname = "wild-bind-x11"; - version = "0.2.0.9"; - sha256 = "1f0c7e8d63b4d9662ef535f8665fd18e888106d73d1d61de32b1fb5b95c578f4"; - libraryHaskellDepends = [ - base containers fold-debounce mtl semigroups stm text transformers - wild-bind X11 - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/debug-ito/wild-bind"; - description = "X11-specific implementation for WildBind"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "windns" = callPackage - ({ mkDerivation, base, bytestring, deepseq, dnsapi, stdenv }: - mkDerivation { - pname = "windns"; - version = "0.1.0.1"; - sha256 = "087fa65c99021f4233102430d554aebe114af68f6b1647ff821bcb501c0bcd04"; - revision = "1"; - editedCabalFile = "17d44pzi4q5yvrygimdrwdrabz62s1ylw918w28sxgcvj64ir22g"; - configureFlags = [ "-fallow-non-windows" ]; - libraryHaskellDepends = [ base bytestring deepseq ]; - librarySystemDepends = [ dnsapi ]; - doHaddock = false; - doCheck = false; - description = "Domain Name Service (DNS) lookup via the /dnsapi.dll standard library"; - license = stdenv.lib.licenses.gpl2; - }) {inherit (pkgs) dnsapi;}; - "with-location" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "with-location"; - version = "0.1.0"; - sha256 = "2c91d70cb28d39d6d5fbb37800c7d984aed4254cdcbf03ffa0787404bddefde7"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sol/with-location#readme"; - description = "Use ImplicitParams-based source locations in a backward compatible way"; - license = stdenv.lib.licenses.mit; - }) {}; - "witness" = callPackage - ({ mkDerivation, base, constraints, semigroupoids, stdenv - , transformers - }: - mkDerivation { - pname = "witness"; - version = "0.4"; - sha256 = "93c6c83681a3ab94f53e49c07d0d1474e21169f779c917a896c9d6ed1bf01ea0"; - libraryHaskellDepends = [ - base constraints semigroupoids transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/AshleyYakeley/witness"; - description = "values that witness types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wizards" = callPackage - ({ mkDerivation, base, containers, control-monad-free, haskeline - , mtl, stdenv, transformers - }: - mkDerivation { - pname = "wizards"; - version = "1.0.3"; - sha256 = "05650d7bf6dd0e6b87d0d7da6fb003601ce5d7b1f3d69571127ec3c9425b9bb2"; - libraryHaskellDepends = [ - base containers control-monad-free haskeline mtl transformers - ]; - doHaddock = false; - doCheck = false; - description = "High level, generic library for interrogative user interfaces"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-annotated" = callPackage - ({ mkDerivation, base, containers, deepseq, stdenv, text }: - mkDerivation { - pname = "wl-pprint-annotated"; - version = "0.1.0.1"; - sha256 = "6b662b244b2e318a2923dc7057d707369a29ea4a0e721b4710eac7239cc727af"; - libraryHaskellDepends = [ base containers deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-annotated#readme"; - description = "Pretty printer with annotation support"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wl-pprint-console" = callPackage - ({ mkDerivation, base, bytestring, colorful-monoids, stdenv, text - , wl-pprint-annotated - }: - mkDerivation { - pname = "wl-pprint-console"; - version = "0.1.0.2"; - sha256 = "cb76b445aa338cae075d149e752e53cf30e2480827eff4c157957b013f48b815"; - libraryHaskellDepends = [ - base bytestring colorful-monoids text wl-pprint-annotated - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/wl-pprint-console#readme"; - description = "Wadler/Leijen pretty printer supporting colorful console output"; - license = stdenv.lib.licenses.mit; - }) {}; - "word-trie" = callPackage - ({ mkDerivation, base, binary, containers, stdenv }: - mkDerivation { - pname = "word-trie"; - version = "0.3.0"; - sha256 = "a3f3c2c088c64219ae35f7383a5dc1a368217183ba603e98785c110ac3f29282"; - revision = "1"; - editedCabalFile = "01aanzslm69z94lqy43hgyxj1ys7sqfqwn72l0snw3h2n3pjwn45"; - libraryHaskellDepends = [ base binary containers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yi-editor/word-trie"; - description = "Implementation of a finite trie over words"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "word-wrap" = callPackage - ({ mkDerivation, base, stdenv, text }: - mkDerivation { - pname = "word-wrap"; - version = "0.4.1"; - sha256 = "eb72f91947c0c62cb862feb33cad9efdc5e720f456fa9ca68ef8ac9d1ec42c97"; - revision = "1"; - editedCabalFile = "1k4w4g053vhmpp08542hrqaw81p3p35i567xgdarqmpghfrk68pp"; - libraryHaskellDepends = [ base text ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/jtdaugherty/word-wrap/"; - description = "A library for word-wrapping"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word24" = callPackage - ({ mkDerivation, base, deepseq, stdenv }: - mkDerivation { - pname = "word24"; - version = "2.0.1"; - sha256 = "c34ba17cc88df314151ef27dea192102ed73d5f0678f1359a5fe59799dc3a086"; - libraryHaskellDepends = [ base deepseq ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/winterland1989/word24"; - description = "24-bit word and int types for GHC"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "word8" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "word8"; - version = "0.1.3"; - sha256 = "2630934c75728bfbf390c1f0206b225507b354f68d4047b06c018a36823b5d8a"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Word8 library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "world-peace" = callPackage - ({ mkDerivation, aeson, base, deepseq, profunctors, stdenv, tagged - }: - mkDerivation { - pname = "world-peace"; - version = "1.0.1.0"; - sha256 = "97ff3d50b9d6e2f00b29abd9bf6336009a6bb4e273dd1a6c2f4c7a1f60f2a7bb"; - libraryHaskellDepends = [ aeson base deepseq profunctors tagged ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/world-peace"; - description = "Open Union and Open Product Types"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wrap" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "wrap"; - version = "0.0.0"; - sha256 = "f8bbc4b417b2291532784d0c7940c0f1a24d054e6012963f7d727ad13977f50e"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - description = "Wrap a function's return value with another function"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wreq" = callPackage - ({ mkDerivation, aeson, attoparsec, authenticate-oauth, base - , base16-bytestring, bytestring, Cabal, cabal-doctest - , case-insensitive, containers, cryptonite, exceptions, ghc-prim - , hashable, http-client, http-client-tls, http-types, lens - , lens-aeson, memory, mime-types, psqueues, stdenv - , template-haskell, text, time, time-locale-compat - , unordered-containers - }: - mkDerivation { - pname = "wreq"; - version = "0.5.3.2"; - sha256 = "66d8070e21c86a015cfc3df10c740d92c7f0b7a396c3ec02c3d2f8a5c2d1b49b"; - revision = "1"; - editedCabalFile = "0gz674sb266hv6si9l79c3bv7n2nbssl1262c24in79sk27887gb"; - 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 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.serpentine.com/wreq"; - description = "An easy-to-use HTTP client library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-exceptions" = callPackage - ({ mkDerivation, base, exceptions, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-exceptions"; - version = "0.1.0.1"; - sha256 = "9a1a5dc53a53e19f0d0dacdcb88bbfc3cde64379413982e8581043da6cc5ee43"; - libraryHaskellDepends = [ - base exceptions transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-exceptions"; - description = "Control.Monad.Catch instances for the stricter CPS WriterT and RWST"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-mtl" = callPackage - ({ mkDerivation, base, mtl, stdenv, transformers - , writer-cps-transformers - }: - mkDerivation { - pname = "writer-cps-mtl"; - version = "0.1.1.6"; - sha256 = "06f9fb60dc41ad26f3d18089a0b7ff1e1aeb15dc862508c59b6b577c0914dd36"; - libraryHaskellDepends = [ - base mtl transformers writer-cps-transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-mtl#readme"; - description = "MonadWriter orphan instances for writer-cps-transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "writer-cps-transformers" = callPackage - ({ mkDerivation, base, stdenv, transformers }: - mkDerivation { - pname = "writer-cps-transformers"; - version = "0.5.6.1"; - sha256 = "76eacf1c3df8f86b6d11507219d7e840d7fb2898f53959aa3dad40791b8f321c"; - libraryHaskellDepends = [ base transformers ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/minad/writer-cps-transformers#readme"; - description = "WriteT and RWST monad transformers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "wuss" = callPackage - ({ mkDerivation, base, bytestring, connection, network, stdenv - , websockets - }: - mkDerivation { - pname = "wuss"; - version = "1.1.15"; - sha256 = "f80cc4ba0fb17d9df138a442c8f49883fff8bfc7410c5fa1ada4d1abaa4958c4"; - libraryHaskellDepends = [ - base bytestring connection network websockets - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/tfausak/wuss#readme"; - description = "Secure WebSocket (WSS) clients"; - license = stdenv.lib.licenses.mit; - }) {}; - "x11-xim" = callPackage - ({ mkDerivation, base, stdenv, utf8-string, X11 }: - mkDerivation { - pname = "x11-xim"; - version = "0.0.9.0"; - sha256 = "3ccb05847f7eacd607db095e4f655984607f46313d6b70130d09fd096442c76a"; - revision = "1"; - editedCabalFile = "1c561z9xvfcd7ddbiw3r0frhjvsrklachd38s66fzwjdgw1sl124"; - libraryHaskellDepends = [ base utf8-string X11 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/YoshikuniJujo/x11-xim_haskell/wiki/"; - description = "A binding to the xim of X11 graphics library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509" = callPackage - ({ mkDerivation, asn1-encoding, asn1-parse, asn1-types, base - , bytestring, containers, cryptonite, hourglass, memory, mtl, pem - , stdenv - }: - mkDerivation { - pname = "x509"; - version = "1.7.5"; - sha256 = "b1b0fcbb4aa0d749ed2b54710c2ebd6d900cb932108ad14f97640cf4ca60c7c8"; - revision = "1"; - editedCabalFile = "1z98llpggldy4yb7afcsn3r3q4vklvx2pqyrhy9fir5y2yd5l601"; - libraryHaskellDepends = [ - asn1-encoding asn1-parse asn1-types base bytestring containers - cryptonite hourglass memory mtl pem - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X509 reader and writer"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-store" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, directory, filepath, mtl, pem, stdenv - , x509 - }: - mkDerivation { - pname = "x509-store"; - version = "1.6.7"; - sha256 = "9786356c8bfdf631ea018c3244d0854c6db2cb24e583891ea553961443f61ef9"; - revision = "1"; - editedCabalFile = "04h2h8kdzhd2fp3w4a834xc1n88b1jgrxlgcsynfn0iwpbsb41x7"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - directory filepath mtl pem x509 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 collection accessing and storing methods"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-system" = callPackage - ({ mkDerivation, base, bytestring, containers, directory, filepath - , mtl, pem, process, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-system"; - version = "1.6.6"; - sha256 = "40dcdaae3ec67f38c08d96d4365b901eb8ac0c590bd7972eb429d37d58aa4419"; - libraryHaskellDepends = [ - base bytestring containers directory filepath mtl pem process x509 - x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "Handle per-operating-system X.509 accessors and storage"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "x509-validation" = callPackage - ({ mkDerivation, asn1-encoding, asn1-types, base, bytestring - , containers, cryptonite, data-default-class, hourglass, memory - , mtl, pem, stdenv, x509, x509-store - }: - mkDerivation { - pname = "x509-validation"; - version = "1.6.11"; - sha256 = "f94321cbcc4a534adf5889ae6950f3673e38b62b89b6970b477f502ce987d19b"; - libraryHaskellDepends = [ - asn1-encoding asn1-types base bytestring containers cryptonite - data-default-class hourglass memory mtl pem x509 x509-store - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/vincenthz/hs-certificate"; - description = "X.509 Certificate and CRL validation"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-basedir" = callPackage - ({ mkDerivation, base, directory, filepath, stdenv }: - mkDerivation { - pname = "xdg-basedir"; - version = "0.2.2"; - sha256 = "e461c3a5c6007c55ceaea03be3be0ef3a92aa0ea1aea936da0c43671bbfaf42b"; - libraryHaskellDepends = [ base directory filepath ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/willdonnelly/xdg-basedir"; - description = "A basic implementation of the XDG Base Directory specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xdg-userdirs" = callPackage - ({ mkDerivation, base, containers, directory, filepath, stdenv - , xdg-basedir - }: - mkDerivation { - pname = "xdg-userdirs"; - version = "0.1.0.2"; - sha256 = "88aabbcb80dee5b669ad533af20000d561e6fe59ab1014ccc2482055d0a8046e"; - libraryHaskellDepends = [ - base containers directory filepath xdg-basedir - ]; - doHaddock = false; - doCheck = false; - homepage = "http://redmine.iportnov.ru/projects/xdg-userdirs"; - description = "Basic implementation of XDG user directories specification"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xeno" = callPackage - ({ mkDerivation, array, base, bytestring, deepseq, mtl - , mutable-containers, stdenv, vector - }: - mkDerivation { - pname = "xeno"; - version = "0.3.5.2"; - sha256 = "14f15b8e751063b701d63b78176d18385193d042af7df6aba67978d04a6cd075"; - libraryHaskellDepends = [ - array base bytestring deepseq mtl mutable-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/ocramz/xeno"; - description = "A fast event-based XML parser in pure Haskell"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xls" = callPackage - ({ mkDerivation, base, conduit, filepath, getopt-generics - , resourcet, stdenv, transformers - }: - mkDerivation { - pname = "xls"; - version = "0.1.2"; - sha256 = "d7f3d063d29d829f332164090a048741d03753f12d55ec064f0a9a374e62ee3e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base conduit filepath resourcet transformers - ]; - executableHaskellDepends = [ - base conduit getopt-generics resourcet transformers - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/harendra-kumar/xls"; - description = "Parse Microsoft Excel xls files (BIFF/Excel 97-2004)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xlsx" = callPackage - ({ mkDerivation, attoparsec, base, base64-bytestring, binary-search - , bytestring, conduit, containers, data-default, deepseq, errors - , extra, filepath, lens, mtl, network-uri, old-locale, safe, stdenv - , text, time, transformers, vector, xeno, xml-conduit, zip-archive - , zlib - }: - mkDerivation { - pname = "xlsx"; - version = "0.8.0"; - sha256 = "ed5cf0e58ac44c2cebf6bcf1b0dc355e621bde88cffb71d4419dfce2e6f2e2f2"; - libraryHaskellDepends = [ - attoparsec base base64-bytestring binary-search bytestring conduit - containers data-default deepseq errors extra filepath lens mtl - network-uri old-locale safe text time transformers vector xeno - xml-conduit zip-archive zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/qrilka/xlsx"; - description = "Simple and incomplete Excel file parser/writer"; - license = stdenv.lib.licenses.mit; - }) {}; - "xlsx-tabular" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, data-default - , lens, stdenv, text, xlsx - }: - mkDerivation { - pname = "xlsx-tabular"; - version = "0.2.2.1"; - sha256 = "48dd897d41df81f9009e6c6c988021bc989286cee385bd2535d8e60b54d0fd2d"; - libraryHaskellDepends = [ - aeson base bytestring containers data-default lens text xlsx - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/kkazuo/xlsx-tabular"; - description = "Xlsx table cell value extraction utility"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml" = callPackage - ({ mkDerivation, base, bytestring, stdenv, text }: - mkDerivation { - pname = "xml"; - version = "1.3.14"; - sha256 = "32d1a1a9f21a59176d84697f96ae3a13a0198420e3e4f1c48abbab7d2425013d"; - revision = "1"; - editedCabalFile = "130xwqmgmg9vp988mppm5ivz1r5qbivb270fz2rwl4q0x04czdzd"; - libraryHaskellDepends = [ base bytestring text ]; - doHaddock = false; - doCheck = false; - homepage = "http://code.galois.com"; - description = "A simple XML library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-basic" = callPackage - ({ mkDerivation, base, containers, data-accessor - , explicit-exception, semigroups, stdenv, utility-ht - }: - mkDerivation { - pname = "xml-basic"; - version = "0.1.3.1"; - sha256 = "8d743ff8e489dc52fd256b18b75c21689945cfcb52481f5ca0aa6df50178a3e2"; - libraryHaskellDepends = [ - base containers data-accessor explicit-exception semigroups - utility-ht - ]; - doHaddock = false; - doCheck = false; - description = "Basics for XML/HTML representation and processing"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-conduit" = callPackage - ({ mkDerivation, attoparsec, base, blaze-html, blaze-markup - , bytestring, conduit, conduit-extra, containers - , data-default-class, deepseq, resourcet, stdenv, text - , transformers, xml-types - }: - mkDerivation { - pname = "xml-conduit"; - version = "1.9.0.0"; - sha256 = "1cb4b8c3571dc044d0001e35f2c3e3a28f591bb6bb4a5ef7ee59207444d8a7dc"; - libraryHaskellDepends = [ - attoparsec base blaze-html blaze-markup bytestring conduit - conduit-extra containers data-default-class deepseq resourcet text - transformers xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snoyberg/xml"; - description = "Pure-Haskell utilities for dealing with XML with the conduit package"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-conduit-writer" = callPackage - ({ mkDerivation, base, containers, data-default, dlist, mtl, stdenv - , text, xml-conduit, xml-types - }: - mkDerivation { - pname = "xml-conduit-writer"; - version = "0.1.1.2"; - sha256 = "0891c05ad2a2de68183868de8f66230d02f209446ee91bca772cbf22b599ae58"; - libraryHaskellDepends = [ - base containers data-default dlist mtl text xml-conduit xml-types - ]; - doHaddock = false; - doCheck = false; - homepage = "https://bitbucket.org/dpwiz/xml-conduit-writer"; - description = "Warm and fuzzy creation of XML documents"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-hamlet" = callPackage - ({ mkDerivation, base, containers, parsec, shakespeare, stdenv - , template-haskell, text, xml-conduit - }: - mkDerivation { - pname = "xml-hamlet"; - version = "0.5.0.1"; - sha256 = "920ed9736117c09bcec04133beaa14dc05d7c413ee14f49c6aa9707ebc64304b"; - libraryHaskellDepends = [ - base containers parsec shakespeare template-haskell text - xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Hamlet-style quasiquoter for XML content"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-html-qq" = callPackage - ({ mkDerivation, base, blaze-markup, conduit, data-default - , from-sum, heterocephalus, html-conduit, resourcet, stdenv - , template-haskell, text, th-lift, th-lift-instances, xml-conduit - }: - mkDerivation { - pname = "xml-html-qq"; - version = "0.1.0.1"; - sha256 = "1a2ebb1f4ca58a4f442c470db6d3271e6b1069d41860f8683b5da9082329235a"; - libraryHaskellDepends = [ - base blaze-markup conduit data-default from-sum heterocephalus - html-conduit resourcet template-haskell text th-lift - th-lift-instances xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-html-qq"; - description = "Quasi-quoters for XML and HTML Documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-indexed-cursor" = callPackage - ({ mkDerivation, base, bytestring, containers, data-default, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-indexed-cursor"; - version = "0.1.1.0"; - sha256 = "46d622fc738e8cc1513f598207ee5e6cda790c79e0697fe02d2da6ad02a6da74"; - libraryHaskellDepends = [ - base bytestring containers data-default text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/cdepillabout/xml-indexed-cursor"; - description = "Indexed XML cursors similar to 'Text.XML.Cursor' from xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-lens" = callPackage - ({ mkDerivation, base, case-insensitive, containers, lens, stdenv - , text, xml-conduit - }: - mkDerivation { - pname = "xml-lens"; - version = "0.2"; - sha256 = "a33a54a1a4273af298e73fc25d742ad62d9357bada66350981fbf3ad594771cb"; - revision = "1"; - editedCabalFile = "0agp2gpzzgrpy831cj47r8fi91r0s68a7bl8fqvbb1ya7jfadfll"; - libraryHaskellDepends = [ - base case-insensitive containers lens text xml-conduit - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/fumieval/xml-lens"; - description = "Lenses, traversals, and prisms for xml-conduit"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-picklers" = callPackage - ({ mkDerivation, base, containers, stdenv, text, xml-types }: - mkDerivation { - pname = "xml-picklers"; - version = "0.3.6"; - sha256 = "d1b802cd9543a228c6699928e6695539c28f6cbd8e7859a65ca874543ef1d1a4"; - libraryHaskellDepends = [ base containers text xml-types ]; - doHaddock = false; - doCheck = false; - description = "XML picklers based on xml-types, ported from hexpat-pickle"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xml-to-json" = callPackage - ({ mkDerivation, aeson, base, bytestring, containers, curl - , hashable, hxt, hxt-curl, hxt-expat, hxt-tagsoup, regex-posix - , stdenv, tagsoup, text, unordered-containers, vector - }: - mkDerivation { - pname = "xml-to-json"; - version = "2.0.1"; - sha256 = "ad1a2501828052a1798178c309638a9b8e4fe66ad24dae9c76de939c156d2e2f"; - 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 ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json"; - description = "Library and command line tool for converting XML files to json"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-to-json-fast" = callPackage - ({ mkDerivation, base, directory, process, stdenv, tagsoup, text }: - mkDerivation { - pname = "xml-to-json-fast"; - version = "2.0.0"; - sha256 = "dd852fe1aa54db3c6d87a2e74b5345b0f14effdd49bad5b73d79571e1b47563f"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base tagsoup text ]; - executableHaskellDepends = [ base directory process ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/sinelaw/xml-to-json-fast"; - description = "Fast, light converter of xml to json capable of handling huge xml files"; - license = stdenv.lib.licenses.mit; - }) {}; - "xml-types" = callPackage - ({ mkDerivation, base, deepseq, stdenv, text }: - mkDerivation { - pname = "xml-types"; - version = "0.3.6"; - sha256 = "9937d440072552c03c6d8ad79f61e61467dc28dcd5adeaad81038b9b94eef8c9"; - libraryHaskellDepends = [ base deepseq text ]; - doHaddock = false; - doCheck = false; - homepage = "https://john-millikin.com/software/haskell-xml/"; - description = "Basic types for representing XML"; - license = stdenv.lib.licenses.mit; - }) {}; - "xmlgen" = callPackage - ({ mkDerivation, base, blaze-builder, bytestring, containers, mtl - , stdenv, text - }: - mkDerivation { - pname = "xmlgen"; - version = "0.6.2.2"; - sha256 = "926fa98c77525f5046274758fcebd190e86de3f53a4583179e8ce328f25a34d6"; - revision = "1"; - editedCabalFile = "0vwnqd0lsw81llsn0psga5r6pw7jh69vfbj3rnz7c2fpkc0gjh3j"; - libraryHaskellDepends = [ - base blaze-builder bytestring containers mtl text - ]; - doHaddock = false; - doCheck = false; - description = "Fast XML generation library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad" = callPackage - ({ mkDerivation, base, containers, data-default, directory - , extensible-exceptions, filepath, mtl, process, setlocale, stdenv - , unix, utf8-string, X11 - }: - mkDerivation { - pname = "xmonad"; - version = "0.15"; - sha256 = "4a7948e6eee5e34a27d15444589ade3b3fa1adecadbf37b943cff8348380f928"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base containers data-default directory extensible-exceptions - filepath mtl process setlocale unix utf8-string X11 - ]; - executableHaskellDepends = [ base mtl unix X11 ]; - doHaddock = false; - doCheck = false; - postInstall = '' - install -D man/xmonad.1 $doc/share/man/man1/xmonad.1 - install -D man/xmonad.hs $doc/share/doc/$name/sample-xmonad.hs - ''; - homepage = "http://xmonad.org"; - description = "A tiling window manager"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-contrib" = callPackage - ({ mkDerivation, base, bytestring, containers, directory - , extensible-exceptions, filepath, mtl, old-locale, old-time - , process, random, semigroups, stdenv, unix, utf8-string, X11 - , X11-xft, xmonad - }: - mkDerivation { - pname = "xmonad-contrib"; - version = "0.16"; - sha256 = "ad72c38de1bf4f9e176bd0da7ee62a6153b03c9087313b3d4782f365f77caddd"; - libraryHaskellDepends = [ - base bytestring containers directory extensible-exceptions filepath - mtl old-locale old-time process random semigroups unix utf8-string - X11 X11-xft xmonad - ]; - doHaddock = false; - doCheck = false; - homepage = "http://xmonad.org/"; - description = "Third party extensions for xmonad"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xmonad-extras" = callPackage - ({ mkDerivation, alsa-mixer, base, bytestring, containers, hint - , libmpd, mtl, network, regex-posix, stdenv, X11, xmonad - , xmonad-contrib - }: - mkDerivation { - pname = "xmonad-extras"; - version = "0.15.2"; - sha256 = "9a9ea86b49ce2fe9f4204d09bc5b32c323d42be8017429058b0568300bfb40dc"; - configureFlags = [ - "-f-with_hlist" "-fwith_parsec" "-fwith_split" - ]; - libraryHaskellDepends = [ - alsa-mixer base bytestring containers hint libmpd mtl network - regex-posix X11 xmonad xmonad-contrib - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/xmonad/xmonad-extras"; - description = "Third party extensions for xmonad with wacky dependencies"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xss-sanitize" = callPackage - ({ mkDerivation, attoparsec, base, containers, css-text - , network-uri, stdenv, tagsoup, text, utf8-string - }: - mkDerivation { - pname = "xss-sanitize"; - version = "0.3.6"; - sha256 = "b385eea5652c798b701c627dce8b327c3d6cbfd8c92e1e18e7118862d4d0e2b4"; - libraryHaskellDepends = [ - attoparsec base containers css-text network-uri tagsoup text - utf8-string - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/haskell-xss-sanitize#readme"; - description = "sanitize untrusted HTML to prevent XSS attacks"; - license = stdenv.lib.licenses.bsd2; - }) {}; - "xturtle" = callPackage - ({ mkDerivation, base, convertible, Imlib, setlocale, stdenv, X11 - , X11-xft, x11-xim, yjsvg, yjtools - }: - mkDerivation { - pname = "xturtle"; - version = "0.2.0.0"; - sha256 = "43180537377db24e446f83bddd6f0c7ceadeb871c793e046bddeab433e24ce22"; - libraryHaskellDepends = [ - base convertible Imlib setlocale X11 X11-xft x11-xim yjsvg yjtools - ]; - doHaddock = false; - doCheck = false; - description = "turtle like LOGO"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "xxhash-ffi" = callPackage - ({ mkDerivation, base, bytestring, stdenv }: - mkDerivation { - pname = "xxhash-ffi"; - version = "0.2.0.0"; - sha256 = "fc2e63ea54531e2888a9ddd6816cb113bd5fd0e01192156e9f1459d88af92e6b"; - libraryHaskellDepends = [ base bytestring ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/haskell-haskey/xxhash-ffi#readme"; - description = "Bindings to the C implementation the xxHash algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yaml" = callPackage - ({ mkDerivation, aeson, attoparsec, base, bytestring, conduit - , containers, directory, filepath, libyaml, mtl, resourcet - , scientific, stdenv, template-haskell, text, transformers - , unordered-containers, vector - }: - mkDerivation { - pname = "yaml"; - version = "0.11.2.0"; - sha256 = "d1f2d2b2cc8db857d39baf30fb3eded2e0f49a4c138358367c4379bb04c3ba0c"; - configureFlags = [ "-fsystem-libyaml" ]; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - aeson attoparsec base bytestring conduit containers directory - filepath libyaml mtl resourcet scientific template-haskell text - transformers unordered-containers vector - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/snoyberg/yaml#readme"; - description = "Support for parsing and rendering YAML documents"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yes-precure5-command" = callPackage - ({ mkDerivation, base, Cabal, containers, mtl, parsec, random - , stdenv - }: - mkDerivation { - pname = "yes-precure5-command"; - version = "5.5.3"; - sha256 = "27f2f2dcd81923a18450cda21a31585d0d3887afde504190667cb7dbf0a0af7e"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - executableHaskellDepends = [ - base Cabal containers mtl parsec random - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/igrep/yes-precure5-command/"; - description = "Extended yes command to reproduce phrases in Yes! Precure 5"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod" = callPackage - ({ mkDerivation, aeson, base, bytestring, conduit - , data-default-class, directory, fast-logger, monad-logger - , semigroups, shakespeare, stdenv, streaming-commons - , template-haskell, text, unix, unordered-containers, wai - , wai-extra, wai-logger, warp, yaml, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod"; - version = "1.6.0.1"; - sha256 = "1077e39bf9eb99e12cbac913d96f728bb635989e410e410a45400b4cbaa97884"; - libraryHaskellDepends = [ - aeson base bytestring conduit data-default-class directory - fast-logger monad-logger semigroups shakespeare streaming-commons - template-haskell text unix unordered-containers wai wai-extra - wai-logger warp yaml yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth" = callPackage - ({ mkDerivation, aeson, authenticate, base, base16-bytestring - , base64-bytestring, binary, blaze-builder, blaze-html - , blaze-markup, bytestring, conduit, conduit-extra, containers - , cryptonite, data-default, email-validate, file-embed, http-client - , http-client-tls, http-conduit, http-types, memory, network-uri - , nonce, persistent, random, safe, shakespeare, stdenv - , template-haskell, text, time, transformers, unliftio - , unliftio-core, unordered-containers, wai, yesod-core, yesod-form - , yesod-persistent - }: - mkDerivation { - pname = "yesod-auth"; - version = "1.6.8.1"; - sha256 = "1287281454963bf34e881fcab2ccd34572a4db7f1fe502fc487d62c4b867f5fe"; - libraryHaskellDepends = [ - aeson authenticate base base16-bytestring base64-bytestring binary - blaze-builder blaze-html blaze-markup bytestring conduit - conduit-extra containers cryptonite data-default email-validate - file-embed http-client http-client-tls http-conduit http-types - memory network-uri nonce persistent random safe shakespeare - template-haskell text time transformers unliftio unliftio-core - unordered-containers wai yesod-core yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Authentication for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-auth-hashdb" = callPackage - ({ mkDerivation, aeson, base, bytestring, persistent, stdenv, text - , yesod-auth, yesod-core, yesod-form, yesod-persistent - }: - mkDerivation { - pname = "yesod-auth-hashdb"; - version = "1.7.1.2"; - sha256 = "1bd6f50e66c9c5f01d358b67cd1db324a796627db00f12f5068f7226e5a3c681"; - libraryHaskellDepends = [ - aeson base bytestring persistent text yesod-auth yesod-core - yesod-form yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/paul-rouse/yesod-auth-hashdb"; - description = "Authentication plugin for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-bin" = callPackage - ({ mkDerivation, base, bytestring, Cabal, conduit, conduit-extra - , containers, data-default-class, directory, file-embed, filepath - , fsnotify, http-client, http-client-tls, http-reverse-proxy - , http-types, network, optparse-applicative, process - , project-template, say, split, stdenv, stm, streaming-commons, tar - , text, time, transformers, transformers-compat, unliftio - , unordered-containers, wai, wai-extra, warp, warp-tls, yaml, zlib - }: - mkDerivation { - pname = "yesod-bin"; - version = "1.6.0.4"; - sha256 = "2a640ae3e41c4f4fc4c0349327a4ef54cd3cedcc28a880b41ea118c40827e473"; - isLibrary = false; - isExecutable = true; - executableHaskellDepends = [ - base bytestring Cabal conduit conduit-extra containers - data-default-class directory file-embed filepath fsnotify - http-client http-client-tls http-reverse-proxy http-types network - optparse-applicative process project-template say split stm - streaming-commons tar text time transformers transformers-compat - unliftio unordered-containers wai wai-extra warp warp-tls yaml zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "The yesod helper executable"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-core" = callPackage - ({ mkDerivation, aeson, auto-update, base, blaze-html, blaze-markup - , bytestring, case-insensitive, cereal, clientsession, conduit - , conduit-extra, containers, cookie, deepseq, fast-logger - , http-types, memory, monad-logger, mtl, parsec, path-pieces - , primitive, random, resourcet, shakespeare, stdenv - , template-haskell, text, time, transformers, unix-compat, unliftio - , unordered-containers, vector, wai, wai-extra, wai-logger, warp - , word8 - }: - mkDerivation { - pname = "yesod-core"; - version = "1.6.17.2"; - sha256 = "8eb30f211241f1b542e9f1fd6e49af25e134766b53ee0471799771db979e8e65"; - libraryHaskellDepends = [ - aeson auto-update base blaze-html blaze-markup bytestring - case-insensitive cereal clientsession conduit conduit-extra - containers cookie deepseq fast-logger http-types memory - monad-logger mtl parsec path-pieces primitive random resourcet - shakespeare template-haskell text time transformers unix-compat - unliftio unordered-containers vector wai wai-extra wai-logger warp - word8 - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Creation of type-safe, RESTful web applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-form" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , blaze-markup, byteable, bytestring, containers, data-default - , email-validate, network-uri, persistent, resourcet, semigroups - , shakespeare, stdenv, text, time, transformers, wai, xss-sanitize - , yesod-core, yesod-persistent - }: - mkDerivation { - pname = "yesod-form"; - version = "1.6.7"; - sha256 = "ad645460ea52d57d231db6ad88229eb9dc5861ae9b97eba72a9799eb5b38de56"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html blaze-markup - byteable bytestring containers data-default email-validate - network-uri persistent resourcet semigroups shakespeare text time - transformers wai xss-sanitize yesod-core yesod-persistent - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Form handling support for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-gitrev" = callPackage - ({ mkDerivation, aeson, base, githash, stdenv, template-haskell - , yesod-core - }: - mkDerivation { - pname = "yesod-gitrev"; - version = "0.2.1"; - sha256 = "fc34c48eee25a15a55a6052fc1d15bb63bbc63514059483cb2212895f0eea671"; - libraryHaskellDepends = [ - aeson base githash template-haskell yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/DanBurton/yesod-gitrev"; - description = "A subsite for displaying git information"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yesod-newsfeed" = callPackage - ({ mkDerivation, base, blaze-html, blaze-markup, bytestring - , containers, shakespeare, stdenv, text, time, xml-conduit - , yesod-core - }: - mkDerivation { - pname = "yesod-newsfeed"; - version = "1.7.0.0"; - sha256 = "8f2ce7022fedf719d8f87ea4af401a2d77f686f42e5736055536baac7f4af63c"; - libraryHaskellDepends = [ - base blaze-html blaze-markup bytestring containers shakespeare text - time xml-conduit yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Helper functions and data types for producing News feeds"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-persistent" = callPackage - ({ mkDerivation, base, blaze-builder, conduit, persistent - , persistent-template, resource-pool, resourcet, stdenv - , transformers, yesod-core - }: - mkDerivation { - pname = "yesod-persistent"; - version = "1.6.0.4"; - sha256 = "8085b7a4c827e364bf581e03ebccc72dcff75c77001213d451ff7cd3bfe051bf"; - libraryHaskellDepends = [ - base blaze-builder conduit persistent persistent-template - resource-pool resourcet transformers yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Some helpers for using Persistent from Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-sitemap" = callPackage - ({ mkDerivation, base, conduit, containers, data-default, stdenv - , text, time, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-sitemap"; - version = "1.6.0"; - sha256 = "e5fa06abdcd57772fc74707ae663c63b45b172bce48117b70a4a9af15131dbd6"; - libraryHaskellDepends = [ - base conduit containers data-default text time xml-conduit - xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Generate XML sitemaps"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-static" = callPackage - ({ mkDerivation, async, attoparsec, base, base64-bytestring - , blaze-builder, bytestring, conduit, containers, cryptonite - , cryptonite-conduit, css-text, data-default, directory, file-embed - , filepath, hashable, hjsmin, http-types, memory, mime-types - , process, stdenv, template-haskell, text, transformers - , unix-compat, unordered-containers, wai, wai-app-static - , yesod-core - }: - mkDerivation { - pname = "yesod-static"; - version = "1.6.0.1"; - sha256 = "abe7e802f5efd064823b827074fea3613f4ba46115afedb5e2d96f919dcfa0c9"; - libraryHaskellDepends = [ - async attoparsec base base64-bytestring blaze-builder bytestring - conduit containers cryptonite cryptonite-conduit css-text - data-default directory file-embed filepath hashable hjsmin - http-types memory mime-types process template-haskell text - transformers unix-compat unordered-containers wai wai-app-static - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com/"; - description = "Static file serving subsite for Yesod Web Framework"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-test" = callPackage - ({ mkDerivation, aeson, attoparsec, base, blaze-builder, blaze-html - , bytestring, case-insensitive, conduit, containers, cookie - , hspec-core, html-conduit, http-types, HUnit, memory, network - , pretty-show, semigroups, stdenv, text, time, transformers, wai - , wai-extra, xml-conduit, xml-types, yesod-core - }: - mkDerivation { - pname = "yesod-test"; - version = "1.6.9"; - sha256 = "5379e217b1a3081b466090eed3b21181b43fab9aa9396fdfa3a53d7830a6456c"; - libraryHaskellDepends = [ - aeson attoparsec base blaze-builder blaze-html bytestring - case-insensitive conduit containers cookie hspec-core html-conduit - http-types HUnit memory network pretty-show semigroups text time - transformers wai wai-extra xml-conduit xml-types yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "http://www.yesodweb.com"; - description = "integration testing for WAI/Yesod Applications"; - license = stdenv.lib.licenses.mit; - }) {}; - "yesod-websockets" = callPackage - ({ mkDerivation, base, conduit, mtl, stdenv, transformers, unliftio - , wai-websockets, websockets, yesod-core - }: - mkDerivation { - pname = "yesod-websockets"; - version = "0.3.0.2"; - sha256 = "01c69701ddb499c198984e440b05eecdabd285890793e711adbd8847103540cc"; - libraryHaskellDepends = [ - base conduit mtl transformers unliftio wai-websockets websockets - yesod-core - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/yesodweb/yesod"; - description = "WebSockets support for Yesod"; - license = stdenv.lib.licenses.mit; - }) {}; - "yi-rope" = callPackage - ({ mkDerivation, base, binary, bytestring, deepseq, fingertree - , stdenv, text - }: - mkDerivation { - pname = "yi-rope"; - version = "0.11"; - sha256 = "9a9318693501bdbb3e8f3c19b0acd6c3cbd607a6e9d966201b613c41a1b71008"; - libraryHaskellDepends = [ - base binary bytestring deepseq fingertree text - ]; - doHaddock = false; - doCheck = false; - description = "A rope data structure used by Yi"; - license = stdenv.lib.licenses.gpl2; - }) {}; - "yjsvg" = callPackage - ({ mkDerivation, base, HaXml, stdenv }: - mkDerivation { - pname = "yjsvg"; - version = "0.2.0.1"; - sha256 = "f737b7d43b7b3fd3237d07761c672569a2b5d0c1e1b26d48097b9e96b1262e7e"; - libraryHaskellDepends = [ base HaXml ]; - doHaddock = false; - doCheck = false; - description = "make SVG string from Haskell data"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "yjtools" = callPackage - ({ mkDerivation, base, stdenv }: - mkDerivation { - pname = "yjtools"; - version = "0.9.18"; - sha256 = "9b121c6fcece8241d87aec737458d49c0b76313e9e5e1e70f72b5f71cfc0eb8f"; - libraryHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "http://homepage3.nifty.com/salamander/second/projects/yjtools/index.xhtml"; - description = "some tools for Monad, List, Tuple and so on"; - license = "LGPL"; - }) {}; - "yoga" = callPackage - ({ mkDerivation, base, bindings-DSL, ieee754, stdenv }: - mkDerivation { - pname = "yoga"; - version = "0.0.0.5"; - sha256 = "30020283ef7b241787bae810b1f563bd2c7a6ada69a582b8d7cc020365015f91"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ base bindings-DSL ieee754 ]; - doHaddock = false; - doCheck = false; - description = "Bindings to Facebook's Yoga layout library"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "youtube" = callPackage - ({ mkDerivation, base, bytestring, process, stdenv, utility-ht }: - mkDerivation { - pname = "youtube"; - version = "0.2.1.1"; - sha256 = "2e396a785f3d8f504f0e39ed8c87d0a748111ed40b26b950595d83c3fd840e25"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base bytestring process utility-ht ]; - doHaddock = false; - doCheck = false; - description = "Upload video to YouTube via YouTube API"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zasni-gerna" = callPackage - ({ mkDerivation, base, papillon, stdenv }: - mkDerivation { - pname = "zasni-gerna"; - version = "0.0.7.1"; - sha256 = "47149b36c1d600f91fdfb7966c4e175e765bf65a51b86e713d79be026674348c"; - libraryHaskellDepends = [ base papillon ]; - doHaddock = false; - doCheck = false; - homepage = "https://skami.iocikun.jp/haskell/packages/zasni-gerna"; - description = "lojban parser (zasni gerna)"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zero" = callPackage - ({ mkDerivation, base, semigroups, stdenv }: - mkDerivation { - pname = "zero"; - version = "0.1.5"; - sha256 = "9c52083fc246299bf63df0363e950e19a88c6f6fbab7891cfd9379f6180760f9"; - libraryHaskellDepends = [ base semigroups ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/phaazon/zero"; - description = "Semigroups with absorption"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zeromq4-haskell" = callPackage - ({ mkDerivation, async, base, bytestring, containers, exceptions - , monad-control, semigroups, stdenv, transformers - , transformers-base, zeromq - }: - mkDerivation { - pname = "zeromq4-haskell"; - version = "0.8.0"; - sha256 = "d3be996589e126e30cb000545c56907e44a2a1d10960e4c7698b7941d0dff66b"; - libraryHaskellDepends = [ - async base bytestring containers exceptions monad-control - semigroups transformers transformers-base - ]; - libraryPkgconfigDepends = [ zeromq ]; - doHaddock = false; - doCheck = false; - homepage = "https://gitlab.com/twittner/zeromq-haskell/"; - description = "Bindings to ZeroMQ 4.x"; - license = stdenv.lib.licenses.mit; - }) {inherit (pkgs) zeromq;}; - "zeromq4-patterns" = callPackage - ({ mkDerivation, async, base, binary, bytestring, exceptions - , stdenv, stm, zeromq4-haskell - }: - mkDerivation { - pname = "zeromq4-patterns"; - version = "0.3.1.0"; - sha256 = "74f3a82a72a22684449103c0786e290be2c14de9d48a3ea9d64a7cc063b33ed9"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - async base binary bytestring exceptions stm zeromq4-haskell - ]; - executableHaskellDepends = [ base ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/hverr/zeromq4-patterns#readme"; - description = "Haskell implementation of several ZeroMQ patterns"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zim-parser" = callPackage - ({ mkDerivation, array, base, base-compat, binary, binary-conduit - , bytestring, conduit, conduit-extra, lzma, stdenv - }: - mkDerivation { - pname = "zim-parser"; - version = "0.2.1.0"; - sha256 = "b27f6a395c54e0dac6926a5ea18b582aa21c5d91e31b53f8749f063947a15789"; - libraryHaskellDepends = [ - array base base-compat binary binary-conduit bytestring conduit - conduit-extra lzma - ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/robbinch/zim-parser#readme"; - description = "Read and parse ZIM files"; - license = stdenv.lib.licenses.gpl3; - }) {}; - "zip" = callPackage - ({ mkDerivation, base, bytestring, bzlib-conduit, case-insensitive - , cereal, conduit, conduit-extra, containers, digest, directory - , dlist, exceptions, filepath, monad-control, mtl, resourcet - , stdenv, text, time, transformers, transformers-base - }: - mkDerivation { - pname = "zip"; - version = "1.3.0"; - sha256 = "d132ab412a704c8e1a547e8b3bd968944291cccec1e487f51048c28d1d229df1"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base bytestring bzlib-conduit case-insensitive cereal conduit - conduit-extra containers digest directory dlist exceptions filepath - monad-control mtl resourcet text time transformers - transformers-base - ]; - executableHaskellDepends = [ base filepath ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/mrkkrp/zip"; - description = "Operations on zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-archive" = callPackage - ({ mkDerivation, array, base, binary, bytestring, containers - , digest, directory, filepath, mtl, pretty, stdenv, text, time - , unix, zlib - }: - mkDerivation { - pname = "zip-archive"; - version = "0.4.1"; - sha256 = "c5d5c9976241dcc25b0d8753dc526bb1bfef60f30dee38c53a7ae56e6be9b1b1"; - revision = "1"; - editedCabalFile = "1mv6jns7zf0fi7lrhzk007g12v6x7yf5ycbj67rbh83xfkf4nxsi"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - array base binary bytestring containers digest directory filepath - mtl pretty text time unix zlib - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/jgm/zip-archive"; - description = "Library for creating and modifying zip archives"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zip-stream" = callPackage - ({ mkDerivation, base, binary, binary-conduit, bytestring, conduit - , conduit-extra, digest, directory, exceptions, filepath, mtl - , primitive, resourcet, stdenv, text, time, transformers - , transformers-base, zlib - }: - mkDerivation { - pname = "zip-stream"; - version = "0.2.0.1"; - sha256 = "b7c45c612f1f53546923162d73c644b9704d5293b1e767108728d3c08b46a587"; - isLibrary = true; - isExecutable = true; - libraryHaskellDepends = [ - base binary binary-conduit bytestring conduit conduit-extra digest - exceptions mtl primitive resourcet text time transformers-base zlib - ]; - executableHaskellDepends = [ - base bytestring conduit conduit-extra directory filepath resourcet - text time transformers - ]; - doHaddock = false; - doCheck = false; - description = "ZIP archive streaming using conduits"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zippers" = callPackage - ({ mkDerivation, base, Cabal, cabal-doctest, fail, lens - , profunctors, semigroupoids, semigroups, stdenv - }: - mkDerivation { - pname = "zippers"; - version = "0.3"; - sha256 = "f5b6e0e73d151c3876f70428ff7684cdcb6d7418211d3ad120e325a8d17c3a43"; - setupHaskellDepends = [ base Cabal cabal-doctest ]; - libraryHaskellDepends = [ - base fail lens profunctors semigroupoids semigroups - ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/ekmett/zippers/"; - description = "Traversal based zippers"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib"; - version = "0.6.2.1"; - sha256 = "f0f810ff173560b60392db448455c0513b3239f48e43cb494b3733aa559621d0"; - libraryHaskellDepends = [ base bytestring ]; - librarySystemDepends = [ zlib ]; - doHaddock = false; - doCheck = false; - description = "Compression and decompression in the gzip and zlib formats"; - license = stdenv.lib.licenses.bsd3; - }) {inherit (pkgs) zlib;}; - "zlib-bindings" = callPackage - ({ mkDerivation, base, bytestring, stdenv, zlib }: - mkDerivation { - pname = "zlib-bindings"; - version = "0.1.1.5"; - sha256 = "c83bb438f9b6c5fe860982731eb8ac7eff993e8b56cbc15ef5b471f229f79109"; - revision = "2"; - editedCabalFile = "0fq49694gqkab8m0vq4i879blswczwd66n7xh4r4gwiahf0ryvqc"; - libraryHaskellDepends = [ base bytestring zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://github.com/snapframework/zlib-bindings"; - description = "Low-level bindings to the zlib package"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zlib-lens" = callPackage - ({ mkDerivation, base, bytestring, profunctors, stdenv, zlib }: - mkDerivation { - pname = "zlib-lens"; - version = "0.1.2.1"; - sha256 = "e5a563453899e0896cfa3aed22a2fbfc67012990ace6d14631f31b704ff766eb"; - libraryHaskellDepends = [ base bytestring profunctors zlib ]; - doHaddock = false; - doCheck = false; - homepage = "http://lens.github.io/"; - description = "Lenses for zlib"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zot" = callPackage - ({ mkDerivation, base, monads-tf, stdenv }: - mkDerivation { - pname = "zot"; - version = "0.0.3"; - sha256 = "c8a9091b939e3f74aca6be3007a0066c8a1de69da4b62e22891bed543f8a2b32"; - revision = "1"; - editedCabalFile = "04gsbs6fvwpjjg1f6g1j17dxlfzsci9vmirk7mwqwmm9ha0a4hxm"; - isLibrary = false; - isExecutable = true; - enableSeparateDataOutput = true; - executableHaskellDepends = [ base monads-tf ]; - doHaddock = false; - doCheck = false; - description = "Zot language"; - license = stdenv.lib.licenses.bsd3; - }) {}; - "zstd" = callPackage - ({ mkDerivation, base, bytestring, deepseq, ghc-prim, stdenv }: - mkDerivation { - pname = "zstd"; - version = "0.1.1.2"; - sha256 = "e24b5259793d5f838e45ee751a59867b8db9ddabc5bc8ffb5423f0fd4d22fa90"; - libraryHaskellDepends = [ base bytestring deepseq ghc-prim ]; - doHaddock = false; - doCheck = false; - homepage = "https://github.com/luispedro/hs-zstd"; - description = "Haskell bindings to the Zstandard compression algorithm"; - license = stdenv.lib.licenses.bsd3; - }) {}; - }; -in compiler.override { - initialPackages = stackPackages; - configurationCommon = { ... }: self: super: {}; - compilerConfig = self: super: {}; -} diff --git a/generated/stable/stack2nix/revision b/generated/stable/stack2nix/revision deleted file mode 100644 index b123147..0000000 --- a/generated/stable/stack2nix/revision +++ /dev/null @@ -1 +0,0 @@ -1.1 \ No newline at end of file diff --git a/generated/unstable b/generated/unstable deleted file mode 120000 index 870bbe4..0000000 --- a/generated/unstable +++ /dev/null @@ -1 +0,0 @@ -stable \ No newline at end of file diff --git a/nixpkgs.nix b/nixpkgs.nix deleted file mode 100644 index 41c9b13..0000000 --- a/nixpkgs.nix +++ /dev/null @@ -1,4 +0,0 @@ -import (fetchTarball { - url = "https://github.com/NixOS/nixpkgs/tarball/acbdaa569f4ee387386ebe1b9e60b9f95b4ab21b"; - sha256 = "0xzyghyxk3hwhicgdbi8yv8b8ijy1rgdsj5wb26y5j322v96zlpz"; -}) {} diff --git a/nixpkgsForGhc/ghc821 b/nixpkgsForGhc/ghc821 deleted file mode 100644 index 359178c..0000000 --- a/nixpkgsForGhc/ghc821 +++ /dev/null @@ -1 +0,0 @@ -c47ac0d8bf43543d8dcef4895167dd1f7af9d968 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc822 b/nixpkgsForGhc/ghc822 deleted file mode 100644 index eba57b4..0000000 --- a/nixpkgsForGhc/ghc822 +++ /dev/null @@ -1 +0,0 @@ -4708d3f84bce8c6bec0d989df1b33c59beb97821 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc842 b/nixpkgsForGhc/ghc842 deleted file mode 100644 index c1b7993..0000000 --- a/nixpkgsForGhc/ghc842 +++ /dev/null @@ -1 +0,0 @@ -91ca88b3e6b4d57640c213e755077b2d93d0a8bd \ No newline at end of file diff --git a/nixpkgsForGhc/ghc843 b/nixpkgsForGhc/ghc843 deleted file mode 100644 index d0ff3b7..0000000 --- a/nixpkgsForGhc/ghc843 +++ /dev/null @@ -1 +0,0 @@ -b5c02d2028dbfe33f05a6134a7190af74d792b74 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc844 b/nixpkgsForGhc/ghc844 deleted file mode 100644 index 3ab8ae5..0000000 --- a/nixpkgsForGhc/ghc844 +++ /dev/null @@ -1 +0,0 @@ -d73f16d6767e99675682f822dac3017bf9af1e83 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc861 b/nixpkgsForGhc/ghc861 deleted file mode 100644 index d2789c9..0000000 --- a/nixpkgsForGhc/ghc861 +++ /dev/null @@ -1 +0,0 @@ -9b3e5a3aab728e7cea2da12b6db300136604be3a \ No newline at end of file diff --git a/nixpkgsForGhc/ghc862 b/nixpkgsForGhc/ghc862 deleted file mode 100644 index d2789c9..0000000 --- a/nixpkgsForGhc/ghc862 +++ /dev/null @@ -1 +0,0 @@ -9b3e5a3aab728e7cea2da12b6db300136604be3a \ No newline at end of file diff --git a/nixpkgsForGhc/ghc863 b/nixpkgsForGhc/ghc863 deleted file mode 100644 index 88237e1..0000000 --- a/nixpkgsForGhc/ghc863 +++ /dev/null @@ -1 +0,0 @@ -106db715f9d7b2c2a87e2142ebefa77d7231214f \ No newline at end of file diff --git a/nixpkgsForGhc/ghc864 b/nixpkgsForGhc/ghc864 deleted file mode 100644 index 3ab8ae5..0000000 --- a/nixpkgsForGhc/ghc864 +++ /dev/null @@ -1 +0,0 @@ -d73f16d6767e99675682f822dac3017bf9af1e83 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc865 b/nixpkgsForGhc/ghc865 deleted file mode 100644 index a151ed9..0000000 --- a/nixpkgsForGhc/ghc865 +++ /dev/null @@ -1 +0,0 @@ -650a295621b27c4ebe0fa64a63fd25323e64deb3 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc881 b/nixpkgsForGhc/ghc881 deleted file mode 100644 index c2ca790..0000000 --- a/nixpkgsForGhc/ghc881 +++ /dev/null @@ -1 +0,0 @@ -f77e057cda60a3f96a4010a698ff3be311bf18c6 \ No newline at end of file diff --git a/nixpkgsForGhc/ghc882 b/nixpkgsForGhc/ghc882 deleted file mode 100644 index c2ca790..0000000 --- a/nixpkgsForGhc/ghc882 +++ /dev/null @@ -1 +0,0 @@ -f77e057cda60a3f96a4010a698ff3be311bf18c6 \ No newline at end of file diff --git a/overlay.nix b/overlay.nix new file mode 100644 index 0000000..4d5e2e2 --- /dev/null +++ b/overlay.nix @@ -0,0 +1,37 @@ +let + build = import ./build.nix; +in final: prev: +let + glibcName = + if final.stdenv.hostPlatform.isDarwin + # glibc matching doesn't matter for darwin + then "glibc-2.30" + else final.glibc.name; +in { + + haskell = prev.haskell // { + packageOverrides = final.lib.composeExtensions prev.haskell.packageOverrides + (hfinal: hprev: { + hie = (build { + inherit glibcName; + ghcVersion = hfinal.ghc.version; + }).combined; + }); + }; + +} +# Only include this part if a haskell-nix overlay is there +// prev.lib.optionalAttrs (prev ? haskell-nix) { + + haskell-nix = prev.haskell-nix // { + custom-tools = prev.haskell-nix.custom-tools // { + hie.unstable = args: (build { + inherit glibcName; + ghcVersion = if args ? compiler-nix-name + then final.haskell-nix.compiler.${args.compiler-nix-name}.version + else args.ghc.version; # deprecated + }).combined; + }; + }; + +} diff --git a/overrides/ghc842.nix b/overrides/ghc842.nix deleted file mode 100644 index 3b308ad..0000000 --- a/overrides/ghc842.nix +++ /dev/null @@ -1,9 +0,0 @@ -self: super: { - Cabal = null; - hsimport = super.hsimport.overrideAttrs (old: { - # See https://github.com/NixOS/nixpkgs/pull/42224 - # https://github.com/NixOS/nixpkgs/commit/f8a158c3466 - # Necessary because ghc842 uses an older nixpkgs version - configureFlags = [ "--libsubdir=$abi/$libname" ]; - }); -} diff --git a/overrides/ghc843.nix b/overrides/ghc843.nix deleted file mode 100644 index 59c4d83..0000000 --- a/overrides/ghc843.nix +++ /dev/null @@ -1,3 +0,0 @@ -self: super: { - Cabal = null; -} diff --git a/overrides/ghc861.nix b/overrides/ghc861.nix deleted file mode 100644 index 59c4d83..0000000 --- a/overrides/ghc861.nix +++ /dev/null @@ -1,3 +0,0 @@ -self: super: { - Cabal = null; -} diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 135c133..0000000 --- a/shell.nix +++ /dev/null @@ -1 +0,0 @@ -(import ./update.nix {}).env diff --git a/sources.nix b/sources.nix new file mode 100644 index 0000000..e69d9e4 --- /dev/null +++ b/sources.nix @@ -0,0 +1,35 @@ +let + haskellNixVersion = "af5998fe8d6b201d2a9be09993f1b9fae74e0082"; + haskellNixSrc = fetchTarball { + url = "https://github.com/input-output-hk/haskell.nix/tarball/${haskellNixVersion}"; + sha256 = "0z5w99wkkpg2disvwjnsyp45w0bhdkrhvnrpz5nbwhhp21c71mbn"; + }; + haskellNix = import haskellNixSrc {}; + + glibcSpecificPkgs = { + "glibc-2.30" = import haskellNix.sources.nixpkgs-2003 haskellNix.nixpkgsArgs; + "glibc-2.27" = import haskellNix.sources.nixpkgs-1909 haskellNix.nixpkgsArgs; + }; + + pkgs = glibcSpecificPkgs."glibc-2.30"; + + hie = rec { + # unstable-2020-05-23 + version = "fe630a1e31232013549518909e511924e19af4af"; + src = fetchTarball { + url = "https://github.com/haskell/haskell-ide-engine/archive/${version}.tar.gz"; + sha256 = "1lbbzk9kj39h79wb8imv5s22y592cyyrk06y24glrcxh5bzghb9l"; + }; + }; + + # String gets written to the generated directory, so CI can quickly know + # whether materialization files need to be updated + materializationId = builtins.toFile "materialization-id" '' + These materialization files were generated with + haskell.nix ${haskellNixVersion} + haskell-ide-engine ${hie.version} + ''; + +in { + inherit glibcSpecificPkgs pkgs hie materializationId; +} diff --git a/src/Cache.hs b/src/Cache.hs deleted file mode 100644 index 7af8250..0000000 --- a/src/Cache.hs +++ /dev/null @@ -1,46 +0,0 @@ -module Cache - ( get - , getLocal - , Expires(..) - , Key - , Value - ) where - -import Control.Monad.IO.Class -import qualified Data.ByteString.Lazy.Char8 as BS -import Data.Time -import System.Directory -import System.FilePath - -type Key = FilePath -type Value = BS.ByteString - -data Expires = ExpiresNever - | ExpiresAfter NominalDiffTime - -get :: MonadIO m => Expires -> Key -> m Value -> m Value -get expires key generator = do - path <- liftIO $ ( key) <$> getXdgDirectory XdgCache "all-hies" - getWithBase expires path generator - -getLocal :: MonadIO m => Expires -> Key -> m Value -> m Value -getLocal expires key generator = do - path <- liftIO $ ( key) <$> getCurrentDirectory - getWithBase expires path generator - -getWithBase :: MonadIO m => Expires -> FilePath -> m Value -> m Value -getWithBase expires path generator = do - exists <- liftIO $ doesFileExist path - needsRefresh <- if exists then case expires of - ExpiresNever -> return False - ExpiresAfter seconds -> do - now <- liftIO getCurrentTime - modTime <- liftIO $ getModificationTime path - return $ now `diffUTCTime` modTime > seconds - else return True - if needsRefresh then do - contents <- generator - liftIO $ createDirectoryIfMissing True (takeDirectory path) - liftIO $ BS.writeFile path contents - return contents - else liftIO $ BS.readFile path diff --git a/src/Main.hs b/src/Main.hs deleted file mode 100644 index 6eb67ff..0000000 --- a/src/Main.hs +++ /dev/null @@ -1,313 +0,0 @@ -{-# LANGUAGE NamedFieldPuns #-} -{-# LANGUAGE OverloadedStrings #-} -{-# LANGUAGE ViewPatterns #-} - -import Control.Exception (handleJust) -import Control.Monad.Reader -import Data.Aeson (decode) -import qualified Data.ByteString.Lazy.Char8 as BS -import Data.Char (isDigit, isHexDigit) -import Data.List (intercalate, isPrefixOf, sortOn) -import Data.Maybe -import Data.Ord (Down(..)) -import Data.Time -import Distribution.System (Arch (..), OS (..), Platform (..)) -import Network.HTTP.Client -import Network.HTTP.Client.TLS -import Stack2nix -import System.Console.Haskeline hiding (getHistory) -import System.Directory -import System.Environment (getArgs, setEnv) -import System.Exit (ExitCode (..)) -import System.FilePath -import System.IO (hClose) -import System.IO.Temp -import System.Process -import Text.Regex.Applicative - -import qualified Cache -import Options - -data Env = Env - { cacheDir :: FilePath - , manager :: Manager - , opts :: Options - } - - --- | Initializes the read-only environment -getEnv :: IO Env -getEnv = Env - <$> getXdgDirectory XdgCache "all-hies" - <*> newTlsManager - <*> getOptions - -type App = InputT (ReaderT Env IO) - -hie :: App Repository -hie = lift $ asks $ Repository . optRepo . opts - -main :: IO () -main = do - env <- getEnv - runReaderT (runInputT haskelineSettings run) env - where haskelineSettings = defaultSettings { historyFile = Nothing } - -run :: App () -run = do - updateRepo nixpkgs - - repoPath nixpkgs >>= \path -> liftIO $ setEnv "NIX_PATH" ("nixpkgs=" ++ path) - - name <- lift $ asks (optName . opts) - rev <- lift $ asks (optRev . opts) - regenerate ("generated" name) rev - -cleanGenerated :: FilePath -> App () -cleanGenerated root = do - cleanDirectory root - liftIO $ createDirectory (root "nixpkgsHashes") - liftIO $ createDirectory (root "ghcBaseLibraries") - liftIO $ createDirectory (root "stack2nix") - --- | Makes sure that the given directory is existent and empty -cleanDirectory :: FilePath -> App () -cleanDirectory path = liftIO $ do - liftIO $ putStrLn $ "Cleaning directory " ++ path - exists <- doesPathExist path - when exists $ removeDirectoryRecursive path - createDirectoryIfMissing True path - --- | Returns the newest tag in the given repository -latestTag :: Repository -> App String -latestTag repo = do - -- TODO: Use git ls-remote --tags --sort=creatordate --refs instead? - tags <- lines <$> git repo [ "tag", "--sort", "creatordate" ] - return $ last tags - --- | Returns the git hash for a specified revision in the given repository -revHash :: Repository -> String -> App (String, String) -revHash (Repository url) rev = do - result <- liftIO $ lines <$> readProcess "git" [ "ls-remote", url, rev ] "" - case result of - [] -> fail $ "No such revision: " ++ rev - line:_ -> return (hash, ref) where - [hash, ref] = words line - --- | A call to stack2nix for generating a haskell-ide-engine expression at a specified path, for a specific revision and ghc version -callStack2nix :: String -> Version -> App BS.ByteString -callStack2nix rev version = do - Repository repo <- hie - - liftIO $ putStrLn $ "Running stack2nix for hie revision " ++ rev ++ " and ghc version " ++ show version - - liftIO $ withSystemTempFile "all-hies-stack2nix" $ \path handle -> do - hClose handle - handleJust (\e -> if e == ExitSuccess then Just () else Nothing) return $ - stack2nix Args - { argRev = Just rev - , argOutFile = Just path - , argStackYaml = "stack-" ++ show version ++ ".yaml" - , argThreads = 4 - , argTest = False - , argBench = False - , argHaddock = False - , argHackageSnapshot = Nothing - , argPlatform = Platform X86_64 Linux - , argUri = repo - , argIndent = True - , argVerbose = False - } - BS.readFile path - - --- | Generate the stack2nix file for the specified HIE git hash and ghc version -genS2N :: FilePath -> String -> Version -> App BS.ByteString -genS2N root hash version = do - - nixpkgsRev <- findNixpkgsForGhc version - sha <- nixpkgsSha nixpkgsRev - liftIO $ writeFile (root "nixpkgsHashes" nixpkgsRev) sha - - genBaseLibraries root version nixpkgsRev - - Cache.get Cache.ExpiresNever ("per-hie" hash nixVersion version <.> ".nix") $ do - liftIO $ putStrLn $ "Using nixpkgs revision " ++ nixpkgsRev ++ " for ghc version " ++ show version - git nixpkgs [ "checkout", nixpkgsRev ] - callStack2nix hash version - -genBaseLibraries :: FilePath -> Version -> String -> App () -genBaseLibraries root version@(Version major minor patch) nixpkgsRev = do - contents <- Cache.get Cache.ExpiresNever ("per-ghcMinor" show major ++ show minor) $ do - git nixpkgs [ "checkout", nixpkgsRev ] - let -- Arguments to set config and overlays to nothing so - -- that they aren't sourced from the user's configuration - -- files in ~/.config/nixpkgs - purePkgs = [ "--arg", "config", "{}", "--arg", "overlays", "[]" ] - ghcPath <- liftIO $ init <$> readProcess "nix-build" - ([ "--no-out-link", "", "-A", "haskell.compiler." ++ nixVersion version ] ++ purePkgs) "" - libs <- liftIO $ readProcess (ghcPath "bin/ghc-pkg") - [ "list", "--no-user-package-db", "--simple" ] "" - return $ BS.pack libs - - liftIO $ BS.writeFile (root "ghcBaseLibraries" nixVersion version) contents - -nixpkgsSha :: String -> App String -nixpkgsSha revision = do - hash <- Cache.get Cache.ExpiresNever ("per-nixpkgs/sha256" revision) $ do - git nixpkgs [ "checkout", revision ] - path <- repoPath nixpkgs - - -- tmp needs to be next to nixpkgs itself (same file system), such that hardlinking works, which makes it very efficient - tmpCache <- lift $ ( "tmp") <$> asks cacheDir - liftIO $ createDirectoryIfMissing True tmpCache - liftIO $ withTempDirectory tmpCache "all-hies-nixpkgs-sha256" $ \tmp -> do - liftIO $ readProcess "cp" ["-Trl", path, tmp] "" - liftIO $ removeDirectoryRecursive (tmp ".git") - hash <- liftIO $ head . lines <$> readProcess "nix-hash" ["--type", "sha256", "--base32", tmp] "" - return $ BS.pack hash - - return $ BS.unpack hash - --- | Finds a suitable nixpkgs revision that has a the specified compiler available -findNixpkgsForGhc :: Version -> App String -findNixpkgsForGhc version = do - contents <- Cache.getLocal Cache.ExpiresNever ("nixpkgsForGhc" nixVersion version) $ do - hist <- getHistory - revision <- go hist - return $ BS.pack revision - - return $ BS.unpack contents - - where - go :: Hist -> App String - go [] = fail $ "Couldn't find a nixpkgs for ghc version " ++ show version - go (h:hist) = do - versions <- ghcVersionsForNixpkgs h - if version `elem` versions - then return h else go hist - --- | Determines the available GHC versions for a nixpkgs revision -ghcVersionsForNixpkgs :: String -> App [Version] -ghcVersionsForNixpkgs rev = do - contents <- Cache.get Cache.ExpiresNever ("per-nixpkgs/ghcVersions" rev) $ do - git nixpkgs [ "checkout", rev ] - nixpkgs <- repoPath nixpkgs - stdout <- liftIO $ readProcess "nix-instantiate" [ "--eval", "--json", "-" ] - ("builtins.attrNames (import " ++ nixpkgs ++ " {}).haskell.compiler") - case decode (BS.pack stdout) :: Maybe [String] of - Nothing -> fail $ "Failed to decode nix output: " ++ stdout - Just versions' -> do - let versions = mapMaybe (nixVersionRegex `match`) versions' - return $ BS.pack $ unlines $ map show versions - - return $ mapMaybe (versionRegex `match`) . lines $ BS.unpack contents - --- | Regenerate the specified HIE revision stack2nix files in the given path -regenerate :: FilePath -> String -> App () -regenerate root revision = do - liftIO $ putStrLn $ "Regenerating " ++ root ++ " with revision " ++ revision - cleanGenerated root - hieRepo <- hie - (hash, ref) <- revHash hieRepo revision - let revName = if "refs/heads/" `isPrefixOf` ref - then take 10 hash else revision - liftIO $ putStrLn $ "Regenerating for revision " ++ revName ++ " (" ++ hash ++ ")" - liftIO $ putStrLn $ "Writing " ++ revName ++ " to " ++ root ++ "stack2nix/revision" - liftIO $ writeFile (root "stack2nix/revision") revName - files <- listRepoFiles hieRepo - let versions = sortOn Down (mapMaybe (stackPathRegex `match`) files) - liftIO $ putStrLn $ "HIE " ++ revName ++ " has ghc versions " ++ intercalate ", " (map show versions) - forM_ versions $ \version -> do - contents <- genS2N root hash version - liftIO $ BS.writeFile (root "stack2nix" nixVersion version <.> "nix") contents - -listRepoFiles :: Repository -> App [FilePath] -listRepoFiles (Repository repo) = liftIO $ withSystemTempDirectory "all-hies-repo" $ \tmpDir -> do - readProcess "git" [ "clone", repo, tmpDir ] "" - listDirectory tmpDir - -newtype Repository = Repository String - -nixpkgs :: Repository -nixpkgs = Repository "https://github.com/NixOS/nixpkgs" - --- | Returns the local checkout path to a repository -repoPath :: Repository -> App FilePath -repoPath (Repository (takeFileName -> name)) = lift $ ( name) <$> asks cacheDir - --- | Runs git with the specified arguments in the given repositories local checkout -git :: Repository -> [String] -> App String -git repo args = do - path <- repoPath repo - let allArgs = "-C":path:args - liftIO $ putStrLn $ "Running git " ++ unwords allArgs - liftIO $ readProcess "git" allArgs "" - --- | Ensures that the repository repo is cloned to its path with the latest updates fetched -updateRepo :: Repository -> App () -updateRepo repo@(Repository url@(takeFileName -> name)) = do - path <- repoPath repo - exists <- liftIO $ doesPathExist path - if exists then do - git repo [ "clean", "-fd" ] - git repo [ "reset", "--hard", "HEAD" ] - git repo [ "fetch", "origin" ] - else do - candidate <- (\home -> home "src" name) <$> liftIO getHomeDirectory - initial <- (\exists -> if exists then candidate else "") - <$> liftIO (doesDirectoryExist candidate) - checkoutPath <- fromMaybe (error "EOF") <$> getInputLineWithInitial - ("Enter optional path to local " ++ url ++ " checkout for faster cloning: ") (initial, "") - - liftIO $ readProcess "git" ( - [ "clone", url, path, "--recursive" ] ++ - [ arg | not (null checkoutPath), arg <- [ "--reference-if-able", checkoutPath ] ] - ) "" - return () - -type Hist = [String] - --- | Returns the nixpkgs-unstable channel commit history recorded by "https://channels.nix.gsc.io" in newest to oldest order -getHistory :: App Hist -getHistory = do - contents <- Cache.get (Cache.ExpiresAfter (15 * 60)) "history-nixpkgs-unstable" $ do - mgr <- lift $ asks manager - response <- liftIO $ responseBody <$> httpLbs (parseRequest_ url) mgr - let items = reverse . ("c47ac0d8bf43543d8dcef4895167dd1f7af9d968":) . map (head . BS.words) $ BS.lines response - return $ BS.unlines items - - return $ map BS.unpack . BS.lines $ contents - where - url = "https://channels.nix.gsc.io/nixpkgs-unstable/history-v2" - - - --- | A GHC version -data Version = Version Int Int Int - deriving (Eq, Ord) - -instance Show Version where - show (Version major minor patch) = show major ++ "." ++ show minor ++ "." ++ show patch - --- | Converts a GHC version to the format used for attributes in nixpkgs, such as "ghc864" -nixVersion :: Version -> String -nixVersion (Version major minor patch) = "ghc" ++ show major ++ show minor ++ show patch - --- | Matches a nixpkgs GHC attribute name such as "ghc864" as a version type -nixVersionRegex :: RE Char Version -nixVersionRegex = "ghc" *> (Version <$> digit <*> digit <*> digit) - where digit = read . (:[]) <$> psym isDigit - --- | Matches a GHC version string such as 8.6.4 to a version type -versionRegex :: RE Char Version -versionRegex = Version - <$> (int <* sym '.') - <*> (int <* sym '.') - <*> int - where int :: RE Char Int - int = read <$> many (psym isDigit) - --- | Matches a stack yaml file name such as "stack-8.6.4.yaml" to a GHC version -stackPathRegex :: RE Char Version -stackPathRegex = "stack-" *> versionRegex <* ".yaml" diff --git a/src/Options.hs b/src/Options.hs deleted file mode 100644 index 7bd7267..0000000 --- a/src/Options.hs +++ /dev/null @@ -1,43 +0,0 @@ -module Options - ( getOptions - , Options(..) - ) where - -import Options.Applicative - -data Options = Options - { optName :: String - , optRev :: String - , optRepo :: String - } - -parser :: Parser Options -parser = Options - <$> strOption - ( long "name" - <> short 'n' - <> metavar "NAME" - <> help "name of the HIE set to generate as, like stable or unstable" - ) - <*> strOption - ( long "revision" - <> short 'r' - <> metavar "REV" - <> help "HIE revision to use, accepts branches, git hashes, tags and more" - ) - <*> strOption - ( long "hie-repo" - <> metavar "URL" - <> help "Which repository to use" - <> value "https://github.com/haskell/haskell-ide-engine" - ) - -options :: ParserInfo Options -options = info (parser <**> helper) - ( fullDesc - <> progDesc "Generate all-hies expressions" - ) - -getOptions :: IO Options -getOptions = customExecParser p options where - p = prefs showHelpOnEmpty diff --git a/templates/Readme.md b/templates/Readme.md new file mode 100644 index 0000000..ca428ca --- /dev/null +++ b/templates/Readme.md @@ -0,0 +1,7 @@ +# HIE template projects + +This directory contains template projects with a fully working development environment: + +- A haskell.nix based template for stack in [haskell.nix-stack](./haskell.nix-stack) +- A haskell.nix based template for cabal in [haskell.nix-cabal](./haskell.nix-cabal) +- A nixpkgs Haskell infrastructure based template for cabal in [nixpkgs-cabal](nixpkgs-cabal) diff --git a/templates/haskell.nix-cabal/.envrc b/templates/haskell.nix-cabal/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/templates/haskell.nix-cabal/.envrc @@ -0,0 +1 @@ +use nix diff --git a/templates/haskell.nix-cabal/.gitignore b/templates/haskell.nix-cabal/.gitignore new file mode 100644 index 0000000..1f594a8 --- /dev/null +++ b/templates/haskell.nix-cabal/.gitignore @@ -0,0 +1,2 @@ +result +dist-newstyle diff --git a/templates/haskell.nix-cabal/Main.hs b/templates/haskell.nix-cabal/Main.hs new file mode 100644 index 0000000..82505bf --- /dev/null +++ b/templates/haskell.nix-cabal/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = putStrLn "Hello!" diff --git a/templates/haskell.nix-cabal/Readme.md b/templates/haskell.nix-cabal/Readme.md new file mode 100644 index 0000000..d752015 --- /dev/null +++ b/templates/haskell.nix-cabal/Readme.md @@ -0,0 +1,81 @@ +# Nix-based Haskell project template using [haskell.nix](https://input-output-hk.github.io/haskell.nix/) + +This template has support for: +- Building the project with Nix +- Entering a dev environment with Nix, which includes + - GHC and cabal-install for the `cabal` command + - All the projects Haskell dependencies + - Haskell IDE Engine with a working Cabal version + - An up-to-date local Hoogle database, usable by HIE +- Minimal compilation since most things are cached already + +It uses the haskell.nix Haskell infrastructure for this. + +# Usage + +## Setting up the caches + +To use this, you should first enable the necessary Nix caches so that most things don't have to be compiled. This is done using [Cachix](https://cachix.org/). If you don't have it already, you can install cachix with + +``` +$ nix-env -iA cachix -f https://cachix.org/api/v1/install +``` + +After which you can enable the `all-hies` and `iohk` caches, both of which are recommended for this template: + +``` +$ cachix use all-hies +$ cachix use iohk +``` + +## Entering the dev environment + +This can be done either using `nix-shell`: + +``` +$ nix-shell +[nix-shell:~/all-hies/templates/haskell.nix-cabal]$ +``` + +Or automatically when you enter the project directory using [direnv](https://direnv.net/) or [lorri](https://github.com/target/lorri) (by running `lorri init` first). Note that entering the environment the first time will take quite some time due to how haskell.nix works. + +After entering the environment you can use the standard `cabal` commands for interacting with the project. Note that these will use all dependencies from Nix: +``` +$ cabal build # building the project +$ cabal repl # Getting a ghci repl +$ cabal run # Running an executable +``` + +In this environment HIE is available, which you can verify works with the `hie` command: + +``` +$ hie +[...] +/home/infinisil/all-hies/templates/haskell.nix-cabal/Main.hs: OK +``` + +The easiest way to get your editor to find HIE is to just start it in this environment: +``` +$ vim +$ emacs +$ code +$ sublime +$ atom +``` + +Note that you still need to set up the necessary editor extensions yourself. See [here](https://github.com/haskell/haskell-ide-engine#editor-integration) for how to do this + +A local Hoogle database is also available with all the dependencies of the project, which is used by HIE. You can start a hoogle server using +``` +$ hoogle server +Server started on port 8080 +Reading log...0.00s +2020-07-25T01:29:13.173630988 - Server starting on port 8080 and host/IP HostAny +``` + +## Building the project with Nix + +This is done with just a `nix-build` in the root. +``` +$ nix-build +``` diff --git a/templates/haskell.nix-cabal/all-hies-template.cabal b/templates/haskell.nix-cabal/all-hies-template.cabal new file mode 100644 index 0000000..7407826 --- /dev/null +++ b/templates/haskell.nix-cabal/all-hies-template.cabal @@ -0,0 +1,21 @@ +name: all-hies-template +version: 0.1.0.0 +-- synopsis: +-- description: +-- homepage: +-- license: +-- license-file: LICENSE +-- author: +-- maintainer: +-- copyright: +-- category: Web +build-type: Simple +cabal-version: 2.0 + +executable all-hies-template + main-is: Main.hs + default-language: Haskell2010 + build-depends: base >= 4.7 && < 5 + -- Cabal needed for HIEs cabal-helper, needs to match the + -- cabal(-install) version in default.nix + , Cabal == 3.2.0.0 diff --git a/templates/haskell.nix-cabal/cabal.project b/templates/haskell.nix-cabal/cabal.project new file mode 100644 index 0000000..d40b404 --- /dev/null +++ b/templates/haskell.nix-cabal/cabal.project @@ -0,0 +1,3 @@ +packages: . + +index-state: 2020-05-15T00:00:00Z diff --git a/templates/haskell.nix-cabal/default.nix b/templates/haskell.nix-cabal/default.nix new file mode 100644 index 0000000..278f322 --- /dev/null +++ b/templates/haskell.nix-cabal/default.nix @@ -0,0 +1,50 @@ +let + haskellNixSrc = fetchTarball { + url = "https://github.com/input-output-hk/haskell.nix/tarball/af5998fe8d6b201d2a9be09993f1b9fae74e0082"; + sha256 = "0z5w99wkkpg2disvwjnsyp45w0bhdkrhvnrpz5nbwhhp21c71mbn"; + }; + haskellNix = import haskellNixSrc {}; + + all-hies = ../..; + + # Use this version for your project instead + /* + all-hies = fetchTarball { + # Insert the desired all-hies commit here + url = "https://github.com/infinisil/all-hies/tarball/000000000000000000000000000000000000000"; + # Insert the correct hash after the first evaluation + sha256 = "0000000000000000000000000000000000000000000000000000"; + }; + */ + + pkgs = import haskellNix.sources.nixpkgs-2003 (haskellNix.nixpkgsArgs // { + overlays = haskellNix.nixpkgsArgs.overlays ++ [ + (import all-hies {}).overlay + ]; + }); + + set = pkgs.haskell-nix.cabalProject' { + name = "all-hies-template"; + src = pkgs.haskell-nix.haskellLib.cleanGit { + name = "all-hies-template"; + src = ./.; + }; + ghc = pkgs.haskell-nix.compiler.ghc883; + modules = [{ + # Make Cabal reinstallable + nonReinstallablePkgs = [ "rts" "ghc-heap" "ghc-prim" "integer-gmp" "integer-simple" "base" "deepseq" "array" "ghc-boot-th" "pretty" "template-haskell" "ghcjs-prim" "ghcjs-th" "ghc-boot" "ghc" "Win32" "array" "binary" "bytestring" "containers" "directory" "filepath" "ghc-boot" "ghc-compact" "ghc-prim" "hpc" "mtl" "parsec" "process" "text" "time" "transformers" "unix" "xhtml" "terminfo" ]; + }]; + }; +in set.hsPkgs.all-hies-template.components.exes.all-hies-template // { + env = set.hsPkgs.shellFor { + packages = p: [ p.all-hies-template ]; + exactDeps = true; + tools = { + cabal = "3.2.0.0"; + hie = "unstable"; + }; + shellHook = '' + export HIE_HOOGLE_DATABASE=$(realpath "$(dirname "$(realpath "$(which hoogle)")")/../share/doc/hoogle/default.hoo") + ''; + }; +} diff --git a/templates/haskell.nix-cabal/shell.nix b/templates/haskell.nix-cabal/shell.nix new file mode 100644 index 0000000..fb83e92 --- /dev/null +++ b/templates/haskell.nix-cabal/shell.nix @@ -0,0 +1 @@ +(import ./.).env diff --git a/templates/haskell.nix-stack/.envrc b/templates/haskell.nix-stack/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/templates/haskell.nix-stack/.envrc @@ -0,0 +1 @@ +use nix diff --git a/templates/haskell.nix-stack/.gitignore b/templates/haskell.nix-stack/.gitignore new file mode 100644 index 0000000..efbe867 --- /dev/null +++ b/templates/haskell.nix-stack/.gitignore @@ -0,0 +1,2 @@ +result +.stack-work diff --git a/templates/haskell.nix-stack/Main.hs b/templates/haskell.nix-stack/Main.hs new file mode 100644 index 0000000..82505bf --- /dev/null +++ b/templates/haskell.nix-stack/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = putStrLn "Hello!" diff --git a/templates/haskell.nix-stack/Readme.md b/templates/haskell.nix-stack/Readme.md new file mode 100644 index 0000000..05f7839 --- /dev/null +++ b/templates/haskell.nix-stack/Readme.md @@ -0,0 +1,81 @@ +# Nix-based Haskell project template using [haskell.nix](https://input-output-hk.github.io/haskell.nix/) and [Stack](https://docs.haskellstack.org/en/stable/README/) + +This template has support for: +- Building the project with Nix +- Entering a dev environment with Nix, which includes + - GHC and stack + - All the projects Haskell dependencies + - Haskell IDE Engine with a working Cabal version + - An up-to-date local Hoogle database, usable by HIE +- Minimal compilation since most things are cached already + +It uses the haskell.nix Haskell infrastructure for this. + +# Usage + +## Setting up the caches + +To use this, you should first enable the necessary Nix caches so that most things don't have to be compiled. This is done using [Cachix](https://cachix.org/). If you don't have it already, you can install cachix with + +``` +$ nix-env -iA cachix -f https://cachix.org/api/v1/install +``` + +After which you can enable the `all-hies` and `iohk` caches, both of which are recommended for this template: + +``` +$ cachix use all-hies +$ cachix use iohk +``` + +## Entering the dev environment + +This can be done either using `nix-shell`: + +``` +$ nix-shell +[nix-shell:~/all-hies/templates/haskell.nix-stack]$ +``` + +Or automatically when you enter the project directory using [direnv](https://direnv.net/) or [lorri](https://github.com/target/lorri) (by running `lorri init` first). Note that entering the environment the first time will take quite some time due to how haskell.nix works. + +After entering the environment you can use the standard `stack` commands for interacting with the project. Note that these will use all dependencies from Nix: +``` +$ stack build # building the project +$ stack repl # Getting a ghci repl +$ stack run # Running an executable +``` + +In this environment HIE is available, which you can verify works with the `hie` command: + +``` +$ hie +[...] +/home/infinisil/all-hies/templates/haskell.nix-stack/Main.hs: OK +``` + +The easiest way to get your editor to find HIE is to just start it in this environment: +``` +$ vim +$ emacs +$ code +$ sublime +$ atom +``` + +Note that you still need to set up the necessary editor extensions yourself. See [here](https://github.com/haskell/haskell-ide-engine#editor-integration) for how to do this + +A local Hoogle database is also available with all the dependencies of the project, which is used by HIE. You can start a hoogle server using +``` +$ hoogle server +Server started on port 8080 +Reading log...0.00s +2020-07-25T01:29:13.173630988 - Server starting on port 8080 and host/IP HostAny +``` + +## Building the project with Nix + +This is done with just a `nix-build` in the root. +``` +$ nix-build +``` diff --git a/templates/haskell.nix-stack/all-hies-template.cabal b/templates/haskell.nix-stack/all-hies-template.cabal new file mode 100644 index 0000000..7407826 --- /dev/null +++ b/templates/haskell.nix-stack/all-hies-template.cabal @@ -0,0 +1,21 @@ +name: all-hies-template +version: 0.1.0.0 +-- synopsis: +-- description: +-- homepage: +-- license: +-- license-file: LICENSE +-- author: +-- maintainer: +-- copyright: +-- category: Web +build-type: Simple +cabal-version: 2.0 + +executable all-hies-template + main-is: Main.hs + default-language: Haskell2010 + build-depends: base >= 4.7 && < 5 + -- Cabal needed for HIEs cabal-helper, needs to match the + -- cabal(-install) version in default.nix + , Cabal == 3.2.0.0 diff --git a/templates/haskell.nix-stack/cabal.project b/templates/haskell.nix-stack/cabal.project new file mode 100644 index 0000000..d40b404 --- /dev/null +++ b/templates/haskell.nix-stack/cabal.project @@ -0,0 +1,3 @@ +packages: . + +index-state: 2020-05-15T00:00:00Z diff --git a/templates/haskell.nix-stack/default.nix b/templates/haskell.nix-stack/default.nix new file mode 100644 index 0000000..25be28e --- /dev/null +++ b/templates/haskell.nix-stack/default.nix @@ -0,0 +1,48 @@ +let + haskellNixSrc = fetchTarball { + url = "https://github.com/input-output-hk/haskell.nix/tarball/af5998fe8d6b201d2a9be09993f1b9fae74e0082"; + sha256 = "0z5w99wkkpg2disvwjnsyp45w0bhdkrhvnrpz5nbwhhp21c71mbn"; + }; + haskellNix = import haskellNixSrc {}; + + all-hies = ../..; + + # Use this version for your project instead + /* + all-hies = fetchTarball { + # Insert the desired all-hies commit here + url = "https://github.com/infinisil/all-hies/tarball/000000000000000000000000000000000000000"; + # Insert the correct hash after the first evaluation + sha256 = "0000000000000000000000000000000000000000000000000000"; + }; + */ + + pkgs = import haskellNix.sources.nixpkgs-2003 (haskellNix.nixpkgsArgs // { + overlays = haskellNix.nixpkgsArgs.overlays ++ [ + (import all-hies {}).overlay + ]; + }); + + set = pkgs.haskell-nix.stackProject { + name = "all-hies-template"; + src = pkgs.haskell-nix.haskellLib.cleanGit { + name = "all-hies-template"; + src = ./.; + }; + modules = [{ + # Make Cabal reinstallable + nonReinstallablePkgs = [ "rts" "ghc-heap" "ghc-prim" "integer-gmp" "integer-simple" "base" "deepseq" "array" "ghc-boot-th" "pretty" "template-haskell" "ghcjs-prim" "ghcjs-th" "ghc-boot" "ghc" "Win32" "array" "binary" "bytestring" "containers" "directory" "filepath" "ghc-boot" "ghc-compact" "ghc-prim" "hpc" "mtl" "parsec" "process" "text" "time" "transformers" "unix" "xhtml" "terminfo" ]; + }]; + }; +in set.all-hies-template.components.exes.all-hies-template // { + env = set.shellFor { + packages = p: [ p.all-hies-template ]; + tools = { + hie = "unstable"; + }; + nativeBuildInputs = [ pkgs.stack ]; + shellHook = '' + export HIE_HOOGLE_DATABASE=$(realpath "$(dirname "$(realpath "$(which hoogle)")")/../share/doc/hoogle/default.hoo") + ''; + }; +} diff --git a/templates/haskell.nix-stack/shell.nix b/templates/haskell.nix-stack/shell.nix new file mode 100644 index 0000000..fb83e92 --- /dev/null +++ b/templates/haskell.nix-stack/shell.nix @@ -0,0 +1 @@ +(import ./.).env diff --git a/templates/haskell.nix-stack/stack.yaml b/templates/haskell.nix-stack/stack.yaml new file mode 100644 index 0000000..8f0dcc9 --- /dev/null +++ b/templates/haskell.nix-stack/stack.yaml @@ -0,0 +1,67 @@ +# This file was automatically generated by 'stack init' +# +# Some commonly used options have been documented as comments in this file. +# For advanced use and comprehensive documentation of the format, please see: +# https://docs.haskellstack.org/en/stable/yaml_configuration/ + +# Resolver to choose a 'specific' stackage snapshot or a compiler version. +# A snapshot resolver dictates the compiler version and the set of packages +# to be used for project dependencies. For example: +# +# resolver: lts-3.5 +# resolver: nightly-2015-09-21 +# resolver: ghc-7.10.2 +# +# The location of a snapshot can be provided as a file or url. Stack assumes +# a snapshot provided as a file might change, whereas a url resource does not. +# +# resolver: ./custom-snapshot.yaml +# resolver: https://example.com/snapshots/2018-01-01.yaml +resolver: lts-15.12 + +# User packages to be built. +# Various formats can be used as shown in the example below. +# +# packages: +# - some-directory +# - https://example.com/foo/bar/baz-0.0.2.tar.gz +# subdirs: +# - auto-update +# - wai +packages: +- . +# Dependency packages to be pulled from upstream that are not in the resolver. +# These entries can reference officially published versions as well as +# forks / in-progress versions pinned to a git hash. For example: +# +extra-deps: +- Cabal-3.2.0.0 +# - acme-missiles-0.3 +# - git: https://github.com/commercialhaskell/stack.git +# commit: e7b331f14bcffb8367cd58fbfc8b40ec7642100a +# +# extra-deps: [] + +# Override default flag values for local packages and extra-deps +# flags: {} + +# Extra package databases containing global packages +# extra-package-dbs: [] + +# Control whether we use the GHC we find on the path +# system-ghc: true +# +# Require a specific version of stack, using version ranges +# require-stack-version: -any # Default +# require-stack-version: ">=2.1" +# +# Override the architecture used by stack, especially useful on Windows +# arch: i386 +# arch: x86_64 +# +# Extra directories used by stack for building +# extra-include-dirs: [/path/to/dir] +# extra-lib-dirs: [/path/to/dir] +# +# Allow a newer minor version of GHC than the snapshot specifies +# compiler-check: newer-minor diff --git a/templates/nixpkgs-cabal/.envrc b/templates/nixpkgs-cabal/.envrc new file mode 100644 index 0000000..1d953f4 --- /dev/null +++ b/templates/nixpkgs-cabal/.envrc @@ -0,0 +1 @@ +use nix diff --git a/templates/nixpkgs-cabal/.gitignore b/templates/nixpkgs-cabal/.gitignore new file mode 100644 index 0000000..1f594a8 --- /dev/null +++ b/templates/nixpkgs-cabal/.gitignore @@ -0,0 +1,2 @@ +result +dist-newstyle diff --git a/templates/nixpkgs-cabal/Main.hs b/templates/nixpkgs-cabal/Main.hs new file mode 100644 index 0000000..82505bf --- /dev/null +++ b/templates/nixpkgs-cabal/Main.hs @@ -0,0 +1,4 @@ +module Main where + +main :: IO () +main = putStrLn "Hello!" diff --git a/templates/nixpkgs-cabal/Readme.md b/templates/nixpkgs-cabal/Readme.md new file mode 100644 index 0000000..4574e6c --- /dev/null +++ b/templates/nixpkgs-cabal/Readme.md @@ -0,0 +1,80 @@ +# Nix-based Haskell project template using nixpkgs' Haskell infrastructure + +This template has support for: +- Building the project with Nix +- Entering a dev environment with Nix, which includes + - GHC and cabal-install for the `cabal` command + - All the projects Haskell dependencies + - Haskell IDE Engine with a working Cabal version + - An up-to-date local Hoogle database, usable by HIE +- Minimal compilation since most things are cached already + +It uses the nixpkgs Haskell infrastructure for this. + +# Usage + +## Setting up the caches + +To use this, you should first enable the necessary Nix caches so that most things don't have to be compiled. This is done using [Cachix](https://cachix.org/). If you don't have it already, you can install cachix with + +``` +$ nix-env -iA cachix -f https://cachix.org/api/v1/install +``` + +After which you can enable the `all-hies` cache: + +``` +$ cachix use all-hies +``` + +## Entering the dev environment + +This can be done either using `nix-shell`: + +``` +$ nix-shell +[nix-shell:~/all-hies/templates/nixpkgs-cabal]$ +``` + +Or automatically when you enter the project directory using [direnv](https://direnv.net/) or [lorri](https://github.com/target/lorri) (by running `lorri init` first) + +After entering the environment you can use the standard `cabal` commands for interacting with the project. Note that these will use all dependencies from Nix: +``` +$ cabal build # building the project +$ cabal repl # Getting a ghci repl +$ cabal run # Running an executable +``` + +In this environment HIE is available, which you can verify works with the `hie` command: + +``` +$ hie +[...] +/home/infinisil/all-hies/templates/nixpkgs-cabal/Main.hs: OK +``` + +The easiest way to get your editor to find HIE is to just start it in this environment: +``` +$ vim +$ emacs +$ code +$ sublime +$ atom +``` + +Note that you still need to set up the necessary editor extensions yourself. See [here](https://github.com/haskell/haskell-ide-engine#editor-integration) for how to do this + +A local Hoogle database is also available with all the dependencies of the project, which is used by HIE. You can start a hoogle server using +``` +$ hoogle server +Server started on port 8080 +Reading log...0.00s +2020-07-25T01:29:13.173630988 - Server starting on port 8080 and host/IP HostAny +``` + +## Building the project with Nix + +This is done with just a `nix-build` in the root. +``` +$ nix-build +``` diff --git a/templates/nixpkgs-cabal/all-hies-template.cabal b/templates/nixpkgs-cabal/all-hies-template.cabal new file mode 100644 index 0000000..a53df51 --- /dev/null +++ b/templates/nixpkgs-cabal/all-hies-template.cabal @@ -0,0 +1,20 @@ +name: all-hies-template +version: 0.1.0.0 +-- synopsis: +-- description: +-- homepage: +-- license: +-- license-file: LICENSE +-- author: +-- maintainer: +-- copyright: +-- category: Web +build-type: Simple +cabal-version: 2.0 + +executable all-hies-template + main-is: Main.hs + default-language: Haskell2010 + build-depends: base >= 4.7 && < 5 + -- Cabal needed for HIEs cabal-helper + , Cabal diff --git a/templates/nixpkgs-cabal/default.nix b/templates/nixpkgs-cabal/default.nix new file mode 100644 index 0000000..5f2e82e --- /dev/null +++ b/templates/nixpkgs-cabal/default.nix @@ -0,0 +1,52 @@ +let + nixpkgs = fetchTarball { + url = "https://github.com/NixOS/nixpkgs/tarball/f8248ab6d9e69ea9c07950d73d48807ec595e923"; + sha256 = "009i9j6mbq6i481088jllblgdnci105b2q4mscprdawg3knlyahk"; + }; + + all-hies = ../..; + + # Use this version for your project instead + /* + all-hies = fetchTarball { + # Insert the desired all-hies commit here + url = "https://github.com/infinisil/all-hies/tarball/000000000000000000000000000000000000000"; + # Insert the correct hash after the first evaluation + sha256 = "0000000000000000000000000000000000000000000000000000"; + }; + */ + + pkgs = import nixpkgs { + config = {}; + overlays = [ + (import all-hies {}).overlay + ]; + }; + inherit (pkgs) lib; + + set = pkgs.haskell.packages.ghc865.override (old: { + overrides = lib.composeExtensions old.overrides (hself: hsuper: { + all-hies-template = hself.callCabal2nix "all-hies-template" (lib.sourceByRegex ./. [ + "^.*\\.hs$" + "^.*\\.cabal$" + ]) { + # Needs to match cabal-install version + Cabal = hself.Cabal_3_0_0_0; + }; + }); + }); + +in pkgs.haskell.lib.justStaticExecutables set.all-hies-template // { + env = set.shellFor { + packages = p: [ p.all-hies-template ]; + nativeBuildInputs = [ + set.cabal-install + set.hie + ]; + withHoogle = true; + shellHook = '' + export HIE_HOOGLE_DATABASE=$(realpath "$(dirname "$(realpath "$(which hoogle)")")/../share/doc/hoogle/default.hoo") + ''; + }; + inherit set; +} diff --git a/templates/nixpkgs-cabal/shell.nix b/templates/nixpkgs-cabal/shell.nix new file mode 100644 index 0000000..fb83e92 --- /dev/null +++ b/templates/nixpkgs-cabal/shell.nix @@ -0,0 +1 @@ +(import ./.).env diff --git a/update.nix b/update.nix deleted file mode 100644 index 1e0e60e..0000000 --- a/update.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ pkgs ? import ./nixpkgs.nix -}: -let - inherit (pkgs) lib; - hpkgs = pkgs.haskellPackages; - runtimeDeps = [ - pkgs.nix-prefetch-scripts - pkgs.git - pkgs.haskellPackages.cabal-install - pkgs.nix - pkgs.coreutils - pkgs.gawk - ]; - pkg = (hpkgs.callCabal2nix "all-hies" (pkgs.lib.sourceByRegex ./. [ - "src.*" - "all-hies.cabal" - ]) {}).overrideAttrs (old: { - nativeBuildInputs = old.nativeBuildInputs or [] ++ [ - pkgs.makeWrapper - ]; - postInstall = old.postInstall or "" + '' - wrapProgram $out/bin/update \ - --set PATH "${lib.makeBinPath runtimeDeps}" \ - --set LOCALE_ARCHIVE "${pkgs.glibcLocales}/lib/locale/locale-archive" - ''; - }); -in pkg // { - env = pkg.env.overrideAttrs (old: { - nativeBuildInputs = old.nativeBuildInputs or [] ++ runtimeDeps; - }); -}